annotate index.html @ 1981:17c149055d40
Paper: some changes and work delegation; apeTool.html changed into index.html
author |
Brecht De Man <b.deman@qmul.ac.uk> |
date |
Thu, 23 Apr 2015 16:31:17 +0100 |
parents |
|
children |
e4436132dbd9 |
rev |
line source |
b@1981
|
1 <!DOCTYPE html>
|
b@1981
|
2 <html lang="en">
|
b@1981
|
3 <head>
|
b@1981
|
4 <meta charset="utf-8" />
|
b@1981
|
5
|
b@1981
|
6
|
b@1981
|
7 <!-- Always force latest IE rendering engine (even in intranet) & Chrome Frame
|
b@1981
|
8 Remove this if you use the .htaccess -->
|
b@1981
|
9 <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
|
b@1981
|
10
|
b@1981
|
11 <title>apeTool</title>
|
b@1981
|
12 <meta name="description" content="" />
|
b@1981
|
13 <meta name="author" content="" />
|
b@1981
|
14
|
b@1981
|
15 <!-- Load up the default core JS and CSS files-->
|
b@1981
|
16 <link rel='stylesheet' type='text/css' href='graphics.css'>
|
b@1981
|
17 <link rel='stylesheet' type='text/css' href='structure.css'>
|
b@1981
|
18 <!-- Use jQuery hosted from Google CDN -->
|
b@1981
|
19 <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
|
b@1981
|
20 <script src='core.js'></script>
|
b@1981
|
21 <script type="text/javascript">
|
b@1981
|
22 window.onbeforeunload = function() {
|
b@1981
|
23 return "Please only leave this page once you have completed the tests. Are you sure you have completed all testing?";
|
b@1981
|
24 };
|
b@1981
|
25 </script>
|
b@1981
|
26 <!-- Uncomment the following script for automatic loading of projects -->
|
b@1981
|
27 <script>
|
b@1981
|
28 url = 'example_eval/project.xml'; //Project XML document location
|
b@1981
|
29 loadProjectSpec(url);
|
b@1981
|
30 </script>
|
b@1981
|
31
|
b@1981
|
32 </head>
|
b@1981
|
33
|
b@1981
|
34 <body>
|
b@1981
|
35 <!-- Load up the default page interface allowing for project setting loads, even if hard-coded-->
|
b@1981
|
36 <!-- Actual test interface design should be contained in the .js for ease of dynamic content-->
|
b@1981
|
37 <div id='topLevelBody'>
|
b@1981
|
38 <p>HTML5 APE Tool</p>
|
b@1981
|
39 </div>
|
b@1981
|
40 </body>
|
b@1981
|
41 </html>
|