annotate index.html @ 2092:f9523811cfb3

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