- Timestamp:
- 04/16/2019 09:15:32 AM (7 years ago)
- Location:
- trunk/webapps
- Files:
-
- 4 added
- 4 edited
- 10 moved
-
cgi-bin (moved) (moved from trunk/webapps/cptms/cgi-bin)
-
cmsmonitor (added)
-
cmsmonitor/cms_monitor.html (moved) (moved from trunk/webapps/cptms/cms_monitor.html)
-
common (added)
-
common/js (added)
-
common/js/fileutils.js (moved) (moved from trunk/webapps/cptms/js/common.js) (1 diff)
-
cptms/index.html (moved) (moved from trunk/webapps/cptms/cptms.html) (5 diffs)
-
cptms/js/cmsLayer.js (modified) (2 diffs)
-
cptms/js/harLayer.js (modified) (2 diffs)
-
dynamicdata (added)
-
dynamicdata/cms_messages.json (moved) (moved from trunk/webapps/cptms/cms_messages.json)
-
dynamicdata/har_messages.json (moved) (moved from trunk/webapps/cptms/har_messages.json)
-
dynamicdata/highway_status.json (moved) (moved from trunk/webapps/cptms/highway_status.json)
-
dynamicdata/sim_elapsedtime.json (moved) (moved from trunk/webapps/cptms/sim_elapsedtime.json)
-
dynamicdata/sim_scriptname.json (moved) (moved from trunk/webapps/cptms/sim_scriptname.json)
-
einotebook (moved) (moved from trunk/webapps/notebook)
-
einotebook/index.html (modified) (1 diff)
-
einotebook/maps/index.html (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/webapps/common/js/fileutils.js
r348 r372 22 22 } 23 23 24 25 function handleDialogClose(id)26 {27 // hide the display28 document.getElementById(id).style.display = 'none'29 }30 31 -
trunk/webapps/cptms/index.html
r357 r372 59 59 <button onclick="handleCMSsubmit();">Send >></button><br><br> 60 60 <button onclick="handleCMSclear();">Clear >></button><br><br> 61 <button onclick="h andleDialogClose('cms-dialog');">Close </button>61 <button onclick="hideElementById('cms-dialog');">Close </button> 62 62 </div> 63 63 <div id="cms-message-display" style="display: block;">Current: … … 83 83 <button onclick="handleHARsubmit();">Send >></button> 84 84 <button onclick="handleHARclear();">Clear >></button> 85 <button onclick="h andleDialogClose('har-dialog');">Close </button><br><br>85 <button onclick="hideElementById('har-dialog');">Close </button><br><br> 86 86 </div> 87 87 <div id="har-message-display" style="display: block;">Current:<br> … … 126 126 }; 127 127 128 var kVDSstatusFile = " highway_status.json"; // dynamic json data file created by CADserver128 var kVDSstatusFile = "../dynamicdata/highway_status.json"; // dynamic json data file created by CADserver 129 129 var kMapStartupFile = "data_layers/highways_startup.json"; // initial (static) highways file used once at startup 130 130 var kCMSfile = "data_layers/cms_locations_D12.gjson"; // CMS locations … … 199 199 if ((currentZoom < 16) && (currentZoom > 10)) 200 200 { 201 // magicformula controls distance between dots201 // clever formula controls distance between dots 202 202 adjustCoords(calcDistanceFactor()); 203 203 } … … 207 207 208 208 </script> 209 <script src="js/common.js"></script> 209 <script src="../common/js/fileutils.js"></script> 210 <script src="../common/js/displayutils.js"></script> 210 211 <script src="js/vdsLayer.js"></script> 211 212 <script src="js/cmsLayer.js"></script> -
trunk/webapps/cptms/js/cmsLayer.js
r351 r372 75 75 span.onclick = function() 76 76 { 77 h andleDialogClose('cms-dialog');77 hideElementById('cms-dialog'); 78 78 } 79 79 }); … … 186 186 function loadAllcmsMessages() 187 187 { 188 loadJSON(" cms_messages.json", function(response)188 loadJSON("../dynamicdata/cms_messages.json", function(response) 189 189 { 190 190 // Parse JSON string into object -
trunk/webapps/cptms/js/harLayer.js
r357 r372 67 67 span.addEventListener('click',function() 68 68 { 69 h andleDialogClose('har-dialog');69 hideElementById('har-dialog'); 70 70 }); 71 71 }); … … 139 139 function loadAllharMessages() 140 140 { 141 loadJSON(" har_messages.json", function(response)141 loadJSON("../dynamicdata/har_messages.json", function(response) 142 142 { 143 143 // Parse JSON string into object -
trunk/webapps/einotebook/index.html
r364 r372 8 8 <link rel="stylesheet" type="text/css" href="notebook.css"> 9 9 <link rel="stylesheet" type="text/css" href="ipadapp.css"> 10 <script type="text/javascript" src="../ js/common.js"></script>10 <script type="text/javascript" src="../common/js/fileutils.js"></script> 11 11 <script type="text/javascript" src="scripts/cookies.js"></script> 12 12 <script type="text/javascript" src="scripts/Events.js"></script> -
trunk/webapps/einotebook/maps/index.html
r359 r372 33 33 <div id="googleMapContent" style="display:none;"><iframe frameborder=0 width=740 height=600 34 34 scrolling=no src=googleMap.html marginheight=0 marginwidth=0></iframe></div> 35 35 36 <div id="atmsMapContent" style="display:inline;"><iframe frameborder=0 width=740 height=600 37 scrolling=no src="../../cptms/index.html" marginheight=0 marginwidth=0></iframe></div> 38 <!-- <div id="atmsMapContent" style="display:inline;"><iframe frameborder=0 width=740 height=600 36 39 scrolling=no src="../../cptms.html" marginheight=0 marginwidth=0></iframe></div> 40 --> 37 41 </center> 38 42 </body>
Note: See TracChangeset
for help on using the changeset viewer.
