annotate index.html @ 937:b5262d076f0b

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