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