annotate index.html @ 873:11e6243fafa9

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