blob: 95c4e4d9063091c8672b3a6096201d621d68a678 [file] [log] [blame]
Simon Hunt195cb382014-11-03 17:50:51 -08001<!DOCTYPE html>
2<!--
3 ~ Copyright 2014 Open Networking Laboratory
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
18<!--
19 ONOS UI - single page web app
20 Version 1.1
21
22 @author Simon Hunt
23 -->
24<html>
25<head>
26 <meta charset="utf-8">
27 <title>ONOS GUI (v1.1)</title>
28
29 <link rel="shortcut icon" href="img/onos-logo.png">
30
31 <!-- first script to be run -->
32 <script src="preamble.js"></script>
33
34 <!-- Third party library code included here -->
35 <!--TODO: use the minified version of d3, once debugging is complete -->
36 <script src="libs/d3.js"></script>
37 <script src="libs/jquery-2.1.1.min.js"></script>
38
39 <!-- Base library and framework stylesheets included here -->
40 <link rel="stylesheet" href="base.css">
41 <link rel="stylesheet" href="onos2.css">
42 <link rel="stylesheet" href="mast2.css">
43
44 <!-- This is where contributed stylesheets get INJECTED -->
45 <!-- TODO: replace with template marker and inject refs server-side -->
46 <link rel="stylesheet" href="topo2.css">
47
48
49 <!-- General library modules included here-->
50 <script src="geometry2.js"></script>
51
52 <!-- ONOS UI Framework included here-->
53 <script src="onos2.js"></script>
54
55</head>
56<body>
57 <div id="frame">
58 <div id="mast">
59 <!-- NOTE: masthead injected here by mast.js -->
60 </div>
61 <div id="view">
62 <!-- NOTE: views injected here by onos.js -->
63 </div>
64 <div id="overlays">
65 <!-- NOTE: overlays injected here, as needed -->
66 </div>
67 </div>
68
69 <!-- Initialize the UI...-->
70 <script type="text/javascript">
Simon Hunt25248912014-11-04 11:25:48 -080071 var ONOS = $.onos({
72 comment: "configuration options",
73 trace: false
74 });
Simon Hunt195cb382014-11-03 17:50:51 -080075 </script>
76
77 <!-- Framework module files included here -->
78 <script src="mast2.js"></script>
79
80 <!-- Contributed (application) views injected here -->
81 <!-- TODO: replace with template marker and inject refs server-side -->
Simon Hunt25248912014-11-04 11:25:48 -080082 <script src="sample2.js"></script>
83 <script src="sampleAlt2.js"></script>
Simon Huntdb9eb072014-11-04 19:12:46 -080084 <script src="sampleRadio.js"></script>
Simon Hunt195cb382014-11-03 17:50:51 -080085
86 <!-- finally, build the UI-->
87 <script type="text/javascript">
88 $(ONOS.buildUi);
89 </script>
90
91</body>
92</html>