GUI -- Dropped the '2' in filenames.
- renamed 'libs' dir to 'tp' (third-party), so we can use 'lib' for our own libraries. Change-Id: I2d9e1c6c20cf2dc45451e1fa01aad5f658666111
Showing
21 changed files
with
23 additions
and
23 deletions
... | @@ -26,8 +26,8 @@ | ... | @@ -26,8 +26,8 @@ |
26 | <title>ONOS GUI</title> | 26 | <title>ONOS GUI</title> |
27 | 27 | ||
28 | <!--TODO: use the minified version of d3, once debugging is complete --> | 28 | <!--TODO: use the minified version of d3, once debugging is complete --> |
29 | - <script src="../libs/d3.js"></script> | 29 | + <script src="../tp/d3.js"></script> |
30 | - <script src="../libs/jquery-2.1.1.min.js"></script> | 30 | + <script src="../tp/jquery-2.1.1.min.js"></script> |
31 | 31 | ||
32 | <link rel="stylesheet" href="../base.css"> | 32 | <link rel="stylesheet" href="../base.css"> |
33 | <link rel="stylesheet" href="onos.css"> | 33 | <link rel="stylesheet" href="onos.css"> | ... | ... |
... | @@ -14,14 +14,14 @@ | ... | @@ -14,14 +14,14 @@ |
14 | ~ See the License for the specific language governing permissions and | 14 | ~ See the License for the specific language governing permissions and |
15 | ~ limitations under the License. | 15 | ~ limitations under the License. |
16 | --> | 16 | --> |
17 | -<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" | 17 | +<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
18 | - xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" | 18 | + xmlns="http://java.sun.com/xml/ns/javaee" |
19 | xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" | 19 | xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" |
20 | id="ONOS" version="2.5"> | 20 | id="ONOS" version="2.5"> |
21 | <display-name>ONOS GUI</display-name> | 21 | <display-name>ONOS GUI</display-name> |
22 | 22 | ||
23 | <welcome-file-list> | 23 | <welcome-file-list> |
24 | - <welcome-file>index2.html</welcome-file> | 24 | + <welcome-file>index.html</welcome-file> |
25 | </welcome-file-list> | 25 | </welcome-file-list> |
26 | 26 | ||
27 | <servlet> | 27 | <servlet> | ... | ... |
... | @@ -4,9 +4,9 @@ | ... | @@ -4,9 +4,9 @@ |
4 | <meta charset="utf-8"> | 4 | <meta charset="utf-8"> |
5 | <title>Icons</title> | 5 | <title>Icons</title> |
6 | 6 | ||
7 | - <script src="../libs/d3.js"></script> | 7 | + <script src="../tp/d3.js"></script> |
8 | - <script src="../libs/topojson.v1.min.js"></script> | 8 | + <script src="../tp/topojson.v1.min.js"></script> |
9 | - <script src="../libs/jquery-2.1.1.min.js"></script> | 9 | + <script src="../tp/jquery-2.1.1.min.js"></script> |
10 | 10 | ||
11 | <style> | 11 | <style> |
12 | html, | 12 | html, | ... | ... |
... | @@ -30,28 +30,28 @@ | ... | @@ -30,28 +30,28 @@ |
30 | 30 | ||
31 | <!-- Third party library code included here --> | 31 | <!-- Third party library code included here --> |
32 | <!--TODO: use the minified version of d3, once debugging is complete --> | 32 | <!--TODO: use the minified version of d3, once debugging is complete --> |
33 | - <script src="libs/d3.js"></script> | 33 | + <script src="tp/d3.js"></script> |
34 | - <script src="libs/topojson.v1.min.js"></script> | 34 | + <script src="tp/topojson.v1.min.js"></script> |
35 | - <script src="libs/jquery-2.1.1.min.js"></script> | 35 | + <script src="tp/jquery-2.1.1.min.js"></script> |
36 | 36 | ||
37 | <!-- Base library and framework stylesheets included here --> | 37 | <!-- Base library and framework stylesheets included here --> |
38 | <link rel="stylesheet" href="base.css"> | 38 | <link rel="stylesheet" href="base.css"> |
39 | - <link rel="stylesheet" href="onos2.css"> | 39 | + <link rel="stylesheet" href="onos.css"> |
40 | - <link rel="stylesheet" href="mast2.css"> | 40 | + <link rel="stylesheet" href="onosMast.css"> |
41 | - <link rel="stylesheet" href="floatPanel.css"> | 41 | + <link rel="stylesheet" href="onosFloatPanel.css"> |
42 | - <link rel="stylesheet" href="feedback.css"> | 42 | + <link rel="stylesheet" href="onosFlash.css"> |
43 | <link rel="stylesheet" href="onosQuickHelp.css"> | 43 | <link rel="stylesheet" href="onosQuickHelp.css"> |
44 | 44 | ||
45 | <!-- This is where contributed stylesheets get INJECTED --> | 45 | <!-- This is where contributed stylesheets get INJECTED --> |
46 | <!-- TODO: replace with template marker and inject refs server-side --> | 46 | <!-- TODO: replace with template marker and inject refs server-side --> |
47 | - <link rel="stylesheet" href="topo2.css"> | 47 | + <link rel="stylesheet" href="topo.css"> |
48 | 48 | ||
49 | 49 | ||
50 | <!-- General library modules included here--> | 50 | <!-- General library modules included here--> |
51 | - <script src="geometry2.js"></script> | 51 | + <script src="geometry.js"></script> |
52 | 52 | ||
53 | <!-- ONOS UI Framework included here--> | 53 | <!-- ONOS UI Framework included here--> |
54 | - <script src="onos2.js"></script> | 54 | + <script src="onos.js"></script> |
55 | 55 | ||
56 | </head> | 56 | </head> |
57 | <body> | 57 | <body> |
... | @@ -91,8 +91,8 @@ | ... | @@ -91,8 +91,8 @@ |
91 | <script src="glyphs.js"></script> | 91 | <script src="glyphs.js"></script> |
92 | 92 | ||
93 | <!-- Framework module files included here --> | 93 | <!-- Framework module files included here --> |
94 | - <script src="mast2.js"></script> | 94 | + <script src="onosMast.js"></script> |
95 | - <script src="feedback.js"></script> | 95 | + <script src="onosFlash.js"></script> |
96 | <script src="onosQuickHelp.js"></script> | 96 | <script src="onosQuickHelp.js"></script> |
97 | 97 | ||
98 | <!-- View Module Templates; REMOVE THESE LINES, FOR PRODUCTION --> | 98 | <!-- View Module Templates; REMOVE THESE LINES, FOR PRODUCTION --> |
... | @@ -100,14 +100,14 @@ | ... | @@ -100,14 +100,14 @@ |
100 | <script src="module-div-template.js"></script> | 100 | <script src="module-div-template.js"></script> |
101 | 101 | ||
102 | <!-- Sample views; REMOVE THESE LINES, FOR PRODUCTION --> | 102 | <!-- Sample views; REMOVE THESE LINES, FOR PRODUCTION --> |
103 | - <script src="sample2.js"></script> | 103 | + <script src="sample.js"></script> |
104 | <script src="sampleRadio.js"></script> | 104 | <script src="sampleRadio.js"></script> |
105 | <script src="sampleKeys.js"></script> | 105 | <script src="sampleKeys.js"></script> |
106 | <script src="sampleHash.js"></script> | 106 | <script src="sampleHash.js"></script> |
107 | 107 | ||
108 | <!-- Contributed (application) views injected here --> | 108 | <!-- Contributed (application) views injected here --> |
109 | <!-- TODO: replace with template marker and inject refs server-side --> | 109 | <!-- TODO: replace with template marker and inject refs server-side --> |
110 | - <script src="topo2.js"></script> | 110 | + <script src="topo.js"></script> |
111 | 111 | ||
112 | <!-- finally, build the UI--> | 112 | <!-- finally, build the UI--> |
113 | <script type="text/javascript"> | 113 | <script type="text/javascript"> | ... | ... |
... | @@ -1987,7 +1987,7 @@ | ... | @@ -1987,7 +1987,7 @@ |
1987 | .replace(/\#.*/, '') | 1987 | .replace(/\#.*/, '') |
1988 | .replace('http://', 'ws://') | 1988 | .replace('http://', 'ws://') |
1989 | .replace('https://', 'wss://') | 1989 | .replace('https://', 'wss://') |
1990 | - .replace('index2.html', config.webSockUrl); | 1990 | + .replace('index.html', config.webSockUrl); |
1991 | } | 1991 | } |
1992 | 1992 | ||
1993 | webSock = { | 1993 | webSock = { | ... | ... |
File moved
File moved
-
Please register or login to post a comment