annotate index.html @ 929:6c3cc1e17311

Score plotting: plot of individual scores and box plot (with optional overlay of selected individual ratings). Uses CSV files as produced by 'score_boxplot.py'.
author Brecht De Man <BrechtDeMan@users.noreply.github.com>
date Sun, 31 May 2015 18:03:13 +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>