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