annotate index.html @ 934:b93fb516ea6f

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