diff options
Diffstat (limited to 'war')
-rw-r--r-- | war/WEB-INF/web.xml | 13 | ||||
-rw-r--r-- | war/esieequest.css | 53 | ||||
-rw-r--r-- | war/esieequest.html | 37 |
3 files changed, 103 insertions, 0 deletions
diff --git a/war/WEB-INF/web.xml b/war/WEB-INF/web.xml new file mode 100644 index 0000000..8c2676a --- /dev/null +++ b/war/WEB-INF/web.xml | |||
@@ -0,0 +1,13 @@ | |||
1 | <?xml version="1.0" encoding="UTF-8"?> | ||
2 | <web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
3 | xsi:schemaLocation="http://java.sun.com/xml/ns/javaee | ||
4 | http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" | ||
5 | version="2.5" | ||
6 | xmlns="http://java.sun.com/xml/ns/javaee"> | ||
7 | |||
8 | <!-- Default page to serve --> | ||
9 | <welcome-file-list> | ||
10 | <welcome-file>esieequest.html</welcome-file> | ||
11 | </welcome-file-list> | ||
12 | |||
13 | </web-app> | ||
diff --git a/war/esieequest.css b/war/esieequest.css new file mode 100644 index 0000000..043fd86 --- /dev/null +++ b/war/esieequest.css | |||
@@ -0,0 +1,53 @@ | |||
1 | /** Add css rules here for your application. */ | ||
2 | |||
3 | body { | ||
4 | -webkit-touch-callout: none; | ||
5 | -webkit-user-select: none; | ||
6 | -khtml-user-select: none; | ||
7 | -moz-user-select: none; | ||
8 | -ms-user-select: none; | ||
9 | user-select: none; | ||
10 | } | ||
11 | |||
12 | button { | ||
13 | border: 1px solid #ccc !important; | ||
14 | } | ||
15 | |||
16 | .toolbar div.gwt-Label { | ||
17 | margin-top: 0.35em; | ||
18 | } | ||
19 | |||
20 | .toolbar button { | ||
21 | width: 100%; | ||
22 | height: 100%; | ||
23 | } | ||
24 | |||
25 | .controls button { | ||
26 | width: 3.5em; | ||
27 | height: 3.5em; | ||
28 | } | ||
29 | |||
30 | .gwt-Frame { | ||
31 | border: none !important; | ||
32 | } | ||
33 | |||
34 | .console { | ||
35 | margin-left: 4px; | ||
36 | margin-right: 1px; | ||
37 | margin-top: 3px; | ||
38 | margin-bottom: 2px; | ||
39 | } | ||
40 | |||
41 | .console .gwt-TabLayoutPanelContentContainer { | ||
42 | margin-bottom: 2px; | ||
43 | border: 1px solid #ccc !important; | ||
44 | } | ||
45 | |||
46 | .console .gwt-TabLayoutPanelContent { | ||
47 | border: none !important; | ||
48 | } | ||
49 | |||
50 | .gwt-TextBox { | ||
51 | width: calc(100% - 5px); | ||
52 | border: 1px solid #ccc; | ||
53 | } | ||
diff --git a/war/esieequest.html b/war/esieequest.html new file mode 100644 index 0000000..f96990d --- /dev/null +++ b/war/esieequest.html | |||
@@ -0,0 +1,37 @@ | |||
1 | <!doctype html> | ||
2 | <html> | ||
3 | <head> | ||
4 | <meta http-equiv="content-type" content="text/html; charset=UTF-8"> | ||
5 | |||
6 | <link type="text/css" rel="stylesheet" href="esieequest.css"> | ||
7 | |||
8 | <title>ESIEEquest Web View</title> | ||
9 | |||
10 | <!-- --> | ||
11 | <!-- This script loads your compiled module. --> | ||
12 | <!-- If you add any GWT meta tags, they must --> | ||
13 | <!-- be added before this line. --> | ||
14 | <!-- --> | ||
15 | <script type="text/javascript" src="esieequest/esieequest.nocache.js"></script> | ||
16 | </head> | ||
17 | |||
18 | <!-- --> | ||
19 | <!-- The body can have arbitrary html, or --> | ||
20 | <!-- you can leave the body empty if you want --> | ||
21 | <!-- to create a completely dynamic UI. --> | ||
22 | <!-- --> | ||
23 | <body> | ||
24 | |||
25 | <!-- OPTIONAL: include this if you want history support --> | ||
26 | <iframe src="javascript:''" id="__gwt_historyFrame" tabIndex='-1' style="position:absolute;width:0;height:0;border:0"></iframe> | ||
27 | |||
28 | <!-- RECOMMENDED if your web app will not function without JavaScript enabled --> | ||
29 | <noscript> | ||
30 | <div style="width: 22em; position: absolute; left: 50%; margin-left: -11em; color: red; background-color: white; border: 1px solid red; padding: 4px; font-family: sans-serif"> | ||
31 | Your web browser must have JavaScript enabled | ||
32 | in order for this application to display correctly. | ||
33 | </div> | ||
34 | </noscript> | ||
35 | |||
36 | </body> | ||
37 | </html> | ||