aboutsummaryrefslogtreecommitdiff
path: root/website
diff options
context:
space:
mode:
authorPacien TRAN-GIRARD2014-03-03 22:05:54 +0000
committerPacien TRAN-GIRARD2014-03-03 22:05:54 +0000
commitdd804827200d247ac3a2f9f997feb611239b824b (patch)
tree29400f770c53abdc1cc04024ed6a2e064d66c7c7 /website
parentc5d0945eb63c0a7537ba85ba088f33639f703520 (diff)
parent34352276297d2b04627d19807e3a2be313b4bf10 (diff)
downloadesieequest-dd804827200d247ac3a2f9f997feb611239b824b.tar.gz
Merge branch 'gwt' into 'master'
Gwt
Diffstat (limited to 'website')
-rw-r--r--website/assets/css/style.css9
-rw-r--r--website/assets/js/deployJava.js1305
-rw-r--r--website/assets/js/script.js46
-rw-r--r--website/index.html12
4 files changed, 10 insertions, 1362 deletions
diff --git a/website/assets/css/style.css b/website/assets/css/style.css
index d3f4f5a..f69a263 100644
--- a/website/assets/css/style.css
+++ b/website/assets/css/style.css
@@ -59,16 +59,14 @@ ul .fa {
59} 59}
60 60
61.overbox { 61.overbox {
62 /*display: none;*/
63 margin-left: -100%; 62 margin-left: -100%;
64} 63}
65 64
66.overbox:target { 65.overbox:target {
67 /*display: block;*/
68 margin-left: 0; 66 margin-left: 0;
69} 67}
70 68
71#play > * { 69#game-frame {
72 margin-top: 120px; 70 margin-top: 120px;
73 margin-left: 90px; 71 margin-left: 90px;
74 width: calc(100% - 180px); 72 width: calc(100% - 180px);
@@ -78,6 +76,9 @@ ul .fa {
78#map-frame { 76#map-frame {
79 width: 100%; 77 width: 100%;
80 height: 100%; 78 height: 100%;
79}
80
81iframe {
81 border: none; 82 border: none;
82 overflow: hidden; 83 overflow: hidden;
83} \ No newline at end of file 84}
diff --git a/website/assets/js/deployJava.js b/website/assets/js/deployJava.js
deleted file mode 100644
index 879df1c..0000000
--- a/website/assets/js/deployJava.js
+++ /dev/null
@@ -1,1305 +0,0 @@
1/*
2 * Copyright (c) 2006, 2012, Oracle and/or its affiliates. All rights reserved.
3 * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 *
9 * - Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 *
12 * - Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 *
16 * - Neither the name of Oracle nor the names of its
17 * contributors may be used to endorse or promote products derived
18 * from this software without specific prior written permission.
19 *
20 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
21 * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
22 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
23 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
24 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
25 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
26 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
27 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
28 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
29 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
30 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31 */
32
33/*
34 * deployJava.js
35 *
36 * This file is part of the Deployment Toolkit. It provides functions for web
37 * pages to detect the presence of a JRE, install the latest JRE, and easily run
38 * applets or Web Start programs. More Information on usage of the
39 * Deployment Toolkit can be found in the Deployment Guide at:
40 * http://docs.oracle.com/javase/6/docs/technotes/guides/jweb/index.html
41 *
42 * The "live" copy of this file may be found at :
43 * http://java.com/js/deployJava.js.
44 * For web pages provisioned using https, you may want to access the copy at:
45 * https://java.com/js/deployJava.js.
46 *
47 * You are encouraged to link directly to the live copies.
48 * The above files are stripped of comments and whitespace for performance,
49 * You can access this file w/o the whitespace and comments removed at:
50 * http://java.com/js/deployJava.txt.
51 *
52 */
53
54var deployJava = function() {
55 /** HTML attribute filter implementation */
56 var hattrs = {
57 core: [ 'id', 'class', 'title', 'style' ],
58 i18n: [ 'lang', 'dir' ],
59 events: [ 'onclick', 'ondblclick', 'onmousedown', 'onmouseup',
60 'onmouseover', 'onmousemove', 'onmouseout', 'onkeypress',
61 'onkeydown', 'onkeyup' ],
62 applet: [ 'codebase', 'code', 'name', 'archive', 'object',
63 'width', 'height', 'alt', 'align', 'hspace', 'vspace' ],
64 object: [ 'classid', 'codebase', 'codetype', 'data', 'type',
65 'archive', 'declare', 'standby', 'height', 'width', 'usemap',
66 'name', 'tabindex', 'align', 'border', 'hspace', 'vspace' ]
67 };
68
69 var object_valid_attrs = hattrs.object.concat(hattrs.core, hattrs.i18n,
70 hattrs.events);
71 var applet_valid_attrs = hattrs.applet.concat(hattrs.core);
72
73 // generic log function, use console.log unless it isn't available
74 // then revert to alert()
75 function log(message) {
76 if ( ! rv.debug ) {return};
77
78 if (console.log) {
79 console.log(message);
80 } else {
81 alert(message);
82 }
83 }
84
85 //checks where given version string matches query
86 //
87 //NB: assume format is correct. Can add format check later if needed
88 // from dtjava.js
89 function versionCheckEx(query, version) {
90 if (query == null || query.length == 0) return true;
91
92 var c = query.charAt(query.length - 1);
93
94 //if it is not explicit pattern but does not have update version then need to append *
95 if (c != '+' && c != '*' && (query.indexOf('_') != -1 && c != '_')) {
96 query = query + "*";
97 c = '*';
98 }
99
100 query = query.substring(0, query.length - 1);
101 //if query ends with ".", "_" then we want to strip it to allow match of "1.6.*" to shorter form such as "1.6"
102 //TODO: add support for match of "1.7.0*" to "1.7"?
103 if (query.length > 0) {
104 var z = query.charAt(query.length - 1);
105 if (z == '.' || z == '_') {
106 query = query.substring(0, query.length - 1);
107 }
108 }
109 if (c == '*') {
110 //it is match if version starts from it
111 return (version.indexOf(query) == 0);
112 } else if (c == '+') {
113 //match if query string is lexicographically smaller
114 return query <= version;
115 }
116 return false;
117 }
118
119 function getWebStartLaunchIconURL() {
120 var imageUrl = '//java.com/js/webstart.png';
121 try {
122 // for http/https; use protocol less url; use http for all other protocol
123 return document.location.protocol.indexOf('http') != -1 ?
124 imageUrl : 'http:' + imageUrl;
125 } catch (err) {
126 return 'http:' + imageUrl;
127 }
128 }
129
130 // GetJava page
131 function constructGetJavaURL(query) {
132
133 var getJavaURL = 'http://java.com/dt-redirect';
134
135 if (query == null || query.length == 0) return getJavaURL;
136 if(query.charAt(0) == '&')
137 {
138 query = query.substring(1, query.length);
139 }
140 return getJavaURL + '?'+ query;
141 }
142
143 function arHas(ar, attr) {
144 var len = ar.length;
145 for (var i = 0; i < len; i++) {
146 if (ar[i] === attr) return true;
147 }
148 return false;
149 }
150
151 function isValidAppletAttr(attr) {
152 return arHas(applet_valid_attrs, attr.toLowerCase());
153 }
154
155 function isValidObjectAttr(attr) {
156 return arHas(object_valid_attrs, attr.toLowerCase());
157 }
158
159 /**
160 * returns true if we can enable DT plugin auto-install without chance of
161 * deadlock on cert mismatch dialog
162 *
163 * requestedJREVersion param is optional - if null, it will be
164 * treated as installing any JRE version
165 *
166 * DT plugin for 6uX only knows about JRE installer signed by SUN cert.
167 * If it encounter Oracle signed JRE installer, it will have chance of
168 * deadlock when running with IE. This function is to guard against this.
169 */
170 function enableWithoutCertMisMatchWorkaround(requestedJREVersion) {
171
172 // Non-IE browser are okay
173 if ('MSIE' != deployJava.browserName) return true;
174
175 // if DT plugin is 10.0.0 or above, return true
176 // This is because they are aware of both SUN and Oracle signature and
177 // will not show cert mismatch dialog that might cause deadlock
178 if (deployJava.compareVersionToPattern(deployJava.getPlugin().version,
179 ["10", "0", "0"], false, true)) {
180 return true;
181 }
182
183 // If we got there, DT plugin is 6uX
184
185 if (requestedJREVersion == null) {
186 // if requestedJREVersion is not defined - it means ANY.
187 // can not guarantee it is safe to install ANY version because 6uX