blob: ebf25c57674f6822187fd7d8c5b0366b7432ca84 [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
Simon Hunt1c219892014-10-22 16:32:39 -070017 <script src="geometry.js"></script>
Simon Hunt0b05d4a2014-10-21 21:50:15 -070018 <script src="onosui.js"></script>
19
tom0eb04ca2014-08-25 14:34:51 -070020</head>
21<body>
Simon Hunt0b05d4a2014-10-21 21:50:15 -070022 <div id="frame">
23 <div id="mast">
24 <span class="title">
25 ONOS Web UI
26 </span>
27 <span class="right">
28 <span class="radio">[one]</span>
29 <span class="radio">[two]</span>
30 <span class="radio">[three]</span>
31 </span>
32 </div>
33 <div id="view"></div>
34 </div>
35
Simon Hunt3ab76a82014-10-22 13:07:32 -070036 <!-- Initialize the UI...-->
Simon Hunt0b05d4a2014-10-21 21:50:15 -070037 <script type="text/javascript">
38 var ONOS = $.onos({note: "config, if needed"});
39 </script>
40
Simon Hunt3ab76a82014-10-22 13:07:32 -070041 <!-- include module files-->
42 <!-- + mast.js-->
43 <!-- + nav.js-->
44 <!-- + .... application views-->
Simon Hunt0b05d4a2014-10-21 21:50:15 -070045
Simon Hunt3ab76a82014-10-22 13:07:32 -070046 <!-- for now, we are just bootstrapping the network visualization-->
Simon Hunt0b05d4a2014-10-21 21:50:15 -070047 <script src="network.js" type="text/javascript"></script>
48
Simon Hunt3ab76a82014-10-22 13:07:32 -070049 <!-- finally, build the UI-->
Simon Hunt0b05d4a2014-10-21 21:50:15 -070050 <script type="text/javascript">
51 $(ONOS.buildUi);
52 </script>
53
tom0eb04ca2014-08-25 14:34:51 -070054</body>
Simon Hunt0b05d4a2014-10-21 21:50:15 -070055</html>