annotate index.html @ 935:b81bedba3e13

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