Simon Hunt | 195cb38 | 2014-11-03 17:50:51 -0800 | [diff] [blame] | 1 | <!DOCTYPE html> |
| 2 | <!-- |
| 3 | ~ Copyright 2014 Open Networking Laboratory |
| 4 | ~ |
| 5 | ~ Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | ~ you may not use this file except in compliance with the License. |
| 7 | ~ You may obtain a copy of the License at |
| 8 | ~ |
| 9 | ~ http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | ~ |
| 11 | ~ Unless required by applicable law or agreed to in writing, software |
| 12 | ~ distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | ~ See the License for the specific language governing permissions and |
| 15 | ~ limitations under the License. |
| 16 | --> |
| 17 | |
| 18 | <!-- |
| 19 | ONOS UI - single page web app |
| 20 | Version 1.1 |
| 21 | |
| 22 | @author Simon Hunt |
| 23 | --> |
| 24 | <html> |
| 25 | <head> |
| 26 | <meta charset="utf-8"> |
| 27 | <title>ONOS GUI (v1.1)</title> |
| 28 | |
| 29 | <link rel="shortcut icon" href="img/onos-logo.png"> |
| 30 | |
| 31 | <!-- first script to be run --> |
| 32 | <script src="preamble.js"></script> |
| 33 | |
| 34 | <!-- Third party library code included here --> |
| 35 | <!--TODO: use the minified version of d3, once debugging is complete --> |
| 36 | <script src="libs/d3.js"></script> |
| 37 | <script src="libs/jquery-2.1.1.min.js"></script> |
| 38 | |
| 39 | <!-- Base library and framework stylesheets included here --> |
| 40 | <link rel="stylesheet" href="base.css"> |
| 41 | <link rel="stylesheet" href="onos2.css"> |
| 42 | <link rel="stylesheet" href="mast2.css"> |
| 43 | |
| 44 | <!-- This is where contributed stylesheets get INJECTED --> |
| 45 | <!-- TODO: replace with template marker and inject refs server-side --> |
| 46 | <link rel="stylesheet" href="topo2.css"> |
Simon Hunt | bb282f5 | 2014-11-10 11:08:19 -0800 | [diff] [blame] | 47 | <link rel="stylesheet" href="webSockTrace.css"> |
Simon Hunt | 195cb38 | 2014-11-03 17:50:51 -0800 | [diff] [blame] | 48 | |
| 49 | |
| 50 | <!-- General library modules included here--> |
| 51 | <script src="geometry2.js"></script> |
| 52 | |
| 53 | <!-- ONOS UI Framework included here--> |
| 54 | <script src="onos2.js"></script> |
| 55 | |
| 56 | </head> |
| 57 | <body> |
| 58 | <div id="frame"> |
| 59 | <div id="mast"> |
| 60 | <!-- NOTE: masthead injected here by mast.js --> |
| 61 | </div> |
| 62 | <div id="view"> |
| 63 | <!-- NOTE: views injected here by onos.js --> |
| 64 | </div> |
| 65 | <div id="overlays"> |
| 66 | <!-- NOTE: overlays injected here, as needed --> |
| 67 | </div> |
Simon Hunt | 1a9eff9 | 2014-11-07 11:06:34 -0800 | [diff] [blame] | 68 | <div id="alerts"> |
| 69 | <!-- NOTE: alert content injected here, as needed --> |
| 70 | </div> |
Simon Hunt | 195cb38 | 2014-11-03 17:50:51 -0800 | [diff] [blame] | 71 | </div> |
| 72 | |
| 73 | <!-- Initialize the UI...--> |
| 74 | <script type="text/javascript"> |
Simon Hunt | 2524891 | 2014-11-04 11:25:48 -0800 | [diff] [blame] | 75 | var ONOS = $.onos({ |
Thomas Vachuska | 65368e3 | 2014-11-08 16:10:20 -0800 | [diff] [blame] | 76 | comment: 'configuration options', |
| 77 | theme: 'light', |
Simon Hunt | 142d003 | 2014-11-04 20:13:09 -0800 | [diff] [blame] | 78 | startVid: 'topo', |
Simon Hunt | 2524891 | 2014-11-04 11:25:48 -0800 | [diff] [blame] | 79 | trace: false |
| 80 | }); |
Simon Hunt | 195cb38 | 2014-11-03 17:50:51 -0800 | [diff] [blame] | 81 | </script> |
| 82 | |
Simon Hunt | 1a9eff9 | 2014-11-07 11:06:34 -0800 | [diff] [blame] | 83 | <!-- Library module files included here --> |
| 84 | <script src="d3Utils.js"></script> |
| 85 | |
Simon Hunt | 195cb38 | 2014-11-03 17:50:51 -0800 | [diff] [blame] | 86 | <!-- Framework module files included here --> |
| 87 | <script src="mast2.js"></script> |
| 88 | |
Simon Hunt | f67722a | 2014-11-10 09:32:06 -0800 | [diff] [blame] | 89 | <!-- View Module Templates; REMOVE THESE LINES, FOR PRODUCTION --> |
| 90 | <script src="module-svg-template.js"></script> |
| 91 | <script src="module-div-template.js"></script> |
| 92 | |
| 93 | <!-- Sample views; REMOVE THESE LINES, FOR PRODUCTION --> |
Simon Hunt | 2524891 | 2014-11-04 11:25:48 -0800 | [diff] [blame] | 94 | <script src="sample2.js"></script> |
Simon Hunt | db9eb07 | 2014-11-04 19:12:46 -0800 | [diff] [blame] | 95 | <script src="sampleRadio.js"></script> |
Simon Hunt | 0df1b1d | 2014-11-04 22:58:29 -0800 | [diff] [blame] | 96 | <script src="sampleKeys.js"></script> |
Simon Hunt | 56d5185 | 2014-11-09 13:03:35 -0800 | [diff] [blame] | 97 | <script src="sampleHash.js"></script> |
Simon Hunt | 195cb38 | 2014-11-03 17:50:51 -0800 | [diff] [blame] | 98 | |
Simon Hunt | 142d003 | 2014-11-04 20:13:09 -0800 | [diff] [blame] | 99 | <!-- Contributed (application) views injected here --> |
| 100 | <!-- TODO: replace with template marker and inject refs server-side --> |
Simon Hunt | bb282f5 | 2014-11-10 11:08:19 -0800 | [diff] [blame] | 101 | <script src="webSockTrace.js"></script> |
Simon Hunt | 142d003 | 2014-11-04 20:13:09 -0800 | [diff] [blame] | 102 | <script src="topo2.js"></script> |
| 103 | |
Simon Hunt | 195cb38 | 2014-11-03 17:50:51 -0800 | [diff] [blame] | 104 | <!-- finally, build the UI--> |
| 105 | <script type="text/javascript"> |
| 106 | $(ONOS.buildUi); |
| 107 | </script> |
| 108 | |
| 109 | </body> |
| 110 | </html> |