Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
solo
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
solo
Commits
40002d01
Commit
40002d01
authored
May 29, 2013
by
wangdx
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
make the initial page listen to keydown event[ESC and ENTER]
parent
4a63380f
Changes
8
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
645 additions
and
626 deletions
+645
-626
core/solo-core.iml
core/solo-core.iml
+0
-1
war/bae/solo-bae.iml
war/bae/solo-bae.iml
+0
-1
war/gae/solo-gae.iml
war/gae/solo-gae.iml
+0
-1
war/h2/solo-h2.iml
war/h2/solo-h2.iml
+0
-1
war/mysql/solo-mysql.iml
war/mysql/solo-mysql.iml
+0
-1
war/solo-war.iml
war/solo-war.iml
+15
-0
war/src/main/webapp/init.ftl
war/src/main/webapp/init.ftl
+9
-0
war/src/main/webapp/js/admin/latkeAdmin.js
war/src/main/webapp/js/admin/latkeAdmin.js
+621
-621
No files found.
core/solo-core.iml
View file @
40002d01
...
...
@@ -3,7 +3,6 @@
<component
name=
"NewModuleRootManager"
LANGUAGE_LEVEL=
"JDK_1_6"
inherit-compiler-output=
"false"
>
<output
url=
"file://$MODULE_DIR$/target/classes"
/>
<output-test
url=
"file://$MODULE_DIR$/target/test-classes"
/>
<exclude-output
/>
<content
url=
"file://$MODULE_DIR$"
>
<sourceFolder
url=
"file://$MODULE_DIR$/src/main/java"
isTestSource=
"false"
/>
<sourceFolder
url=
"file://$MODULE_DIR$/src/main/resources"
isTestSource=
"false"
/>
...
...
war/bae/solo-bae.iml
View file @
40002d01
...
...
@@ -16,7 +16,6 @@
<component
name=
"NewModuleRootManager"
LANGUAGE_LEVEL=
"JDK_1_6"
inherit-compiler-output=
"false"
>
<output
url=
"file://$MODULE_DIR$/target/classes"
/>
<output-test
url=
"file://$MODULE_DIR$/target/test-classes"
/>
<exclude-output
/>
<content
url=
"file://$MODULE_DIR$"
>
<excludeFolder
url=
"file://$MODULE_DIR$/target"
/>
</content>
...
...
war/gae/solo-gae.iml
View file @
40002d01
...
...
@@ -16,7 +16,6 @@
<component
name=
"NewModuleRootManager"
LANGUAGE_LEVEL=
"JDK_1_6"
inherit-compiler-output=
"false"
>
<output
url=
"file://$MODULE_DIR$/target/classes"
/>
<output-test
url=
"file://$MODULE_DIR$/target/test-classes"
/>
<exclude-output
/>
<content
url=
"file://$MODULE_DIR$"
>
<excludeFolder
url=
"file://$MODULE_DIR$/target"
/>
</content>
...
...
war/h2/solo-h2.iml
View file @
40002d01
...
...
@@ -16,7 +16,6 @@
<component
name=
"NewModuleRootManager"
LANGUAGE_LEVEL=
"JDK_1_6"
inherit-compiler-output=
"false"
>
<output
url=
"file://$MODULE_DIR$/target/classes"
/>
<output-test
url=
"file://$MODULE_DIR$/target/test-classes"
/>
<exclude-output
/>
<content
url=
"file://$MODULE_DIR$"
>
<excludeFolder
url=
"file://$MODULE_DIR$/target"
/>
</content>
...
...
war/mysql/solo-mysql.iml
View file @
40002d01
...
...
@@ -16,7 +16,6 @@
<component
name=
"NewModuleRootManager"
LANGUAGE_LEVEL=
"JDK_1_6"
inherit-compiler-output=
"false"
>
<output
url=
"file://$MODULE_DIR$/target/classes"
/>
<output-test
url=
"file://$MODULE_DIR$/target/test-classes"
/>
<exclude-output
/>
<content
url=
"file://$MODULE_DIR$"
>
<excludeFolder
url=
"file://$MODULE_DIR$/target"
/>
</content>
...
...
war/solo-war.iml
View file @
40002d01
<?xml version="1.0" encoding="UTF-8"?>
<module
org.jetbrains.idea.maven.project.MavenProjectsManager.isMavenModule=
"true"
type=
"JAVA_MODULE"
version=
"4"
>
<component
name=
"FacetManager"
>
<facet
type=
"web"
name=
"Web"
>
<configuration>
<descriptors>
<deploymentDescriptor
name=
"web.xml"
url=
"file://$MODULE_DIR$/src/main/webapp/WEB-INF/web.xml"
/>
</descriptors>
<webroots>
<root
url=
"file://$MODULE_DIR$/src/main/webapp"
relative=
"/"
/>
</webroots>
</configuration>
<facet
type=
"google-app-engine"
name=
"Google App Engine"
>
<configuration
/>
</facet>
</facet>
</component>
<component
name=
"NewModuleRootManager"
LANGUAGE_LEVEL=
"JDK_1_6"
inherit-compiler-output=
"false"
>
<output
url=
"file://$MODULE_DIR$/target/classes"
/>
<output-test
url=
"file://$MODULE_DIR$/target/test-classes"
/>
...
...
war/src/main/webapp/init.ftl
View file @
40002d01
...
...
@@ -165,6 +165,14 @@
"
display
"
:
"
block
"
,
"
opacity
"
:
1
});
$
(
window
).
unbind
().
keydown
(
function
(
e
){
if
(
e
.
keyCode
==
27
){
// esc
$
(
returnTo
);
$
(
window
).
unbind
();
}
else
if
(
e
.
keyCode
==
13
){
// enter
$
(
initSys
);
}
});
}
};
...
...
@@ -192,6 +200,7 @@
};
if
(
confirm
(
"
${confirmInitLabel}
"
))
{
$
(
window
).
unbind
();
$
(
"
#tip
"
).
html
(
"
<img src='${staticServePath}/images/loading.gif'/> loading...
"
)
$
.
ajax
({
url
:
"
${contextPath}/init
"
,
...
...
war/src/main/webapp/js/admin/latkeAdmin.js
View file @
40002d01
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment