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 | 1eecfa2 | 2014-12-16 14:46:29 -0800 | [diff] [blame] | 30 | <script src="../tp/jquery-2.1.1.min.js"></script> |
Simon Hunt | c2202d5 | 2014-12-16 13:30:15 -0800 | [diff] [blame] | 31 | |
| 32 | <!-- ONOS UI Framework included here --> |
| 33 | <!-- TODO: use a single catenated-minified file here --> |
| 34 | <script src="onos.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> |
| 42 | |
Simon Hunt | 6cc5369 | 2015-01-07 11:33:45 -0800 | [diff] [blame] | 43 | <script src="fw/svg/svg.js"></script> |
| 44 | <script src="fw/svg/glyph.js"></script> |
| 45 | <script src="fw/svg/icon.js"></script> |
| 46 | <script src="fw/svg/map.js"></script> |
| 47 | <script src="fw/svg/zoom.js"></script> |
| 48 | |
Simon Hunt | c2202d5 | 2014-12-16 13:30:15 -0800 | [diff] [blame] | 49 | <!-- Framework and library stylesheets included here --> |
| 50 | <!-- TODO: use a single catenated-minified file here --> |
| 51 | <link rel="stylesheet" href="onos.css"> |
| 52 | <link rel="stylesheet" href="fw/mast/mast.css"> |
| 53 | |
Simon Hunt | 5d12dc2 | 2015-01-05 16:56:22 -0800 | [diff] [blame] | 54 | <!-- This is where contributed javascript will get injected --> |
Simon Hunt | ef31fb2 | 2014-12-19 13:16:44 -0800 | [diff] [blame] | 55 | <!-- {INJECTED-JAVASCRIPT} --> |
| 56 | <script src="view/sample/sample.js"></script> |
| 57 | <script src="view/topo/topo.js"></script> |
Simon Hunt | c2202d5 | 2014-12-16 13:30:15 -0800 | [diff] [blame] | 58 | <!-- TODO: inject javascript refs server-side --> |
| 59 | |
Simon Hunt | 5d12dc2 | 2015-01-05 16:56:22 -0800 | [diff] [blame] | 60 | <!-- This is where contributed stylesheets will get injected --> |
| 61 | <!-- {INJECTED-STYLESHEETS} --> |
Simon Hunt | ef31fb2 | 2014-12-19 13:16:44 -0800 | [diff] [blame] | 62 | <link rel="stylesheet" href="view/sample/sample.css"> |
| 63 | <link rel="stylesheet" href="view/topo/topo.css"> |
Simon Hunt | c2202d5 | 2014-12-16 13:30:15 -0800 | [diff] [blame] | 64 | <!-- TODO: inject style-sheet refs server-side --> |
| 65 | </head> |
| 66 | <body class="light" ng-app="onosApp"> |
Simon Hunt | 1eecfa2 | 2014-12-16 14:46:29 -0800 | [diff] [blame] | 67 | <div id="frame" ng-controller="OnosCtrl as onosCtrl"> |
| 68 | <div id="mast" |
| 69 | ng-controller="MastCtrl as mastCtrl" |
| 70 | ng-include="'fw/mast/mast.html'"></div> |
Simon Hunt | c2202d5 | 2014-12-16 13:30:15 -0800 | [diff] [blame] | 71 | |
Simon Hunt | 1eecfa2 | 2014-12-16 14:46:29 -0800 | [diff] [blame] | 72 | <div id="view" ng-view></div> |
Simon Hunt | c2202d5 | 2014-12-16 13:30:15 -0800 | [diff] [blame] | 73 | |
Simon Hunt | 1eecfa2 | 2014-12-16 14:46:29 -0800 | [diff] [blame] | 74 | <div id="floatpanels"></div> |
| 75 | <div id="alerts"></div> |
| 76 | <div id="flash"></div> |
| 77 | <div id="quickhelp"></div> |
| 78 | <div id="deathmask"></div> |
| 79 | </div> |
Simon Hunt | c2202d5 | 2014-12-16 13:30:15 -0800 | [diff] [blame] | 80 | </body> |
| 81 | </html> |