annotate index.html @ 1115:ddc5a639179a

Updated author list for WAC 2016
author Nicholas Jillings <n.g.r.jillings@se14.qmul.ac.uk>
date Sun, 21 Feb 2016 11:15:52 +0000
parents
children a4ad9e55b5b8
rev   line source
n@1115 1 <!DOCTYPE html>
n@1115 2 <html lang="en">
n@1115 3 <head>
n@1115 4 <meta charset="utf-8" />
n@1115 5
n@1115 6
n@1115 7 <!-- Always force latest IE rendering engine (even in intranet) & Chrome Frame
n@1115 8 Remove this if you use the .htaccess -->
n@1115 9 <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
n@1115 10
n@1115 11 <title>Web Audio Evaluation Tool</title>
n@1115 12 <meta name="description" content="" />
n@1115 13 <meta name="author" content="" />
n@1115 14
n@1115 15 <!-- Load up the default core JS and CSS files-->
n@1115 16 <link rel='stylesheet' type='text/css' href='core.css'>
n@1115 17 <!-- Use jQuery hosted from Google CDN -->
n@1115 18 <!--<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>-->
n@1115 19 <script src="jquery-2.1.4.js"></script>
n@1115 20 <script src='core.js'></script>
n@1115 21 <script src='loudness.js'></script>
n@1115 22 <script src='xmllint.js'></script>
n@1115 23 <script src='WAVE.js'></script>
n@1115 24 <script type="text/javascript">
n@1115 25 // SEARCH QUERY: By using the GET Request option ?url=loca/path/to/project.xml in the URL bar, you can load a project quickly
n@1115 26 if (window.location.search.length != 0)
n@1115 27 {
n@1115 28 var search = window.location.search.split('?')[1];
n@1115 29 // Now split the requests into pairs
n@1115 30 var searchQueries = search.split('&');
n@1115 31 for (var i in searchQueries)
n@1115 32 {
n@1115 33 // Split each request into
n@1115 34 searchQueries[i] = searchQueries[i].split('=');
n@1115 35 if (searchQueries[i][0] == "url")
n@1115 36 {
n@1115 37 url = searchQueries[i][1];
n@1115 38 }
n@1115 39 }
n@1115 40 loadProjectSpec(url);
n@1115 41 window.onbeforeunload = function() {
n@1115 42 return "Please only leave this page once you have completed the tests. Are you sure you have completed all testing?";
n@1115 43 };
n@1115 44 }
n@1115 45 </script>
n@1115 46 </head>
n@1115 47
n@1115 48 <body>
n@1115 49 <!-- Load up the default page interface allowing for project setting loads, even if hard-coded-->
n@1115 50 <!-- Actual test interface design should be contained in the .js for ease of dynamic content-->
n@1115 51 <div id='topLevelBody'>
n@1115 52 <span>Web Audio Evaluation Toolbox</span>
n@1115 53 </div>
n@1115 54 <div id="popupHolder" class="popupHolder" style="visibility: hidden; z-index: -1">
n@1115 55 <div id="popupContent">
n@1115 56 <div id="popupTitleHolder" style="text-align: center">
n@1115 57 <span id="popupTitle"></span>
n@1115 58 </div>
n@1115 59 <div id="popupResponse"></div>
n@1115 60 </div>
n@1115 61 <button id="popup-proceed" class="popupButton">Next</button>
n@1115 62 <button id="popup-previous" class="popupButton">Back</button>
n@1115 63 </div>
n@1115 64 <div class="testHalt" style="visibility: hidden; z-index: -2"></div>
n@1115 65 </body>
n@1115 66 </html>