annotate gnv/src/main/webapp/WEB-INF/jsp/index.jsp @ 710:5f29bfeb61bd

Improved the design and layout of the user interface. gnv/trunk@980 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Ingo Weinzierl <ingo.weinzierl@intevation.de>
date Sun, 25 Apr 2010 21:05:44 +0000
parents 7448b6f5f1ed
children a0e6566cd111
rev   line source
18
87002cbd194c Static UI -integration an some refactoringwork done
Tim Englich <tim.englich@intevation.de>
parents: 17
diff changeset
1 <%@ taglib uri="http://jakarta.apache.org/struts/tags-bean" prefix="bean" %>
665
27f25b9ae9af Improved exception handling. Display error messages after invalid user input.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 584
diff changeset
2 <%@ taglib uri="http://jakarta.apache.org/struts/tags-bean-el" prefix="bean-el" %>
8
65ff6fcfee0c Some Basic Stuff for WebProjects
Tim Englich <tim.englich@intevation.de>
parents: 4
diff changeset
3 <%@page import="java.util.Collection"%>
65ff6fcfee0c Some Basic Stuff for WebProjects
Tim Englich <tim.englich@intevation.de>
parents: 4
diff changeset
4 <%@page import="de.intevation.gnv.artifactdatabase.objects.ArtifactObject"%>
665
27f25b9ae9af Improved exception handling. Display error messages after invalid user input.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 584
diff changeset
5 <%@page import="de.intevation.gnv.action.CommunicationKeys"%>
8
65ff6fcfee0c Some Basic Stuff for WebProjects
Tim Englich <tim.englich@intevation.de>
parents: 4
diff changeset
6 <%@page import="de.intevation.gnv.action.sessionmodel.SessionModel"%>
65ff6fcfee0c Some Basic Stuff for WebProjects
Tim Englich <tim.englich@intevation.de>
parents: 4
diff changeset
7 <%@page import="de.intevation.gnv.action.sessionmodel.SessionModelFactory"%>
16
4ef6e4e9ef15 Intergate the new Pageinfrastructure into the old Layout
Tim Englich <tim.englich@intevation.de>
parents: 12
diff changeset
8 <%@page import="java.util.Iterator"%>
581
f0f0d4eaee58 Display chart when reaching a final state which doesn't need any further user input (issue184).
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 571
diff changeset
9 <%
665
27f25b9ae9af Improved exception handling. Display error messages after invalid user input.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 584
diff changeset
10 String exception = (String)request.getAttribute(CommunicationKeys.REQUEST_EXCEPTION_INPUT_ID);
581
f0f0d4eaee58 Display chart when reaching a final state which doesn't need any further user input (issue184).
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 571
diff changeset
11 SessionModel sm = SessionModelFactory.getInstance().getSessionModel(request);
f0f0d4eaee58 Display chart when reaching a final state which doesn't need any further user input (issue184).
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 571
diff changeset
12 Object ui = request.getAttribute("ui");
408
b5733f9f386b Design improvements: Moved chart option panel and export actions beneath the parameterization panel on the left side. Do not render a useless 'draw' button after reaching the final state.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 404
diff changeset
13 Object staticui = request.getAttribute("staticui");
571
f2ba58011a2d Added histogram option panel. Show chart/histogram options panel after the user selected chart or histogram. Moved options panel beneath action panel.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 570
diff changeset
14 Object chart = request.getAttribute("chart");
410
9602f4bffc07 Added statistic to the actions if available.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 408
diff changeset
15 Object statistic = request.getAttribute("statistic");
569
9a5e50e7afaa Added action and jsp for rendering histograms.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 413
diff changeset
16 Object histogram = request.getAttribute("histogram");
570
cbd397712ecf Render an OpenLayers map with the layer even published after triggering shapefile and mapfile creation.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 569
diff changeset
17 Object wms = request.getAttribute("wms");
710
5f29bfeb61bd Improved the design and layout of the user interface.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 708
diff changeset
18 Object wms_published = request.getAttribute("wms_published");
5f29bfeb61bd Improved the design and layout of the user interface.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 708
diff changeset
19 String serverPath = (String) request.getAttribute("mapserver");
5f29bfeb61bd Improved the design and layout of the user interface.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 708
diff changeset
20 String mapfilePath = (String) request.getAttribute("mapfile");
5f29bfeb61bd Improved the design and layout of the user interface.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 708
diff changeset
21 String layerName = (String) request.getAttribute("layer");
5f29bfeb61bd Improved the design and layout of the user interface.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 708
diff changeset
22 String timeToLive = (String) request.getAttribute("ttl");
408
b5733f9f386b Design improvements: Moved chart option panel and export actions beneath the parameterization panel on the left side. Do not render a useless 'draw' button after reaching the final state.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 404
diff changeset
23 boolean furthertargets = true;
581
f0f0d4eaee58 Display chart when reaching a final state which doesn't need any further user input (issue184).
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 571
diff changeset
24
f0f0d4eaee58 Display chart when reaching a final state which doesn't need any further user input (issue184).
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 571
diff changeset
25 if (chart == null && statistic == null && histogram == null && wms == null) {
f0f0d4eaee58 Display chart when reaching a final state which doesn't need any further user input (issue184).
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 571
diff changeset
26 boolean supportChart = sm.getOutputMode("chart") != null;
f0f0d4eaee58 Display chart when reaching a final state which doesn't need any further user input (issue184).
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 571
diff changeset
27 if (supportChart) {
f0f0d4eaee58 Display chart when reaching a final state which doesn't need any further user input (issue184).
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 571
diff changeset
28 chart = "true";
f0f0d4eaee58 Display chart when reaching a final state which doesn't need any further user input (issue184).
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 571
diff changeset
29 }
f0f0d4eaee58 Display chart when reaching a final state which doesn't need any further user input (issue184).
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 571
diff changeset
30 }
710
5f29bfeb61bd Improved the design and layout of the user interface.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 708
diff changeset
31
408
b5733f9f386b Design improvements: Moved chart option panel and export actions beneath the parameterization panel on the left side. Do not render a useless 'draw' button after reaching the final state.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 404
diff changeset
32 Object furthertargetsObject = request.getAttribute("furthertargets");
b5733f9f386b Design improvements: Moved chart option panel and export actions beneath the parameterization panel on the left side. Do not render a useless 'draw' button after reaching the final state.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 404
diff changeset
33 if (furthertargetsObject != null){
b5733f9f386b Design improvements: Moved chart option panel and export actions beneath the parameterization panel on the left side. Do not render a useless 'draw' button after reaching the final state.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 404
diff changeset
34 furthertargets = ((Boolean)furthertargetsObject).booleanValue();
b5733f9f386b Design improvements: Moved chart option panel and export actions beneath the parameterization panel on the left side. Do not render a useless 'draw' button after reaching the final state.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 404
diff changeset
35 }
694
271ec4d11a9f Changed the whole design of the application regarding the bsh styleguide.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 668
diff changeset
36
271ec4d11a9f Changed the whole design of the application regarding the bsh styleguide.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 668
diff changeset
37 Object exceptionMessage = request.getAttribute(CommunicationKeys.REQUEST_EXCEPTION_MESSAGE_ID);
271ec4d11a9f Changed the whole design of the application regarding the bsh styleguide.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 668
diff changeset
38 exceptionMessage = (exceptionMessage != null ? exceptionMessage.toString().replaceAll(" ", ".").replaceAll(":",".").toLowerCase() : null);
271ec4d11a9f Changed the whole design of the application regarding the bsh styleguide.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 668
diff changeset
39 exceptionMessage = (exceptionMessage != null && exceptionMessage.toString().endsWith(".") ? exceptionMessage.toString().substring(0,exceptionMessage.toString().length()-1) : exceptionMessage);
710
5f29bfeb61bd Improved the design and layout of the user interface.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 708
diff changeset
40
694
271ec4d11a9f Changed the whole design of the application regarding the bsh styleguide.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 668
diff changeset
41 boolean showmapviewercallBody = request.getAttribute("MAPVIEWERCALL") != null;
271ec4d11a9f Changed the whole design of the application regarding the bsh styleguide.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 668
diff changeset
42
271ec4d11a9f Changed the whole design of the application regarding the bsh styleguide.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 668
diff changeset
43 String exceptionProject = (String) request.getAttribute(CommunicationKeys.REQUEST_EXCEPTION_PROJECT);
271ec4d11a9f Changed the whole design of the application regarding the bsh styleguide.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 668
diff changeset
44 exceptionProject = exceptionProject != null ? exceptionProject.toLowerCase() : null;
271ec4d11a9f Changed the whole design of the application regarding the bsh styleguide.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 668
diff changeset
45 exceptionProject = exceptionProject != null ? exceptionProject.replaceAll(" ", ".") : null;
12
4ebe57b170d3 Integration of moving through the Artifact-States and rendering the UI.
Tim Englich <tim.englich@intevation.de>
parents: 11
diff changeset
46 %>
694
271ec4d11a9f Changed the whole design of the application regarding the bsh styleguide.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 668
diff changeset
47
271ec4d11a9f Changed the whole design of the application regarding the bsh styleguide.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 668
diff changeset
48 <%-- div container for project loading/saving and error messages related to this --%>
271ec4d11a9f Changed the whole design of the application regarding the bsh styleguide.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 668
diff changeset
49 <div id="project">
695
883b366e3b15 Replaced buttons for saving/loading projects with links.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 694
diff changeset
50 <table width="100%">
694
271ec4d11a9f Changed the whole design of the application regarding the bsh styleguide.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 668
diff changeset
51 <tr>
695
883b366e3b15 Replaced buttons for saving/loading projects with links.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 694
diff changeset
52 <td style="float: left; width: 225px;">
883b366e3b15 Replaced buttons for saving/loading projects with links.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 694
diff changeset
53 <a href="<%=response.encodeURL("store.do")%>"><bean:message key="gnviewer.project.save"/></a>
883b366e3b15 Replaced buttons for saving/loading projects with links.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 694
diff changeset
54 |
883b366e3b15 Replaced buttons for saving/loading projects with links.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 694
diff changeset
55 <a href="#" onclick="toggle('projectload');"><bean:message key="gnviewer.project.load"/></a>
694
271ec4d11a9f Changed the whole design of the application regarding the bsh styleguide.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 668
diff changeset
56 </td>
695
883b366e3b15 Replaced buttons for saving/loading projects with links.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 694
diff changeset
57 <td style="float: left; width: 400px;">
883b366e3b15 Replaced buttons for saving/loading projects with links.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 694
diff changeset
58 <div id="projectload">
883b366e3b15 Replaced buttons for saving/loading projects with links.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 694
diff changeset
59 <form id="loadProject" action="<%=response.encodeURL("load.do")%>" method="post" enctype="multipart/form-data">
708
7448b6f5f1ed Replaced standard html input button with a load image like the choose buttons (issue225).
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 696
diff changeset
60 <div id="browseDiv"><input type="file" name="document" accept="application/xml"/></div>
7448b6f5f1ed Replaced standard html input button with a load image like the choose buttons (issue225).
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 696
diff changeset
61 <div id="loadDiv"><input type="image" src="<bean:message key="gnviewer.project.load.button.src"/>"/></div>
695
883b366e3b15 Replaced buttons for saving/loading projects with links.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 694
diff changeset
62 </form>
883b366e3b15 Replaced buttons for saving/loading projects with links.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 694
diff changeset
63 </div>
694
271ec4d11a9f Changed the whole design of the application regarding the bsh styleguide.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 668
diff changeset
64 </td>
271ec4d11a9f Changed the whole design of the application regarding the bsh styleguide.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 668
diff changeset
65 </tr>
271ec4d11a9f Changed the whole design of the application regarding the bsh styleguide.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 668
diff changeset
66 </table>
271ec4d11a9f Changed the whole design of the application regarding the bsh styleguide.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 668
diff changeset
67 <%if (exceptionProject != null) {%>
271ec4d11a9f Changed the whole design of the application regarding the bsh styleguide.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 668
diff changeset
68 <div class="projectException">
271ec4d11a9f Changed the whole design of the application regarding the bsh styleguide.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 668
diff changeset
69 <bean:message key="<%=exceptionProject%>"/>
271ec4d11a9f Changed the whole design of the application regarding the bsh styleguide.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 668
diff changeset
70 <br/>
271ec4d11a9f Changed the whole design of the application regarding the bsh styleguide.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 668
diff changeset
71 <a href="<%=response.encodeURL("describe.do?uid="+System.currentTimeMillis())%>" title="<bean:message key="application.reload"/>">
271ec4d11a9f Changed the whole design of the application regarding the bsh styleguide.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 668
diff changeset
72 <bean:message key="application.reload"/>
271ec4d11a9f Changed the whole design of the application regarding the bsh styleguide.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 668
diff changeset
73 </a>
271ec4d11a9f Changed the whole design of the application regarding the bsh styleguide.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 668
diff changeset
74 </div>
271ec4d11a9f Changed the whole design of the application regarding the bsh styleguide.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 668
diff changeset
75 <%}%>
271ec4d11a9f Changed the whole design of the application regarding the bsh styleguide.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 668
diff changeset
76 <%if (showmapviewercallBody){ %>
271ec4d11a9f Changed the whole design of the application regarding the bsh styleguide.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 668
diff changeset
77 <jsp:include page="includes/display_mapviewercall_inc.jsp" />
271ec4d11a9f Changed the whole design of the application regarding the bsh styleguide.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 668
diff changeset
78 <%}%>
271ec4d11a9f Changed the whole design of the application regarding the bsh styleguide.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 668
diff changeset
79 </div>
271ec4d11a9f Changed the whole design of the application regarding the bsh styleguide.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 668
diff changeset
80
710
5f29bfeb61bd Improved the design and layout of the user interface.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 708
diff changeset
81 <table style="width:100%;">
5f29bfeb61bd Improved the design and layout of the user interface.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 708
diff changeset
82 <tr id="contentRow">
5f29bfeb61bd Improved the design and layout of the user interface.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 708
diff changeset
83 <td id="parameterColumn">
5f29bfeb61bd Improved the design and layout of the user interface.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 708
diff changeset
84 <%-- the parameter panel is following --%>
5f29bfeb61bd Improved the design and layout of the user interface.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 708
diff changeset
85 <div id="parameterPanel">
5f29bfeb61bd Improved the design and layout of the user interface.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 708
diff changeset
86 <%if (staticui == null){ %>
5f29bfeb61bd Improved the design and layout of the user interface.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 708
diff changeset
87 <jsp:include page="includes/display_fis_inc.jsp"></jsp:include>
5f29bfeb61bd Improved the design and layout of the user interface.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 708
diff changeset
88 <%} else {%>
5f29bfeb61bd Improved the design and layout of the user interface.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 708
diff changeset
89 <div class="down">
5f29bfeb61bd Improved the design and layout of the user interface.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 708
diff changeset
90 <fieldset>
5f29bfeb61bd Improved the design and layout of the user interface.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 708
diff changeset
91 <legend><bean:message key="gnviewer.history.title"/></legend>
5f29bfeb61bd Improved the design and layout of the user interface.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 708
diff changeset
92 <%=staticui.toString()%>
5f29bfeb61bd Improved the design and layout of the user interface.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 708
diff changeset
93 </fieldset>
5f29bfeb61bd Improved the design and layout of the user interface.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 708
diff changeset
94 </div>
665
27f25b9ae9af Improved exception handling. Display error messages after invalid user input.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 584
diff changeset
95 <%}%>
694
271ec4d11a9f Changed the whole design of the application regarding the bsh styleguide.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 668
diff changeset
96
710
5f29bfeb61bd Improved the design and layout of the user interface.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 708
diff changeset
97 <%-- render the dynamic part to feed the state and advance to the next state --%>
5f29bfeb61bd Improved the design and layout of the user interface.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 708
diff changeset
98 <%if (ui != null){%>
5f29bfeb61bd Improved the design and layout of the user interface.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 708
diff changeset
99 <div id="timeseriesfilter">
5f29bfeb61bd Improved the design and layout of the user interface.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 708
diff changeset
100 <form id="fisSelectionForm" onsubmit="displayOverlay()" action="<%=response.encodeURL("next.do")%>" method="post">
5f29bfeb61bd Improved the design and layout of the user interface.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 708
diff changeset
101 <fieldset>
571
f2ba58011a2d Added histogram option panel. Show chart/histogram options panel after the user selected chart or histogram. Moved options panel beneath action panel.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 570
diff changeset
102
710
5f29bfeb61bd Improved the design and layout of the user interface.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 708
diff changeset
103 <%-- error message, if user input was not valid --%>
5f29bfeb61bd Improved the design and layout of the user interface.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 708
diff changeset
104 <%if (exception != null) {%>
5f29bfeb61bd Improved the design and layout of the user interface.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 708
diff changeset
105 <div class="inputException"><%=exception%></div>
5f29bfeb61bd Improved the design and layout of the user interface.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 708
diff changeset
106 <%}%>
5f29bfeb61bd Improved the design and layout of the user interface.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 708
diff changeset
107 <%=ui != null ? ui.toString().replaceAll("&nbsp;", "") : "" %>
410
9602f4bffc07 Added statistic to the actions if available.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 408
diff changeset
108
710
5f29bfeb61bd Improved the design and layout of the user interface.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 708
diff changeset
109 <%if(furthertargets){%>
5f29bfeb61bd Improved the design and layout of the user interface.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 708
diff changeset
110 <br>
5f29bfeb61bd Improved the design and layout of the user interface.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 708
diff changeset
111 <input style="margin-top: 5px;" type="image" src="<bean:message key="gnviewer.select.button.src"/>"/>
5f29bfeb61bd Improved the design and layout of the user interface.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 708
diff changeset
112 <%}%>
5f29bfeb61bd Improved the design and layout of the user interface.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 708
diff changeset
113 </fieldset>
5f29bfeb61bd Improved the design and layout of the user interface.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 708
diff changeset
114 </form>
5f29bfeb61bd Improved the design and layout of the user interface.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 708
diff changeset
115 </div>
5f29bfeb61bd Improved the design and layout of the user interface.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 708
diff changeset
116 <%}%>
569
9a5e50e7afaa Added action and jsp for rendering histograms.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 413
diff changeset
117
710
5f29bfeb61bd Improved the design and layout of the user interface.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 708
diff changeset
118 <%-- render export options if existing for this state --%>
5f29bfeb61bd Improved the design and layout of the user interface.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 708
diff changeset
119 <jsp:include page="includes/display_export_inc.jsp"></jsp:include>
5f29bfeb61bd Improved the design and layout of the user interface.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 708
diff changeset
120
5f29bfeb61bd Improved the design and layout of the user interface.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 708
diff changeset
121 <%if (chart != null) {%>
5f29bfeb61bd Improved the design and layout of the user interface.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 708
diff changeset
122 <jsp:include page="/WEB-INF/jsp/includes/display_diagramm_options_inc.jsp"></jsp:include>
5f29bfeb61bd Improved the design and layout of the user interface.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 708
diff changeset
123 <%}%>
5f29bfeb61bd Improved the design and layout of the user interface.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 708
diff changeset
124
5f29bfeb61bd Improved the design and layout of the user interface.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 708
diff changeset
125
5f29bfeb61bd Improved the design and layout of the user interface.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 708
diff changeset
126 <%if (histogram != null) {%>
5f29bfeb61bd Improved the design and layout of the user interface.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 708
diff changeset
127 <jsp:include page="/WEB-INF/jsp/includes/display_histogram_options_inc.jsp"></jsp:include>
5f29bfeb61bd Improved the design and layout of the user interface.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 708
diff changeset
128 <%}%>
5f29bfeb61bd Improved the design and layout of the user interface.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 708
diff changeset
129
5f29bfeb61bd Improved the design and layout of the user interface.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 708
diff changeset
130 <%-- render wms options --%>
5f29bfeb61bd Improved the design and layout of the user interface.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 708
diff changeset
131 <%if (wms != null) {%>
5f29bfeb61bd Improved the design and layout of the user interface.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 708
diff changeset
132 <jsp:include page="/WEB-INF/jsp/includes/display_wms_options_inc.jsp"></jsp:include>
5f29bfeb61bd Improved the design and layout of the user interface.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 708
diff changeset
133 <%}%>
5f29bfeb61bd Improved the design and layout of the user interface.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 708
diff changeset
134 </div>
5f29bfeb61bd Improved the design and layout of the user interface.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 708
diff changeset
135 </td>
5f29bfeb61bd Improved the design and layout of the user interface.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 708
diff changeset
136 <td id="contentColumn">
5f29bfeb61bd Improved the design and layout of the user interface.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 708
diff changeset
137 <%if (exceptionMessage != null){ %>
5f29bfeb61bd Improved the design and layout of the user interface.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 708
diff changeset
138 <div class="errormsg" id="load_error">
5f29bfeb61bd Improved the design and layout of the user interface.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 708
diff changeset
139 <bean-el:message key="<%=exceptionMessage.toString()%>"/>
5f29bfeb61bd Improved the design and layout of the user interface.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 708
diff changeset
140 <p class="reload">
5f29bfeb61bd Improved the design and layout of the user interface.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 708
diff changeset
141 <a href="<%=response.encodeURL("describe.do?uid="+System.currentTimeMillis())%>" title="<bean:message key="application.reload"/>">
5f29bfeb61bd Improved the design and layout of the user interface.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 708
diff changeset
142 <bean:message key="application.reload"/>
5f29bfeb61bd Improved the design and layout of the user interface.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 708
diff changeset
143 </a>
5f29bfeb61bd Improved the design and layout of the user interface.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 708
diff changeset
144 </p>
5f29bfeb61bd Improved the design and layout of the user interface.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 708
diff changeset
145 </div>
5f29bfeb61bd Improved the design and layout of the user interface.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 708
diff changeset
146 <%}%>
5f29bfeb61bd Improved the design and layout of the user interface.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 708
diff changeset
147 <%if (chart != null) {%>
5f29bfeb61bd Improved the design and layout of the user interface.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 708
diff changeset
148 <%-- render chart options if existing for this state --%>
5f29bfeb61bd Improved the design and layout of the user interface.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 708
diff changeset
149 <jsp:include page="includes/display_diagramm_inc.jsp"></jsp:include>
5f29bfeb61bd Improved the design and layout of the user interface.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 708
diff changeset
150 <%}%>
5f29bfeb61bd Improved the design and layout of the user interface.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 708
diff changeset
151
5f29bfeb61bd Improved the design and layout of the user interface.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 708
diff changeset
152 <%-- render statistic --%>
5f29bfeb61bd Improved the design and layout of the user interface.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 708
diff changeset
153 <%if (statistic != null) {%>
5f29bfeb61bd Improved the design and layout of the user interface.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 708
diff changeset
154 <jsp:include page="includes/display_diagramm_statistics_inc.jsp"></jsp:include>
5f29bfeb61bd Improved the design and layout of the user interface.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 708
diff changeset
155 <%}%>
5f29bfeb61bd Improved the design and layout of the user interface.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 708
diff changeset
156
5f29bfeb61bd Improved the design and layout of the user interface.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 708
diff changeset
157 <%-- render histogram --%>
5f29bfeb61bd Improved the design and layout of the user interface.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 708
diff changeset
158 <%if (histogram != null) {%>
5f29bfeb61bd Improved the design and layout of the user interface.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 708
diff changeset
159 <jsp:include page="includes/display_histogram_inc.jsp"></jsp:include>
5f29bfeb61bd Improved the design and layout of the user interface.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 708
diff changeset
160 <%}%>
5f29bfeb61bd Improved the design and layout of the user interface.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 708
diff changeset
161
5f29bfeb61bd Improved the design and layout of the user interface.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 708
diff changeset
162 <%-- render wms layer --%>
5f29bfeb61bd Improved the design and layout of the user interface.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 708
diff changeset
163 <%if (wms_published != null) {%>
5f29bfeb61bd Improved the design and layout of the user interface.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 708
diff changeset
164 <div class="outerMap">
5f29bfeb61bd Improved the design and layout of the user interface.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 708
diff changeset
165 <div id="wms">
5f29bfeb61bd Improved the design and layout of the user interface.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 708
diff changeset
166 <table>
5f29bfeb61bd Improved the design and layout of the user interface.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 708
diff changeset
167 <tr>
5f29bfeb61bd Improved the design and layout of the user interface.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 708
diff changeset
168 <td class="parameter"><bean:message key="gnviewer.wms.server.path"/>:</td>
5f29bfeb61bd Improved the design and layout of the user interface.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 708
diff changeset
169 <td class="wmsvalue"><%=serverPath%>?SERVICE=WMS&amp;REQUEST=GetCapabilities</td>
5f29bfeb61bd Improved the design and layout of the user interface.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 708
diff changeset
170 </tr>
5f29bfeb61bd Improved the design and layout of the user interface.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 708
diff changeset
171 <tr>
5f29bfeb61bd Improved the design and layout of the user interface.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 708
diff changeset
172 <td class="parameter"><bean:message key="gnviewer.wms.server.layer"/>:</td>
5f29bfeb61bd Improved the design and layout of the user interface.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 708
diff changeset
173 <td class="wmsvalue"><%=layerName%></td>
5f29bfeb61bd Improved the design and layout of the user interface.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 708
diff changeset
174 </tr>
5f29bfeb61bd Improved the design and layout of the user interface.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 708
diff changeset
175 <tr>
5f29bfeb61bd Improved the design and layout of the user interface.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 708
diff changeset
176 <td class="parameter"><bean:message key="gnviewer.wms.layer.ttl"/>:</td>
5f29bfeb61bd Improved the design and layout of the user interface.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 708
diff changeset
177 <td class="wmsvalue"><%=timeToLive%></td>
5f29bfeb61bd Improved the design and layout of the user interface.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 708
diff changeset
178 </tr>
5f29bfeb61bd Improved the design and layout of the user interface.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 708
diff changeset
179 </table>
5f29bfeb61bd Improved the design and layout of the user interface.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 708
diff changeset
180 </div>
5f29bfeb61bd Improved the design and layout of the user interface.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 708
diff changeset
181 <div id="map"></div>
5f29bfeb61bd Improved the design and layout of the user interface.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 708
diff changeset
182 </div>
5f29bfeb61bd Improved the design and layout of the user interface.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 708
diff changeset
183 <%}%>
5f29bfeb61bd Improved the design and layout of the user interface.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 708
diff changeset
184 </td>
5f29bfeb61bd Improved the design and layout of the user interface.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 708
diff changeset
185 </tr>
5f29bfeb61bd Improved the design and layout of the user interface.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 708
diff changeset
186 </table>

http://dive4elements.wald.intevation.org