Simon Hunt | c2202d5 | 2014-12-16 13:30:15 -0800 | [diff] [blame] | 1 | <!DOCTYPE html> |
| 2 | <!-- |
Simon Hunt | 8ead3a2 | 2015-01-06 11:00:15 -0800 | [diff] [blame] | 3 | ~ Copyright 2014,2015 Open Networking Laboratory |
Simon Hunt | c2202d5 | 2014-12-16 13:30:15 -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"> |
| 21 | <title>ONOS Angular</title> |
| 22 | |
| 23 | <!-- Third party library code included here --> |
| 24 | <!--TODO: use minified versions, once debugging is complete --> |
| 25 | <script src="../tp/angular.js"></script> |
| 26 | <script src="../tp/angular-route.js"></script> |
| 27 | |
| 28 | <script src="../tp/d3.js"></script> |
| 29 | <script src="../tp/topojson.v1.min.js"></script> |
Simon Hunt | c2202d5 | 2014-12-16 13:30:15 -0800 | [diff] [blame] | 30 | |
| 31 | <!-- ONOS UI Framework included here --> |
| 32 | <!-- TODO: use a single catenated-minified file here --> |
| 33 | <script src="onos.js"></script> |
Simon Hunt | 0541fb8 | 2015-01-14 18:59:57 -0800 | [diff] [blame] | 34 | <script src="directives.js"></script> |
Simon Hunt | dc6362a | 2014-12-18 19:55:23 -0800 | [diff] [blame] | 35 | |
| 36 | <script src="fw/util/util.js"></script> |
| 37 | <script src="fw/util/fn.js"></script> |
Yuta HIGUCHI | 4f39bcd | 2014-12-18 20:46:14 -0800 | [diff] [blame] | 38 | <script src="fw/util/theme.js"></script> |
Simon Hunt | dc6362a | 2014-12-18 19:55:23 -0800 | [diff] [blame] | 39 | <script src="fw/util/keys.js"></script> |
| 40 | |
Simon Hunt | c2202d5 | 2014-12-16 13:30:15 -0800 | [diff] [blame] | 41 | <script src="fw/mast/mast.js"></script> |
Simon Hunt | 86388b1 | 2015-01-09 14:23:26 -0800 | [diff] [blame] | 42 | <script src="fw/nav/nav.js"></script> |
Simon Hunt | c2202d5 | 2014-12-16 13:30:15 -0800 | [diff] [blame] | 43 | |
Simon Hunt | 6cc5369 | 2015-01-07 11:33:45 -0800 | [diff] [blame] | 44 | <script src="fw/svg/svg.js"></script> |
| 45 | <script src="fw/svg/glyph.js"></script> |
| 46 | <script src="fw/svg/icon.js"></script> |
Simon Hunt | f817338 | 2015-01-13 14:12:09 -0800 | [diff] [blame] | 47 | <script src="fw/svg/geodata.js"></script> |
Simon Hunt | 6cc5369 | 2015-01-07 11:33:45 -0800 | [diff] [blame] | 48 | <script src="fw/svg/map.js"></script> |
| 49 | <script src="fw/svg/zoom.js"></script> |
Simon Hunt | 737c89f | 2015-01-28 12:23:19 -0800 | [diff] [blame] | 50 | <script src="fw/svg/svgUtil.js"></script> |
Simon Hunt | 6cc5369 | 2015-01-07 11:33:45 -0800 | [diff] [blame] | 51 | |
Bri Prebilic Cole | 4fab8af | 2015-01-15 16:40:47 -0800 | [diff] [blame] | 52 | <script src="fw/remote/remote.js"></script> |
| 53 | <script src="fw/remote/urlfn.js"></script> |
| 54 | <script src="fw/remote/rest.js"></script> |
Simon Hunt | 1e4a001 | 2015-01-21 11:36:08 -0800 | [diff] [blame] | 55 | <script src="fw/remote/websocket.js"></script> |
| 56 | <script src="fw/remote/wsevent.js"></script> |
Bri Prebilic Cole | 4fab8af | 2015-01-15 16:40:47 -0800 | [diff] [blame] | 57 | |
Bri Prebilic Cole | 093739a | 2015-01-23 10:22:50 -0800 | [diff] [blame] | 58 | <script src="fw/widget/widget.js"></script> |
| 59 | <script src="fw/widget/table.js"></script> |
| 60 | |
Simon Hunt | 988934e | 2015-01-23 11:49:24 -0800 | [diff] [blame] | 61 | <script src="fw/layer/layer.js"></script> |
| 62 | <script src="fw/layer/panel.js"></script> |
| 63 | |
Simon Hunt | c2202d5 | 2014-12-16 13:30:15 -0800 | [diff] [blame] | 64 | <!-- Framework and library stylesheets included here --> |
| 65 | <!-- TODO: use a single catenated-minified file here --> |
| 66 | <link rel="stylesheet" href="onos.css"> |
Bri Prebilic Cole | 4fab8af | 2015-01-15 16:40:47 -0800 | [diff] [blame] | 67 | <link rel="stylesheet" href="common.css"> |
Simon Hunt | c2202d5 | 2014-12-16 13:30:15 -0800 | [diff] [blame] | 68 | <link rel="stylesheet" href="fw/mast/mast.css"> |
Simon Hunt | c9b7316 | 2015-01-29 14:02:15 -0800 | [diff] [blame] | 69 | <link rel="stylesheet" href="fw/svg/glyph.css"> |
Simon Hunt | 9722538 | 2015-01-19 13:33:09 -0800 | [diff] [blame] | 70 | <link rel="stylesheet" href="fw/svg/icon.css"> |
Simon Hunt | 54442fa | 2015-01-26 14:17:38 -0800 | [diff] [blame] | 71 | <link rel="stylesheet" href="fw/layer/panel.css"> |
Simon Hunt | 86388b1 | 2015-01-09 14:23:26 -0800 | [diff] [blame] | 72 | <link rel="stylesheet" href="fw/nav/nav.css"> |
Simon Hunt | c2202d5 | 2014-12-16 13:30:15 -0800 | [diff] [blame] | 73 | |
Simon Hunt | 5d12dc2 | 2015-01-05 16:56:22 -0800 | [diff] [blame] | 74 | <!-- This is where contributed javascript will get injected --> |
Simon Hunt | ef31fb2 | 2014-12-19 13:16:44 -0800 | [diff] [blame] | 75 | <!-- {INJECTED-JAVASCRIPT} --> |
| 76 | <script src="view/sample/sample.js"></script> |
| 77 | <script src="view/topo/topo.js"></script> |
Simon Hunt | bb59636 | 2015-01-26 21:27:42 -0800 | [diff] [blame] | 78 | <script src="view/topo/topoEvent.js"></script> |
Simon Hunt | 737c89f | 2015-01-28 12:23:19 -0800 | [diff] [blame] | 79 | <script src="view/topo/topoForce.js"></script> |
Simon Hunt | b0ec1e5 | 2015-01-28 18:13:49 -0800 | [diff] [blame] | 80 | <script src="view/topo/topoPanel.js"></script> |
Simon Hunt | 4b66859 | 2015-01-29 17:33:53 -0800 | [diff] [blame] | 81 | <script src="view/topo/topoInst.js"></script> |
Bri Prebilic Cole | 7c92a3d | 2015-01-09 16:50:03 -0800 | [diff] [blame] | 82 | <script src="view/device/device.js"></script> |
Simon Hunt | c2202d5 | 2014-12-16 13:30:15 -0800 | [diff] [blame] | 83 | <!-- TODO: inject javascript refs server-side --> |
| 84 | |
Simon Hunt | 5d12dc2 | 2015-01-05 16:56:22 -0800 | [diff] [blame] | 85 | <!-- This is where contributed stylesheets will get injected --> |
| 86 | <!-- {INJECTED-STYLESHEETS} --> |
Simon Hunt | ef31fb2 | 2014-12-19 13:16:44 -0800 | [diff] [blame] | 87 | <link rel="stylesheet" href="view/sample/sample.css"> |
| 88 | <link rel="stylesheet" href="view/topo/topo.css"> |
Bri Prebilic Cole | 7c92a3d | 2015-01-09 16:50:03 -0800 | [diff] [blame] | 89 | <link rel="stylesheet" href="view/device/device.css"> |
Simon Hunt | c2202d5 | 2014-12-16 13:30:15 -0800 | [diff] [blame] | 90 | <!-- TODO: inject style-sheet refs server-side --> |
| 91 | </head> |
| 92 | <body class="light" ng-app="onosApp"> |
Simon Hunt | 1eecfa2 | 2014-12-16 14:46:29 -0800 | [diff] [blame] | 93 | <div id="frame" ng-controller="OnosCtrl as onosCtrl"> |
| 94 | <div id="mast" |
| 95 | ng-controller="MastCtrl as mastCtrl" |
| 96 | ng-include="'fw/mast/mast.html'"></div> |
Simon Hunt | c2202d5 | 2014-12-16 13:30:15 -0800 | [diff] [blame] | 97 | |
Simon Hunt | 1eecfa2 | 2014-12-16 14:46:29 -0800 | [diff] [blame] | 98 | <div id="view" ng-view></div> |
Simon Hunt | c2202d5 | 2014-12-16 13:30:15 -0800 | [diff] [blame] | 99 | |
Simon Hunt | 86388b1 | 2015-01-09 14:23:26 -0800 | [diff] [blame] | 100 | <div id="nav" |
| 101 | ng-controller="NavCtrl as navCtrl" |
| 102 | ng-include="'fw/nav/nav.html'"></div> |
| 103 | |
Simon Hunt | 1eecfa2 | 2014-12-16 14:46:29 -0800 | [diff] [blame] | 104 | <div id="floatpanels"></div> |
| 105 | <div id="alerts"></div> |
| 106 | <div id="flash"></div> |
| 107 | <div id="quickhelp"></div> |
| 108 | <div id="deathmask"></div> |
| 109 | </div> |
Simon Hunt | c2202d5 | 2014-12-16 13:30:15 -0800 | [diff] [blame] | 110 | </body> |
| 111 | </html> |