annotate index.html @ 871:7aa8862850ef

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