blob: 19c920421967f41b1236d6d1eab9567b972b402f [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 Hunt19cb0982014-10-23 16:44:49 -070018 <script src="onos.js"></script>
Simon Hunt0b05d4a2014-10-21 21:50:15 -070019
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">
Simon Hunt19cb0982014-10-23 16:44:49 -070024 <img id="logo" src="img/onos-logo.png" width="60" height="38">
25 <span class="title">Open Network Operating System</span>
Simon Hunt0b05d4a2014-10-21 21:50:15 -070026 <span class="right">
Simon Hunt19cb0982014-10-23 16:44:49 -070027 <span class="radio">[All Layers]</span>
28 <span class="radio">[Packet Only]</span>
29 <span class="radio">[Optical Only]</span>
Simon Hunt0b05d4a2014-10-21 21:50:15 -070030 </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>