blob: da4634545dc6e3c1ad27433df9163cae509438d2 [file] [log] [blame]
Simon Huntc2202d52014-12-16 13:30:15 -08001<!DOCTYPE html>
2<!--
Simon Hunt8ead3a22015-01-06 11:00:15 -08003~ Copyright 2014,2015 Open Networking Laboratory
Simon Huntc2202d52014-12-16 13:30:15 -08004~
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 Huntc2202d52014-12-16 13:30:15 -080030
31 <!-- ONOS UI Framework included here -->
32 <!-- TODO: use a single catenated-minified file here -->
33 <script src="onos.js"></script>
Simon Hunt0541fb82015-01-14 18:59:57 -080034 <script src="directives.js"></script>
Simon Huntdc6362a2014-12-18 19:55:23 -080035
36 <script src="fw/util/util.js"></script>
37 <script src="fw/util/fn.js"></script>
Simon Hunt3a6eec02015-02-09 21:16:43 -080038 <script src="fw/util/random.js"></script>
Yuta HIGUCHI4f39bcd2014-12-18 20:46:14 -080039 <script src="fw/util/theme.js"></script>
Simon Huntdc6362a2014-12-18 19:55:23 -080040 <script src="fw/util/keys.js"></script>
41
Simon Huntc2202d52014-12-16 13:30:15 -080042 <script src="fw/mast/mast.js"></script>
Simon Hunt86388b12015-01-09 14:23:26 -080043 <script src="fw/nav/nav.js"></script>
Simon Huntc2202d52014-12-16 13:30:15 -080044
Simon Hunt6cc53692015-01-07 11:33:45 -080045 <script src="fw/svg/svg.js"></script>
46 <script src="fw/svg/glyph.js"></script>
47 <script src="fw/svg/icon.js"></script>
Simon Huntf8173382015-01-13 14:12:09 -080048 <script src="fw/svg/geodata.js"></script>
Simon Hunt6cc53692015-01-07 11:33:45 -080049 <script src="fw/svg/map.js"></script>
50 <script src="fw/svg/zoom.js"></script>
Simon Hunt737c89f2015-01-28 12:23:19 -080051 <script src="fw/svg/svgUtil.js"></script>
Simon Hunt6cc53692015-01-07 11:33:45 -080052
Bri Prebilic Cole4fab8af2015-01-15 16:40:47 -080053 <script src="fw/remote/remote.js"></script>
54 <script src="fw/remote/urlfn.js"></script>
55 <script src="fw/remote/rest.js"></script>
Simon Hunt1e4a0012015-01-21 11:36:08 -080056 <script src="fw/remote/websocket.js"></script>
57 <script src="fw/remote/wsevent.js"></script>
Bri Prebilic Cole4fab8af2015-01-15 16:40:47 -080058
Bri Prebilic Cole093739a2015-01-23 10:22:50 -080059 <script src="fw/widget/widget.js"></script>
60 <script src="fw/widget/table.js"></script>
Bri Prebilic Cole2e3f8562015-02-17 17:21:31 -080061 <script src="fw/widget/toolbar.js"></script>
Bri Prebilic Cole40be6b22015-02-19 17:12:23 -080062 <script src="fw/widget/button.js"></script>
Bri Prebilic Cole093739a2015-01-23 10:22:50 -080063
Simon Hunt988934e2015-01-23 11:49:24 -080064 <script src="fw/layer/layer.js"></script>
65 <script src="fw/layer/panel.js"></script>
Simon Hunte33889d2015-02-05 11:39:28 -080066 <script src="fw/layer/flash.js"></script>
Simon Hunt639dc662015-02-18 14:19:20 -080067 <script src="fw/layer/quickhelp.js"></script>
Bri Prebilic Cole47bb7802015-02-05 17:25:15 -080068 <script src="fw/layer/veil.js"></script>
Simon Hunt988934e2015-01-23 11:49:24 -080069
Simon Huntc2202d52014-12-16 13:30:15 -080070 <!-- Framework and library stylesheets included here -->
71 <!-- TODO: use a single catenated-minified file here -->
72 <link rel="stylesheet" href="onos.css">
Bri Prebilic Cole4fab8af2015-01-15 16:40:47 -080073 <link rel="stylesheet" href="common.css">
Simon Huntc2202d52014-12-16 13:30:15 -080074 <link rel="stylesheet" href="fw/mast/mast.css">
Simon Huntc9b73162015-01-29 14:02:15 -080075 <link rel="stylesheet" href="fw/svg/glyph.css">
Simon Hunt97225382015-01-19 13:33:09 -080076 <link rel="stylesheet" href="fw/svg/icon.css">
Simon Hunt54442fa2015-01-26 14:17:38 -080077 <link rel="stylesheet" href="fw/layer/panel.css">
Simon Hunte33889d2015-02-05 11:39:28 -080078 <link rel="stylesheet" href="fw/layer/flash.css">
Simon Hunt639dc662015-02-18 14:19:20 -080079 <link rel="stylesheet" href="fw/layer/quickhelp.css">
Bri Prebilic Cole47bb7802015-02-05 17:25:15 -080080 <link rel="stylesheet" href="fw/layer/veil.css">
Simon Hunt86388b12015-01-09 14:23:26 -080081 <link rel="stylesheet" href="fw/nav/nav.css">
Simon Huntc2202d52014-12-16 13:30:15 -080082
Simon Hunt5d12dc22015-01-05 16:56:22 -080083 <!-- This is where contributed javascript will get injected -->
Thomas Vachuskaa0509892015-02-21 22:18:41 -080084 <!-- {INJECTED-JAVASCRIPT-START} -->
Simon Huntef31fb22014-12-19 13:16:44 -080085 <script src="view/sample/sample.js"></script>
86 <script src="view/topo/topo.js"></script>
Simon Huntbb596362015-01-26 21:27:42 -080087 <script src="view/topo/topoEvent.js"></script>
Simon Hunt99ee1e22015-02-13 09:24:43 -080088 <script src="view/topo/topoFilter.js"></script>
Simon Hunt737c89f2015-01-28 12:23:19 -080089 <script src="view/topo/topoForce.js"></script>
Simon Hunt08f841d02015-02-10 14:39:20 -080090 <script src="view/topo/topoInst.js"></script>
Simon Hunt3a6eec02015-02-09 21:16:43 -080091 <script src="view/topo/topoModel.js"></script>
Simon Huntef1138d2015-02-19 17:14:03 -080092 <script src="view/topo/topoOblique.js"></script>
Simon Huntb0ec1e52015-01-28 18:13:49 -080093 <script src="view/topo/topoPanel.js"></script>
Simon Hunt08f841d02015-02-10 14:39:20 -080094 <script src="view/topo/topoSelect.js"></script>
Simon Huntf542d842015-02-11 16:20:33 -080095 <script src="view/topo/topoTraffic.js"></script>
Bri Prebilic Cole7c92a3d2015-01-09 16:50:03 -080096 <script src="view/device/device.js"></script>
Thomas Vachuskaa0509892015-02-21 22:18:41 -080097 <!-- {INJECTED-JAVASCRIPT-END} -->
98
Simon Huntc2202d52014-12-16 13:30:15 -080099
Simon Hunt5d12dc22015-01-05 16:56:22 -0800100 <!-- This is where contributed stylesheets will get injected -->
Thomas Vachuskaa0509892015-02-21 22:18:41 -0800101 <!-- {INJECTED-STYLESHEETS-START} -->
Simon Huntef31fb22014-12-19 13:16:44 -0800102 <link rel="stylesheet" href="view/sample/sample.css">
103 <link rel="stylesheet" href="view/topo/topo.css">
Bri Prebilic Cole7c92a3d2015-01-09 16:50:03 -0800104 <link rel="stylesheet" href="view/device/device.css">
Simon Huntc2202d52014-12-16 13:30:15 -0800105 <!-- TODO: inject style-sheet refs server-side -->
Thomas Vachuskaa0509892015-02-21 22:18:41 -0800106 <!-- {INJECTED-STYLESHEETS-END} -->
107
Simon Huntc2202d52014-12-16 13:30:15 -0800108</head>
109<body class="light" ng-app="onosApp">
Thomas Vachuskaa0509892015-02-21 22:18:41 -0800110<div id="frame" ng-controller="OnosCtrl as onosCtrl">
111 <div id="mast"
112 ng-controller="MastCtrl as mastCtrl"
113 ng-include="'fw/mast/mast.html'"></div>
Simon Huntc2202d52014-12-16 13:30:15 -0800114
Thomas Vachuskaa0509892015-02-21 22:18:41 -0800115 <div id="view" ng-view></div>
Simon Huntc2202d52014-12-16 13:30:15 -0800116
Thomas Vachuskaa0509892015-02-21 22:18:41 -0800117 <div id="nav"
118 ng-controller="NavCtrl as navCtrl"
119 ng-include="'fw/nav/nav.html'"></div>
Simon Hunt86388b12015-01-09 14:23:26 -0800120
Thomas Vachuskaa0509892015-02-21 22:18:41 -0800121 <div id="floatpanels"></div>
122 <div id="alerts"></div>
123 <div id="flash"></div>
124 <div id="quickhelp"></div>
125 <div id="veil"
126 resize
127 ng-style="resizeWithOffset(0, 0)"></div>
128</div>
Simon Huntc2202d52014-12-16 13:30:15 -0800129</body>
130</html>