blob: d261b3f3744e4276bc9eb9df5b9fe3bdcac25414 [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 Hunt1eecfa22014-12-16 14:46:29 -080030 <script src="../tp/jquery-2.1.1.min.js"></script>
Simon Huntc2202d52014-12-16 13:30:15 -080031
32 <!-- ONOS UI Framework included here -->
33 <!-- TODO: use a single catenated-minified file here -->
34 <script src="onos.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>
Yuta HIGUCHI4f39bcd2014-12-18 20:46:14 -080038 <script src="fw/util/theme.js"></script>
Simon Huntdc6362a2014-12-18 19:55:23 -080039 <script src="fw/util/keys.js"></script>
40
Simon Huntc2202d52014-12-16 13:30:15 -080041 <script src="fw/mast/mast.js"></script>
Simon Hunt86388b12015-01-09 14:23:26 -080042 <script src="fw/nav/nav.js"></script>
Simon Huntc2202d52014-12-16 13:30:15 -080043
Simon Hunt6cc53692015-01-07 11:33:45 -080044 <script src="fw/svg/svg.js"></script>
45 <script src="fw/svg/glyph.js"></script>
46 <script src="fw/svg/icon.js"></script>
47 <script src="fw/svg/map.js"></script>
48 <script src="fw/svg/zoom.js"></script>
49
Simon Huntc2202d52014-12-16 13:30:15 -080050 <!-- Framework and library stylesheets included here -->
51 <!-- TODO: use a single catenated-minified file here -->
52 <link rel="stylesheet" href="onos.css">
53 <link rel="stylesheet" href="fw/mast/mast.css">
Simon Hunt86388b12015-01-09 14:23:26 -080054 <link rel="stylesheet" href="fw/nav/nav.css">
Simon Huntc2202d52014-12-16 13:30:15 -080055
Simon Hunt5d12dc22015-01-05 16:56:22 -080056 <!-- This is where contributed javascript will get injected -->
Simon Huntef31fb22014-12-19 13:16:44 -080057 <!-- {INJECTED-JAVASCRIPT} -->
58 <script src="view/sample/sample.js"></script>
59 <script src="view/topo/topo.js"></script>
Bri Prebilic Cole7c92a3d2015-01-09 16:50:03 -080060 <script src="view/device/device.js"></script>
Simon Huntc2202d52014-12-16 13:30:15 -080061 <!-- TODO: inject javascript refs server-side -->
62
Simon Hunt5d12dc22015-01-05 16:56:22 -080063 <!-- This is where contributed stylesheets will get injected -->
64 <!-- {INJECTED-STYLESHEETS} -->
Simon Huntef31fb22014-12-19 13:16:44 -080065 <link rel="stylesheet" href="view/sample/sample.css">
66 <link rel="stylesheet" href="view/topo/topo.css">
Bri Prebilic Cole7c92a3d2015-01-09 16:50:03 -080067 <link rel="stylesheet" href="view/device/device.css">
Simon Huntc2202d52014-12-16 13:30:15 -080068 <!-- TODO: inject style-sheet refs server-side -->
69</head>
70<body class="light" ng-app="onosApp">
Simon Hunt1eecfa22014-12-16 14:46:29 -080071 <div id="frame" ng-controller="OnosCtrl as onosCtrl">
72 <div id="mast"
73 ng-controller="MastCtrl as mastCtrl"
74 ng-include="'fw/mast/mast.html'"></div>
Simon Huntc2202d52014-12-16 13:30:15 -080075
Simon Hunt1eecfa22014-12-16 14:46:29 -080076 <div id="view" ng-view></div>
Simon Huntc2202d52014-12-16 13:30:15 -080077
Simon Hunt86388b12015-01-09 14:23:26 -080078 <div id="nav"
79 ng-controller="NavCtrl as navCtrl"
80 ng-include="'fw/nav/nav.html'"></div>
81
Simon Hunt1eecfa22014-12-16 14:46:29 -080082 <div id="floatpanels"></div>
83 <div id="alerts"></div>
84 <div id="flash"></div>
85 <div id="quickhelp"></div>
86 <div id="deathmask"></div>
87 </div>
Simon Huntc2202d52014-12-16 13:30:15 -080088</body>
89</html>