annotate index.html @ 1590:abdbbe9a72c4

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