Thomas Vachuska | e95da77 | 2015-02-23 15:50:11 -0800 | [diff] [blame] | 1 | <!DOCTYPE html> |
| 2 | <!-- |
Brian O'Connor | a09fe5b | 2017-08-03 21:12:30 -0700 | [diff] [blame] | 3 | ~ Copyright 2014-present Open Networking Foundation |
Thomas Vachuska | e95da77 | 2015-02-23 15:50:11 -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"> |
Thomas Vachuska | 83785e2 | 2015-04-01 02:55:02 -0700 | [diff] [blame] | 21 | |
| 22 | <link rel="apple-touch-icon" href="data/img/apple-touch-icon.png"> |
| 23 | <meta name="apple-mobile-web-app-capable" content="yes"> |
| 24 | <meta name="apple-mobile-web-app-status-bar-style" content="black"> |
| 25 | <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| 26 | |
Simon Hunt | fb35b83 | 2016-05-26 11:43:00 -0700 | [diff] [blame] | 27 | <link href='https://fonts.googleapis.com/css?family=Open+Sans:400,300,700' |
| 28 | rel='stylesheet' type='text/css'> |
| 29 | |
Simon Hunt | 7442d21 | 2015-02-26 10:55:00 -0800 | [diff] [blame] | 30 | <title>ONOS</title> |
Thomas Vachuska | e95da77 | 2015-02-23 15:50:11 -0800 | [diff] [blame] | 31 | |
| 32 | <!-- Third party library code included here --> |
Steven Burrows | 9145867 | 2017-08-16 11:53:38 +0100 | [diff] [blame] | 33 | <script src="vendor/angular/angular.min.js"></script> |
| 34 | <script src="vendor/angular-route/angular-route.min.js"></script> |
| 35 | <script src="vendor/angular-cookies/angular-cookies.min.js"></script> |
| 36 | <script src="vendor/d3/d3.min.js"></script> |
| 37 | <script src="vendor/topojson/topojson.js"></script> |
| 38 | <script src="vendor/Chart.js/dist/Chart.min.js"></script> |
| 39 | <script src="vendor/angular-chart.js/dist/angular-chart.min.js"></script> |
| 40 | <script src="vendor/lodash/index.js"></script> |
Jian Li | d7a5a74 | 2016-02-12 13:51:18 -0800 | [diff] [blame] | 41 | |
Thomas Vachuska | 0af2691 | 2016-03-21 21:37:30 -0700 | [diff] [blame] | 42 | <!-- {INJECTED-USER-START} --> |
| 43 | <!-- {INJECTED-USER-END} --> |
| 44 | |
Thomas Vachuska | e95da77 | 2015-02-23 15:50:11 -0800 | [diff] [blame] | 45 | <!-- ONOS UI Framework included here --> |
Thomas Vachuska | e95da77 | 2015-02-23 15:50:11 -0800 | [diff] [blame] | 46 | <script src="onos.js"></script> |
Steven Burrows | a145e10 | 2017-06-16 13:37:50 -0400 | [diff] [blame] | 47 | <script src="dist/onos.js"></script> |
Thomas Vachuska | e95da77 | 2015-02-23 15:50:11 -0800 | [diff] [blame] | 48 | |
| 49 | <!-- Framework and library stylesheets included here --> |
Steven Burrows | a145e10 | 2017-06-16 13:37:50 -0400 | [diff] [blame] | 50 | <link rel="stylesheet" href="dist/onos.css"> |
Thomas Vachuska | 583bc63 | 2015-04-14 10:10:57 -0700 | [diff] [blame] | 51 | |
Simon Hunt | 4092733 | 2016-01-22 15:29:47 -0800 | [diff] [blame] | 52 | <!-- Contributed javascript injected here --> |
Thomas Vachuska | 583bc63 | 2015-04-14 10:10:57 -0700 | [diff] [blame] | 53 | <!-- {INJECTED-JAVASCRIPT-START} --> |
Thomas Vachuska | e95da77 | 2015-02-23 15:50:11 -0800 | [diff] [blame] | 54 | <!-- {INJECTED-JAVASCRIPT-END} --> |
| 55 | |
Simon Hunt | 4092733 | 2016-01-22 15:29:47 -0800 | [diff] [blame] | 56 | <!-- Contributed stylesheets injected here --> |
Thomas Vachuska | e95da77 | 2015-02-23 15:50:11 -0800 | [diff] [blame] | 57 | <!-- {INJECTED-STYLESHEETS-START} --> |
Thomas Vachuska | e95da77 | 2015-02-23 15:50:11 -0800 | [diff] [blame] | 58 | <!-- {INJECTED-STYLESHEETS-END} --> |
| 59 | |
| 60 | </head> |
| 61 | <body class="light" ng-app="onosApp"> |
Bri Prebilic Cole | 55ee09b | 2015-08-04 14:34:07 -0700 | [diff] [blame] | 62 | <div id="frame" ng-controller="OnosCtrl as onosCtrl" detect-browser> |
Thomas Vachuska | e95da77 | 2015-02-23 15:50:11 -0800 | [diff] [blame] | 63 | <div id="mast" |
| 64 | ng-controller="MastCtrl as mastCtrl" |
| 65 | ng-include="'app/fw/mast/mast.html'"></div> |
| 66 | |
| 67 | <div id="view" ng-view></div> |
| 68 | |
| 69 | <div id="nav" |
| 70 | ng-controller="NavCtrl as navCtrl" |
| 71 | ng-include="'nav.html'"></div> |
| 72 | |
| 73 | <div id="floatpanels"></div> |
| 74 | <div id="alerts"></div> |
Bri Prebilic Cole | 54d0938 | 2015-03-19 18:40:27 -0700 | [diff] [blame] | 75 | <div id="tooltip"></div> |
Thomas Vachuska | e95da77 | 2015-02-23 15:50:11 -0800 | [diff] [blame] | 76 | <div id="flash"></div> |
| 77 | <div id="quickhelp"></div> |
Bri Prebilic Cole | 068814d | 2015-05-14 16:06:38 -0700 | [diff] [blame] | 78 | <div id="veil"> |
| 79 | <div class="msg"></div> |
| 80 | <svg resize></svg> |
| 81 | </div> |
Thomas Vachuska | e95da77 | 2015-02-23 15:50:11 -0800 | [diff] [blame] | 82 | </div> |
Thomas Vachuska | 83785e2 | 2015-04-01 02:55:02 -0700 | [diff] [blame] | 83 | |
| 84 | <script> |
| 85 | <!-- Inject user agent info into html element to allow CSS sensitivity. --> |
Simon Hunt | 20cfb87 | 2015-04-01 10:23:36 -0700 | [diff] [blame] | 86 | (function () { |
Simon Hunt | a1028c4 | 2017-02-07 20:08:03 -0800 | [diff] [blame] | 87 | var t = ('ontouchstart' in window) || ('onmsgesturechange' in window); |
Simon Hunt | 20cfb87 | 2015-04-01 10:23:36 -0700 | [diff] [blame] | 88 | d3.select(document.documentElement) |
| 89 | .attr('data-useragent', navigator.userAgent) |
| 90 | .attr('data-platform', navigator.platform) |
| 91 | .classed('touch', t); |
| 92 | }()); |
Thomas Vachuska | 83785e2 | 2015-04-01 02:55:02 -0700 | [diff] [blame] | 93 | </script> |
Thomas Vachuska | e95da77 | 2015-02-23 15:50:11 -0800 | [diff] [blame] | 94 | </body> |
| 95 | </html> |