| 1 | <html> |
|---|
| 2 | <head> |
|---|
| 3 | <title>Electronic Instructor Notebook v0.1</title> |
|---|
| 4 | <meta name="apple-mobile-web-app-capable" content="yes"> |
|---|
| 5 | <meta name="viewport" content="width=device-width; initial-scale=1.0; user-scalable=0;"> |
|---|
| 6 | <link rel="apple-touch-icon" href="icon.png"> |
|---|
| 7 | <link rel="apple-touch-startup-image" href="startup.png"> |
|---|
| 8 | <link rel="stylesheet" type="text/css" href="notebook.css"> |
|---|
| 9 | <link rel="stylesheet" type="text/css" href="ipadapp.css"> |
|---|
| 10 | <script type="text/javascript" src="scripts/cookies.js"></script> |
|---|
| 11 | <script type="text/javascript" src="scripts/Events.js"></script> |
|---|
| 12 | <script type="text/javascript" src="scripts/Evaluation.js"></script> |
|---|
| 13 | <script type="text/javascript" src="scripts/Event.js"></script> |
|---|
| 14 | <script type="text/javascript" src="scripts/Property.js"></script> |
|---|
| 15 | <script type="text/javascript" src="scripts/Properties.js"></script> |
|---|
| 16 | <script type="text/javascript" src="scripts/Evaluations.js"></script> |
|---|
| 17 | <script type="text/javascript" src="scripts/Time.js"></script> |
|---|
| 18 | <script type="text/javascript" src="scripts/Incident.js"></script> |
|---|
| 19 | <script type="text/javascript" src="scripts/Incidents.js"></script> |
|---|
| 20 | <script type="text/javascript" src="scripts/PopulateIncidents.js"></script> |
|---|
| 21 | <!--script type="text/javascript" src="scripts/PopulateEvents.js"></script--> |
|---|
| 22 | <script type="text/javascript" src="summary/summary.js"></script> |
|---|
| 23 | <script type="text/javascript" src="notebook.js"></script> |
|---|
| 24 | <script type="text/javascript" src="scripts/LoadEvents.js"></script> |
|---|
| 25 | </head> |
|---|
| 26 | <body onLoad="setupNotebook(); run();"> |
|---|
| 27 | |
|---|
| 28 | <table class="notebook"> |
|---|
| 29 | <!-- The header which contains the number of evaluations, simulation status, |
|---|
| 30 | and time |
|---|
| 31 | <tr style="height: 20px"> |
|---|
| 32 | <td> |
|---|
| 33 | <table class="header"> |
|---|
| 34 | <tr> |
|---|
| 35 | |
|---|
| 36 | <td class="updateStatusBox"> |
|---|
| 37 | <table> |
|---|
| 38 | <tr> |
|---|
| 39 | <td class="updateStatus" id="updateStatus">New Event</td> |
|---|
| 40 | </tr> |
|---|
| 41 | </table> |
|---|
| 42 | </td> |
|---|
| 43 | |
|---|
| 44 | <td class="statusBox"> |
|---|
| 45 | <center><table> |
|---|
| 46 | <tr> |
|---|
| 47 | <td class="simulationStatus" id="simulationStatus">NOT STARTED</td> |
|---|
| 48 | </tr> |
|---|
| 49 | </table></center> |
|---|
| 50 | </td> |
|---|
| 51 | |
|---|
| 52 | <td class="simulationTime" id="simulationTime"> |
|---|
| 53 | 0:00:00 |
|---|
| 54 | </td> |
|---|
| 55 | |
|---|
| 56 | </tr> |
|---|
| 57 | </table> |
|---|
| 58 | </td> |
|---|
| 59 | </tr> |
|---|
| 60 | --> |
|---|
| 61 | <tr style="height: 120px"> |
|---|
| 62 | <td colspan='3' class="tabMenu"> |
|---|
| 63 | |
|---|
| 64 | <div class='tabMenuWrapper'> |
|---|
| 65 | |
|---|
| 66 | <!-- The menu for selecting which tabbed page to view --> |
|---|
| 67 | <ul class="tabMenu"> |
|---|
| 68 | <li class="activeTab" id="summaryTab" |
|---|
| 69 | onClick="changeTab(this.id); showContent('summaryPageContent')"> |
|---|
| 70 | Incident Summary |
|---|
| 71 | </li> |
|---|
| 72 | <li class="notActive" id="scriptTab" |
|---|
| 73 | onClick="changeTab(this.id); showContent('scriptPageContent')"> |
|---|
| 74 | Simulation Script |
|---|
| 75 | </li> |
|---|
| 76 | <li class="notActive" id="CADTab" |
|---|
| 77 | onClick="changeTab(this.id); showContent('cadPageContent')"> |
|---|
| 78 | Current Event |
|---|
| 79 | </li> |
|---|
| 80 | <li class="notActive" id="mapsTab" |
|---|
| 81 | onClick="changeTab(this.id); showContent('mapsPageContent')"> |
|---|
| 82 | Maps |
|---|
| 83 | </li> |
|---|
| 84 | </ul><br> |
|---|
| 85 | <div class="simulationTime" id="simulationTime">0:00:00</div> |
|---|
| 86 | </div> |
|---|
| 87 | </td> |
|---|
| 88 | </tr> |
|---|
| 89 | |
|---|
| 90 | <!-- The tabbed page currently displayed --> |
|---|
| 91 | <tr> |
|---|
| 92 | <td class='tabPageContent' id='summaryPageContent' style="display:inline"> |
|---|
| 93 | <iframe id='summaryTabPage' src='summary/summary.html' frameborder='0' scrolling='yes' |
|---|
| 94 | height='100%' width='100%' |
|---|
| 95 | onLoad='incidents.doc = getDocumentFromFrame("summaryTabPage"); |
|---|
| 96 | window.frames[0].loadSummary(incidents);'></iframe> |
|---|
| 97 | </td> |
|---|
| 98 | <td class='tabPageContent' id='scriptPageContent' style="display:none;"> |
|---|
| 99 | <iframe id='tabPage' src='script/script.html' frameborder='0' |
|---|
| 100 | scrolling='yes' height='100%' width='100%' |
|---|
| 101 | onLoad='window.frames[1].loadScript(events, incidents);' |
|---|
| 102 | > |
|---|
| 103 | </iframe> |
|---|
| 104 | </td> |
|---|
| 105 | <td class='tabPageContent' id='cadPageContent' style="display:none;"> |
|---|
| 106 | <iframe src='cad/index.html' frameborder='0' |
|---|
| 107 | scrolling='yes' height='100%' width='100%' |
|---|
| 108 | onLoad='window.frames[2].loadScript(events, incidents);'> |
|---|
| 109 | </iframe> |
|---|
| 110 | </td> |
|---|
| 111 | <td class='tabPageContent' id='mapsPageContent' style="display:none;"> |
|---|
| 112 | <iframe src='maps/index.html' frameborder='0' |
|---|
| 113 | scrolling='no' height='100%' width='100%' > |
|---|
| 114 | </iframe> |
|---|
| 115 | </td> |
|---|
| 116 | </td> |
|---|
| 117 | </tr> |
|---|
| 118 | </table> |
|---|
| 119 | |
|---|
| 120 | </body> |
|---|
| 121 | </html> |
|---|