annotate index.html @ 472:23f77550b842 Dev_main

Added new horizontal slider class. Launched using ABC test interface.
author Nicholas Jillings <n.g.r.jillings@se14.qmul.ac.uk>
date Wed, 13 Jan 2016 12:27:38 +0000
parents f6c9f9e5400e
children 6281b02dcb58
rev   line source
b@75 1 <!DOCTYPE html>
b@75 2 <html lang="en">
b@75 3 <head>
b@75 4 <meta charset="utf-8" />
b@75 5
b@75 6
b@75 7 <!-- Always force latest IE rendering engine (even in intranet) & Chrome Frame
b@75 8 Remove this if you use the .htaccess -->
b@75 9 <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
b@75 10
b@225 11 <title>Web Audio Evaluation Tool</title>
b@75 12 <meta name="description" content="" />
b@75 13 <meta name="author" content="" />
b@75 14
b@75 15 <!-- Load up the default core JS and CSS files-->
n@152 16 <link rel='stylesheet' type='text/css' href='core.css'>
b@75 17 <!-- Use jQuery hosted from Google CDN -->
nicholas@103 18 <!--<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>-->
nicholas@103 19 <script src="jquery-2.1.4.js"></script>
b@75 20 <script src='core.js'></script>
n@407 21 <script src='loudness.js'></script>
n@447 22 <script src='xmllint.js'></script>
b@75 23 <script type="text/javascript">
nicholas@420 24 // SEARCH QUERY: By using the GET Request option ?url=loca/path/to/project.xml in the URL bar, you can load a project quickly
nicholas@420 25 if (window.location.search.length != 0)
nicholas@420 26 {
nicholas@420 27 var search = window.location.search.split('?')[1];
nicholas@420 28 // Now split the requests into pairs
nicholas@420 29 var searchQueries = search.split('&');
nicholas@420 30 for (var i in searchQueries)
nicholas@420 31 {
nicholas@420 32 // Split each request into
nicholas@420 33 searchQueries[i] = searchQueries[i].split('=');
nicholas@420 34 if (searchQueries[i][0] == "url")
nicholas@420 35 {
nicholas@420 36 url = searchQueries[i][1];
nicholas@420 37 }
nicholas@420 38 }
n@431 39 loadProjectSpec(url);
n@432 40 window.onbeforeunload = function() {
n@432 41 return "Please only leave this page once you have completed the tests. Are you sure you have completed all testing?";
n@432 42 };
nicholas@420 43 }
b@75 44 </script>
b@75 45 </head>
b@75 46
b@75 47 <body>
b@75 48 <!-- Load up the default page interface allowing for project setting loads, even if hard-coded-->
b@75 49 <!-- Actual test interface design should be contained in the .js for ease of dynamic content-->
b@75 50 <div id='topLevelBody'>
b@429 51 <h1>Web Audio Evaluation Tool</h1>
b@429 52 <h2>Start menu </h2>
b@429 53 <ul>
b@429 54 <li><a href="index.html?url=example_eval/project.xml" target="_blank">APE interface test example</a></li>
b@429 55 <li><a href="index.html?url=example_eval/mushra_example.xml" target="_blank">MUSHRA interface test example</a></li>
n@459 56 <li><a href="index.html?url=example_eval/AB_example.xml" target="_blank">AB interface test example</a></li>
b@429 57 <li><a href="test_create/test_create.html" target="_blank">Test creator</a></li>
b@429 58 <li><a href="analyse.html" target="_blank">Analysis and diagnostics of results</a></li>
b@429 59 </ul>
b@429 60
b@429 61 <br>
b@429 62
b@429 63 <ul>
b@429 64 <li><a href="LICENSE.txt" target="_blank">License</a></li>
b@429 65 <li><a href="CITING.txt" target="_blank">Citing</a></li>
b@429 66 <li><a href="docs/Instructions/Instructions.pdf" target="_blank">Instructions</a></li>
b@429 67 </ul>
b@429 68
b@429 69
b@75 70 </div>
b@75 71 </body>
b@75 72 </html>