annotate index.html @ 1605:a22cf46a9141

Added 'scripts' folder for auxiliary pre-/post-processing scripts. Made script to extract comments from all result files. Some issues/TODOs in file.
author Brecht De Man <b.deman@qmul.ac.uk>
date Wed, 27 May 2015 12:40:37 +0100
parents
children 759c2ace3c65
rev   line source
b@1605 1 <!DOCTYPE html>
b@1605 2 <html lang="en">
b@1605 3 <head>
b@1605 4 <meta charset="utf-8" />
b@1605 5
b@1605 6
b@1605 7 <!-- Always force latest IE rendering engine (even in intranet) & Chrome Frame
b@1605 8 Remove this if you use the .htaccess -->
b@1605 9 <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
b@1605 10
b@1605 11 <title>apeTool</title>
b@1605 12 <meta name="description" content="" />
b@1605 13 <meta name="author" content="" />
b@1605 14
b@1605 15 <!-- Load up the default core JS and CSS files-->
b@1605 16 <link rel='stylesheet' type='text/css' href='graphics.css'>
b@1605 17 <link rel='stylesheet' type='text/css' href='structure.css'>
b@1605 18 <!-- Use jQuery hosted from Google CDN -->
b@1605 19 <!--<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>-->
b@1605 20 <script src="jquery-2.1.4.js"></script>
b@1605 21 <script src='core.js'></script>
b@1605 22 <script type="text/javascript">
b@1605 23 window.onbeforeunload = function() {
b@1605 24 return "Please only leave this page once you have completed the tests. Are you sure you have completed all testing?";
b@1605 25 };
b@1605 26 </script>
b@1605 27 <!-- Uncomment the following script for automatic loading of projects -->
b@1605 28 <script>
b@1605 29 url = 'example_eval/project.xml'; //Project XML document location
b@1605 30 loadProjectSpec(url);
b@1605 31 </script>
b@1605 32
b@1605 33 </head>
b@1605 34
b@1605 35 <body>
b@1605 36 <!-- Load up the default page interface allowing for project setting loads, even if hard-coded-->
b@1605 37 <!-- Actual test interface design should be contained in the .js for ease of dynamic content-->
b@1605 38 <div id='topLevelBody'>
b@1605 39 <p>HTML5 APE Tool</p>
b@1605 40 </div>
b@1605 41 </body>
b@1605 42 </html>