Mercurial > dive4elements > gnv-client
view gnv/src/main/webapp/WEB-INF/jsp/index.jsp @ 582:b8ea9383d285
Implemented a One-Step-Back-History.
gnv/trunk@723 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author | Ingo Weinzierl <ingo.weinzierl@intevation.de> |
---|---|
date | Tue, 02 Mar 2010 10:53:30 +0000 |
parents | f0f0d4eaee58 |
children | b31e81f35b64 |
line wrap: on
line source
<%@ taglib uri="http://jakarta.apache.org/struts/tags-bean" prefix="bean" %> <%@page import="java.util.Collection"%> <%@page import="de.intevation.gnv.artifactdatabase.objects.ArtifactObject"%> <%@page import="de.intevation.gnv.action.sessionmodel.SessionModel"%> <%@page import="de.intevation.gnv.action.sessionmodel.SessionModelFactory"%> <%@page import="java.util.Iterator"%> <% SessionModel sm = SessionModelFactory.getInstance().getSessionModel(request); Object ui = request.getAttribute("ui"); Object staticui = request.getAttribute("staticui"); Object chart = request.getAttribute("chart"); Object statistic = request.getAttribute("statistic"); Object histogram = request.getAttribute("histogram"); Object wms = request.getAttribute("wms"); boolean furthertargets = true; if (chart == null && statistic == null && histogram == null && wms == null) { boolean supportChart = sm.getOutputMode("chart") != null; if (supportChart) { chart = "true"; } } Object furthertargetsObject = request.getAttribute("furthertargets"); if (furthertargetsObject != null){ furthertargets = ((Boolean)furthertargetsObject).booleanValue(); } %> <div> <%if (staticui == null){ %> <jsp:include page="includes/display_fis_inc.jsp"></jsp:include> <%} else {%> <div class="down"> <fieldset> <legend><bean:message key="gnviewer.history.title"/></legend> <%=staticui.toString()%> </fieldset> </div> <%}%> <%-- render the dynamic part to feed the state and advance to the next state --%> <%if (ui != null){%> <div id="timeseriesfilter"> <form id="fisSelectionForm" onsubmit="displayOverlay()" action="<%=response.encodeURL("next.do")%>" method="post"> <fieldset> <%=ui != null ? ui.toString().replaceAll(" ", "") : "" %> <%if(furthertargets){%> <input type="submit" value="<bean:message key="gnviewer.select.button"/>"/> <%}%> </fieldset> </form> </div> <%}%> </div> <div id="map"></div> <%-- render export options if existing for this state --%> <jsp:include page="includes/display_export_inc.jsp"></jsp:include> <%if (chart != null) {%> <%-- render chart options if existing for this state --%> <jsp:include page="includes/display_diagramm_inc.jsp"></jsp:include> <%}%> <%-- render statistic --%> <%if (statistic != null) {%> <jsp:include page="includes/display_diagramm_statistics_inc.jsp"></jsp:include> <%}%> <%-- render histogram --%> <%if (histogram != null) {%> <jsp:include page="includes/display_histogram_inc.jsp"></jsp:include> <%}%>