annotate index.html @ 1484:fdf8a9e9fbe6

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