Fixing not-ready GUI page.
Change-Id: I7671298502c675ae5fdf2a02e7ee67e775f2e797
Showing
2 changed files
with
41 additions
and
0 deletions
| ... | @@ -73,6 +73,7 @@ | ... | @@ -73,6 +73,7 @@ |
| 73 | <_wab>src/main/webapp/</_wab> | 73 | <_wab>src/main/webapp/</_wab> |
| 74 | <Include-Resource> | 74 | <Include-Resource> |
| 75 | WEB-INF/classes/index.html=src/main/webapp/index.html, | 75 | WEB-INF/classes/index.html=src/main/webapp/index.html, |
| 76 | + WEB-INF/classes/not-ready.html=src/main/webapp/not-ready.html, | ||
| 76 | WEB-INF/classes/onos.js=src/main/webapp/onos.js, | 77 | WEB-INF/classes/onos.js=src/main/webapp/onos.js, |
| 77 | WEB-INF/classes/nav.html=src/main/webapp/nav.html, | 78 | WEB-INF/classes/nav.html=src/main/webapp/nav.html, |
| 78 | WEB-INF/classes/app/view=src/main/webapp/app/view, | 79 | WEB-INF/classes/app/view=src/main/webapp/app/view, | ... | ... |
web/gui/src/main/webapp/not-ready.html
0 → 100644
| 1 | +<!DOCTYPE html> | ||
| 2 | +<!-- | ||
| 3 | + ~ Copyright 2015 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 | +<html> | ||
| 18 | +<link> | ||
| 19 | + <meta charset="utf-8"> | ||
| 20 | + <link rel="shortcut icon" href="data/img/onos-logo.png"> | ||
| 21 | + | ||
| 22 | + <link rel="apple-touch-icon" href="data/img/apple-touch-icon.png"> | ||
| 23 | + <meta name="apple-mobile-web-app-capable" content="yes"> | ||
| 24 | + <meta name="apple-mobile-web-app-status-bar-style" content="black"> | ||
| 25 | + <meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
| 26 | + | ||
| 27 | + <meta http-equiv="refresh" content="5;URL=/onos/ui"> | ||
| 28 | + | ||
| 29 | + <style> | ||
| 30 | + body { padding: 16px; } | ||
| 31 | + h1 { font-family: Arial, Helvetica, sans-serif } | ||
| 32 | + </style> | ||
| 33 | + | ||
| 34 | + <title>ONOS</title> | ||
| 35 | + | ||
| 36 | +</head> | ||
| 37 | +<body> | ||
| 38 | +<h1>ONOS GUI not ready yet... please stand by...</h1> | ||
| 39 | +</body> | ||
| 40 | +</html> |
-
Please register or login to post a comment