Thomas Vachuska | e95da77 | 2015-02-23 15:50:11 -0800 | [diff] [blame] | 1 | <!DOCTYPE html> |
| 2 | <!-- |
Brian O'Connor | 5ab426f | 2016-04-09 01:19:45 -0700 | [diff] [blame] | 3 | ~ Copyright 2014-present Open Networking Laboratory |
Thomas Vachuska | e95da77 | 2015-02-23 15:50:11 -0800 | [diff] [blame] | 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 | <html> |
| 18 | <head> |
| 19 | <meta charset="utf-8"> |
| 20 | <link rel="shortcut icon" href="data/img/onos-logo.png"> |
Thomas Vachuska | 83785e2 | 2015-04-01 02:55:02 -0700 | [diff] [blame] | 21 | |
| 22 | <link rel="apple-touch-icon" href="data/img/apple-touch-icon.png"> |
| 23 | <meta name="apple-mobile-web-app-capable" content="yes"> |
| 24 | <meta name="apple-mobile-web-app-status-bar-style" content="black"> |
| 25 | <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| 26 | |
Simon Hunt | fb35b83 | 2016-05-26 11:43:00 -0700 | [diff] [blame] | 27 | <link href='https://fonts.googleapis.com/css?family=Open+Sans:400,300,700' |
| 28 | rel='stylesheet' type='text/css'> |
| 29 | |
Simon Hunt | 7442d21 | 2015-02-26 10:55:00 -0800 | [diff] [blame] | 30 | <title>ONOS</title> |
Thomas Vachuska | e95da77 | 2015-02-23 15:50:11 -0800 | [diff] [blame] | 31 | |
| 32 | <!-- Third party library code included here --> |
| 33 | <!--TODO: use minified versions, once debugging is complete --> |
| 34 | <script src="tp/angular.js"></script> |
| 35 | <script src="tp/angular-route.js"></script> |
Simon Hunt | 36a58c6 | 2015-04-08 11:00:07 -0700 | [diff] [blame] | 36 | <script src="tp/angular-cookies.js"></script> |
Thomas Vachuska | e95da77 | 2015-02-23 15:50:11 -0800 | [diff] [blame] | 37 | |
| 38 | <script src="tp/d3.js"></script> |
| 39 | <script src="tp/topojson.v1.min.js"></script> |
| 40 | |
Jian Li | d7a5a74 | 2016-02-12 13:51:18 -0800 | [diff] [blame] | 41 | <script src="tp/Chart.min.js"></script> |
| 42 | <script src="tp/angular-chart.min.js"></script> |
| 43 | |
Thomas Vachuska | 0af2691 | 2016-03-21 21:37:30 -0700 | [diff] [blame] | 44 | <!-- {INJECTED-USER-START} --> |
| 45 | <!-- {INJECTED-USER-END} --> |
| 46 | |
Thomas Vachuska | e95da77 | 2015-02-23 15:50:11 -0800 | [diff] [blame] | 47 | <!-- ONOS UI Framework included here --> |
| 48 | <!-- TODO: use a single catenated-minified file here --> |
| 49 | <script src="onos.js"></script> |
| 50 | <script src="app/directives.js"></script> |
| 51 | |
| 52 | <script src="app/fw/util/util.js"></script> |
Simon Hunt | f0eb217 | 2016-01-26 18:54:21 -0800 | [diff] [blame] | 53 | <script src="app/fw/util/ee.js"></script> |
Thomas Vachuska | e95da77 | 2015-02-23 15:50:11 -0800 | [diff] [blame] | 54 | <script src="app/fw/util/fn.js"></script> |
| 55 | <script src="app/fw/util/random.js"></script> |
| 56 | <script src="app/fw/util/theme.js"></script> |
| 57 | <script src="app/fw/util/keys.js"></script> |
Simon Hunt | c7ae795 | 2015-04-08 18:59:27 -0700 | [diff] [blame] | 58 | <script src="app/fw/util/prefs.js"></script> |
Thomas Vachuska | e95da77 | 2015-02-23 15:50:11 -0800 | [diff] [blame] | 59 | |
| 60 | <script src="app/fw/mast/mast.js"></script> |
| 61 | <script src="app/fw/nav/nav.js"></script> |
| 62 | |
| 63 | <script src="app/fw/svg/svg.js"></script> |
| 64 | <script src="app/fw/svg/glyph.js"></script> |
Simon Hunt | 4afa61d | 2016-02-23 09:31:43 -0800 | [diff] [blame] | 65 | <script src="app/fw/svg/glyphData.js"></script> |
Thomas Vachuska | e95da77 | 2015-02-23 15:50:11 -0800 | [diff] [blame] | 66 | <script src="app/fw/svg/icon.js"></script> |
| 67 | <script src="app/fw/svg/geodata.js"></script> |
| 68 | <script src="app/fw/svg/map.js"></script> |
| 69 | <script src="app/fw/svg/zoom.js"></script> |
| 70 | <script src="app/fw/svg/svgUtil.js"></script> |
| 71 | |
| 72 | <script src="app/fw/remote/remote.js"></script> |
| 73 | <script src="app/fw/remote/urlfn.js"></script> |
| 74 | <script src="app/fw/remote/rest.js"></script> |
Simon Hunt | 20207df | 2015-03-10 18:30:14 -0700 | [diff] [blame] | 75 | <script src="app/fw/remote/wsock.js"></script> |
Thomas Vachuska | e95da77 | 2015-02-23 15:50:11 -0800 | [diff] [blame] | 76 | <script src="app/fw/remote/websocket.js"></script> |
Thomas Vachuska | e95da77 | 2015-02-23 15:50:11 -0800 | [diff] [blame] | 77 | |
| 78 | <script src="app/fw/widget/widget.js"></script> |
| 79 | <script src="app/fw/widget/table.js"></script> |
| 80 | <script src="app/fw/widget/toolbar.js"></script> |
Bri Prebilic Cole | 54d0938 | 2015-03-19 18:40:27 -0700 | [diff] [blame] | 81 | <script src="app/fw/widget/tooltip.js"></script> |
Thomas Vachuska | e95da77 | 2015-02-23 15:50:11 -0800 | [diff] [blame] | 82 | <script src="app/fw/widget/button.js"></script> |
Bri Prebilic Cole | 864cdd6 | 2015-04-02 15:46:47 -0700 | [diff] [blame] | 83 | <script src="app/fw/widget/tableBuilder.js"></script> |
Jian Li | a9dd019 | 2016-04-18 23:15:17 -0700 | [diff] [blame] | 84 | <script src="app/fw/widget/chartBuilder.js"></script> |
Thomas Vachuska | e95da77 | 2015-02-23 15:50:11 -0800 | [diff] [blame] | 85 | |
| 86 | <script src="app/fw/layer/layer.js"></script> |
| 87 | <script src="app/fw/layer/panel.js"></script> |
Simon Hunt | 8d28a55 | 2016-01-11 14:01:02 -0800 | [diff] [blame] | 88 | <script src="app/fw/layer/dialog.js"></script> |
Thomas Vachuska | e95da77 | 2015-02-23 15:50:11 -0800 | [diff] [blame] | 89 | <script src="app/fw/layer/flash.js"></script> |
| 90 | <script src="app/fw/layer/quickhelp.js"></script> |
| 91 | <script src="app/fw/layer/veil.js"></script> |
Simon Hunt | ab34ecb | 2015-12-11 13:14:48 -0800 | [diff] [blame] | 92 | <script src="app/fw/layer/loading.js"></script> |
Thomas Vachuska | e95da77 | 2015-02-23 15:50:11 -0800 | [diff] [blame] | 93 | |
| 94 | <!-- Framework and library stylesheets included here --> |
Jian Li | d7a5a74 | 2016-02-12 13:51:18 -0800 | [diff] [blame] | 95 | |
Thomas Vachuska | e95da77 | 2015-02-23 15:50:11 -0800 | [diff] [blame] | 96 | <!-- TODO: use a single catenated-minified file here --> |
| 97 | <link rel="stylesheet" href="app/onos.css"> |
Simon Hunt | 58894c8 | 2016-05-24 15:09:02 -0700 | [diff] [blame] | 98 | <link rel="stylesheet" href="app/onos-theme.css"> |
Thomas Vachuska | e95da77 | 2015-02-23 15:50:11 -0800 | [diff] [blame] | 99 | <link rel="stylesheet" href="app/common.css"> |
| 100 | <link rel="stylesheet" href="app/fw/mast/mast.css"> |
Simon Hunt | 58894c8 | 2016-05-24 15:09:02 -0700 | [diff] [blame] | 101 | <link rel="stylesheet" href="app/fw/mast/mast-theme.css"> |
Thomas Vachuska | e95da77 | 2015-02-23 15:50:11 -0800 | [diff] [blame] | 102 | <link rel="stylesheet" href="app/fw/svg/glyph.css"> |
Simon Hunt | 58894c8 | 2016-05-24 15:09:02 -0700 | [diff] [blame] | 103 | <link rel="stylesheet" href="app/fw/svg/glyph-theme.css"> |
Thomas Vachuska | e95da77 | 2015-02-23 15:50:11 -0800 | [diff] [blame] | 104 | <link rel="stylesheet" href="app/fw/svg/icon.css"> |
Simon Hunt | 58894c8 | 2016-05-24 15:09:02 -0700 | [diff] [blame] | 105 | <link rel="stylesheet" href="app/fw/svg/icon-theme.css"> |
Thomas Vachuska | e95da77 | 2015-02-23 15:50:11 -0800 | [diff] [blame] | 106 | <link rel="stylesheet" href="app/fw/layer/panel.css"> |
Simon Hunt | 58894c8 | 2016-05-24 15:09:02 -0700 | [diff] [blame] | 107 | <link rel="stylesheet" href="app/fw/layer/panel-theme.css"> |
Simon Hunt | 8d28a55 | 2016-01-11 14:01:02 -0800 | [diff] [blame] | 108 | <link rel="stylesheet" href="app/fw/layer/dialog.css"> |
Simon Hunt | 58894c8 | 2016-05-24 15:09:02 -0700 | [diff] [blame] | 109 | <link rel="stylesheet" href="app/fw/layer/dialog-theme.css"> |
Thomas Vachuska | e95da77 | 2015-02-23 15:50:11 -0800 | [diff] [blame] | 110 | <link rel="stylesheet" href="app/fw/layer/flash.css"> |
Simon Hunt | 58894c8 | 2016-05-24 15:09:02 -0700 | [diff] [blame] | 111 | <link rel="stylesheet" href="app/fw/layer/flash-theme.css"> |
Thomas Vachuska | e95da77 | 2015-02-23 15:50:11 -0800 | [diff] [blame] | 112 | <link rel="stylesheet" href="app/fw/layer/quickhelp.css"> |
Simon Hunt | 58894c8 | 2016-05-24 15:09:02 -0700 | [diff] [blame] | 113 | <link rel="stylesheet" href="app/fw/layer/quickhelp-theme.css"> |
Thomas Vachuska | e95da77 | 2015-02-23 15:50:11 -0800 | [diff] [blame] | 114 | <link rel="stylesheet" href="app/fw/layer/veil.css"> |
Simon Hunt | 58894c8 | 2016-05-24 15:09:02 -0700 | [diff] [blame] | 115 | <link rel="stylesheet" href="app/fw/layer/veil-theme.css"> |
Simon Hunt | ab34ecb | 2015-12-11 13:14:48 -0800 | [diff] [blame] | 116 | <link rel="stylesheet" href="app/fw/layer/loading.css"> |
Thomas Vachuska | e95da77 | 2015-02-23 15:50:11 -0800 | [diff] [blame] | 117 | <link rel="stylesheet" href="app/fw/nav/nav.css"> |
Simon Hunt | 58894c8 | 2016-05-24 15:09:02 -0700 | [diff] [blame] | 118 | <link rel="stylesheet" href="app/fw/nav/nav-theme.css"> |
Bri Prebilic Cole | 5000a75 | 2015-02-23 17:20:53 -0800 | [diff] [blame] | 119 | <link rel="stylesheet" href="app/fw/widget/button.css"> |
Simon Hunt | 58894c8 | 2016-05-24 15:09:02 -0700 | [diff] [blame] | 120 | <link rel="stylesheet" href="app/fw/widget/button-theme.css"> |
Bri Prebilic Cole | 5000a75 | 2015-02-23 17:20:53 -0800 | [diff] [blame] | 121 | <link rel="stylesheet" href="app/fw/widget/toolbar.css"> |
Simon Hunt | 58894c8 | 2016-05-24 15:09:02 -0700 | [diff] [blame] | 122 | <link rel="stylesheet" href="app/fw/widget/toolbar-theme.css"> |
Bri Prebilic Cole | 54d0938 | 2015-03-19 18:40:27 -0700 | [diff] [blame] | 123 | <link rel="stylesheet" href="app/fw/widget/tooltip.css"> |
Simon Hunt | 58894c8 | 2016-05-24 15:09:02 -0700 | [diff] [blame] | 124 | <link rel="stylesheet" href="app/fw/widget/tooltip-theme.css"> |
Bri Prebilic Cole | 264c5ec | 2015-04-07 10:22:26 -0700 | [diff] [blame] | 125 | <link rel="stylesheet" href="app/fw/widget/table.css"> |
Simon Hunt | 58894c8 | 2016-05-24 15:09:02 -0700 | [diff] [blame] | 126 | <link rel="stylesheet" href="app/fw/widget/table-theme.css"> |
Thomas Vachuska | e95da77 | 2015-02-23 15:50:11 -0800 | [diff] [blame] | 127 | |
Simon Hunt | d5b9673 | 2016-07-08 13:22:27 -0700 | [diff] [blame] | 128 | <!-- Under development for Region support. --> |
| 129 | <script src="app/view/topo2/topo2.js"></script> |
Steven Burrows | 57e24e9 | 2016-08-04 18:38:24 +0100 | [diff] [blame] | 130 | <script src="app/view/topo2/topo2Collection.js"></script> |
Steven Burrows | ec1f45c | 2016-08-08 16:14:41 +0100 | [diff] [blame] | 131 | <script src="app/view/topo2/topo2D3.js"></script> |
Steven Burrows | 57e24e9 | 2016-08-04 18:38:24 +0100 | [diff] [blame] | 132 | <script src="app/view/topo2/topo2Device.js"></script> |
Simon Hunt | d5b9673 | 2016-07-08 13:22:27 -0700 | [diff] [blame] | 133 | <script src="app/view/topo2/topo2Event.js"></script> |
| 134 | <script src="app/view/topo2/topo2Force.js"></script> |
Steven Burrows | 57e24e9 | 2016-08-04 18:38:24 +0100 | [diff] [blame] | 135 | <script src="app/view/topo2/topo2Host.js"></script> |
| 136 | <script src="app/view/topo2/topo2Instance.js"></script> |
Steven Burrows | ec1f45c | 2016-08-08 16:14:41 +0100 | [diff] [blame] | 137 | <script src="app/view/topo2/topo2Layout.js"></script> |
Steven Burrows | 57e24e9 | 2016-08-04 18:38:24 +0100 | [diff] [blame] | 138 | <script src="app/view/topo2/topo2Link.js"></script> |
Steven Burrows | ec1f45c | 2016-08-08 16:14:41 +0100 | [diff] [blame] | 139 | <script src="app/view/topo2/topo2Model.js"></script> |
| 140 | <script src="app/view/topo2/topo2NodeModel.js"></script> |
Steven Burrows | 57e24e9 | 2016-08-04 18:38:24 +0100 | [diff] [blame] | 141 | <script src="app/view/topo2/topo2Region.js"></script> |
Steven Burrows | ec1f45c | 2016-08-08 16:14:41 +0100 | [diff] [blame] | 142 | <script src="app/view/topo2/topo2Select.js"></script> |
Steven Burrows | 57e24e9 | 2016-08-04 18:38:24 +0100 | [diff] [blame] | 143 | <script src="app/view/topo2/topo2SubRegion.js"></script> |
Steven Burrows | ec1f45c | 2016-08-08 16:14:41 +0100 | [diff] [blame] | 144 | <script src="app/view/topo2/topo2Theme.js"></script> |
| 145 | <script src="app/view/topo2/topo2View.js"></script> |
Simon Hunt | d5b9673 | 2016-07-08 13:22:27 -0700 | [diff] [blame] | 146 | <link rel="stylesheet" href="app/view/topo2/topo2.css"> |
| 147 | <link rel="stylesheet" href="app/view/topo2/topo2-theme.css"> |
| 148 | |
Simon Hunt | 9818919 | 2016-07-29 19:02:27 -0700 | [diff] [blame] | 149 | <script src="app/view/topoX/topoX.js"></script> |
| 150 | <script src="app/view/topoX/topoXEvent.js"></script> |
| 151 | <script src="app/view/topoX/topoXForce.js"></script> |
| 152 | <link rel="stylesheet" href="app/view/topoX/topoX.css"> |
| 153 | <link rel="stylesheet" href="app/view/topoX/topoX-theme.css"> |
| 154 | |
Thomas Vachuska | 583bc63 | 2015-04-14 10:10:57 -0700 | [diff] [blame] | 155 | <!-- Builtin views javascript. --> |
Thomas Vachuska | e95da77 | 2015-02-23 15:50:11 -0800 | [diff] [blame] | 156 | <script src="app/view/topo/topo.js"></script> |
Simon Hunt | a4242de | 2015-02-24 17:11:55 -0800 | [diff] [blame] | 157 | <script src="app/view/topo/topoD3.js"></script> |
Thomas Vachuska | e95da77 | 2015-02-23 15:50:11 -0800 | [diff] [blame] | 158 | <script src="app/view/topo/topoEvent.js"></script> |
Simon Hunt | 8d55808 | 2015-10-29 21:32:50 -0700 | [diff] [blame] | 159 | <script src="app/view/topo/topoDialog.js"></script> |
Thomas Vachuska | e95da77 | 2015-02-23 15:50:11 -0800 | [diff] [blame] | 160 | <script src="app/view/topo/topoFilter.js"></script> |
| 161 | <script src="app/view/topo/topoForce.js"></script> |
| 162 | <script src="app/view/topo/topoInst.js"></script> |
Simon Hunt | fb8ea1f | 2015-02-24 21:38:09 -0800 | [diff] [blame] | 163 | <script src="app/view/topo/topoLink.js"></script> |
Thomas Vachuska | e95da77 | 2015-02-23 15:50:11 -0800 | [diff] [blame] | 164 | <script src="app/view/topo/topoModel.js"></script> |
| 165 | <script src="app/view/topo/topoOblique.js"></script> |
Simon Hunt | 72e44bf | 2015-07-21 21:34:20 -0700 | [diff] [blame] | 166 | <script src="app/view/topo/topoOverlay.js"></script> |
Thomas Vachuska | e95da77 | 2015-02-23 15:50:11 -0800 | [diff] [blame] | 167 | <script src="app/view/topo/topoPanel.js"></script> |
| 168 | <script src="app/view/topo/topoSelect.js"></script> |
Thomas Vachuska | 26be4f3 | 2016-03-31 01:10:27 -0700 | [diff] [blame] | 169 | <script src="app/view/topo/topoMap.js"></script> |
Simon Hunt | 2052e5d | 2015-04-13 17:40:44 -0700 | [diff] [blame] | 170 | <script src="app/view/topo/topoSprite.js"></script> |
Thomas Vachuska | e95da77 | 2015-02-23 15:50:11 -0800 | [diff] [blame] | 171 | <script src="app/view/topo/topoTraffic.js"></script> |
Simon Hunt | 72e44bf | 2015-07-21 21:34:20 -0700 | [diff] [blame] | 172 | <script src="app/view/topo/topoTrafficNew.js"></script> |
Bri Prebilic Cole | 4db8dce | 2015-03-18 13:57:24 -0700 | [diff] [blame] | 173 | <script src="app/view/topo/topoToolbar.js"></script> |
Thomas Vachuska | e95da77 | 2015-02-23 15:50:11 -0800 | [diff] [blame] | 174 | <script src="app/view/device/device.js"></script> |
Simon Hunt | 1002cd8 | 2015-04-23 14:44:03 -0700 | [diff] [blame] | 175 | <script src="app/view/flow/flow.js"></script> |
Bri Prebilic Cole | ac829e4 | 2015-05-05 13:42:06 -0700 | [diff] [blame] | 176 | <script src="app/view/port/port.js"></script> |
Bri Prebilic Cole | ff3dc67 | 2015-05-06 12:59:38 -0700 | [diff] [blame] | 177 | <script src="app/view/group/group.js"></script> |
Jian Li | 1f54473 | 2015-12-30 23:36:37 -0800 | [diff] [blame] | 178 | <script src="app/view/meter/meter.js"></script> |
Thomas Vachuska | 583bc63 | 2015-04-14 10:10:57 -0700 | [diff] [blame] | 179 | <script src="app/view/link/link.js"></script> |
Thomas Vachuska | e586b79 | 2015-03-26 13:59:38 -0700 | [diff] [blame] | 180 | <script src="app/view/host/host.js"></script> |
Bri Prebilic Cole | 96f2647 | 2015-03-31 13:07:05 -0700 | [diff] [blame] | 181 | <script src="app/view/intent/intent.js"></script> |
Thomas Vachuska | 583bc63 | 2015-04-14 10:10:57 -0700 | [diff] [blame] | 182 | <script src="app/view/app/app.js"></script> |
Thomas Vachuska | aa8b0eb | 2015-05-22 09:54:15 -0700 | [diff] [blame] | 183 | <script src="app/view/settings/settings.js"></script> |
| 184 | <script src="app/view/cluster/cluster.js"></script> |
Thomas Vachuska | 3ece373 | 2015-09-22 23:58:50 -0700 | [diff] [blame] | 185 | <script src="app/view/processor/processor.js"></script> |
chengfan | b466a7e | 2015-08-21 09:59:29 -0500 | [diff] [blame] | 186 | <script src="app/view/tunnel/tunnel.js"></script> |
Thomas Vachuska | 583bc63 | 2015-04-14 10:10:57 -0700 | [diff] [blame] | 187 | |
Simon Hunt | 4092733 | 2016-01-22 15:29:47 -0800 | [diff] [blame] | 188 | <!-- Contributed javascript injected here --> |
Thomas Vachuska | 583bc63 | 2015-04-14 10:10:57 -0700 | [diff] [blame] | 189 | <!-- {INJECTED-JAVASCRIPT-START} --> |
Thomas Vachuska | e95da77 | 2015-02-23 15:50:11 -0800 | [diff] [blame] | 190 | <!-- {INJECTED-JAVASCRIPT-END} --> |
| 191 | |
Thomas Vachuska | 583bc63 | 2015-04-14 10:10:57 -0700 | [diff] [blame] | 192 | <!-- Builtin views stylesheets. --> |
| 193 | <link rel="stylesheet" href="app/view/topo/topo.css"> |
Simon Hunt | 58894c8 | 2016-05-24 15:09:02 -0700 | [diff] [blame] | 194 | <link rel="stylesheet" href="app/view/topo/topo-theme.css"> |
Thomas Vachuska | 583bc63 | 2015-04-14 10:10:57 -0700 | [diff] [blame] | 195 | <link rel="stylesheet" href="app/view/device/device.css"> |
Simon Hunt | 58894c8 | 2016-05-24 15:09:02 -0700 | [diff] [blame] | 196 | <link rel="stylesheet" href="app/view/device/device-theme.css"> |
Simon Hunt | 1002cd8 | 2015-04-23 14:44:03 -0700 | [diff] [blame] | 197 | <link rel="stylesheet" href="app/view/flow/flow.css"> |
Simon Hunt | 58894c8 | 2016-05-24 15:09:02 -0700 | [diff] [blame] | 198 | <link rel="stylesheet" href="app/view/flow/flow-theme.css"> |
Bri Prebilic Cole | ac829e4 | 2015-05-05 13:42:06 -0700 | [diff] [blame] | 199 | <link rel="stylesheet" href="app/view/port/port.css"> |
Simon Hunt | 58894c8 | 2016-05-24 15:09:02 -0700 | [diff] [blame] | 200 | <link rel="stylesheet" href="app/view/port/port-theme.css"> |
Bri Prebilic Cole | ff3dc67 | 2015-05-06 12:59:38 -0700 | [diff] [blame] | 201 | <link rel="stylesheet" href="app/view/group/group.css"> |
Simon Hunt | 58894c8 | 2016-05-24 15:09:02 -0700 | [diff] [blame] | 202 | <link rel="stylesheet" href="app/view/group/group-theme.css"> |
Jian Li | 1f54473 | 2015-12-30 23:36:37 -0800 | [diff] [blame] | 203 | <link rel="stylesheet" href="app/view/meter/meter.css"> |
Simon Hunt | 58894c8 | 2016-05-24 15:09:02 -0700 | [diff] [blame] | 204 | <link rel="stylesheet" href="app/view/meter/meter-theme.css"> |
Thomas Vachuska | 583bc63 | 2015-04-14 10:10:57 -0700 | [diff] [blame] | 205 | <link rel="stylesheet" href="app/view/link/link.css"> |
| 206 | <link rel="stylesheet" href="app/view/host/host.css"> |
| 207 | <link rel="stylesheet" href="app/view/intent/intent.css"> |
Simon Hunt | 58894c8 | 2016-05-24 15:09:02 -0700 | [diff] [blame] | 208 | <link rel="stylesheet" href="app/view/intent/intent-theme.css"> |
Thomas Vachuska | 583bc63 | 2015-04-14 10:10:57 -0700 | [diff] [blame] | 209 | <link rel="stylesheet" href="app/view/app/app.css"> |
Simon Hunt | 58894c8 | 2016-05-24 15:09:02 -0700 | [diff] [blame] | 210 | <link rel="stylesheet" href="app/view/app/app-theme.css"> |
Thomas Vachuska | aa8b0eb | 2015-05-22 09:54:15 -0700 | [diff] [blame] | 211 | <link rel="stylesheet" href="app/view/settings/settings.css"> |
Thomas Vachuska | 583bc63 | 2015-04-14 10:10:57 -0700 | [diff] [blame] | 212 | <link rel="stylesheet" href="app/view/cluster/cluster.css"> |
Thomas Vachuska | 3ece373 | 2015-09-22 23:58:50 -0700 | [diff] [blame] | 213 | <link rel="stylesheet" href="app/view/processor/processor.css"> |
Simon Hunt | 58894c8 | 2016-05-24 15:09:02 -0700 | [diff] [blame] | 214 | <link rel="stylesheet" href="app/view/processor/processor-theme.css"> |
chengfan | b466a7e | 2015-08-21 09:59:29 -0500 | [diff] [blame] | 215 | <link rel="stylesheet" href="app/view/tunnel/tunnel.css"> |
Thomas Vachuska | e95da77 | 2015-02-23 15:50:11 -0800 | [diff] [blame] | 216 | |
Simon Hunt | 4092733 | 2016-01-22 15:29:47 -0800 | [diff] [blame] | 217 | <!-- Contributed stylesheets injected here --> |
Thomas Vachuska | e95da77 | 2015-02-23 15:50:11 -0800 | [diff] [blame] | 218 | <!-- {INJECTED-STYLESHEETS-START} --> |
Thomas Vachuska | e95da77 | 2015-02-23 15:50:11 -0800 | [diff] [blame] | 219 | <!-- {INJECTED-STYLESHEETS-END} --> |
| 220 | |
| 221 | </head> |
| 222 | <body class="light" ng-app="onosApp"> |
Bri Prebilic Cole | 55ee09b | 2015-08-04 14:34:07 -0700 | [diff] [blame] | 223 | <div id="frame" ng-controller="OnosCtrl as onosCtrl" detect-browser> |
Thomas Vachuska | e95da77 | 2015-02-23 15:50:11 -0800 | [diff] [blame] | 224 | <div id="mast" |
| 225 | ng-controller="MastCtrl as mastCtrl" |
| 226 | ng-include="'app/fw/mast/mast.html'"></div> |
| 227 | |
| 228 | <div id="view" ng-view></div> |
| 229 | |
| 230 | <div id="nav" |
| 231 | ng-controller="NavCtrl as navCtrl" |
| 232 | ng-include="'nav.html'"></div> |
| 233 | |
| 234 | <div id="floatpanels"></div> |
| 235 | <div id="alerts"></div> |
Bri Prebilic Cole | 54d0938 | 2015-03-19 18:40:27 -0700 | [diff] [blame] | 236 | <div id="tooltip"></div> |
Thomas Vachuska | e95da77 | 2015-02-23 15:50:11 -0800 | [diff] [blame] | 237 | <div id="flash"></div> |
| 238 | <div id="quickhelp"></div> |
Bri Prebilic Cole | 068814d | 2015-05-14 16:06:38 -0700 | [diff] [blame] | 239 | <div id="veil"> |
| 240 | <div class="msg"></div> |
| 241 | <svg resize></svg> |
| 242 | </div> |
Thomas Vachuska | e95da77 | 2015-02-23 15:50:11 -0800 | [diff] [blame] | 243 | </div> |
Thomas Vachuska | 83785e2 | 2015-04-01 02:55:02 -0700 | [diff] [blame] | 244 | |
| 245 | <script> |
| 246 | <!-- Inject user agent info into html element to allow CSS sensitivity. --> |
Simon Hunt | 20cfb87 | 2015-04-01 10:23:36 -0700 | [diff] [blame] | 247 | (function () { |
| 248 | var t = !!('ontouchstart' in window) || !!('onmsgesturechange' in window); |
| 249 | d3.select(document.documentElement) |
| 250 | .attr('data-useragent', navigator.userAgent) |
| 251 | .attr('data-platform', navigator.platform) |
| 252 | .classed('touch', t); |
| 253 | }()); |
Thomas Vachuska | 83785e2 | 2015-04-01 02:55:02 -0700 | [diff] [blame] | 254 | </script> |
Thomas Vachuska | e95da77 | 2015-02-23 15:50:11 -0800 | [diff] [blame] | 255 | </body> |
| 256 | </html> |