annotate gnv/src/main/webapp/WEB-INF/config/struts-config.xml @ 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 3b70886b399b
children 33198e55371c
rev   line source
4
72951b955f00 Basic Struts-Infrastructur Added
Tim Englich <tim.englich@intevation.de>
parents:
diff changeset
1 <?xml version="1.0" encoding="ISO-8859-1" ?>
72951b955f00 Basic Struts-Infrastructur Added
Tim Englich <tim.englich@intevation.de>
parents:
diff changeset
2 <!DOCTYPE struts-config PUBLIC
72951b955f00 Basic Struts-Infrastructur Added
Tim Englich <tim.englich@intevation.de>
parents:
diff changeset
3 "-//Apache Software Foundation//DTD Struts Configuration 1.2//EN"
72951b955f00 Basic Struts-Infrastructur Added
Tim Englich <tim.englich@intevation.de>
parents:
diff changeset
4 "http://jakarta.apache.org/struts/dtds/struts-config_1_2.dtd">
72951b955f00 Basic Struts-Infrastructur Added
Tim Englich <tim.englich@intevation.de>
parents:
diff changeset
5 <struts-config>
72951b955f00 Basic Struts-Infrastructur Added
Tim Englich <tim.englich@intevation.de>
parents:
diff changeset
6 <global-exceptions/>
43
830f4cf0e4ab Added Global Forward to determine the Start-URL of the Project. gnv/issue14
Tim Englich <tim.englich@intevation.de>
parents: 29
diff changeset
7 <global-forwards>
830f4cf0e4ab Added Global Forward to determine the Start-URL of the Project. gnv/issue14
Tim Englich <tim.englich@intevation.de>
parents: 29
diff changeset
8 <forward name="entrance" path="/start.do"/>
719
3b70886b399b Added jsp stubs for imprint and info and adjusted links in header and footer (issue225).
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 706
diff changeset
9 <forward name="imprint" path="/imprint.do"/>
3b70886b399b Added jsp stubs for imprint and info and adjusted links in header and footer (issue225).
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 706
diff changeset
10 <forward name="info" path="/info.do"/>
43
830f4cf0e4ab Added Global Forward to determine the Start-URL of the Project. gnv/issue14
Tim Englich <tim.englich@intevation.de>
parents: 29
diff changeset
11 </global-forwards>
706
2659a5b1fa1e Added a link (and a controller) to toggle between german and english language (issue254).
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 686
diff changeset
12
4
72951b955f00 Basic Struts-Infrastructur Added
Tim Englich <tim.englich@intevation.de>
parents:
diff changeset
13 <action-mappings>
719
3b70886b399b Added jsp stubs for imprint and info and adjusted links in header and footer (issue225).
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 706
diff changeset
14 <action path="/imprint"
3b70886b399b Added jsp stubs for imprint and info and adjusted links in header and footer (issue225).
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 706
diff changeset
15 type="org.apache.struts.actions.ForwardAction"
3b70886b399b Added jsp stubs for imprint and info and adjusted links in header and footer (issue225).
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 706
diff changeset
16 parameter="/WEB-INF/jsp/imprint.jsp"
3b70886b399b Added jsp stubs for imprint and info and adjusted links in header and footer (issue225).
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 706
diff changeset
17 scope="request"
3b70886b399b Added jsp stubs for imprint and info and adjusted links in header and footer (issue225).
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 706
diff changeset
18 validate="false" />
3b70886b399b Added jsp stubs for imprint and info and adjusted links in header and footer (issue225).
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 706
diff changeset
19 <action path="/info"
3b70886b399b Added jsp stubs for imprint and info and adjusted links in header and footer (issue225).
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 706
diff changeset
20 type="org.apache.struts.actions.ForwardAction"
3b70886b399b Added jsp stubs for imprint and info and adjusted links in header and footer (issue225).
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 706
diff changeset
21 parameter="/WEB-INF/jsp/info.jsp"
3b70886b399b Added jsp stubs for imprint and info and adjusted links in header and footer (issue225).
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 706
diff changeset
22 scope="request"
3b70886b399b Added jsp stubs for imprint and info and adjusted links in header and footer (issue225).
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 706
diff changeset
23 validate="false" />
282
d6c0d426e38a Added the Possibility to get Version-Infomation and Release Date/Time from the GNV-Project using a Browser issue87
Tim Englich <tim.englich@intevation.de>
parents: 43
diff changeset
24 <action path="/version"
d6c0d426e38a Added the Possibility to get Version-Infomation and Release Date/Time from the GNV-Project using a Browser issue87
Tim Englich <tim.englich@intevation.de>
parents: 43
diff changeset
25 type="de.intevation.gnv.action.ArtifactDatabaseActionBase"
d6c0d426e38a Added the Possibility to get Version-Infomation and Release Date/Time from the GNV-Project using a Browser issue87
Tim Englich <tim.englich@intevation.de>
parents: 43
diff changeset
26 scope="request"
d6c0d426e38a Added the Possibility to get Version-Infomation and Release Date/Time from the GNV-Project using a Browser issue87
Tim Englich <tim.englich@intevation.de>
parents: 43
diff changeset
27 validate="false">
d6c0d426e38a Added the Possibility to get Version-Infomation and Release Date/Time from the GNV-Project using a Browser issue87
Tim Englich <tim.englich@intevation.de>
parents: 43
diff changeset
28 <forward
d6c0d426e38a Added the Possibility to get Version-Infomation and Release Date/Time from the GNV-Project using a Browser issue87
Tim Englich <tim.englich@intevation.de>
parents: 43
diff changeset
29 name="success"
d6c0d426e38a Added the Possibility to get Version-Infomation and Release Date/Time from the GNV-Project using a Browser issue87
Tim Englich <tim.englich@intevation.de>
parents: 43
diff changeset
30 path="/WEB-INF/jsp/version.jsp"/>
d6c0d426e38a Added the Possibility to get Version-Infomation and Release Date/Time from the GNV-Project using a Browser issue87
Tim Englich <tim.englich@intevation.de>
parents: 43
diff changeset
31 </action>
558
8032da9e8b70 Added further business logic for the MapViewer-Interface
Tim Englich <tim.englich@intevation.de>
parents: 410
diff changeset
32 <action path="/extcall"
8032da9e8b70 Added further business logic for the MapViewer-Interface
Tim Englich <tim.englich@intevation.de>
parents: 410
diff changeset
33 type="de.intevation.gnv.action.mapviewer.MapViewerCallAction"
8032da9e8b70 Added further business logic for the MapViewer-Interface
Tim Englich <tim.englich@intevation.de>
parents: 410
diff changeset
34 scope="request"
8032da9e8b70 Added further business logic for the MapViewer-Interface
Tim Englich <tim.englich@intevation.de>
parents: 410
diff changeset
35 validate="false">
8032da9e8b70 Added further business logic for the MapViewer-Interface
Tim Englich <tim.englich@intevation.de>
parents: 410
diff changeset
36 <forward
8032da9e8b70 Added further business logic for the MapViewer-Interface
Tim Englich <tim.englich@intevation.de>
parents: 410
diff changeset
37 name="success"
8032da9e8b70 Added further business logic for the MapViewer-Interface
Tim Englich <tim.englich@intevation.de>
parents: 410
diff changeset
38 path="/WEB-INF/jsp/mainlayout.jsp"/>
8032da9e8b70 Added further business logic for the MapViewer-Interface
Tim Englich <tim.englich@intevation.de>
parents: 410
diff changeset
39 </action>
566
5aea89b9a350 Modified the GUI that the Form with the MapViewer-Interface-Request-Body only will be shown using an explicit Action-Call.
Tim Englich <tim.englich@intevation.de>
parents: 558
diff changeset
40 <action path="/mvcall"
5aea89b9a350 Modified the GUI that the Form with the MapViewer-Interface-Request-Body only will be shown using an explicit Action-Call.
Tim Englich <tim.englich@intevation.de>
parents: 558
diff changeset
41 type="de.intevation.gnv.action.mapviewer.ShowMapViewerCallBodyAction"
5aea89b9a350 Modified the GUI that the Form with the MapViewer-Interface-Request-Body only will be shown using an explicit Action-Call.
Tim Englich <tim.englich@intevation.de>
parents: 558
diff changeset
42 scope="request"
5aea89b9a350 Modified the GUI that the Form with the MapViewer-Interface-Request-Body only will be shown using an explicit Action-Call.
Tim Englich <tim.englich@intevation.de>
parents: 558
diff changeset
43 validate="false">
5aea89b9a350 Modified the GUI that the Form with the MapViewer-Interface-Request-Body only will be shown using an explicit Action-Call.
Tim Englich <tim.englich@intevation.de>
parents: 558
diff changeset
44 <forward
5aea89b9a350 Modified the GUI that the Form with the MapViewer-Interface-Request-Body only will be shown using an explicit Action-Call.
Tim Englich <tim.englich@intevation.de>
parents: 558
diff changeset
45 name="success"
5aea89b9a350 Modified the GUI that the Form with the MapViewer-Interface-Request-Body only will be shown using an explicit Action-Call.
Tim Englich <tim.englich@intevation.de>
parents: 558
diff changeset
46 path="/WEB-INF/jsp/mainlayout.jsp"/>
5aea89b9a350 Modified the GUI that the Form with the MapViewer-Interface-Request-Body only will be shown using an explicit Action-Call.
Tim Englich <tim.englich@intevation.de>
parents: 558
diff changeset
47 </action>
670
b89b31293772 Implemented first things to store/load projects.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 572
diff changeset
48 <action path="/store"
b89b31293772 Implemented first things to store/load projects.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 572
diff changeset
49 type="de.intevation.gnv.action.StoreAction"
b89b31293772 Implemented first things to store/load projects.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 572
diff changeset
50 scope="request"
b89b31293772 Implemented first things to store/load projects.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 572
diff changeset
51 validate="false">
b89b31293772 Implemented first things to store/load projects.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 572
diff changeset
52 <forward
b89b31293772 Implemented first things to store/load projects.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 572
diff changeset
53 name="success"
b89b31293772 Implemented first things to store/load projects.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 572
diff changeset
54 path="/WEB-INF/jsp/mainlayout.jsp"/>
b89b31293772 Implemented first things to store/load projects.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 572
diff changeset
55 <forward
b89b31293772 Implemented first things to store/load projects.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 572
diff changeset
56 name="failure"
b89b31293772 Implemented first things to store/load projects.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 572
diff changeset
57 path="/WEB-INF/jsp/mainlayout.jsp"/>
b89b31293772 Implemented first things to store/load projects.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 572
diff changeset
58 </action>
b89b31293772 Implemented first things to store/load projects.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 572
diff changeset
59 <action path="/load"
b89b31293772 Implemented first things to store/load projects.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 572
diff changeset
60 type="de.intevation.gnv.action.LoadAction"
b89b31293772 Implemented first things to store/load projects.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 572
diff changeset
61 scope="request"
b89b31293772 Implemented first things to store/load projects.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 572
diff changeset
62 validate="false">
b89b31293772 Implemented first things to store/load projects.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 572
diff changeset
63 <forward
b89b31293772 Implemented first things to store/load projects.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 572
diff changeset
64 name="success"
b89b31293772 Implemented first things to store/load projects.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 572
diff changeset
65 path="/WEB-INF/jsp/mainlayout.jsp"/>
b89b31293772 Implemented first things to store/load projects.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 572
diff changeset
66 <forward
b89b31293772 Implemented first things to store/load projects.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 572
diff changeset
67 name="failure"
b89b31293772 Implemented first things to store/load projects.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 572
diff changeset
68 path="/WEB-INF/jsp/mainlayout.jsp"/>
673
93b4dedc4e37 Implemented a mechanism to import artifacts from xml structured documents.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 670
diff changeset
69 <forward
93b4dedc4e37 Implemented a mechanism to import artifacts from xml structured documents.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 670
diff changeset
70 name="back"
93b4dedc4e37 Implemented a mechanism to import artifacts from xml structured documents.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 670
diff changeset
71 path="/gnv/back.do"/>
93b4dedc4e37 Implemented a mechanism to import artifacts from xml structured documents.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 670
diff changeset
72 <forward
93b4dedc4e37 Implemented a mechanism to import artifacts from xml structured documents.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 670
diff changeset
73 name="selectfis"
93b4dedc4e37 Implemented a mechanism to import artifacts from xml structured documents.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 670
diff changeset
74 path="/gnv/selectFis.do"/>
670
b89b31293772 Implemented first things to store/load projects.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 572
diff changeset
75 </action>
8
65ff6fcfee0c Some Basic Stuff for WebProjects
Tim Englich <tim.englich@intevation.de>
parents: 4
diff changeset
76 <action path="/start"
65ff6fcfee0c Some Basic Stuff for WebProjects
Tim Englich <tim.englich@intevation.de>
parents: 4
diff changeset
77 type="de.intevation.gnv.action.FetchArtifactFactoriesAction"
65ff6fcfee0c Some Basic Stuff for WebProjects
Tim Englich <tim.englich@intevation.de>
parents: 4
diff changeset
78 scope="request"
65ff6fcfee0c Some Basic Stuff for WebProjects
Tim Englich <tim.englich@intevation.de>
parents: 4
diff changeset
79 validate="false">
65ff6fcfee0c Some Basic Stuff for WebProjects
Tim Englich <tim.englich@intevation.de>
parents: 4
diff changeset
80 <forward
65ff6fcfee0c Some Basic Stuff for WebProjects
Tim Englich <tim.englich@intevation.de>
parents: 4
diff changeset
81 name="success"
16
4ef6e4e9ef15 Intergate the new Pageinfrastructure into the old Layout
Tim Englich <tim.englich@intevation.de>
parents: 13
diff changeset
82 path="/WEB-INF/jsp/mainlayout.jsp"/>
8
65ff6fcfee0c Some Basic Stuff for WebProjects
Tim Englich <tim.englich@intevation.de>
parents: 4
diff changeset
83 </action>
65ff6fcfee0c Some Basic Stuff for WebProjects
Tim Englich <tim.englich@intevation.de>
parents: 4
diff changeset
84 <action path="/selectArtifactFactory"
65ff6fcfee0c Some Basic Stuff for WebProjects
Tim Englich <tim.englich@intevation.de>
parents: 4
diff changeset
85 type="de.intevation.gnv.action.SelectArtifactFactoryAction"
65ff6fcfee0c Some Basic Stuff for WebProjects
Tim Englich <tim.englich@intevation.de>
parents: 4
diff changeset
86 scope="request"
65ff6fcfee0c Some Basic Stuff for WebProjects
Tim Englich <tim.englich@intevation.de>
parents: 4
diff changeset
87 validate="false">
65ff6fcfee0c Some Basic Stuff for WebProjects
Tim Englich <tim.englich@intevation.de>
parents: 4
diff changeset
88 <forward
65ff6fcfee0c Some Basic Stuff for WebProjects
Tim Englich <tim.englich@intevation.de>
parents: 4
diff changeset
89 name="success"
16
4ef6e4e9ef15 Intergate the new Pageinfrastructure into the old Layout
Tim Englich <tim.englich@intevation.de>
parents: 13
diff changeset
90 path="/WEB-INF/jsp/mainlayout.jsp"/>
682
d3062dc8626a Application is now sensitive to changes of the preferred browser language in the current session (issue30).
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 673
diff changeset
91 <forward
d3062dc8626a Application is now sensitive to changes of the preferred browser language in the current session (issue30).
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 673
diff changeset
92 name="back"
d3062dc8626a Application is now sensitive to changes of the preferred browser language in the current session (issue30).
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 673
diff changeset
93 path="/gnv/back.do"/>
401
002a4d38c16d Added a link to jump back to the fis selection.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 394
diff changeset
94 <forward
002a4d38c16d Added a link to jump back to the fis selection.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 394
diff changeset
95 name="selectfis"
002a4d38c16d Added a link to jump back to the fis selection.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 394
diff changeset
96 path="/gnv/selectFis.do"/>
4
72951b955f00 Basic Struts-Infrastructur Added
Tim Englich <tim.englich@intevation.de>
parents:
diff changeset
97 </action>
394
14eecfde4607 Render links to step back to previous states into gui. Added controller to advance back to these states.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 282
diff changeset
98 <action path="/back"
14eecfde4607 Render links to step back to previous states into gui. Added controller to advance back to these states.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 282
diff changeset
99 type="de.intevation.gnv.action.PreviousArtifactStepAction"
14eecfde4607 Render links to step back to previous states into gui. Added controller to advance back to these states.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 282
diff changeset
100 scope="request"
14eecfde4607 Render links to step back to previous states into gui. Added controller to advance back to these states.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 282
diff changeset
101 validate="false">
14eecfde4607 Render links to step back to previous states into gui. Added controller to advance back to these states.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 282
diff changeset
102 <forward
14eecfde4607 Render links to step back to previous states into gui. Added controller to advance back to these states.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 282
diff changeset
103 name="success"
14eecfde4607 Render links to step back to previous states into gui. Added controller to advance back to these states.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 282
diff changeset
104 path="/WEB-INF/jsp/mainlayout.jsp"/>
568
f21ad239c748 Repaired step-back history.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 566
diff changeset
105 <forward
f21ad239c748 Repaired step-back history.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 566
diff changeset
106 name="back"
f21ad239c748 Repaired step-back history.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 566
diff changeset
107 path="/gnv/back.do"/>
f21ad239c748 Repaired step-back history.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 566
diff changeset
108 <forward
f21ad239c748 Repaired step-back history.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 566
diff changeset
109 name="selectfis"
f21ad239c748 Repaired step-back history.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 566
diff changeset
110 path="/gnv/selectFis.do"/>
394
14eecfde4607 Render links to step back to previous states into gui. Added controller to advance back to these states.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 282
diff changeset
111 </action>
401
002a4d38c16d Added a link to jump back to the fis selection.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 394
diff changeset
112 <action path="/selectFis"
002a4d38c16d Added a link to jump back to the fis selection.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 394
diff changeset
113 type="de.intevation.gnv.action.SelectFisAction"
002a4d38c16d Added a link to jump back to the fis selection.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 394
diff changeset
114 scope="request"
002a4d38c16d Added a link to jump back to the fis selection.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 394
diff changeset
115 validate="false">
002a4d38c16d Added a link to jump back to the fis selection.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 394
diff changeset
116 <forward
002a4d38c16d Added a link to jump back to the fis selection.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 394
diff changeset
117 name="success"
002a4d38c16d Added a link to jump back to the fis selection.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 394
diff changeset
118 path="/WEB-INF/jsp/mainlayout.jsp"/>
002a4d38c16d Added a link to jump back to the fis selection.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 394
diff changeset
119 </action>
002a4d38c16d Added a link to jump back to the fis selection.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 394
diff changeset
120 <action path="/next"
12
4ebe57b170d3 Integration of moving through the Artifact-States and rendering the UI.
Tim Englich <tim.englich@intevation.de>
parents: 8
diff changeset
121 type="de.intevation.gnv.action.NextArtifactStepAction"
4ebe57b170d3 Integration of moving through the Artifact-States and rendering the UI.
Tim Englich <tim.englich@intevation.de>
parents: 8
diff changeset
122 scope="request"
4ebe57b170d3 Integration of moving through the Artifact-States and rendering the UI.
Tim Englich <tim.englich@intevation.de>
parents: 8
diff changeset
123 validate="false">
4ebe57b170d3 Integration of moving through the Artifact-States and rendering the UI.
Tim Englich <tim.englich@intevation.de>
parents: 8
diff changeset
124 <forward
4ebe57b170d3 Integration of moving through the Artifact-States and rendering the UI.
Tim Englich <tim.englich@intevation.de>
parents: 8
diff changeset
125 name="success"
16
4ef6e4e9ef15 Intergate the new Pageinfrastructure into the old Layout
Tim Englich <tim.englich@intevation.de>
parents: 13
diff changeset
126 path="/WEB-INF/jsp/mainlayout.jsp"/>
394
14eecfde4607 Render links to step back to previous states into gui. Added controller to advance back to these states.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 282
diff changeset
127 <forward
14eecfde4607 Render links to step back to previous states into gui. Added controller to advance back to these states.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 282
diff changeset
128 name="back"
14eecfde4607 Render links to step back to previous states into gui. Added controller to advance back to these states.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 282
diff changeset
129 path="/gnv/back.do"/>
401
002a4d38c16d Added a link to jump back to the fis selection.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 394
diff changeset
130 <forward
002a4d38c16d Added a link to jump back to the fis selection.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 394
diff changeset
131 name="selectfis"
002a4d38c16d Added a link to jump back to the fis selection.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 394
diff changeset
132 path="/gnv/selectFis.do"/>
670
b89b31293772 Implemented first things to store/load projects.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 572
diff changeset
133 <forward
b89b31293772 Implemented first things to store/load projects.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 572
diff changeset
134 name="store"
b89b31293772 Implemented first things to store/load projects.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 572
diff changeset
135 path="/gnv/store.do"/>
b89b31293772 Implemented first things to store/load projects.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 572
diff changeset
136 <forward
b89b31293772 Implemented first things to store/load projects.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 572
diff changeset
137 name="load"
b89b31293772 Implemented first things to store/load projects.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 572
diff changeset
138 path="/gnv/load.do"/>
12
4ebe57b170d3 Integration of moving through the Artifact-States and rendering the UI.
Tim Englich <tim.englich@intevation.de>
parents: 8
diff changeset
139 </action>
401
002a4d38c16d Added a link to jump back to the fis selection.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 394
diff changeset
140 <action path="/out"
13
2535158e2687 Chartoutput Added to the View
Tim Englich <tim.englich@intevation.de>
parents: 12
diff changeset
141 type="de.intevation.gnv.action.DoOutputAction"
2535158e2687 Chartoutput Added to the View
Tim Englich <tim.englich@intevation.de>
parents: 12
diff changeset
142 scope="request"
2535158e2687 Chartoutput Added to the View
Tim Englich <tim.englich@intevation.de>
parents: 12
diff changeset
143 validate="false">
2535158e2687 Chartoutput Added to the View
Tim Englich <tim.englich@intevation.de>
parents: 12
diff changeset
144 </action>
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
145 <action path="/wms"
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
146 type="de.intevation.gnv.action.WMSAction"
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
147 scope="request"
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
148 validate="false">
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
149 <forward
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
150 name="success"
572
3f7bbc6dc751 Sourced JavaScript script tags for loading and rendering an OpenLayers client out to an own jsp page.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 571
diff changeset
151 path="/WEB-INF/jsp/wmslayout.jsp"/>
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
152 <forward
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
153 name="back"
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
154 path="/gnv/back.do"/>
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
155 <forward
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
156 name="selectfis"
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
157 path="/gnv/selectFis.do"/>
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
158 </action>
982
cd9414538f10 Added possibility to switch to FullScreen-Mode of the MapClient.
Tim Englich <tim.englich@intevation.de>
parents: 719
diff changeset
159 <action path="/mapclient"
cd9414538f10 Added possibility to switch to FullScreen-Mode of the MapClient.
Tim Englich <tim.englich@intevation.de>
parents: 719
diff changeset
160 type="de.intevation.gnv.action.MapClientStandaloneAction"
cd9414538f10 Added possibility to switch to FullScreen-Mode of the MapClient.
Tim Englich <tim.englich@intevation.de>
parents: 719
diff changeset
161 scope="request"
cd9414538f10 Added possibility to switch to FullScreen-Mode of the MapClient.
Tim Englich <tim.englich@intevation.de>
parents: 719
diff changeset
162 validate="false">
cd9414538f10 Added possibility to switch to FullScreen-Mode of the MapClient.
Tim Englich <tim.englich@intevation.de>
parents: 719
diff changeset
163 <forward
cd9414538f10 Added possibility to switch to FullScreen-Mode of the MapClient.
Tim Englich <tim.englich@intevation.de>
parents: 719
diff changeset
164 name="success"
cd9414538f10 Added possibility to switch to FullScreen-Mode of the MapClient.
Tim Englich <tim.englich@intevation.de>
parents: 719
diff changeset
165 path="/WEB-INF/jsp/wmsstandalone.jsp"/>
cd9414538f10 Added possibility to switch to FullScreen-Mode of the MapClient.
Tim Englich <tim.englich@intevation.de>
parents: 719
diff changeset
166 </action>
cd9414538f10 Added possibility to switch to FullScreen-Mode of the MapClient.
Tim Englich <tim.englich@intevation.de>
parents: 719
diff changeset
167
29
bba8fd97e549 Export and Diagrammoptions integrated into GUI
Tim Englich <tim.englich@intevation.de>
parents: 16
diff changeset
168 <action path="/export"
bba8fd97e549 Export and Diagrammoptions integrated into GUI
Tim Englich <tim.englich@intevation.de>
parents: 16
diff changeset
169 type="de.intevation.gnv.action.DoExportAction"
bba8fd97e549 Export and Diagrammoptions integrated into GUI
Tim Englich <tim.englich@intevation.de>
parents: 16
diff changeset
170 scope="request"
bba8fd97e549 Export and Diagrammoptions integrated into GUI
Tim Englich <tim.englich@intevation.de>
parents: 16
diff changeset
171 validate="false">
bba8fd97e549 Export and Diagrammoptions integrated into GUI
Tim Englich <tim.englich@intevation.de>
parents: 16
diff changeset
172 </action>
bba8fd97e549 Export and Diagrammoptions integrated into GUI
Tim Englich <tim.englich@intevation.de>
parents: 16
diff changeset
173 <action path="/changeOptions"
bba8fd97e549 Export and Diagrammoptions integrated into GUI
Tim Englich <tim.englich@intevation.de>
parents: 16
diff changeset
174 type="de.intevation.gnv.action.ChangeOptionsAction"
bba8fd97e549 Export and Diagrammoptions integrated into GUI
Tim Englich <tim.englich@intevation.de>
parents: 16
diff changeset
175 scope="request"
bba8fd97e549 Export and Diagrammoptions integrated into GUI
Tim Englich <tim.englich@intevation.de>
parents: 16
diff changeset
176 validate="false">
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: 401
diff changeset
177 <forward
29
bba8fd97e549 Export and Diagrammoptions integrated into GUI
Tim Englich <tim.englich@intevation.de>
parents: 16
diff changeset
178 name="success"
bba8fd97e549 Export and Diagrammoptions integrated into GUI
Tim Englich <tim.englich@intevation.de>
parents: 16
diff changeset
179 path="/WEB-INF/jsp/mainlayout.jsp"/>
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: 401
diff changeset
180 <forward
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: 401
diff changeset
181 name="back"
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: 401
diff changeset
182 path="/gnv/back.do"/>
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: 401
diff changeset
183 <forward
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: 401
diff changeset
184 name="selectfis"
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: 401
diff changeset
185 path="/gnv/selectFis.do"/>
29
bba8fd97e549 Export and Diagrammoptions integrated into GUI
Tim Englich <tim.englich@intevation.de>
parents: 16
diff changeset
186 </action>
569
9a5e50e7afaa Added action and jsp for rendering histograms.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 568
diff changeset
187 <action path="/histogram"
9a5e50e7afaa Added action and jsp for rendering histograms.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 568
diff changeset
188 type="de.intevation.gnv.action.CreateHistogramAction"
9a5e50e7afaa Added action and jsp for rendering histograms.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 568
diff changeset
189 scope="request"
9a5e50e7afaa Added action and jsp for rendering histograms.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 568
diff changeset
190 validate="false">
9a5e50e7afaa Added action and jsp for rendering histograms.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 568
diff changeset
191 <forward
9a5e50e7afaa Added action and jsp for rendering histograms.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 568
diff changeset
192 name="success"
9a5e50e7afaa Added action and jsp for rendering histograms.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 568
diff changeset
193 path="/WEB-INF/jsp/mainlayout.jsp"/>
9a5e50e7afaa Added action and jsp for rendering histograms.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 568
diff changeset
194 <forward
9a5e50e7afaa Added action and jsp for rendering histograms.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 568
diff changeset
195 name="back"
9a5e50e7afaa Added action and jsp for rendering histograms.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 568
diff changeset
196 path="/gnv/back.do"/>
9a5e50e7afaa Added action and jsp for rendering histograms.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 568
diff changeset
197 <forward
9a5e50e7afaa Added action and jsp for rendering histograms.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 568
diff changeset
198 name="selectfis"
9a5e50e7afaa Added action and jsp for rendering histograms.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 568
diff changeset
199 path="/gnv/selectFis.do"/>
9a5e50e7afaa Added action and jsp for rendering histograms.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 568
diff changeset
200 </action>
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
201 <action path="/chart"
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
202 type="de.intevation.gnv.action.CreateChartAction"
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
203 scope="request"
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
204 validate="false">
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
205 <forward
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
206 name="success"
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
207 path="/WEB-INF/jsp/mainlayout.jsp"/>
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
208 <forward
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
209 name="back"
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
210 path="/gnv/back.do"/>
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
211 <forward
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
212 name="selectfis"
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
213 path="/gnv/selectFis.do"/>
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
214 </action>
410
9602f4bffc07 Added statistic to the actions if available.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 408
diff changeset
215 <action path="/statistic"
9602f4bffc07 Added statistic to the actions if available.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 408
diff changeset
216 type="de.intevation.gnv.action.ShowStatisticAction"
9602f4bffc07 Added statistic to the actions if available.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 408
diff changeset
217 scope="request"
9602f4bffc07 Added statistic to the actions if available.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 408
diff changeset
218 validate="false">
9602f4bffc07 Added statistic to the actions if available.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 408
diff changeset
219 <forward
9602f4bffc07 Added statistic to the actions if available.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 408
diff changeset
220 name="back"
9602f4bffc07 Added statistic to the actions if available.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 408
diff changeset
221 path="/gnv/back.do"/>
9602f4bffc07 Added statistic to the actions if available.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 408
diff changeset
222 <forward
9602f4bffc07 Added statistic to the actions if available.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 408
diff changeset
223 name="selectfis"
9602f4bffc07 Added statistic to the actions if available.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 408
diff changeset
224 path="/gnv/selectFis.do"/>
9602f4bffc07 Added statistic to the actions if available.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 408
diff changeset
225 <forward
9602f4bffc07 Added statistic to the actions if available.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 408
diff changeset
226 name="success"
9602f4bffc07 Added statistic to the actions if available.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 408
diff changeset
227 path="/WEB-INF/jsp/mainlayout.jsp"/>
9602f4bffc07 Added statistic to the actions if available.
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 408
diff changeset
228 </action>
686
734e8301c9ea Added links to reload the application and rebuild the user interface (issue13, issue18).
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 682
diff changeset
229 <action path="/describe"
734e8301c9ea Added links to reload the application and rebuild the user interface (issue13, issue18).
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 682
diff changeset
230 type="de.intevation.gnv.action.DescribeUIAction"
734e8301c9ea Added links to reload the application and rebuild the user interface (issue13, issue18).
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 682
diff changeset
231 scope="request"
734e8301c9ea Added links to reload the application and rebuild the user interface (issue13, issue18).
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 682
diff changeset
232 validate="false">
734e8301c9ea Added links to reload the application and rebuild the user interface (issue13, issue18).
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 682
diff changeset
233 <forward
734e8301c9ea Added links to reload the application and rebuild the user interface (issue13, issue18).
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 682
diff changeset
234 name="back"
734e8301c9ea Added links to reload the application and rebuild the user interface (issue13, issue18).
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 682
diff changeset
235 path="/gnv/back.do"/>
734e8301c9ea Added links to reload the application and rebuild the user interface (issue13, issue18).
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 682
diff changeset
236 <forward
734e8301c9ea Added links to reload the application and rebuild the user interface (issue13, issue18).
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 682
diff changeset
237 name="selectfis"
734e8301c9ea Added links to reload the application and rebuild the user interface (issue13, issue18).
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 682
diff changeset
238 path="/gnv/selectFis.do"/>
734e8301c9ea Added links to reload the application and rebuild the user interface (issue13, issue18).
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 682
diff changeset
239 <forward
734e8301c9ea Added links to reload the application and rebuild the user interface (issue13, issue18).
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 682
diff changeset
240 name="success"
734e8301c9ea Added links to reload the application and rebuild the user interface (issue13, issue18).
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 682
diff changeset
241 path="/WEB-INF/jsp/mainlayout.jsp"/>
734e8301c9ea Added links to reload the application and rebuild the user interface (issue13, issue18).
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 682
diff changeset
242 </action>
706
2659a5b1fa1e Added a link (and a controller) to toggle between german and english language (issue254).
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 686
diff changeset
243 <action path="/language"
2659a5b1fa1e Added a link (and a controller) to toggle between german and english language (issue254).
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 686
diff changeset
244 type="de.intevation.gnv.action.SwitchLanguageAction"
2659a5b1fa1e Added a link (and a controller) to toggle between german and english language (issue254).
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 686
diff changeset
245 scope="request"
2659a5b1fa1e Added a link (and a controller) to toggle between german and english language (issue254).
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 686
diff changeset
246 validate="false">
2659a5b1fa1e Added a link (and a controller) to toggle between german and english language (issue254).
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 686
diff changeset
247 <forward
2659a5b1fa1e Added a link (and a controller) to toggle between german and english language (issue254).
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 686
diff changeset
248 name="success"
2659a5b1fa1e Added a link (and a controller) to toggle between german and english language (issue254).
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 686
diff changeset
249 path="/WEB-INF/jsp/mainlayout.jsp"/>
2659a5b1fa1e Added a link (and a controller) to toggle between german and english language (issue254).
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 686
diff changeset
250 <forward
2659a5b1fa1e Added a link (and a controller) to toggle between german and english language (issue254).
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 686
diff changeset
251 name="back"
2659a5b1fa1e Added a link (and a controller) to toggle between german and english language (issue254).
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 686
diff changeset
252 path="/gnv/back.do"/>
2659a5b1fa1e Added a link (and a controller) to toggle between german and english language (issue254).
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 686
diff changeset
253 <forward
2659a5b1fa1e Added a link (and a controller) to toggle between german and english language (issue254).
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 686
diff changeset
254 name="selectfis"
2659a5b1fa1e Added a link (and a controller) to toggle between german and english language (issue254).
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 686
diff changeset
255 path="/gnv/selectFis.do"/>
2659a5b1fa1e Added a link (and a controller) to toggle between german and english language (issue254).
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 686
diff changeset
256 </action>
686
734e8301c9ea Added links to reload the application and rebuild the user interface (issue13, issue18).
Ingo Weinzierl <ingo.weinzierl@intevation.de>
parents: 682
diff changeset
257 </action-mappings>
16
4ef6e4e9ef15 Intergate the new Pageinfrastructure into the old Layout
Tim Englich <tim.englich@intevation.de>
parents: 13
diff changeset
258
4ef6e4e9ef15 Intergate the new Pageinfrastructure into the old Layout
Tim Englich <tim.englich@intevation.de>
parents: 13
diff changeset
259 <message-resources parameter="applicationMessages" null="false"/>
4
72951b955f00 Basic Struts-Infrastructur Added
Tim Englich <tim.englich@intevation.de>
parents:
diff changeset
260 </struts-config>
72951b955f00 Basic Struts-Infrastructur Added
Tim Englich <tim.englich@intevation.de>
parents:
diff changeset
261

http://dive4elements.wald.intevation.org