annotate index.html @ 813:f452455b5977

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