annotate apeTool.html @ 713:55e8ab191227

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