tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 1 | <!DOCTYPE html> |
Simon Hunt | 0b05d4a | 2014-10-21 21:50:15 -0700 | [diff] [blame] | 2 | <!-- |
Thomas Vachuska | 781d18b | 2014-10-27 10:31:25 -0700 | [diff] [blame^] | 3 | ~ Licensed to the Apache Software Foundation (ASF) under one |
| 4 | ~ or more contributor license agreements. See the NOTICE file |
| 5 | ~ distributed with this work for additional information |
| 6 | ~ regarding copyright ownership. The ASF licenses this file |
| 7 | ~ to you under the Apache License, Version 2.0 (the |
| 8 | ~ "License"); you may not use this file except in compliance |
| 9 | ~ with the License. You may obtain a copy of the License at |
| 10 | ~ |
| 11 | ~ http://www.apache.org/licenses/LICENSE-2.0 |
| 12 | ~ |
| 13 | ~ Unless required by applicable law or agreed to in writing, |
| 14 | ~ software distributed under the License is distributed on an |
| 15 | ~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| 16 | ~ KIND, either express or implied. See the License for the |
| 17 | ~ specific language governing permissions and limitations |
| 18 | ~ under the License. |
| 19 | --> |
| 20 | |
| 21 | <!-- |
Simon Hunt | 0b05d4a | 2014-10-21 21:50:15 -0700 | [diff] [blame] | 22 | ONOS UI - single page web app |
| 23 | |
| 24 | @author Simon Hunt |
| 25 | --> |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 26 | <html> |
| 27 | <head> |
| 28 | <title>ONOS GUI</title> |
Simon Hunt | 8bca74f | 2014-10-15 16:56:55 -0700 | [diff] [blame] | 29 | |
| 30 | <script src="libs/d3.min.js"></script> |
| 31 | <script src="libs/jquery-2.1.1.min.js"></script> |
Simon Hunt | 0b05d4a | 2014-10-21 21:50:15 -0700 | [diff] [blame] | 32 | |
| 33 | <link rel="stylesheet" href="base.css"> |
| 34 | <link rel="stylesheet" href="onos.css"> |
| 35 | |
Simon Hunt | 1c21989 | 2014-10-22 16:32:39 -0700 | [diff] [blame] | 36 | <script src="geometry.js"></script> |
Simon Hunt | 19cb098 | 2014-10-23 16:44:49 -0700 | [diff] [blame] | 37 | <script src="onos.js"></script> |
Simon Hunt | 0b05d4a | 2014-10-21 21:50:15 -0700 | [diff] [blame] | 38 | |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 39 | </head> |
| 40 | <body> |
Simon Hunt | 0b05d4a | 2014-10-21 21:50:15 -0700 | [diff] [blame] | 41 | <div id="frame"> |
| 42 | <div id="mast"> |
Simon Hunt | 19cb098 | 2014-10-23 16:44:49 -0700 | [diff] [blame] | 43 | <img id="logo" src="img/onos-logo.png" width="60" height="38"> |
| 44 | <span class="title">Open Network Operating System</span> |
Simon Hunt | 0b05d4a | 2014-10-21 21:50:15 -0700 | [diff] [blame] | 45 | <span class="right"> |
Simon Hunt | 19cb098 | 2014-10-23 16:44:49 -0700 | [diff] [blame] | 46 | <span class="radio">[All Layers]</span> |
| 47 | <span class="radio">[Packet Only]</span> |
| 48 | <span class="radio">[Optical Only]</span> |
Simon Hunt | 0b05d4a | 2014-10-21 21:50:15 -0700 | [diff] [blame] | 49 | </span> |
| 50 | </div> |
| 51 | <div id="view"></div> |
| 52 | </div> |
| 53 | |
Simon Hunt | 3ab76a8 | 2014-10-22 13:07:32 -0700 | [diff] [blame] | 54 | <!-- Initialize the UI...--> |
Simon Hunt | 0b05d4a | 2014-10-21 21:50:15 -0700 | [diff] [blame] | 55 | <script type="text/javascript"> |
| 56 | var ONOS = $.onos({note: "config, if needed"}); |
| 57 | </script> |
| 58 | |
Simon Hunt | 3ab76a8 | 2014-10-22 13:07:32 -0700 | [diff] [blame] | 59 | <!-- include module files--> |
| 60 | <!-- + mast.js--> |
| 61 | <!-- + nav.js--> |
| 62 | <!-- + .... application views--> |
Simon Hunt | 0b05d4a | 2014-10-21 21:50:15 -0700 | [diff] [blame] | 63 | |
Simon Hunt | 3ab76a8 | 2014-10-22 13:07:32 -0700 | [diff] [blame] | 64 | <!-- for now, we are just bootstrapping the network visualization--> |
Simon Hunt | 0b05d4a | 2014-10-21 21:50:15 -0700 | [diff] [blame] | 65 | <script src="network.js" type="text/javascript"></script> |
| 66 | |
Simon Hunt | 3ab76a8 | 2014-10-22 13:07:32 -0700 | [diff] [blame] | 67 | <!-- finally, build the UI--> |
Simon Hunt | 0b05d4a | 2014-10-21 21:50:15 -0700 | [diff] [blame] | 68 | <script type="text/javascript"> |
| 69 | $(ONOS.buildUi); |
| 70 | </script> |
| 71 | |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 72 | </body> |
Simon Hunt | 0b05d4a | 2014-10-21 21:50:15 -0700 | [diff] [blame] | 73 | </html> |