annotate index.html @ 1714:a27442bd8dec

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