annotate index.html @ 843:7dc27e13f263

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