annotate index.html @ 920:d897f129ad4e

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