b@1608
|
1 <!DOCTYPE html>
|
b@1608
|
2 <html lang="en">
|
nicholas@2268
|
3 <head>
|
b@1608
|
4 <meta charset="utf-8" />
|
nicholas@2268
|
5
|
nicholas@2268
|
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="" />
|
nicholas@2268
|
14
|
nicholas@2268
|
15 <!-- Load up the default core JS and CSS files-->
|
nicholas@2268
|
16 <link rel='stylesheet' type='text/css' href='css/core.css'>
|
nicholas@2268
|
17 <!-- Use jQuery hosted from Google CDN -->
|
nicholas@2268
|
18 <!--<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>-->
|
nicholas@2268
|
19 <script type="text/javascript" src="js/jquery-2.1.4.js"></script>
|
nicholas@2268
|
20 <script type="text/javascript" src='js/specification.js'></script>
|
nicholas@2268
|
21 <script type="text/javascript" src='js/core.js'></script>
|
nicholas@2268
|
22 <script type="text/javascript" src='js/loudness.js'></script>
|
nicholas@2268
|
23 <script type="text/javascript" src='js/xmllint.js'></script>
|
nicholas@2268
|
24 <script type="text/javascript" src='js/WAVE.js'></script>
|
nicholas@2268
|
25 <script type="text/javascript">
|
nicholas@2268
|
26 // 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@2268
|
27 if (window.location.search.length != 0)
|
nicholas@2268
|
28 {
|
nicholas@2268
|
29 var search = window.location.search.split('?')[1];
|
nicholas@2268
|
30 // Now split the requests into pairs
|
nicholas@2268
|
31 var searchQueries = search.split('&');
|
nicholas@2268
|
32 for (var i in searchQueries)
|
nicholas@2268
|
33 {
|
nicholas@2268
|
34 // Split each request into
|
nicholas@2268
|
35 searchQueries[i] = searchQueries[i].split('=');
|
nicholas@2268
|
36 if (searchQueries[i][0] == "url")
|
nicholas@2268
|
37 {
|
nicholas@2268
|
38 url = decodeURI(searchQueries[i][1]);
|
nicholas@2268
|
39 }
|
nicholas@2268
|
40 }
|
nicholas@2268
|
41 loadProjectSpec(url);
|
nicholas@2268
|
42 window.onbeforeunload = function() {
|
nicholas@2268
|
43 return "Please only leave this page once you have completed the tests. Are you sure you have completed all testing?";
|
nicholas@2268
|
44 };
|
nicholas@2268
|
45 }
|
nicholas@2268
|
46 </script>
|
b@1608
|
47 </head>
|
b@1608
|
48
|
b@1608
|
49 <body>
|
b@1608
|
50 <div id='topLevelBody'>
|
nicholas@2267
|
51 <h1>Web Audio Evaluation Tool</h1>
|
nicholas@2267
|
52 <h2>Start menu </h2>
|
nicholas@2267
|
53 <ul>
|
nicholas@2267
|
54 <li><a href="index.html?url=example_eval/project.xml" target="_blank">APE interface test example</a></li>
|
nicholas@2267
|
55 <li><a href="index.html?url=example_eval/mushra_example.xml" target="_blank">MUSHRA interface test example</a></li>
|
nicholas@2267
|
56 <li><a href="index.html?url=example_eval/AB_example.xml" target="_blank">AB interface test example</a></li>
|
nicholas@2267
|
57 <li><a href="index.html?url=example_eval/horizontal_example.xml" target="_blank">Horizontal interface test example</a></li>
|
nicholas@2267
|
58 <li><a href="index.html?url=example_eval/radio_example.xml" target="_blank">Radio interface test example</a></li>
|
nicholas@2267
|
59 <li><a href="test_create/test_create.html" target="_blank">Test creator</a></li>
|
nicholas@2267
|
60 <li><a href="analyse.html" target="_blank">Analysis and diagnostics of results</a></li>
|
nicholas@2267
|
61 </ul>
|
nicholas@2267
|
62 <br>
|
nicholas@2267
|
63 <ul>
|
nicholas@2267
|
64 <li><a href="LICENSE.txt" target="_blank">License</a></li>
|
nicholas@2267
|
65 <li><a href="CITING.txt" target="_blank">Citing</a></li>
|
nicholas@2267
|
66 <li><a href="docs/Instructions/Instructions.pdf" target="_blank">Instructions</a></li>
|
nicholas@2267
|
67 </ul>
|
b@1608
|
68 </div>
|
nicholas@2268
|
69 <div id="popupHolder" class="popupHolder" style="visibility: hidden; z-index: -1">
|
nicholas@2268
|
70 <div id="popupContent">
|
nicholas@2268
|
71 <div id="popupTitleHolder" style="text-align: center">
|
nicholas@2268
|
72 <span id="popupTitle"></span>
|
nicholas@2268
|
73 </div>
|
nicholas@2268
|
74 <div id="popupResponse"></div>
|
nicholas@2268
|
75 </div>
|
nicholas@2268
|
76 <button id="popup-proceed" class="popupButton">Next</button>
|
nicholas@2268
|
77 <button id="popup-previous" class="popupButton">Back</button>
|
nicholas@2268
|
78 </div>
|
nicholas@2268
|
79 <div class="testHalt" style="visibility: hidden; z-index: -2"></div>
|
b@1608
|
80 </body>
|
b@1608
|
81 </html>
|