1 |
3032
|
perry
|
<?xml version="1.0" encoding="ISO-8859-1" ?>
|
2 |
|
|
|
3 |
|
|
<!DOCTYPE tiles-definitions PUBLIC
|
4 |
|
|
"-//Apache Software Foundation//DTD Tiles Configuration 1.1//EN"
|
5 |
|
|
"http://jakarta.apache.org/struts/dtds/tiles-config_1_1.dtd">
|
6 |
|
|
|
7 |
|
|
<tiles-definitions>
|
8 |
|
|
|
9 |
|
|
<definition name=".mainLayout"
|
10 |
|
|
page="/WEB-INF/pages/layouts/mainLayout.jsp">
|
11 |
|
|
<put name="key" value="GeoServer"/>
|
12 |
|
|
|
13 |
|
|
<!-- SIDEBAR -->
|
14 |
|
|
<put name="status" value="/WEB-INF/pages/status.jsp"/>
|
15 |
|
|
<put name="messages" value="/WEB-INF/pages/messages.jsp"/>
|
16 |
|
|
<put name="actionator" value="/WEB-INF/pages/actionator.jsp"/>
|
17 |
|
|
<put name="menuator" value="/WEB-INF/pages/menuator.jsp"/>
|
18 |
|
|
<put name="configActions" value="/WEB-INF/pages/blank.jsp"/>
|
19 |
|
|
|
20 |
|
|
<!-- BODY -->
|
21 |
|
|
<put name="locator" value="/WEB-INF/pages/locator.jsp"/>
|
22 |
|
|
<put name="body" value="/WEB-INF/pages/blank.jsp"/>
|
23 |
|
|
|
24 |
|
|
<!-- CONTEXT -->
|
25 |
|
|
<put name="layer" value="application"/>
|
26 |
|
|
<put name="locationForwards" value="welcome"/>
|
27 |
|
|
<put name="actionForwards" value=""/>
|
28 |
|
|
<put name="menuForwards" value=""/>
|
29 |
|
|
</definition>
|
30 |
|
|
|
31 |
|
|
<!-- WELCOME -->
|
32 |
|
|
<definition name="welcome" extends=".mainLayout">
|
33 |
|
|
<put name="key" value="welcome"/>
|
34 |
|
|
<put name="body" value="/WEB-INF/pages/Welcome.jsp"/>
|
35 |
|
|
<put name="layer" value="application"/>
|
36 |
|
|
<put name="locationForwards" value=""/>
|
37 |
|
|
<put name="menuForwards" value="admin:config:welcome.demo"/>
|
38 |
|
|
</definition>
|
39 |
|
|
|
40 |
|
|
<definition name="welcome.contact" extends=".mainLayout">
|
41 |
|
|
<put name="key" value="welcome.contact"/>
|
42 |
|
|
<put name="body" value="/WEB-INF/pages/ContactInformation.jsp"/>
|
43 |
|
|
<put name="layer" value="application"/>
|
44 |
|
|
<put name="locationForwards" value="welcome"/>
|
45 |
|
|
</definition>
|
46 |
|
|
|
47 |
|
|
<definition name="admin.login" extends=".mainLayout">
|
48 |
|
|
<put name="key" value="admin.login"/>
|
49 |
|
|
<put name="body" value="/WEB-INF/pages/Login.jsp"/>
|
50 |
|
|
<put name="layer" value="application"/>
|
51 |
|
|
<put name="locationForwards" value="welcome"/>
|
52 |
|
|
</definition>
|
53 |
|
|
|
54 |
|
|
<definition name="welcome.demo" extends=".mainLayout">
|
55 |
|
|
<put name="key" value="welcome.demo"/>
|
56 |
|
|
<put name="body" value="/WEB-INF/pages/Demo.jsp"/>
|
57 |
|
|
<put name="layer" value="application"/>
|
58 |
|
|
<put name="locationForwards" value="welcome"/>
|
59 |
|
|
</definition>
|
60 |
|
|
|
61 |
|
|
<definition name="welcome.demoRequest" extends=".mainLayout">
|
62 |
|
|
<put name="key" value="welcome.demoRequest"/>
|
63 |
|
|
<put name="body" value="/WEB-INF/pages/demoRequest.jsp"/>
|
64 |
|
|
<put name="layer" value="application"/>
|
65 |
|
|
<put name="locationForwards" value="welcome:welcome.demo"/>
|
66 |
|
|
</definition>
|
67 |
|
|
|
68 |
|
|
<!-- ADMIN -->
|
69 |
|
|
<definition name="admin.main" extends=".mainLayout">
|
70 |
|
|
<put name="key" value="admin"/>
|
71 |
|
|
<put name="body" value="/WEB-INF/pages/Administration.jsp"/>
|
72 |
|
|
<put name="layer" value="configuration"/>
|
73 |
|
|
<put name="locationForwards" value="welcome"/>
|
74 |
|
|
<put name="actionForwards" value="admin.freeLocks:admin.freeMemory"/>
|
75 |
|
|
</definition>
|
76 |
|
|
|
77 |
|
|
<!-- CONFIG -->
|
78 |
3112
|
perry
|
<definition name="config.main" extends=".mainLayout">
|
79 |
3032
|
perry
|
<put name="key" value="config"/>
|
80 |
|
|
<put name="body" value="/WEB-INF/pages/Configuration.jsp"/>
|
81 |
|
|
<put name="layer" value="configuration"/>
|
82 |
|
|
<put name="status" value="/WEB-INF/pages/data/status.jsp"/>
|
83 |
|
|
<put name="locationForwards" value="welcome"/>
|
84 |
|
|
<put name="configActions" value="/WEB-INF/pages/configActions.jsp"/>
|
85 |
|
|
<put name="menuForwards"
|
86 |
|
|
value="config.server:config.wfs:config.wms:config.data"/>
|
87 |
|
|
</definition>
|
88 |
|
|
|
89 |
|
|
<!-- CONFIG Server -->
|
90 |
|
|
<definition name="config.server" extends=".mainLayout">
|
91 |
|
|
<put name="key" value="config.server"/>
|
92 |
|
|
<put name="body" value="/WEB-INF/pages/GeoServerConfiguration.jsp"/>
|
93 |
|
|
<put name="layer" value="configuration"/>
|
94 |
|
|
<put name="status" value="/WEB-INF/pages/data/status.jsp"/>
|
95 |
|
|
<put name="locationForwards" value="welcome:config"/>
|
96 |
|
|
<put name="configActions" value="/WEB-INF/pages/configActions.jsp"/>
|
97 |
|
|
<put name="menuForwards"
|
98 |
|
|
value="config.server.login"/>
|
99 |
|
|
</definition>
|
100 |
|
|
|
101 |
|
|
<definition name="config.server.login" extends=".mainLayout">
|
102 |
|
|
<put name="key" value="config.server.login"/>
|
103 |
|
|
<put name="body" value="/WEB-INF/pages/loginEditor.jsp"/>
|
104 |
|
|
<put name="layer" value="configuration"/>
|
105 |
|
|
<put name="locationForwards" value="welcome:config:config.server"/>
|
106 |
|
|
</definition>
|
107 |
|
|
|
108 |
|
|
<!-- CONFIG VALIDATION -->
|
109 |
|
|
<definition name="config.validation" extends=".mainLayout">
|
110 |
|
|
<put name="key" value="config.validation"/>
|
111 |
|
|
<put name="body" value="/WEB-INF/pages/validation/Validation.jsp"/>
|
112 |
|
|
<put name="layer" value="configuration"/>
|
113 |
|
|
<put name="locationForwards" value="welcome:config:config.wfs"/>
|
114 |
|
|
<put name="configActions" value="/WEB-INF/pages/configActions.jsp"/>
|
115 |
|
|
<put name="menuForwards"
|
116 |
|
|
value="config.validation.suite"/>
|
117 |
|
|
</definition>
|
118 |
|
|
|
119 |
|
|
<definition name="config.validation.suite" extends=".mainLayout">
|
120 |
|
|
<put name="key" value="config.validation.suite"/>
|
121 |
|
|
<put name="body" value="/WEB-INF/pages/validation/SelectTestSuite.jsp"/>
|
122 |
|
|
<put name="layer" value="configuration"/>
|
123 |
|
|
<put name="locationForwards" value="welcome:config:config.validation"/>
|
124 |
|
|
<put name="configActions" value="/WEB-INF/pages/configActions.jsp"/>
|
125 |
|
|
<put name="actionForwards" value="config.validation.suite.doit"/>
|
126 |
|
|
</definition>
|
127 |
|
|
|
128 |
|
|
<definition name="config.validation.test" extends=".mainLayout">
|
129 |
|
|
<put name="key" value="config.validation.test"/>
|
130 |
|
|
<put name="body" value="/WEB-INF/pages/validation/SelectTest.jsp"/>
|
131 |
|
|
<put name="layer" value="configuration"/>
|
132 |
|
|
<put name="locationForwards" value="welcome:config:config.wfs:config.validation:config.validation.suite"/>
|
133 |
|
|
<put name="configActions" value="/WEB-INF/pages/configActions.jsp"/>
|
134 |
|
|
</definition>
|
135 |
|
|
|
136 |
|
|
<definition name="config.validation.test.editor" extends=".mainLayout">
|
137 |
|
|
<put name="key" value="config.validation.test.editor"/>
|
138 |
|
|
<put name="body" value="/WEB-INF/pages/validation/TestEditor.jsp"/>
|
139 |
|
|
<put name="layer" value="configuration"/>
|
140 |
|
|
<put name="locationForwards" value="welcome:config:config.wfs:config.validation:config.validation.suite:config.validation.test"/>
|
141 |
|
|
<put name="configActions" value="/WEB-INF/pages/configActions.jsp"/>
|
142 |
|
|
<put name="actionForwards" value="config.validation.test.doit"/>
|
143 |
|
|
</definition>
|
144 |
|
|
|
145 |
|
|
<definition name="config.validation.displayResults" extends=".mainLayout">
|
146 |
|
|
<put name="key" value="config.validation.displayResults"/>
|
147 |
|
|
<put name="body" value="/WEB-INF/pages/validation/displayResults.jsp"/>
|
148 |
|
|
<put name="layer" value="configuration"/>
|
149 |
|
|
<put name="locationForwards" value="welcome:config:config.validation"/>
|
150 |
|
|
<put name="configActions" value="/WEB-INF/pages/configActions.jsp"/>
|
151 |
|
|
</definition>
|
152 |
|
|
|
153 |
|
|
<!-- CONFIG WFS -->
|
154 |
|
|
<definition name="config.wfs" extends=".mainLayout">
|
155 |
|
|
<put name="key" value="config.wfs"/>
|
156 |
|
|
<put name="body" value="/WEB-INF/pages/wfs/WFSConfigMenu.jsp"/>
|
157 |
|
|
<put name="status" value="/WEB-INF/pages/wfs/status.jsp"/>
|
158 |
|
|
<put name="serviceName" value="/WEB-INF/pages/wfs/serviceName.jsp"/>
|
159 |
|
|
<put name="layer" value="configuration"/>
|
160 |
|
|
<put name="locationForwards" value="welcome:config"/>
|
161 |
|
|
<put name="configActions" value="/WEB-INF/pages/configActions.jsp"/>
|
162 |
|
|
<put name="menuForwards"
|
163 |
|
|
value="config.wfs.content:config.wfs.description:config.validation"/>
|
164 |
|
|
</definition>
|
165 |
|
|
|
166 |
|
|
<definition name="config.wfs.description" extends=".mainLayout">
|
167 |
|
|
<put name="key" value="config.wfs.description"/>
|
168 |
|
|
<put name="body" value="/WEB-INF/pages/wfs/WFSConfigDescription.jsp"/>
|
169 |
|
|
<put name="status" value="/WEB-INF/pages/wfs/status.jsp"/>
|
170 |
|
|
<put name="serviceName" value="/WEB-INF/pages/wfs/serviceName.jsp"/>
|
171 |
|
|
<put name="layer" value="configuration"/>
|
172 |
|
|
<put name="locationForwards" value="welcome:config:config.wfs"/>
|
173 |
|
|
<put name="configActions" value="/WEB-INF/pages/configActions.jsp"/>
|
174 |
|
|
</definition>
|
175 |
|
|
|
176 |
|
|
<definition name="config.wfs.content" extends=".mainLayout">
|
177 |
|
|
<put name="key" value="config.wfs.content"/>
|
178 |
|
|
<put name="body" value="/WEB-INF/pages/wfs/WFSConfigContent.jsp"/>
|
179 |
|
|
<put name="status" value="/WEB-INF/pages/wfs/status.jsp"/>
|
180 |
|
|
<put name="serviceName" value="/WEB-INF/pages/wfs/serviceName.jsp"/>
|
181 |
|
|
<put name="layer" value="configuration"/>
|
182 |
|
|
<put name="locationForwards" value="welcome:config:config.wfs"/>
|
183 |
|
|
<put name="configActions" value="/WEB-INF/pages/configActions.jsp"/>
|
184 |
|
|
</definition>
|
185 |
|
|
|
186 |
|
|
<!-- CONFIG WMS -->
|
187 |
|
|
<definition name="config.wms" extends=".mainLayout">
|
188 |
|
|
<put name="key" value="config.wms"/>
|
189 |
|
|
<put name="body" value="/WEB-INF/pages/wms/WMSConfigMenu.jsp"/>
|
190 |
|
|
<put name="status" value="/WEB-INF/pages/wms/status.jsp"/>
|
191 |
|
|
<put name="serviceName" value="/WEB-INF/pages/wms/serviceName.jsp"/>
|
192 |
|
|
<put name="layer" value="configuration"/>
|
193 |
|
|
<put name="locationForwards" value="welcome:config"/>
|
194 |
|
|
<put name="configActions" value="/WEB-INF/pages/configActions.jsp"/>
|
195 |
|
|
<put name="menuForwards"
|
196 |
|
|
value="config.wms.content:config.wms.description:config.wms.rendering"/>
|
197 |
|
|
</definition>
|
198 |
|
|
|
199 |
|
|
<definition name="config.wms.description" extends=".mainLayout">
|
200 |
|
|
<put name="key" value="config.wms.description"/>
|
201 |
|
|
<put name="body" value="/WEB-INF/pages/wms/WMSConfigDescription.jsp"/>
|
202 |
|
|
<put name="status" value="/WEB-INF/pages/wms/status.jsp"/>
|
203 |
|
|
<put name="serviceName" value="/WEB-INF/pages/wms/serviceName.jsp"/>
|
204 |
|
|
<put name="layer" value="configuration"/>
|
205 |
|
|
<put name="locationForwards" value="welcome:config:config.wms"/>
|
206 |
|
|
<put name="configActions" value="/WEB-INF/pages/configActions.jsp"/>
|
207 |
|
|
</definition>
|
208 |
|
|
|
209 |
|
|
<definition name="config.wms.content" extends=".mainLayout">
|
210 |
|
|
<put name="key" value="config.wms.content"/>
|
211 |
|
|
<put name="body" value="/WEB-INF/pages/wms/WMSConfigContent.jsp"/>
|
212 |
|
|
<put name="status" value="/WEB-INF/pages/wms/status.jsp"/>
|
213 |
|
|
<put name="serviceName" value="/WEB-INF/pages/wms/serviceName.jsp"/>
|
214 |
|
|
<put name="layer" value="configuration"/>
|
215 |
|
|
<put name="locationForwards" value="welcome:config:config.wms"/>
|
216 |
|
|
<put name="configActions" value="/WEB-INF/pages/configActions.jsp"/>
|
217 |
|
|
</definition>
|
218 |
|
|
|
219 |
|
|
<definition name="config.wms.rendering" extends=".mainLayout">
|
220 |
|
|
<put name="key" value="config.wms.rendering"/>
|
221 |
|
|
<put name="body" value="/WEB-INF/pages/wms/WMSConfigRendering.jsp"/>
|
222 |
|
|
<put name="status" value="/WEB-INF/pages/wms/status.jsp"/>
|
223 |
|
|
<put name="serviceName" value="/WEB-INF/pages/wms/serviceName.jsp"/>
|
224 |
|
|
<put name="layer" value="configuration"/>
|
225 |
|
|
<put name="locationForwards" value="welcome:config:config.wms"/>
|
226 |
|
|
<put name="configActions" value="/WEB-INF/pages/configActions.jsp"/>
|
227 |
|
|
</definition>
|
228 |
|
|
<!-- CONFIG DATA -->
|
229 |
|
|
<definition name="config.data" extends=".mainLayout">
|
230 |
|
|
<put name="key" value="config.data"/>
|
231 |
|
|
<put name="body" value="/WEB-INF/pages/data/DataMenu.jsp"/>
|
232 |
|
|
<put name="status" value="/WEB-INF/pages/data/status.jsp"/>
|
233 |
|
|
<put name="layer" value="data"/>
|
234 |
|
|
<put name="locationForwards" value="welcome:config"/>
|
235 |
|
|
<put name="configActions" value="/WEB-INF/pages/configActions.jsp"/>
|
236 |
|
|
<!-- didier, 2004-04-18, logical order :
|
237 |
|
|
<put name="menuForwards"
|
238 |
|
|
value="config.data.store:config.data.namespace:config.data.style:config.data.type"/>
|
239 |
|
|
-->
|
240 |
|
|
<put name="menuForwards"
|
241 |
|
|
value="config.data.namespace:config.data.store:config.data.style:config.data.type"/>
|
242 |
|
|
</definition>
|
243 |
|
|
|
244 |
|
|
<!-- datastores -->
|
245 |
|
|
<definition name="config.data.store" extends=".mainLayout">
|
246 |
|
|
<put name="key" value="config.data.store"/>
|
247 |
|
|
<put name="body" value="/WEB-INF/pages/data/DataConfigDataStoresSelect.jsp"/>
|
248 |
|
|
<put name="status" value="/WEB-INF/pages/data/status.jsp"/>
|
249 |
|
|
<put name="layer" value="data"/>
|
250 |
|
|
<put name="locationForwards" value="welcome:config:config.data"/>
|
251 |
|
|
<put name="configActions" value="/WEB-INF/pages/configActions.jsp"/>
|
252 |
|
|
<put name="menuForwards"
|
253 |
|
|
value="config.data.store.new"/>
|
254 |
|
|
</definition>
|
255 |
|
|
|
256 |
|
|
<definition name="config.data.store.new" extends=".mainLayout">
|
257 |
|
|
<put name="key" value="config.data.store.new"/>
|
258 |
|
|
<put name="body" value="/WEB-INF/pages/data/DataConfigDataStoresNew.jsp"/>
|
259 |
|
|
<put name="status" value="/WEB-INF/pages/data/status.jsp"/>
|
260 |
|
|
<put name="layer" value="data"/>
|
261 |
|
|
<put name="locationForwards" value="welcome:config:config.data:config.data.store"/>
|
262 |
|
|
<put name="configActions" value="/WEB-INF/pages/configActions.jsp"/>
|
263 |
|
|
</definition>
|
264 |
|
|
|
265 |
|
|
<definition name="config.data.store.editor" extends=".mainLayout">
|
266 |
|
|
<put name="key" value="config.data.store.editor"/>
|
267 |
|
|
<put name="body" value="/WEB-INF/pages/data/DataConfigDataStoresEditor.jsp"/>
|
268 |
|
|
<put name="status" value="/WEB-INF/pages/data/status.jsp"/>
|
269 |
|
|
<put name="layer" value="data"/>
|
270 |
|
|
<put name="locationForwards" value="welcome:config:config.data:config.data.store"/>
|
271 |
|
|
<put name="configActions" value="/WEB-INF/pages/configActions.jsp"/>
|
272 |
|
|
</definition>
|
273 |
|
|
|
274 |
|
|
<!-- namespace -->
|
275 |
|
|
<definition name="config.data.namespace" extends=".mainLayout">
|
276 |
|
|
<put name="key" value="config.data.namespace"/>
|
277 |
|
|
<put name="body" value="/WEB-INF/pages/data/namespaces/Select.jsp"/>
|
278 |
|
|
<put name="status" value="/WEB-INF/pages/data/status.jsp"/>
|
279 |
|
|
<put name="layer" value="data"/>
|
280 |
|
|
<put name="locationForwards" value="welcome:config:config.data"/>
|
281 |
|
|
<put name="configActions" value="/WEB-INF/pages/configActions.jsp"/>
|
282 |
|
|
<put name="menuForwards"
|
283 |
|
|
value="config.data.namespace.new"/>
|
284 |
|
|
</definition>
|
285 |
|
|
|
286 |
|
|
<definition name="config.data.namespace.new" extends=".mainLayout">
|
287 |
|
|
<put name="key" value="config.data.namespace.new"/>
|
288 |
|
|
<put name="body" value="/WEB-INF/pages/data/namespaces/New.jsp"/>
|
289 |
|
|
<put name="status" value="/WEB-INF/pages/data/status.jsp"/>
|
290 |
|
|
<put name="layer" value="data"/>
|
291 |
|
|
<put name="locationForwards" value="welcome:config:config.data:config.data.namespace"/>
|
292 |
|
|
<put name="configActions" value="/WEB-INF/pages/configActions.jsp"/>
|
293 |
|
|
</definition>
|
294 |
|
|
|
295 |
|
|
<definition name="config.data.namespace.editor" extends=".mainLayout">
|
296 |
|
|
<put name="key" value="config.data.namespace.editor"/>
|
297 |
|
|
<put name="body" value="/WEB-INF/pages/data/namespaces/Editor.jsp"/>
|
298 |
|
|
<put name="status" value="/WEB-INF/pages/data/status.jsp"/>
|
299 |
|
|
<put name="layer" value="data"/>
|
300 |
|
|
<put name="locationForwards" value="welcome:config:config.data:config.data.namespace"/>
|
301 |
|
|
<put name="configActions" value="/WEB-INF/pages/configActions.jsp"/>
|
302 |
|
|
</definition>
|
303 |
|
|
|
304 |
|
|
<!-- styles -->
|
305 |
|
|
<definition name="config.data.style" extends=".mainLayout">
|
306 |
|
|
<put name="key" value="config.data.style"/>
|
307 |
|
|
<put name="body" value="/WEB-INF/pages/data/styles/Select.jsp"/>
|
308 |
|
|
<put name="status" value="/WEB-INF/pages/data/status.jsp"/>
|
309 |
|
|
<put name="layer" value="data"/>
|
310 |
|
|
<put name="locationForwards" value="welcome:config:config.data"/>
|
311 |
|
|
<put name="configActions" value="/WEB-INF/pages/configActions.jsp"/>
|
312 |
|
|
<put name="menuForwards"
|
313 |
|
|
value="config.data.style.new"/>
|
314 |
|
|
</definition>
|
315 |
|
|
|
316 |
|
|
<definition name="config.data.style.new" extends=".mainLayout">
|
317 |
|
|
<put name="key" value="config.data.style.new"/>
|
318 |
|
|
<put name="body" value="/WEB-INF/pages/data/styles/New.jsp"/>
|
319 |
|
|
<put name="status" value="/WEB-INF/pages/data/status.jsp"/>
|
320 |
|
|
<put name="layer" value="data"/>
|
321 |
|
|
<put name="locationForwards" value="welcome:config:config.data:config.data.style"/>
|
322 |
|
|
<put name="configActions" value="/WEB-INF/pages/configActions.jsp"/>
|
323 |
|
|
</definition>
|
324 |
|
|
|
325 |
|
|
<definition name="config.data.style.editor" extends=".mainLayout">
|
326 |
|
|
<put name="key" value="config.data.style.editor"/>
|
327 |
|
|
<put name="body" value="/WEB-INF/pages/data/styles/Editor.jsp"/>
|
328 |
|
|
<put name="status" value="/WEB-INF/pages/data/status.jsp"/>
|
329 |
|
|
<put name="layer" value="data"/>
|
330 |
|
|
<put name="locationForwards" value="welcome:config:config.data:config.data.style"/>
|
331 |
|
|
<put name="configActions" value="/WEB-INF/pages/configActions.jsp"/>
|
332 |
|
|
</definition>
|
333 |
|
|
|
334 |
|
|
<!-- featuretypes -->
|
335 |
|
|
<definition name="config.data.type" extends=".mainLayout">
|
336 |
|
|
<put name="key" value="config.data.type"/>
|
337 |
|
|
<put name="body" value="/WEB-INF/pages/data/featureTypes/Select.jsp"/>
|
338 |
|
|
<put name="status" value="/WEB-INF/pages/data/status.jsp"/>
|
339 |
|
|
<put name="layer" value="data"/>
|
340 |
|
|
<put name="locationForwards" value="welcome:config:config.data"/>
|
341 |
|
|
<put name="configActions" value="/WEB-INF/pages/configActions.jsp"/>
|
342 |
|
|
<put name="menuForwards"
|
343 |
|
|
value="config.data.type.new"/>
|
344 |
|
|
</definition>
|
345 |
|
|
|
346 |
|
|
<definition name="config.data.type.new" extends=".mainLayout">
|
347 |
|
|
<put name="key" value="config.data.type.new"/>
|
348 |
|
|
<put name="body" value="/WEB-INF/pages/data/featureTypes/New.jsp"/>
|
349 |
|
|
<put name="status" value="/WEB-INF/pages/data/status.jsp"/>
|
350 |
|
|
<put name="layer" value="data"/>
|
351 |
|
|
<put name="locationForwards" value="welcome:config:config.data:config.data.type"/>
|
352 |
|
|
<put name="configActions" value="/WEB-INF/pages/configActions.jsp"/>
|
353 |
|
|
</definition>
|
354 |
|
|
|
355 |
|
|
<definition name="config.data.type.editor" extends=".mainLayout">
|
356 |
|
|
<put name="key" value="config.data.type.editor"/>
|
357 |
|
|
<put name="body" value="/WEB-INF/pages/data/featureTypes/Editor.jsp"/>
|
358 |
|
|
<put name="status" value="/WEB-INF/pages/data/status.jsp"/>
|
359 |
|
|
<put name="layer" value="data"/>
|
360 |
|
|
<put name="locationForwards" value="welcome:config:config.data:config.data.type"/>
|
361 |
|
|
<put name="configActions" value="/WEB-INF/pages/configActions.jsp"/>
|
362 |
|
|
</definition>
|
363 |
|
|
|
364 |
|
|
|
365 |
|
|
</tiles-definitions>
|