annotate apeTool.html @ 655:640a8d827e48

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