annotate index.html @ 964:9c09cb530ec1

Major Update. All new state machine to track the session state and hold session data. Will enable new interfaces to be built on top and have the same common structures.
author Nicholas Jillings <nicholas.jillings@eecs.qmul.ac.uk>
date Wed, 27 May 2015 16:45:48 +0100
parents 55bf2500f278
children 9e65514f45c9
rev   line source
BrechtDeMan@938 1 <!DOCTYPE html>
BrechtDeMan@938 2 <html lang="en">
BrechtDeMan@938 3 <head>
BrechtDeMan@938 4 <meta charset="utf-8" />
BrechtDeMan@938 5
BrechtDeMan@938 6
BrechtDeMan@938 7 <!-- Always force latest IE rendering engine (even in intranet) & Chrome Frame
BrechtDeMan@938 8 Remove this if you use the .htaccess -->
BrechtDeMan@938 9 <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
BrechtDeMan@938 10
BrechtDeMan@938 11 <title>apeTool</title>
BrechtDeMan@938 12 <meta name="description" content="" />
BrechtDeMan@938 13 <meta name="author" content="" />
BrechtDeMan@938 14
BrechtDeMan@938 15 <!-- Load up the default core JS and CSS files-->
BrechtDeMan@938 16 <link rel='stylesheet' type='text/css' href='graphics.css'>
BrechtDeMan@938 17 <link rel='stylesheet' type='text/css' href='structure.css'>
BrechtDeMan@938 18 <!-- Use jQuery hosted from Google CDN -->
nicholas@941 19 <!--<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>-->
nicholas@941 20 <script src="jquery-2.1.4.js"></script>
BrechtDeMan@938 21 <script src='core.js'></script>
BrechtDeMan@938 22 <script type="text/javascript">
BrechtDeMan@938 23 window.onbeforeunload = function() {
BrechtDeMan@938 24 return "Please only leave this page once you have completed the tests. Are you sure you have completed all testing?";
BrechtDeMan@938 25 };
BrechtDeMan@938 26 </script>
BrechtDeMan@938 27 <!-- Uncomment the following script for automatic loading of projects -->
BrechtDeMan@938 28 <script>
nicholas@951 29 url = 'example_eval/project.xml'; //Project XML document location
BrechtDeMan@938 30 loadProjectSpec(url);
BrechtDeMan@938 31 </script>
BrechtDeMan@938 32
BrechtDeMan@938 33 </head>
BrechtDeMan@938 34
BrechtDeMan@938 35 <body>
BrechtDeMan@938 36 <!-- Load up the default page interface allowing for project setting loads, even if hard-coded-->
BrechtDeMan@938 37 <!-- Actual test interface design should be contained in the .js for ease of dynamic content-->
BrechtDeMan@938 38 <div id='topLevelBody'>
BrechtDeMan@938 39 <p>HTML5 APE Tool</p>
BrechtDeMan@938 40 </div>
BrechtDeMan@938 41 </body>
BrechtDeMan@938 42 </html>