Bug 868: Remove AD-SAL components which were deprecated in Lithium
[controller.git] / opendaylight / adsal / web / root / src / main / resources / WEB-INF / jsp / main.jsp
diff --git a/opendaylight/adsal/web/root/src/main/resources/WEB-INF/jsp/main.jsp b/opendaylight/adsal/web/root/src/main/resources/WEB-INF/jsp/main.jsp
deleted file mode 100644 (file)
index 5dfbc46..0000000
+++ /dev/null
@@ -1,198 +0,0 @@
-<%--
- - Copyright (c) 2013 Cisco Systems, Inc. and others.  All rights reserved. 
- - 
- - This program and the accompanying materials are made available under the 
- - terms of the Eclipse Public License v1.0 which accompanies this distribution, 
- - and is available at http://www.eclipse.org/legal/epl-v10.html
---%>
-<%@ page import="java.net.URL"%>
-<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
-
-<!DOCTYPE html>
-<html>
-
-<head>
-<meta name="viewport" content="width=device-width, initial-scale=1.0">
-
-<!-- Bootstrap CSS - 1 -->
-<link href="/css/bootstrap.min.css" rel="stylesheet" media="screen">
-<link rel="stylesheet" type="text/css" href="/css/fuelux.min.css">
-<link rel="stylesheet" type="text/css" href="/css/opendaylight.css">
-
-<!-- Core CSS - 2 -->
-<link rel="stylesheet/less" type="text/css" href="/css/one.less">
-
-<c:set var="version" value="Version 0.1" scope="application" />
-<c:set var="name" value="OpenDaylight" scope="application" />
-
-<%
-    String filePath = "/WEB-INF/jsp/custommain.jsp";
-    URL fileURL = pageContext.getServletContext().getResource(filePath);
-    if (fileURL != null) {
-%>
-<jsp:include page="<%=filePath%>" flush="true" />
-<%
-    }
-%>
-
-<title>${name}</title>
-<!-- jQuery - 1 -->
-<script src="/js/jquery-1.9.1.min.js"></script>
-
-<!-- Bootstrap JS - 2 -->
-<script src="/js/underscore-min.js"></script>
-<script src="/js/fuelux/loader.min.js"></script>
-<script src="/js/datasource.js"></script>
-
-<!-- LESS - 3 -->
-<script type="text/javascript">
-    less = {
-        env : "production"
-    };
-</script>
-<script src="/js/less-1.3.3.min.js"></script>
-
-<!-- Topology - 4 -->
-<script src="/js/jit.js"></script>
-</head>
-<body>
-
- <!-- #menu -->
- <div id="menu" class="navbar navbar-fixed-top">
-  <div class="navbar-inner row-fluid">
-   <div class="span9">
-    <a class="brand" href="/" title="${version}">${name}</a>
-    <ul class="nav nav-tabs">
-    </ul>
-   </div>
-   <div class="span3">
-    <div id="toolbar" class="btn-group">
-    <input type="hidden" id="currentuser" value="${username}" data-role="${role}">
-     <a class="btn dropdown-toggle" data-toggle="dropdown" href="#">
-      <div class="icon-user"></div> ${username} <span class="caret"></span>
-     </a>
-     <ul class="dropdown-menu">
-      <li><a href="#admin" id="admin" data-role="${role}"><div class="icon-users"></div> Users</a></li>
-      <li><a href="#cluster" id="cluster"><div class="icon-cluster"></div>Cluster</a></li>
-      <li><a href="#osgi" id="osgi"><div class="icon-default"></div>OSGi</a></li>
-      <li><a href="#save" id="save"><div class="icon-save"></div>Save</a></li>
-      <li><a href="#logout" id="logout"><div class="icon-logout"></div> Logout</a></li>
-     </ul>
-    </div>
-   </div>
-  </div>
- </div>
- <!-- END #menu -->
-
- <!-- #footer -->
- <div id="footer" class="navbar navbar-fixed-bottom">
-  <div class="navbar-inner row-fluid">
-   <div class="alert hide" id="alert">
-    <button type="button" class="close">&times;</button>
-    <p></p>
-   </div>
-  </div>
- </div>
- <!-- END #footer -->
-
- <!-- #main -->
- <div id="main">
-
-  <!-- #left -->
-  <div id="left">
-
-   <!-- #left-top -->
-   <div id="left-top">
-
-    <div class="dash">
-     <ul class="nav nav-tabs">
-     </ul>
-     <div class="dashlet row-fluid"></div>
-    </div>
-
-   </div>
-   <!-- END #left-top -->
-
-   <!-- #left-bottom -->
-   <div id="left-bottom">
-
-    <div class="dash">
-     <ul class="nav nav-tabs">
-     </ul>
-     <div class="dashlet row-fluid"></div>
-    </div>
-
-   </div>
-   <!-- END #left-bottom -->
-
-  </div>
-  <!-- END #left -->
-
-  <!-- #right -->
-  <div id="right">
-
-   <!-- #right-top -->
-   <div id="right-top">
-
-    <div class="dash">
-     <div id="topology"></div>
-    </div>
-
-   </div>
-   <!-- END #right-top -->
-
-   <!-- #right-bottom -->
-   <div id="right-bottom">
-
-    <div class="dash">
-     <ul class="nav nav-tabs">
-     </ul>
-     <div class="dashlet row-fluid"></div>
-    </div>
-
-   </div>
-   <!-- END #right-bottom -->
-
-  </div>
-  <!-- END #right -->
-
- </div>
- <!-- END #main -->
-
- <!-- modal -->
- <div id="modal" class="modal hide fade">
-  <div class="modal-header">
-   <button type="button" class="close" data-dismiss="modal"
-    aria-hidden="true">&times;</button>
-   <button type="button" class="help" aria-hidden="true"
-    >?</button>
-   <h3></h3>
-  </div>
-  <div class="modal-body"></div>
-  <div class="modal-footer"></div>
- </div>
- <!-- END modal -->
-
- <!-- Lib JS - 6 -->
- <script src="/js/lib.js"></script>
- <%
-     String jsPath = "/WEB-INF/jsp/customjs.jsp";
-     URL jsURL = pageContext.getServletContext().getResource(jsPath);
-     if (jsURL != null) {
- %>
- <jsp:include page="<%=jsPath%>" flush="true" />
- <%
-     } else {
- %>
- <!-- Core JS - 7 -->
- <script src="/js/open.js"></script>
-
- <!-- Topology JS - 8 -->
- <script src="/js/open-topology.js"></script>
- <%
-     }
- %>
-
-</body>
-
-</html>