Mercurial > hg > webaudioevaluationtool
view test.html @ 2376:c41caaa96633
Some fixes for #90. Also a failsafe loop if the server never responds with meaningul information from saves (for instance, running only on apache or basic http servers). More changes to pythonServer for python 3.5. Please check if still valid on 2.7
author | Nicholas Jillings <nicholas.jillings@mail.bcu.ac.uk> |
---|---|
date | Thu, 19 May 2016 10:44:19 +0100 |
parents | 6897339ac651 |
children | 2ddc68898dff |
line wrap: on
line source
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8" /> <!-- Always force latest IE rendering engine (even in intranet) & Chrome Frame Remove this if you use the .htaccess --> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" /> <title>Web Audio Evaluation Tool</title> <meta name="description" content="" /> <meta name="author" content="" /> <!-- Load up the default core JS and CSS files--> <link rel='stylesheet' type='text/css' href='css/core.css'> <!-- Use jQuery hosted from Google CDN --> <!--<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>--> <script type="text/javascript" src="js/jquery-2.1.4.js"></script> <script type="text/javascript" src='js/specification.js'></script> <script type="text/javascript" src='js/core.js'></script> <script type="text/javascript" src='js/loudness.js'></script> <script type="text/javascript" src='js/xmllint.js'></script> <script type="text/javascript" src='js/WAVE.js'></script> </head> <body> <!-- Load up the default page interface allowing for project setting loads, even if hard-coded--> <!-- Actual test interface design should be contained in the .js for ease of dynamic content--> <div id='topLevelBody'> <span>Web Audio Evaluation Toolbox</span> </div> <div id="popupHolder" class="popupHolder" style="visibility: hidden"> <div id="popupContent"> <div id="popupTitleHolder"> <span id="popupTitle"></span> </div> <div id="popupResponse"></div> </div> <button id="popup-proceed" class="popupButton">Next</button> <button id="popup-previous" class="popupButton">Back</button> </div> <div class="testHalt" style="visibility: hidden"></div> </body> </html>