blob: c5d1c989a2808f7c2dd935ab1266728b7ac17c59 [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">
Simon Hunt352be5f2014-11-23 12:14:49 -080027 <title>ONOS</title>
Simon Hunt195cb382014-11-03 17:50:51 -080028
29 <link rel="shortcut icon" href="img/onos-logo.png">
30
Simon Hunt195cb382014-11-03 17:50:51 -080031 <!-- Third party library code included here -->
32 <!--TODO: use the minified version of d3, once debugging is complete -->
33 <script src="libs/d3.js"></script>
Paul Greyson6cb8ca02014-11-12 18:09:02 -080034 <script src="libs/topojson.v1.min.js"></script>
Simon Hunt195cb382014-11-03 17:50:51 -080035 <script src="libs/jquery-2.1.1.min.js"></script>
36
37 <!-- Base library and framework stylesheets included here -->
38 <link rel="stylesheet" href="base.css">
39 <link rel="stylesheet" href="onos2.css">
40 <link rel="stylesheet" href="mast2.css">
Simon Hunt61d04042014-11-11 17:27:16 -080041 <link rel="stylesheet" href="floatPanel.css">
Simon Hunta3dd9572014-11-20 15:22:41 -080042 <link rel="stylesheet" href="feedback.css">
Simon Hunt5cef9062014-11-24 15:24:35 -080043 <link rel="stylesheet" href="onosQuickHelp.css">
Simon Hunt195cb382014-11-03 17:50:51 -080044
45 <!-- This is where contributed stylesheets get INJECTED -->
46 <!-- TODO: replace with template marker and inject refs server-side -->
47 <link rel="stylesheet" href="topo2.css">
48
49
50 <!-- General library modules included here-->
51 <script src="geometry2.js"></script>
52
53 <!-- ONOS UI Framework included here-->
54 <script src="onos2.js"></script>
55
56</head>
Thomas Vachuska89543292014-11-19 11:28:33 -080057<body>
Simon Hunt195cb382014-11-03 17:50:51 -080058 <div id="frame">
59 <div id="mast">
60 <!-- NOTE: masthead injected here by mast.js -->
61 </div>
62 <div id="view">
63 <!-- NOTE: views injected here by onos.js -->
64 </div>
Simon Hunt61d04042014-11-11 17:27:16 -080065 <div id="floatPanels">
66 <!-- NOTE: floating panels injected here, as needed -->
67 <!-- see onos.ui.addFloatingPanel -->
Simon Hunt195cb382014-11-03 17:50:51 -080068 </div>
Simon Hunt1a9eff92014-11-07 11:06:34 -080069 <div id="alerts">
70 <!-- NOTE: alert content injected here, as needed -->
71 </div>
Simon Hunta3dd9572014-11-20 15:22:41 -080072 <div id="feedback">
Simon Hunt5cef9062014-11-24 15:24:35 -080073 <!-- NOTE: feedback flashes to user -->
Simon Hunta3dd9572014-11-20 15:22:41 -080074 </div>
Simon Hunt5cef9062014-11-24 15:24:35 -080075 <div id="quickhelp">
76 <!-- NOTE: key bindings and mouse gesture help -->
Simon Hunt988c6fc2014-11-20 17:43:03 -080077 </div>
Simon Hunt195cb382014-11-03 17:50:51 -080078 </div>
79
80 <!-- Initialize the UI...-->
81 <script type="text/javascript">
Simon Hunt25248912014-11-04 11:25:48 -080082 var ONOS = $.onos({
Thomas Vachuska65368e32014-11-08 16:10:20 -080083 comment: 'configuration options',
Thomas Vachuskaece59ee2014-11-19 19:06:11 -080084 theme: 'dark',
Simon Hunt352be5f2014-11-23 12:14:49 -080085 startVid: 'topo'
Simon Hunt25248912014-11-04 11:25:48 -080086 });
Simon Hunt195cb382014-11-03 17:50:51 -080087 </script>
88
Simon Hunt1a9eff92014-11-07 11:06:34 -080089 <!-- Library module files included here -->
90 <script src="d3Utils.js"></script>
Simon Hunt12ce12e2014-11-15 21:13:19 -080091 <script src="glyphs.js"></script>
Simon Hunt1a9eff92014-11-07 11:06:34 -080092
Simon Hunt195cb382014-11-03 17:50:51 -080093 <!-- Framework module files included here -->
94 <script src="mast2.js"></script>
Simon Hunta3dd9572014-11-20 15:22:41 -080095 <script src="feedback.js"></script>
Simon Hunt5cef9062014-11-24 15:24:35 -080096 <script src="onosQuickHelp.js"></script>
Simon Hunt195cb382014-11-03 17:50:51 -080097
Simon Huntf67722a2014-11-10 09:32:06 -080098 <!-- View Module Templates; REMOVE THESE LINES, FOR PRODUCTION -->
99 <script src="module-svg-template.js"></script>
100 <script src="module-div-template.js"></script>
101
102 <!-- Sample views; REMOVE THESE LINES, FOR PRODUCTION -->
Simon Hunt25248912014-11-04 11:25:48 -0800103 <script src="sample2.js"></script>
Simon Huntdb9eb072014-11-04 19:12:46 -0800104 <script src="sampleRadio.js"></script>
Simon Hunt0df1b1d2014-11-04 22:58:29 -0800105 <script src="sampleKeys.js"></script>
Simon Hunt56d51852014-11-09 13:03:35 -0800106 <script src="sampleHash.js"></script>
Simon Hunt195cb382014-11-03 17:50:51 -0800107
Simon Hunt142d0032014-11-04 20:13:09 -0800108 <!-- Contributed (application) views injected here -->
109 <!-- TODO: replace with template marker and inject refs server-side -->
110 <script src="topo2.js"></script>
111
Simon Hunt195cb382014-11-03 17:50:51 -0800112 <!-- finally, build the UI-->
113 <script type="text/javascript">
114 $(ONOS.buildUi);
115 </script>
116
117</body>
118</html>