comparison index.html @ 429:9bf8ecbcdc8a Dev_main

Index page now links to example APE project, example MUSHRA project, test creator, analysis page, citing info, GNU license, and instructions. Instructions and example project contain info on checkboxes.
author Brecht De Man <b.deman@qmul.ac.uk>
date Fri, 18 Dec 2015 18:26:46 +0000
parents cbd4d1ea429a
children 4e5a5a10525f
comparison
equal deleted inserted replaced
428:a066b8bc556f 429:9bf8ecbcdc8a
21 <script src='loudness.js'></script> 21 <script src='loudness.js'></script>
22 <script type="text/javascript"> 22 <script type="text/javascript">
23 window.onbeforeunload = function() { 23 window.onbeforeunload = function() {
24 return "Please only leave this page once you have completed the tests. Are you sure you have completed all testing?"; 24 return "Please only leave this page once you have completed the tests. Are you sure you have completed all testing?";
25 }; 25 };
26 26
27 var url = 'example_eval/project.xml';
28 // SEARCH QUERY: By using the GET Request option ?url=loca/path/to/project.xml in the URL bar, you can load a project quickly 27 // SEARCH QUERY: By using the GET Request option ?url=loca/path/to/project.xml in the URL bar, you can load a project quickly
29 if (window.location.search.length != 0) 28 if (window.location.search.length != 0)
30 { 29 {
31 var search = window.location.search.split('?')[1]; 30 var search = window.location.search.split('?')[1];
32 // Now split the requests into pairs 31 // Now split the requests into pairs
47 46
48 <body> 47 <body>
49 <!-- Load up the default page interface allowing for project setting loads, even if hard-coded--> 48 <!-- Load up the default page interface allowing for project setting loads, even if hard-coded-->
50 <!-- Actual test interface design should be contained in the .js for ease of dynamic content--> 49 <!-- Actual test interface design should be contained in the .js for ease of dynamic content-->
51 <div id='topLevelBody'> 50 <div id='topLevelBody'>
52 <p>HTML5 APE Tool</p> 51 <h1>Web Audio Evaluation Tool</h1>
52 <h2>Start menu </h2>
53 <ul>
54 <li><a href="index.html?url=example_eval/project.xml" target="_blank">APE interface test example</a></li>
55 <li><a href="index.html?url=example_eval/mushra_example.xml" target="_blank">MUSHRA interface test example</a></li>
56 <li><a href="test_create/test_create.html" target="_blank">Test creator</a></li>
57 <li><a href="analyse.html" target="_blank">Analysis and diagnostics of results</a></li>
58 </ul>
59
60 <br>
61
62 <ul>
63 <li><a href="LICENSE.txt" target="_blank">License</a></li>
64 <li><a href="CITING.txt" target="_blank">Citing</a></li>
65 <li><a href="docs/Instructions/Instructions.pdf" target="_blank">Instructions</a></li>
66 </ul>
67
68
53 </div> 69 </div>
54 </body> 70 </body>
55 </html> 71 </html>