blob: c2cb8f862bce0a9683f09f2d082334c75ebd01e7 [file] [log] [blame]
tom0eb04ca2014-08-25 14:34:51 -07001<!DOCTYPE html>
Simon Hunt0b05d4a2014-10-21 21:50:15 -07002<!--
3 ONOS UI - single page web app
4
5 @author Simon Hunt
6 -->
tom0eb04ca2014-08-25 14:34:51 -07007<html>
8<head>
9 <title>ONOS GUI</title>
Simon Hunt8bca74f2014-10-15 16:56:55 -070010
11 <script src="libs/d3.min.js"></script>
12 <script src="libs/jquery-2.1.1.min.js"></script>
Simon Hunt0b05d4a2014-10-21 21:50:15 -070013
14 <link rel="stylesheet" href="base.css">
15 <link rel="stylesheet" href="onos.css">
16
17 <script src="onosui.js"></script>
18
tom0eb04ca2014-08-25 14:34:51 -070019</head>
20<body>
Simon Hunt0b05d4a2014-10-21 21:50:15 -070021 <div id="frame">
22 <div id="mast">
23 <span class="title">
24 ONOS Web UI
25 </span>
26 <span class="right">
27 <span class="radio">[one]</span>
28 <span class="radio">[two]</span>
29 <span class="radio">[three]</span>
30 </span>
31 </div>
32 <div id="view"></div>
33 </div>
34
Simon Hunt3ab76a82014-10-22 13:07:32 -070035 <!-- Initialize the UI...-->
Simon Hunt0b05d4a2014-10-21 21:50:15 -070036 <script type="text/javascript">
37 var ONOS = $.onos({note: "config, if needed"});
38 </script>
39
Simon Hunt3ab76a82014-10-22 13:07:32 -070040 <!-- include module files-->
41 <!-- + mast.js-->
42 <!-- + nav.js-->
43 <!-- + .... application views-->
Simon Hunt0b05d4a2014-10-21 21:50:15 -070044
Simon Hunt3ab76a82014-10-22 13:07:32 -070045 <!-- for now, we are just bootstrapping the network visualization-->
Simon Hunt0b05d4a2014-10-21 21:50:15 -070046 <script src="network.js" type="text/javascript"></script>
47
Simon Hunt3ab76a82014-10-22 13:07:32 -070048 <!-- finally, build the UI-->
Simon Hunt0b05d4a2014-10-21 21:50:15 -070049 <script type="text/javascript">
50 $(ONOS.buildUi);
51 </script>
52
tom0eb04ca2014-08-25 14:34:51 -070053</body>
Simon Hunt0b05d4a2014-10-21 21:50:15 -070054</html>