annotate apeTool.html @ 1710:4398cc6759f6

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