Simon Hunt | c2202d5 | 2014-12-16 13:30:15 -0800 | [diff] [blame^] | 1 | <!DOCTYPE html> |
| 2 | <!-- |
| 3 | ~ Copyright 2014 Open Networking Laboratory |
| 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> |
| 30 | |
| 31 | <!-- NOTE: We are going to see if we can dispense with jQuery... --> |
| 32 | <!--<script src="../tp/jquery-2.1.1.min.js"></script>--> |
| 33 | |
| 34 | <!-- ONOS UI Framework included here --> |
| 35 | <!-- TODO: use a single catenated-minified file here --> |
| 36 | <script src="onos.js"></script> |
| 37 | <script src="fw/mast/mast.js"></script> |
| 38 | |
| 39 | <!-- Framework and library stylesheets included here --> |
| 40 | <!-- TODO: use a single catenated-minified file here --> |
| 41 | <link rel="stylesheet" href="onos.css"> |
| 42 | <link rel="stylesheet" href="fw/mast/mast.css"> |
| 43 | |
| 44 | <!-- This is where contributed javascript get injected --> |
| 45 | <!-- INJECTED-JAVASCRIPT --> |
| 46 | <!-- TODO: inject javascript refs server-side --> |
| 47 | |
| 48 | <!-- This is where contributed stylesheets get injected --> |
| 49 | <!-- INJECTED-CSS-STYLESHEETS --> |
| 50 | <!-- TODO: inject style-sheet refs server-side --> |
| 51 | </head> |
| 52 | <body class="light" ng-app="onosApp"> |
| 53 | <div id="mast" |
| 54 | ng-controller="MastCtrl as mastCtrl" |
| 55 | ng-include="'fw/mast/mast.html'"></div> |
| 56 | |
| 57 | <div id="view" ng-view></div> |
| 58 | |
| 59 | <div id="floatpanels"></div> |
| 60 | <div id="alerts"></div> |
| 61 | <div id="flash"></div> |
| 62 | <div id="quickhelp"></div> |
| 63 | <div id="deathmask"></div> |
| 64 | </body> |
| 65 | </html> |