annotate apeTool.html @ 1673:faa111de3b33

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