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