annotate index.html @ 1591:bc550d00cb6d

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