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