annotate index.html @ 928:ba58cf8d0dbc

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