annotate index.html @ 886:a2ab04daf4c9

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