Mercurial > dive4elements > gnv-client
annotate gnv/src/main/webapp/WEB-INF/jsp/index.jsp @ 982:cd9414538f10
Added possibility to switch to FullScreen-Mode of the MapClient.
gnv/trunk@1161 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author | Tim Englich <tim.englich@intevation.de> |
---|---|
date | Mon, 07 Jun 2010 09:54:47 +0000 |
parents | cfea6dacd52a |
children | 33198e55371c |
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"); |
710
5f29bfeb61bd
Improved the design and layout of the user interface.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
708
diff
changeset
|
17 Object wms_published = request.getAttribute("wms_published"); |
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
|
18 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
|
19 |
971
a0e6566cd111
Integrated Openlayers using ext and geoext into the GNV-WebClient
Tim Englich <tim.englich@intevation.de>
parents:
710
diff
changeset
|
20 if (chart == null && statistic == null && histogram == null && wms_published == null) { |
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
|
21 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
|
22 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
|
23 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
|
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 } |
710
5f29bfeb61bd
Improved the design and layout of the user interface.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
708
diff
changeset
|
26 |
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
|
27 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
|
28 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
|
29 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
|
30 } |
694
271ec4d11a9f
Changed the whole design of the application regarding the bsh styleguide.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
668
diff
changeset
|
31 |
271ec4d11a9f
Changed the whole design of the application regarding the bsh styleguide.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
668
diff
changeset
|
32 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
|
33 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
|
34 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
|
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 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
|
37 |
271ec4d11a9f
Changed the whole design of the application regarding the bsh styleguide.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
668
diff
changeset
|
38 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
|
39 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
|
40 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
|
41 %> |
694
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 <%-- 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
|
44 <div id="project"> |
695
883b366e3b15
Replaced buttons for saving/loading projects with links.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
694
diff
changeset
|
45 <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
|
46 <tr> |
695
883b366e3b15
Replaced buttons for saving/loading projects with links.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
694
diff
changeset
|
47 <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
|
48 <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
|
49 | |
883b366e3b15
Replaced buttons for saving/loading projects with links.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
694
diff
changeset
|
50 <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
|
51 </td> |
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: 400px;"> |
883b366e3b15
Replaced buttons for saving/loading projects with links.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
694
diff
changeset
|
53 <div id="projectload"> |
883b366e3b15
Replaced buttons for saving/loading projects with links.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
694
diff
changeset
|
54 <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
|
55 <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
|
56 <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
|
57 </form> |
883b366e3b15
Replaced buttons for saving/loading projects with links.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
694
diff
changeset
|
58 </div> |
694
271ec4d11a9f
Changed the whole design of the application regarding the bsh styleguide.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
668
diff
changeset
|
59 </td> |
271ec4d11a9f
Changed the whole design of the application regarding the bsh styleguide.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
668
diff
changeset
|
60 </tr> |
271ec4d11a9f
Changed the whole design of the application regarding the bsh styleguide.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
668
diff
changeset
|
61 </table> |
271ec4d11a9f
Changed the whole design of the application regarding the bsh styleguide.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
668
diff
changeset
|
62 <%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
|
63 <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
|
64 <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
|
65 <br/> |
271ec4d11a9f
Changed the whole design of the application regarding the bsh styleguide.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
668
diff
changeset
|
66 <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
|
67 <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
|
68 </a> |
271ec4d11a9f
Changed the whole design of the application regarding the bsh styleguide.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
668
diff
changeset
|
69 </div> |
271ec4d11a9f
Changed the whole design of the application regarding the bsh styleguide.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
668
diff
changeset
|
70 <%}%> |
271ec4d11a9f
Changed the whole design of the application regarding the bsh styleguide.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
668
diff
changeset
|
71 <%if (showmapviewercallBody){ %> |
271ec4d11a9f
Changed the whole design of the application regarding the bsh styleguide.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
668
diff
changeset
|
72 <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
|
73 <%}%> |
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 |
710
5f29bfeb61bd
Improved the design and layout of the user interface.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
708
diff
changeset
|
76 <table style="width:100%;"> |
5f29bfeb61bd
Improved the design and layout of the user interface.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
708
diff
changeset
|
77 <tr id="contentRow"> |
5f29bfeb61bd
Improved the design and layout of the user interface.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
708
diff
changeset
|
78 <td id="parameterColumn"> |
5f29bfeb61bd
Improved the design and layout of the user interface.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
708
diff
changeset
|
79 <%-- 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
|
80 <div id="parameterPanel"> |
5f29bfeb61bd
Improved the design and layout of the user interface.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
708
diff
changeset
|
81 <%if (staticui == null){ %> |
5f29bfeb61bd
Improved the design and layout of the user interface.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
708
diff
changeset
|
82 <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
|
83 <%} else {%> |
5f29bfeb61bd
Improved the design and layout of the user interface.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
708
diff
changeset
|
84 <div class="down"> |
5f29bfeb61bd
Improved the design and layout of the user interface.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
708
diff
changeset
|
85 <fieldset> |
5f29bfeb61bd
Improved the design and layout of the user interface.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
708
diff
changeset
|
86 <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
|
87 <%=staticui.toString()%> |
5f29bfeb61bd
Improved the design and layout of the user interface.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
708
diff
changeset
|
88 </fieldset> |
5f29bfeb61bd
Improved the design and layout of the user interface.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
708
diff
changeset
|
89 </div> |
665
27f25b9ae9af
Improved exception handling. Display error messages after invalid user input.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
584
diff
changeset
|
90 <%}%> |
694
271ec4d11a9f
Changed the whole design of the application regarding the bsh styleguide.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
668
diff
changeset
|
91 |
710
5f29bfeb61bd
Improved the design and layout of the user interface.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
708
diff
changeset
|
92 <%-- 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
|
93 <%if (ui != null){%> |
5f29bfeb61bd
Improved the design and layout of the user interface.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
708
diff
changeset
|
94 <div id="timeseriesfilter"> |
5f29bfeb61bd
Improved the design and layout of the user interface.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
708
diff
changeset
|
95 <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
|
96 <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
|
97 |
710
5f29bfeb61bd
Improved the design and layout of the user interface.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
708
diff
changeset
|
98 <%-- 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
|
99 <%if (exception != null) {%> |
5f29bfeb61bd
Improved the design and layout of the user interface.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
708
diff
changeset
|
100 <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
|
101 <%}%> |
5f29bfeb61bd
Improved the design and layout of the user interface.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
708
diff
changeset
|
102 <%=ui != null ? ui.toString().replaceAll(" ", "") : "" %> |
410
9602f4bffc07
Added statistic to the actions if available.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
408
diff
changeset
|
103 |
710
5f29bfeb61bd
Improved the design and layout of the user interface.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
708
diff
changeset
|
104 <%if(furthertargets){%> |
978
cfea6dacd52a
Removed (X)HTML errors and warnings (issue275).
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
971
diff
changeset
|
105 <br/> |
710
5f29bfeb61bd
Improved the design and layout of the user interface.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
708
diff
changeset
|
106 <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
|
107 <%}%> |
5f29bfeb61bd
Improved the design and layout of the user interface.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
708
diff
changeset
|
108 </fieldset> |
5f29bfeb61bd
Improved the design and layout of the user interface.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
708
diff
changeset
|
109 </form> |
5f29bfeb61bd
Improved the design and layout of the user interface.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
708
diff
changeset
|
110 </div> |
5f29bfeb61bd
Improved the design and layout of the user interface.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
708
diff
changeset
|
111 <%}%> |
569
9a5e50e7afaa
Added action and jsp for rendering histograms.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
413
diff
changeset
|
112 |
710
5f29bfeb61bd
Improved the design and layout of the user interface.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
708
diff
changeset
|
113 <%-- 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
|
114 <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
|
115 |
5f29bfeb61bd
Improved the design and layout of the user interface.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
708
diff
changeset
|
116 <%if (chart != null) {%> |
5f29bfeb61bd
Improved the design and layout of the user interface.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
708
diff
changeset
|
117 <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
|
118 <%}%> |
5f29bfeb61bd
Improved the design and layout of the user interface.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
708
diff
changeset
|
119 |
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 (histogram != 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_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
|
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 <%-- render wms options --%> |
971
a0e6566cd111
Integrated Openlayers using ext and geoext into the GNV-WebClient
Tim Englich <tim.englich@intevation.de>
parents:
710
diff
changeset
|
126 <%if (wms_published != null) {%> |
710
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_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
|
128 <%}%> |
5f29bfeb61bd
Improved the design and layout of the user interface.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
708
diff
changeset
|
129 </div> |
5f29bfeb61bd
Improved the design and layout of the user interface.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
708
diff
changeset
|
130 </td> |
5f29bfeb61bd
Improved the design and layout of the user interface.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
708
diff
changeset
|
131 <td id="contentColumn"> |
5f29bfeb61bd
Improved the design and layout of the user interface.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
708
diff
changeset
|
132 <%if (exceptionMessage != null){ %> |
5f29bfeb61bd
Improved the design and layout of the user interface.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
708
diff
changeset
|
133 <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
|
134 <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
|
135 <p class="reload"> |
5f29bfeb61bd
Improved the design and layout of the user interface.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
708
diff
changeset
|
136 <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
|
137 <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
|
138 </a> |
5f29bfeb61bd
Improved the design and layout of the user interface.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
708
diff
changeset
|
139 </p> |
5f29bfeb61bd
Improved the design and layout of the user interface.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
708
diff
changeset
|
140 </div> |
5f29bfeb61bd
Improved the design and layout of the user interface.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
708
diff
changeset
|
141 <%}%> |
5f29bfeb61bd
Improved the design and layout of the user interface.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
708
diff
changeset
|
142 <%if (chart != null) {%> |
5f29bfeb61bd
Improved the design and layout of the user interface.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
708
diff
changeset
|
143 <%-- 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
|
144 <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
|
145 <%}%> |
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 <%-- render statistic --%> |
5f29bfeb61bd
Improved the design and layout of the user interface.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
708
diff
changeset
|
148 <%if (statistic != null) {%> |
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_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
|
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 histogram --%> |
5f29bfeb61bd
Improved the design and layout of the user interface.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
708
diff
changeset
|
153 <%if (histogram != 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_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
|
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 wms layer --%> |
5f29bfeb61bd
Improved the design and layout of the user interface.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
708
diff
changeset
|
158 <%if (wms_published != null) {%> |
971
a0e6566cd111
Integrated Openlayers using ext and geoext into the GNV-WebClient
Tim Englich <tim.englich@intevation.de>
parents:
710
diff
changeset
|
159 <jsp:include page="includes/display_map_inc.jsp"></jsp:include> |
710
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 </td> |
5f29bfeb61bd
Improved the design and layout of the user interface.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
708
diff
changeset
|
162 </tr> |
5f29bfeb61bd
Improved the design and layout of the user interface.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents:
708
diff
changeset
|
163 </table> |