annotate index.html @ 1099:0a15fa67bda1

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