annotate index.html @ 1597:d8d018172b7a

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