Thomas Vachuska | e95da77 | 2015-02-23 15:50:11 -0800 | [diff] [blame] | 1 | <!DOCTYPE html> |
| 2 | <!-- |
| 3 | ~ Copyright 2014,2015 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"> |
Simon Hunt | 7442d21 | 2015-02-26 10:55:00 -0800 | [diff] [blame] | 21 | <title>ONOS</title> |
Thomas Vachuska | e95da77 | 2015-02-23 15:50:11 -0800 | [diff] [blame] | 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 | <!-- ONOS UI Framework included here --> |
| 32 | <!-- TODO: use a single catenated-minified file here --> |
| 33 | <script src="onos.js"></script> |
| 34 | <script src="app/directives.js"></script> |
| 35 | |
| 36 | <script src="app/fw/util/util.js"></script> |
| 37 | <script src="app/fw/util/fn.js"></script> |
| 38 | <script src="app/fw/util/random.js"></script> |
| 39 | <script src="app/fw/util/theme.js"></script> |
| 40 | <script src="app/fw/util/keys.js"></script> |
| 41 | |
| 42 | <script src="app/fw/mast/mast.js"></script> |
| 43 | <script src="app/fw/nav/nav.js"></script> |
| 44 | |
| 45 | <script src="app/fw/svg/svg.js"></script> |
| 46 | <script src="app/fw/svg/glyph.js"></script> |
| 47 | <script src="app/fw/svg/icon.js"></script> |
| 48 | <script src="app/fw/svg/geodata.js"></script> |
| 49 | <script src="app/fw/svg/map.js"></script> |
| 50 | <script src="app/fw/svg/zoom.js"></script> |
| 51 | <script src="app/fw/svg/svgUtil.js"></script> |
| 52 | |
| 53 | <script src="app/fw/remote/remote.js"></script> |
| 54 | <script src="app/fw/remote/urlfn.js"></script> |
| 55 | <script src="app/fw/remote/rest.js"></script> |
Simon Hunt | 20207df | 2015-03-10 18:30:14 -0700 | [diff] [blame] | 56 | <script src="app/fw/remote/wsock.js"></script> |
Thomas Vachuska | e95da77 | 2015-02-23 15:50:11 -0800 | [diff] [blame] | 57 | <script src="app/fw/remote/websocket.js"></script> |
Thomas Vachuska | e95da77 | 2015-02-23 15:50:11 -0800 | [diff] [blame] | 58 | |
| 59 | <script src="app/fw/widget/widget.js"></script> |
| 60 | <script src="app/fw/widget/table.js"></script> |
| 61 | <script src="app/fw/widget/toolbar.js"></script> |
| 62 | <script src="app/fw/widget/button.js"></script> |
| 63 | |
| 64 | <script src="app/fw/layer/layer.js"></script> |
| 65 | <script src="app/fw/layer/panel.js"></script> |
| 66 | <script src="app/fw/layer/flash.js"></script> |
| 67 | <script src="app/fw/layer/quickhelp.js"></script> |
| 68 | <script src="app/fw/layer/veil.js"></script> |
| 69 | |
| 70 | <!-- Framework and library stylesheets included here --> |
| 71 | <!-- TODO: use a single catenated-minified file here --> |
| 72 | <link rel="stylesheet" href="app/onos.css"> |
| 73 | <link rel="stylesheet" href="app/common.css"> |
| 74 | <link rel="stylesheet" href="app/fw/mast/mast.css"> |
| 75 | <link rel="stylesheet" href="app/fw/svg/glyph.css"> |
| 76 | <link rel="stylesheet" href="app/fw/svg/icon.css"> |
| 77 | <link rel="stylesheet" href="app/fw/layer/panel.css"> |
| 78 | <link rel="stylesheet" href="app/fw/layer/flash.css"> |
| 79 | <link rel="stylesheet" href="app/fw/layer/quickhelp.css"> |
| 80 | <link rel="stylesheet" href="app/fw/layer/veil.css"> |
| 81 | <link rel="stylesheet" href="app/fw/nav/nav.css"> |
Bri Prebilic Cole | 5000a75 | 2015-02-23 17:20:53 -0800 | [diff] [blame] | 82 | <link rel="stylesheet" href="app/fw/widget/button.css"> |
| 83 | <link rel="stylesheet" href="app/fw/widget/toolbar.css"> |
Thomas Vachuska | e95da77 | 2015-02-23 15:50:11 -0800 | [diff] [blame] | 84 | |
| 85 | <!-- This is where contributed javascript will get injected --> |
| 86 | <!-- {INJECTED-JAVASCRIPT-START} --> |
| 87 | <script src="app/view/sample/sample.js"></script> |
| 88 | <script src="app/view/topo/topo.js"></script> |
Simon Hunt | a4242de | 2015-02-24 17:11:55 -0800 | [diff] [blame] | 89 | <script src="app/view/topo/topoD3.js"></script> |
Thomas Vachuska | e95da77 | 2015-02-23 15:50:11 -0800 | [diff] [blame] | 90 | <script src="app/view/topo/topoEvent.js"></script> |
| 91 | <script src="app/view/topo/topoFilter.js"></script> |
| 92 | <script src="app/view/topo/topoForce.js"></script> |
| 93 | <script src="app/view/topo/topoInst.js"></script> |
Simon Hunt | fb8ea1f | 2015-02-24 21:38:09 -0800 | [diff] [blame] | 94 | <script src="app/view/topo/topoLink.js"></script> |
Thomas Vachuska | e95da77 | 2015-02-23 15:50:11 -0800 | [diff] [blame] | 95 | <script src="app/view/topo/topoModel.js"></script> |
| 96 | <script src="app/view/topo/topoOblique.js"></script> |
| 97 | <script src="app/view/topo/topoPanel.js"></script> |
| 98 | <script src="app/view/topo/topoSelect.js"></script> |
| 99 | <script src="app/view/topo/topoTraffic.js"></script> |
| 100 | <script src="app/view/device/device.js"></script> |
| 101 | <!-- {INJECTED-JAVASCRIPT-END} --> |
| 102 | |
| 103 | |
| 104 | <!-- This is where contributed stylesheets will get injected --> |
| 105 | <!-- {INJECTED-STYLESHEETS-START} --> |
| 106 | <link rel="stylesheet" href="app/view/sample/sample.css"> |
| 107 | <link rel="stylesheet" href="app/view/topo/topo.css"> |
| 108 | <link rel="stylesheet" href="app/view/device/device.css"> |
Thomas Vachuska | e95da77 | 2015-02-23 15:50:11 -0800 | [diff] [blame] | 109 | <!-- {INJECTED-STYLESHEETS-END} --> |
| 110 | |
| 111 | </head> |
| 112 | <body class="light" ng-app="onosApp"> |
| 113 | <div id="frame" ng-controller="OnosCtrl as onosCtrl"> |
| 114 | <div id="mast" |
| 115 | ng-controller="MastCtrl as mastCtrl" |
| 116 | ng-include="'app/fw/mast/mast.html'"></div> |
| 117 | |
| 118 | <div id="view" ng-view></div> |
| 119 | |
| 120 | <div id="nav" |
| 121 | ng-controller="NavCtrl as navCtrl" |
| 122 | ng-include="'nav.html'"></div> |
| 123 | |
| 124 | <div id="floatpanels"></div> |
| 125 | <div id="alerts"></div> |
| 126 | <div id="flash"></div> |
| 127 | <div id="quickhelp"></div> |
| 128 | <div id="veil" |
| 129 | resize |
| 130 | ng-style="resizeWithOffset(0, 0)"></div> |
| 131 | </div> |
| 132 | </body> |
| 133 | </html> |