annotate index.html @ 921:533d51508e93

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