Skip to content

Commit

Permalink
Added jsp file for the new surveillance view
Browse files Browse the repository at this point in the history
  • Loading branch information
christianpape committed Feb 20, 2015
1 parent a4b5edd commit 652d0eb
Showing 1 changed file with 55 additions and 0 deletions.
55 changes: 55 additions & 0 deletions opennms-webapp/src/main/webapp/surveillance-view.jsp
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
<%--
/*******************************************************************************
* This file is part of OpenNMS(R).
*
* Copyright (C) 2002-2014 The OpenNMS Group, Inc.
* OpenNMS(R) is Copyright (C) 1999-2014 The OpenNMS Group, Inc.
*
* OpenNMS(R) is a registered trademark of The OpenNMS Group, Inc.
*
* OpenNMS(R) is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published
* by the Free Software Foundation, either version 3 of the License,
* or (at your option) any later version.
*
* OpenNMS(R) is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with OpenNMS(R). If not, see:
* http://www.gnu.org/licenses/
*
* For more information contact:
* OpenNMS(R) Licensing <license@opennms.org>
* http://www.opennms.org/
* http://www.opennms.com/
*******************************************************************************/
--%>

<%@page language="java"
contentType="text/html"
session="true"
%>

<jsp:include page="/includes/bootstrap.jsp" flush="false" >
<jsp:param name="title" value="Vaadin Surveillance Views" />
<jsp:param name="headTitle" value="Vaadin Surveillance Views" />
<jsp:param name="location" value="vaadin-surveillance-views" />
<jsp:param name="vaadinEmbeddedStyles" value="true" />
</jsp:include>

<%
String viewName = "";
if (request.getParameterMap().containsKey("viewName")) {
viewName = "&viewName=" + request.getParameter("viewName");
}
%>


<iframe src="osgi/vaadin-surveillance-views?dashboard=false<%= viewName %>" frameborder="0" style="height:100%; width:100%;"></iframe>
<jsp:include page="/includes/bootstrap-footer.jsp" flush="true"/>

0 comments on commit 652d0eb

Please sign in to comment.