root/trunk/calendar3/webadmin/war/WEB-INF/struts-config.xml

Revision 284 (checked in by johnsa, 7 years ago)

update mod action forwards when adding locations and contacts to forward back to the mod forms (also cleaned up wiki testing notes regarding this)

Line 
1 <?xml version="1.0" encoding="ISO-8859-1" ?>
2
3 <!DOCTYPE struts-config PUBLIC
4           "-//Apache Software Foundation//DTD Struts Configuration 1.2//EN"
5           "http://jakarta.apache.org/struts/dtds/struts-config_1_2.dtd">
6
7   <!-- =================================================================
8      This is a the Struts configuration for the public events admin app.
9      =================================================================== -->
10
11 <struts-config>
12   <!-- ========== Form Bean Definitions ================================ -->
13   <form-beans>
14     <form-bean      name="peForm"
15                     type="org.bedework.webadmin.PEActionForm"/>
16   </form-beans>
17
18   <!-- ========== Global Forward Definitions ===========================
19        We try to standardize the forwards a bit.
20        "success"  takes us back to the main page
21        "done"     is local to an action and should take us back one level
22                   for example, to the list of events.
23        "continue" should stay on the same page
24        ================================================================= -->
25   <global-forwards>
26     <forward name="initial" path="/setup.do"/>
27     <forward name="chooseGroup" path="/admingroup/showChooseGroup.rdo" redirect="true"/>
28     <forward name="noGroupAssigned" path="/admin/showNoGroup.rdo" redirect="true"/>
29     <!-- <forward name="error" path="/admin/showError.rdo" redirect="true"/> -->
30     <forward name="error" path="/docs/error.jsp"/>
31     <forward name="accessError" path="/admin/showMain.rdo" redirect="true"/>
32     <forward name="noAccess" path="/admin/showNoAccess.rdo" redirect="true"/>
33     <forward name="notFound" path="/admin/showMain.rdo" redirect="true"/>
34     <forward name="success" path="/admin/showMain.rdo" redirect="true"/>
35     <forward name="cancelled" path="/admin/showMain.rdo" redirect="true"/>
36   </global-forwards>
37
38   <!-- ========== Action Mapping Definitions =========================== -->
39   <action-mappings>
40     <action    path="/admin/showMain"
41                type="org.bedework.webadmin.PERenderAction"
42                name="peForm"
43                scope="session"
44                validate="false">
45       <forward name="success" path="/docs/main.jsp"/>
46     </action>
47
48     <action    path="/admin/showError"
49                type="org.bedework.webadmin.PERenderAction"
50                name="peForm"
51                scope="session"
52                validate="false">
53       <forward name="success" path="/docs/error.jsp"/>
54     </action>
55
56     <action    path="/admin/showNoAccess"
57                type="org.bedework.webadmin.PERenderAction"
58                name="peForm"
59                scope="session"
60                validate="false">
61       <forward name="success" path="/docs/noAccess.jsp"/>
62       <forward name="noAccess" path="/docs/noAccess.jsp"/>
63     </action>
64
65     <action    path="/admin/showNoGroup"
66                type="org.bedework.webadmin.PERenderAction"
67                name="peForm"
68                scope="session"
69                validate="false">
70       <forward name="success" path="/docs/noGroup.jsp"/>
71     </action>
72
73     <action    path="/categories/showCats"
74                type="org.bedework.webadmin.PERenderAction"
75                name="peForm"
76                scope="session"
77                validate="false">
78       <forward name="success" path="/docs/categories.jsp"/>
79     </action>
80
81     <action    path="/setup"
82                type="org.bedework.webadmin.PEAction"
83                unknown="true"
84                name="peForm"
85                scope="session"
86                validate="false">
87       <forward name="loggedOut" path="/admin/showMain.rdo" redirect="true"/>
88     </action>
89
90     <!-- ===============================================================
91                          Event Actions
92          =============================================================== -->
93
94     <action    path="/event/showEvent"
95                type="org.bedework.webadmin.PERenderAction"
96                name="peForm"
97                scope="session"
98                validate="false">
99       <forward name="success" path="/docs/event/displayEvent.jsp"/>
100     </action>
101
102     <action    path="/event/showModForm"
103                type="org.bedework.webadmin.PERenderAction"
104                name="peForm"
105                scope="session"
106                validate="false">
107       <forward name="success" path="/docs/event/modEvent.jsp"/>
108     </action>
109
110     <action    path="/event/showUpdateList"
111                type="org.bedework.webadmin.PERenderAction"
112                name="peForm"
113                scope="session"
114                validate="false">
115       <forward name="success" path="/docs/event/eventList.jsp"/>
116     </action>
117
118     <action    path="/event/showDeleteConfirm"
119                type="org.bedework.webadmin.PERenderAction"
120                name="peForm"
121                scope="session"
122                validate="false">
123       <forward name="success" path="/docs/event/deleteConfirm.jsp" />
124     </action>
125
126     <action    path="/event/initAddAlert"
127                type="org.bedework.webadmin.event.PEInitAddAlertAction"
128                name="peForm"
129                scope="session"
130                validate="false">
131       <forward name="continue" path="/event/showModForm.rdo" redirect="true" />
132     </action>
133
134     <action    path="/event/initAddEvent"
135                type="org.bedework.webadmin.event.PEInitAddEventAction"
136                name="peForm"
137                scope="session"
138                validate="false">
139       <forward name="continue" path="/event/showModForm.rdo" redirect="true" />
140     </action>
141
142     <action    path="/event/initUpdateEvent"
143                type="org.bedework.webadmin.event.PEGetFormattedEventsAction"
144                name="peForm"
145                scope="session"
146                validate="false">
147       <forward name="continue" path="/event/showUpdateList.rdo" redirect="true" />
148     </action>
149
150     <action    path="/event/delete"
151                type="org.bedework.webadmin.event.PEDeleteEventAction"
152                name="peForm"
153                scope="session"
154                validate="false">
155       <forward name="cancelled" path="/event/initUpdateEvent.do" redirect="true" />
156       <forward name="continue" path="/event/initUpdateEvent.do" redirect="true" />
157     </action>
158
159     <action    path="/event/fetchForDisplay"
160                type="org.bedework.webadmin.event.PEFetchEventAction"
161                name="peForm"
162                scope="session"
163                validate="false">
164       <forward name="notFound" path="/admin/showMain.rdo" redirect="true" />
165       <forward name="continue" path="/event/showEvent.rdo" redirect="true" />
166     </action>
167
168     <action    path="/event/fetchForUpdate"
169                type="org.bedework.webadmin.event.PEFetchEventAction"
170                name="peForm"
171                scope="session"
172                validate="false">
173       <forward name="notFound" path="/admin/showMain.rdo" redirect="true" />
174       <forward name="continue" path="/event/showModForm.rdo" redirect="true" />
175     </action>
176
177     <action    path="/event/update"
178                type="org.bedework.webadmin.event.PEUpdateEventAction"
179                name="peForm"
180                scope="session"
181                validate="false">
182       <forward name="continue" path="/event/showModForm.rdo" redirect="true" />
183       <forward name="retry" path="/event/showModForm.rdo" redirect="true" />
184       <forward name="delete" path="/event/showDeleteConfirm.rdo" redirect="true" />
185       <forward name="cancelled" path="/event/initUpdateEvent.do" redirect="true" />
186       <forward name="copy" path="/event/showModForm.rdo" redirect="true" />
187     </action>
188
189     <!-- ===============================================================
190                          Calendar Actions
191          =============================================================== -->
192
193     <action    path="/calendar/showCalendar"
194                type="org.bedework.webadmin.PERenderAction"
195                name="peForm"
196                scope="session"
197                validate="false">
198       <forward name="success" path="/docs/calendar/displayCalendar.jsp"/>
199     </action>
200
201     <action    path="/calendar/showReferenced"
202                type="org.bedework.webadmin.PERenderAction"
203                name="peForm"
204                scope="session"
205                validate="false">
206       <forward name="success" path="/docs/calendar/referenced.jsp"/>
207     </action>
208
209     <action    path="/calendar/showModForm"
210                type="org.bedework.webadmin.PERenderAction"
211                name="peForm"
212                scope="session"
213                validate="false">
214       <forward name="success" path="/docs/calendar/modCalendar.jsp"/>
215     </action>
216
217     <action    path="/calendar/showDescriptionList"
218                type="org.bedework.webadmin.PERenderAction"
219                name="peForm"
220                scope="session"
221                validate="false">
222       <forward name="success" path="/docs/calendar/calendarDescriptions.jsp"/>
223     </action>
224
225     <action    path="/calendar/showUpdateList"
226                type="org.bedework.webadmin.PERenderAction"
227                name="peForm"
228                scope="session"
229                validate="false">
230       <forward name="success" path="/docs/calendar/calendarList.jsp"/>
231     </action>
232
233     <action    path="/calendar/showDeleteConfirm"
234                type="org.bedework.webadmin.PERenderAction"
235                name="peForm"
236                scope="session"
237                validate="false">
238       <forward name="cancelled" path="/calendar/showUpdateList.rdo" redirect="true" />
239       <forward name="success" path="/docs/calendar/deleteConfirm.jsp" />
240     </action>
241
242     <action    path="/calendar/initAdd"
243                type="org.bedework.webcommon.calendars.InitAddCalendarAction"
244                name="peForm"
245                scope="session"
246                validate="false">
247       <forward name="continue" path="/calendar/showModForm.rdo" redirect="true" />
248     </action>
249
250     <action    path="/calendar/delete"
251                type="org.bedework.webcommon.calendars.DeleteCalendarAction"
252                name="peForm"
253                scope="session"
254                validate="false">
255       <forward name="inUse" path="/calendar/showReferenced.rdo" redirect="true" />
256       <forward name="notFound" path="/calendar/showUpdateList.rdo" redirect="true" />
257       <forward name="cancelled" path="/calendar/showUpdateList.rdo" redirect="true" />
258       <forward name="continue" path="/calendar/showUpdateList.rdo" redirect="true" />
259     </action>
260
261     <action    path="/calendar/fetchForDisplay"
262                type="org.bedework.webcommon.calendars.FetchCalendarAction"
263                name="peForm"
264                scope="session"
265                validate="false">
266       <forward name="notFound" path="/admin/showMain.rdo" redirect="true" />
267       <forward name="continue" path="/calendar/showCalendar.rdo" redirect="true" />
268     </action>
269
270     <action    path="/calendar/fetchForUpdate"
271                type="org.bedework.webcommon.calendars.FetchCalendarAction"
272                name="peForm"
273                scope="session"
274                validate="false">
275       <forward name="notFound" path="/admin/showUpdateList.rdo" redirect="true" />
276       <forward name="continue" path="/calendar/showModForm.rdo" redirect="true" />
277     </action>
278
279     <action    path="/calendar/update"
280                type="org.bedework.webcommon.calendars.UpdateCalendarAction"
281                name="peForm"
282                scope="session"
283                validate="false">
284       <forward name="continue" path="/calendar/showUpdateList.rdo" redirect="true" />
285       <forward name="cancelled" path="/calendar/showUpdateList.rdo" redirect="true" />
286       <forward name="retry" path="/calendar/showModForm.rdo" redirect="true" />
287       <forward name="delete" path="/calendar/showDeleteConfirm.rdo" redirect="true" />
288     </action>
289
290     <!-- ===============================================================
291                          Subscription Actions
292          =============================================================== -->
293
294     <action    path="/subs/showSubs"
295                type="org.bedework.webadmin.PERenderAction"
296                name="peForm"
297                scope="session"
298                validate="false">
299       <forward name="success" path="/docs/subs/subscriptions.jsp"/>
300     </action>
301
302     <action    path="/subs/showModForm"
303                type="org.bedework.webadmin.PERenderAction"
304                name="peForm"
305                scope="session"
306                validate="false">
307       <forward name="success" path="/docs/subs/modSubscription.jsp"/>
308     </action>
309
310     <action    path="/subs/fetch"
311                type="org.bedework.webcommon.subs.GetSubscriptionsAction"
312                name="peForm"
313                scope="session"
314                validate="false">
315       <forward name="success" path="/subs/showSubs.rdo" redirect="true" />
316     </action>
317
318     <action    path="/subs/fetchForUpdate"
319                type="org.bedework.webcommon.subs.FetchSubscriptionAction"
320                name="peForm"
321                scope="session"
322                validate="false">
323       <forward name="notFound" path="/admin/showMain.rdo" redirect="true" />
324       <forward name="continue" path="/subs/showModForm.rdo" redirect="true" />
325     </action>
326
327     <action    path="/subs/initAdd"
328                type="org.bedework.webcommon.subs.InitSubscribeAction"
329                name="peForm"
330                scope="session"
331                validate="false">
332       <forward name="cancelled" path="/subs/showSubs.rdo" redirect="true"/>
333       <forward name="success" path="/subs/showModForm.rdo" redirect="true" />
334     </action>
335
336
337     <action    path="/subs/subscribe"
338                type="org.bedework.webcommon.subs.SubscribeAction"
339                name="peForm"
340                scope="session"
341                validate="false">
342       <forward name="cancelled" path="/subs/showSubs.rdo" redirect="true"/>
343       <forward name="retry" path="/subs/showModForm.rdo" redirect="true"/>
344       <forward name="reffed" path="/subs/showSubs.rdo" redirect="true"/>
345       <forward name="success" path="/subs/showSubs.rdo" redirect="true" />
346     </action>
347
348     <action    path="/subs/unsubscribe"
349                type="org.bedework.webcommon.subs.UnsubscribeAction"
350                name="peForm"
351                scope="session"
352                validate="false">
353       <forward name="success" path="/subs/showSubs.rdo" redirect="true" />
354     </action>
355
356     <!-- ===============================================================
357                          View Actions
358          =============================================================== -->
359
360     <action    path="/view/showViews"
361                type="org.bedework.webadmin.PERenderAction"
362                name="peForm"
363                scope="session"
364                validate="false">
365       <forward name="success" path="/docs/view/viewList.jsp"/>
366     </action>
367
368     <action    path="/view/showModForm"
369                type="org.bedework.webadmin.PERenderAction"
370                name="peForm"
371                scope="session"
372                validate="false">
373       <forward name="success" path="/docs/view/modView.jsp"/>
374     </action>
375
376     <action    path="/view/showDeleteConfirm"
377                type="org.bedework.webadmin.PERenderAction"
378                name="peForm"
379                scope="session"
380                validate="false">
381       <forward name="success" path="/docs/view/deleteConfirm.jsp" />
382     </action>
383
384     <action    path="/view/fetchForUpdate"
385                type="org.bedework.webcommon.views.FetchViewAction"
386                name="peForm"
387                scope="session"
388                validate="false">
389       <forward name="delete" path="/view/showDeleteConfirm.rdo" redirect="true" />
390       <forward name="retry" path="/view/showViews.rdo" redirect="true" />
391       <forward name="success" path="/view/showModForm.rdo" redirect="true" />
392     </action>
393
394     <action    path="/view/update"
395                type="org.bedework.webcommon.views.UpdateViewAction"
396                name="peForm"
397                scope="session"
398                validate="false">
399       <forward name="retry" path="/view/showModForm.rdo" redirect="true" />
400       <forward name="success" path="/view/showModForm.rdo" redirect="true" />
401     </action>
402
403     <action    path="/view/addView"
404                type="org.bedework.webcommon.views.AddViewAction"
405                name="peForm"
406                scope="session"
407                validate="false">
408       <forward name="notAdded" path="/view/showViews.rdo" redirect="true" />
409       <forward name="success" path="/view/showModForm.rdo" redirect="true" />
410     </action>
411
412     <action    path="/view/removeView"
413                type="org.bedework.webcommon.views.DeleteViewAction"
414                name="peForm"
415                scope="session"
416                validate="false">
417       <forward name="cancelled" path="/view/showViews.rdo" redirect="true" />
418       <forward name="retry" path="/view/showViews.rdo" redirect="true" />
419       <forward name="success" path="/view/showViews.rdo" redirect="true" />
420     </action>
421
422     <!-- ===============================================================
423                          Syspars Actions
424          =============================================================== -->
425
426     <action    path="/syspars/show"
427                type="org.bedework.webadmin.PERenderAction"
428                name="peForm"
429                scope="session"
430                validate="false">
431       <forward name="success" path="/docs/system/modSyspars.jsp"/>
432     </action>
433
434     <action    path="/syspars/fetch"
435                type="org.bedework.webadmin.system.FetchSysparsAction"
436                name="peForm"
437                scope="session"
438                validate="false">
439       <forward name="continue" path="/syspars/show.rdo" redirect="true" />
440     </action>
441
442     <!-- on update, pass back through fetch action to refresh -->
443     <action    path="/syspars/update"
444                type="org.bedework.webadmin.system.UpdateSysparsAction"
445                name="peForm"
446                scope="session"
447                validate="false">
448       <forward name="continue" path="/syspars/fetch.do" redirect="true" />
449     </action>
450
451     <!-- ===============================================================
452                          Timezone Actions
453          =============================================================== -->
454
455     <action    path="/timezones/showUpload"
456                type="org.bedework.webadmin.PERenderAction"
457                name="peForm"
458                scope="session"
459                validate="false">
460       <forward name="success" path="/docs/timezones/upload.jsp"/>
461     </action>
462
463     <action    path="/timezones/initUpload"
464                type="org.bedework.webadmin.timezones.PEInitUploadTimezonesAction"
465                name="peForm"
466                scope="session"
467                validate="false">
468       <forward name="continue" path="/timezones/showUpload.rdo" redirect="true" />
469     </action>
470
471     <action    path="/timezones/upload"
472                type="org.bedework.webadmin.timezones.PEUploadTimezonesAction"
473                name="peForm"
474                scope="session"
475                validate="false">
476     <forward name="failed" path="/admin/showMain.rdo" redirect="true"/>
477     </action>
478
479
480     <!-- ===============================================================
481                          Sponsor Actions
482          =============================================================== -->
483
484     <action    path="/sponsor/showSponsor"
485                type="org.bedework.webadmin.PERenderAction"
486                name="peForm"
487                scope="session"
488                validate="false">
489       <forward name="success" path="/docs/sponsor/displaySponsor.jsp"/>
490     </action>
491
492     <action    path="/sponsor/showReferenced"
493                type="org.bedework.webadmin.PERenderAction"
494                name="peForm"
495                scope="session"
496                validate="false">
497       <forward name="success" path="/docs/sponsor/referenced.jsp"/>
498     </action>
499
500     <action    path="/sponsor/showModForm"
501                type="org.bedework.webadmin.PERenderAction"
502                name="peForm"
503                scope="session"
504                validate="false">
505       <forward name="success" path="/docs/sponsor/modSponsor.jsp"/>
506     </action>
507
508     <action    path="/sponsor/showUpdateList"
509                type="org.bedework.webadmin.PERenderAction"
510                name="peForm"
511                scope="session"
512                validate="false">
513       <forward name="success" path="/docs/sponsor/sponsorList.jsp"/>
514     </action>
515
516     <action    path="/sponsor/showDeleteConfirm"
517                type="org.bedework.webadmin.PERenderAction"
518                name="peForm"
519                scope="session"
520                validate="false">
521       <forward name="success" path="/docs/sponsor/deleteConfirm.jsp" />
522     </action>
523
524     <action    path="/sponsor/initAdd"
525                type="org.bedework.webadmin.sponsor.PEInitAddSponsorAction"
526                name="peForm"
527                scope="session"
528                validate="false">
529       <forward name="continue" path="/sponsor/showModForm.rdo" redirect="true" />
530     </action>
531
532     <action    path="/sponsor/initUpdate"
533                type="org.bedework.webadmin.sponsor.PEInitUpdateSponsorAction"
534                name="peForm"
535                scope="session"
536                validate="false">
537       <forward name="continue" path="/sponsor/showUpdateList.rdo" redirect="true" />
538     </action>
539
540     <action    path="/sponsor/delete"
541                type="org.bedework.webadmin.sponsor.PEDeleteSponsorAction"
542                name="peForm"
543                scope="session"
544                validate="false">
545       <forward name="inUse" path="/sponsor/showReferenced.rdo" redirect="true" />
546       <forward name="notFound" path="/sponsor/showUpdateList.rdo" redirect="true" />
547       <forward name="cancelled" path="/sponsor/showUpdateList.rdo" redirect="true" />
548       <forward name="continue" path="/sponsor/showUpdateList.rdo" redirect="true" />
549     </action>
550
551     <action    path="/sponsor/fetchForDisplay"
552                type="org.bedework.webadmin.sponsor.PEFetchSponsorAction"
553                name="peForm"
554                scope="session"
555                validate="false">
556       <forward name="notFound" path="/admin/showMain.rdo" redirect="true" />
557       <forward name="continue" path="/sponsor/showSponsor.rdo" redirect="true" />
558     </action>
559
560     <action    path="/sponsor/fetchForUpdate"
561                type="org.bedework.webadmin.sponsor.PEFetchSponsorAction"
562                name="peForm"
563                scope="session"
564                validate="false">
565       <forward name="notFound" path="/admin/showMain.rdo" redirect="true" />
566       <forward name="continue" path="/sponsor/showModForm.rdo" redirect="true" />
567     </action>
568
569     <action    path="/sponsor/update"
570                type="org.bedework.webadmin.sponsor.PEUpdateSponsorAction"
571                name="peForm"
572                scope="session"
573                validate="false">
574       <forward name="continue" path="/sponsor/showModForm.rdo" redirect="true" />
575       <forward name="retry" path="/sponsor/showModForm.rdo" redirect="true" />
576       <forward name="cancelled" path="/sponsor/showUpdateList.rdo" redirect="true" />
577       <forward name="delete" path="/sponsor/showDeleteConfirm.rdo" redirect="true" />
578     </action>
579
580     <!-- ===============================================================
581                          Location Actions
582          =============================================================== -->
583
584     <action    path="/location/showLocation"
585                type="org.bedework.webadmin.PERenderAction"
586                name="peForm"
587                scope="session"
588                validate="false">
589       <forward name="success" path="/docs/location/displayLocation.jsp"/>
590     </action>
591
592     <action    path="/location/showReferenced"
593                type="org.bedework.webadmin.PERenderAction"
594                name="peForm"
595                scope="session"
596                validate="false">
597       <forward name="success" path="/docs/location/referenced.jsp"/>
598     </action>
599
600     <action    path="/location/showModForm"
601                type="org.bedework.webadmin.PERenderAction"
602                name="peForm"
603                scope="session"
604                validate="false">
605       <forward name="success" path="/docs/location/modLocation.jsp"/>
606     </action>
607
608     <action    path="/location/showUpdateList"
609                type="org.bedework.webadmin.PERenderAction"
610                name="peForm"
611                scope="session"
612                validate="false">
613       <forward name="success" path="/docs/location/locationList.jsp"/>
614     </action>
615
616     <action    path="/location/showDeleteConfirm"
617                type="org.bedework.webadmin.PERenderAction"
618                name="peForm"
619                scope="session"
620                validate="false">
621       <forward name="success" path="/docs/location/deleteConfirm.jsp" />
622     </action>
623
624     <action    path="/location/initAdd"
625                type="org.bedework.webadmin.location.PEInitAddLocationAction"
626                name="peForm"
627                scope="session"
628                validate="false">
629       <forward name="continue" path="/location/showModForm.rdo" redirect="true" />
630     </action>
631
632     <action    path="/location/initUpdate"
633                type="org.bedework.webadmin.location.PEInitUpdateLocationAction"
634                name="peForm"
635                scope="session"
636                validate="false">
637       <forward name="continue" path="/location/showUpdateList.rdo" redirect="true" />
638     </action>
639
640     <action    path="/location/delete"
641                type="org.bedework.webadmin.location.PEDeleteLocationAction"
642                name="peForm"
643                scope="session"
644                validate="false">
645       <forward name="inUse" path="/location/showReferenced.rdo" redirect="true" />
646       <forward name="notFound" path="/location/showUpdateList.rdo" redirect="true" />
647       <forward name="cancelled" path="/location/showUpdateList.rdo" redirect="true" />
648       <forward name="continue" path="/location/showUpdateList.rdo" redirect="true" />
649     </action>
650
651     <action    path="/location/fetchForDisplay"
652                type="org.bedework.webadmin.location.PEFetchLocationAction"
653                name="peForm"
654                scope="session"
655                validate="false">
656       <forward name="notFound" path="/admin/showMain.rdo" redirect="true" />
657       <forward name="continue" path="/location/showLocation.rdo" redirect="true" />
658     </action>
659
660     <action    path="/location/fetchForUpdate"
661                type="org.bedework.webadmin.location.PEFetchLocationAction"
662                name="peForm"
663                scope="session"
664                validate="false">
665       <forward name="notFound" path="/admin/showMain.rdo" redirect="true" />
666       <forward name="continue" path="/location/showModForm.rdo" redirect="true" />
667     </action>
668
669     <action    path="/location/update"
670                type="org.bedework.webadmin.location.PEUpdateLocationAction"
671                name="peForm"
672                scope="session"
673                validate="false">
674       <forward name="cancelled" path="/location/showUpdateList.rdo" redirect="true" />
675       <forward name="continue" path="/location/showModForm.rdo" redirect="true" />
676       <forward name="retry" path="/location/showModForm.rdo" redirect="true" />
677       <forward name="delete" path="/location/showDeleteConfirm.rdo" redirect="true" />
678     </action>
679
680     <!-- ===============================================================
681                          Category Actions
682          =============================================================== -->
683
684     <action    path="/category/showReferenced"
685                type="org.bedework.webadmin.PERenderAction"
686                name="peForm"
687                scope="session"
688                validate="false">
689       <forward name="success" path="/docs/category/referenced.jsp"/>
690     </action>
691
692     <action    path="/category/showModForm"
693                type="org.bedework.webadmin.PERenderAction"
694                name="peForm"
695                scope="session"
696                validate="false">
697       <forward name="success" path="/docs/category/modCategory.jsp"/>
698     </action>
699
700     <action    path="/category/showUpdateList"
701                type="org.bedework.webadmin.PERenderAction"
702                name="peForm"
703                scope="session"
704                validate="false">
705       <forward name="success" path="/docs/category/modCategoryList.jsp"/>
706     </action>
707
708     <action    path="/category/showDeleteConfirm"
709                type="org.bedework.webadmin.PERenderAction"
710                name="peForm"
711                scope="session"
712                validate="false">
713       <forward name="success" path="/docs/category/deleteConfirm.jsp" />
714     </action>
715
716     <action    path="/category/initAdd"
717                type="org.bedework.webadmin.category.PEInitAddCategoryAction"
718                name="peForm"
719                scope="session"
720                validate="false">
721       <forward name="continue" path="/category/showModForm.rdo" redirect="true" />
722     </action>
723
724     <action    path="/category/initUpdate"
725                type="org.bedework.webadmin.category.PEInitUpdateCategoryAction"
726                name="peForm"
727                scope="session"
728                validate="false">
729       <forward name="continue" path="/category/showUpdateList.rdo" redirect="true" />
730     </action>
731
732     <action    path="/category/delete"
733                type="org.bedework.webadmin.category.PEDeleteCategoryAction"
734                name="peForm"
735                scope="session"
736                validate="false">
737       <forward name="inUse" path="/category/showReferenced.rdo" redirect="true" />
738       <forward name="notFound" path="/category/showUpdateList.rdo" redirect="true" />
739       <forward name="continue" path="/category/showUpdateList.rdo" redirect="true" />
740     </action>
741
742     <action    path="/category/fetchForUpdate"
743                type="org.bedework.webadmin.category.PEFetchCategoryAction"
744                name="peForm"
745                scope="session"
746                validate="false">
747       <forward name="notFound" path="/admin/showMain.rdo" redirect="true" />
748       <forward name="continue" path="/category/showModForm.rdo" redirect="true" />
749     </action>
750
751     <action    path="/category/update"
752                type="org.bedework.webadmin.category.PEUpdateCategoryAction"
753                name="peForm"
754                scope="session"
755                validate="false">
756       <forward name="continue" path="/category/showUpdateList.rdo" redirect="true" />
757       <forward name="retry" path="/category/showModForm.rdo" />
758       <forward name="delete" path="/category/showDeleteConfirm.rdo" redirect="true" />
759     </action>
760
761     <!-- ===============================================================
762                      Authorisation and user Actions
763          =============================================================== -->
764
765     <action    path="/authuser/showModForm"
766                type="org.bedework.webadmin.PERenderAction"
767                name="peForm"
768                scope="session"
769                validate="false">
770       <forward name="success" path="/docs/authuser/modAuthUser.jsp"/>
771     </action>
772
773     <action    path="/authuser/showUpdateList"
774                type="org.bedework.webadmin.PERenderAction"
775                name="peForm"
776                scope="session"
777                validate="false">
778       <forward name="success" path="/docs/authuser/authUserList.jsp"/>
779     </action>
780
781     <action    path="/authuser/initUpdate"
782                type="org.bedework.webadmin.authuser.PEGetAuthUsersAction"
783                name="peForm"
784                scope="session"
785                validate="false">
786       <forward name="continue" path="/authuser/showUpdateList.rdo" redirect="true" />
787     </action>
788
789     <action    path="/authuser/fetchForUpdate"
790                type="org.bedework.webadmin.authuser.PEFetchAuthAction"
791                name="peForm"
792                scope="session"
793                validate="false">
794       <forward name="notFound" path="/authuser/showUpdateList.rdo" redirect="true" />
795       <forward name="continue" path="/authuser/showModForm.rdo" redirect="true" />
796     </action>
797
798     <action    path="/authuser/update"
799                type="org.bedework.webadmin.authuser.PEUpdateAuthAction"
800                name="peForm"
801                scope="session"
802                validate="false">
803       <forward name="cancelled" path="/authuser/showUpdateList.rdo" redirect="true" />
804       <forward name="retry" path="/authuser/showModForm.rdo" />
805       <forward name="continue" path="/authuser/showUpdateList.rdo" redirect="true" />
806     </action>
807
808     <!-- ===============================================================
809                      User Preferences Actions
810          =============================================================== -->
811
812     <action    path="/prefs/showModForm"
813                type="org.bedework.webadmin.PERenderAction"
814                name="peForm"
815                scope="session"
816                validate="false">
817       <forward name="success" path="/docs/prefs/modPrefs.jsp"/>
818     </action>
819
820     <action    path="/prefs/fetchForUpdate"
821                type="org.bedework.webcommon.pref.FetchPrefsAction"
822                name="peForm"
823                scope="session"
824                validate="false">
825       <forward name="notFound" path="/admin/showMain.rdo" redirect="true" />
826       <forward name="success" path="/prefs/showModForm.rdo" redirect="true" />
827     </action>
828
829     <action    path="/prefs/update"
830                type="org.bedework.webcommon.pref.UpdatePrefsAction"
831                name="peForm"
832                scope="session"
833                validate="false">
834       <forward name="cancelled" path="/admin/showMain.rdo" redirect="true" />
835       <forward name="retry" path="/prefs/showModForm.rdo" />
836       <forward name="success" path="/admin/showMain.rdo" redirect="true" />
837     </action>
838
839     <!-- ===============================================================
840                      Admin Group Actions
841          =============================================================== -->
842
843     <action    path="/admingroup/showChooseGroup"
844                type="org.bedework.webadmin.PERenderAction"
845                name="peForm"
846                scope="session"
847                validate="false">
848       <forward name="success" path="/docs/admingroup/chooseAdminGroup.jsp" />
849       <forward name="chooseGroup" path="/docs/admingroup/chooseAdminGroup.jsp" />
850     </action>
851
852     <action    path="/admingroup/showModForm"
853                type="org.bedework.webadmin.PERenderAction"
854                name="peForm"
855                scope="session"
856                validate="false">
857       <forward name="success" path="/docs/admingroup/modAdminGroup.jsp"/>
858     </action>
859
860     <action    path="/admingroup/showModMembersForm"
861                type="org.bedework.webadmin.PERenderAction"
862                name="peForm"
863                scope="session"
864                validate="false">
865       <forward name="success" path="/docs/admingroup/modAdminGroupMembers.jsp"/>
866     </action>
867
868     <action    path="/admingroup/showUpdateList"
869                type="org.bedework.webadmin.PERenderAction"
870                name="peForm"
871                scope="session"
872                validate="false">
873       <forward name="success" path="/docs/admingroup/adminGroupList.jsp"/>
874     </action>
875
876     <action    path="/admingroup/showDeleteConfirm"
877                type="org.bedework.webadmin.PERenderAction"
878                name="peForm"
879                scope="session"
880                validate="false">
881       <forward name="success" path="/docs/admingroup/deleteAdminGroupConfirm.jsp" />
882     </action>
883
884     <action    path="/admingroup/initAdd"
885                type="org.bedework.webadmin.admingroup.PEInitAddAGAction"
886                name="peForm"
887                scope="session"
888                validate="false">
889       <forward name="continue" path="/admingroup/showModForm.rdo" redirect="true" />
890     </action>
891
892     <action    path="/admingroup/initUpdate"
893                type="org.bedework.webadmin.admingroup.PEInitUpdateAGAction"
894                name="peForm"
895                scope="session"
896                validate="false">
897       <forward name="continue" path="/admingroup/showUpdateList.rdo" redirect="true" />
898     </action>
899
900     <action    path="/admingroup/delete"
901                type="org.bedework.webadmin.admingroup.PEDeleteAGAction"
902                name="peForm"
903                scope="session"
904                validate="false">
905       <forward name="inUse" path="/admingroup/showReferenced.rdo" redirect="true" />
906       <forward name="notFound" path="/admingroup/showUpdateList.rdo" redirect="true" />
907       <forward name="cancelled" path="/admingroup/showUpdateList.rdo" redirect="true" />
908       <forward name="continue" path="/admingroup/showUpdateList.rdo" redirect="true" />
909     </action>
910
911     <action    path="/admingroup/fetchForUpdate"
912                type="org.bedework.webadmin.admingroup.PEFetchAGAction"
913                name="peForm"
914                scope="session"
915                validate="false">
916       <forward name="notFound" path="/admin/showUpdateList.rdo" redirect="true" />
917       <forward name="continue" path="/admingroup/showModForm.rdo" redirect="true" />
918     </action>
919
920     <action    path="/admingroup/fetchForUpdateMembers"
921                type="org.bedework.webadmin.admingroup.PEFetchAGAction"
922                name="peForm"
923                scope="session"
924                validate="false">
925       <forward name="notFound" path="/admin/showMain.rdo" redirect="true" />
926       <forward name="continue" path="/admingroup/showModMembersForm.rdo" redirect="true" />
927     </action>
928
929     <action    path="/admingroup/update"
930                type="org.bedework.webadmin.admingroup.PEUpdateAGAction"
931                name="peForm"
932                scope="session"
933                validate="false">
934       <forward name="cancelled" path="/admingroup/showUpdateList.rdo" redirect="true" />
935       <forward name="continue" path="/admingroup/showUpdateList.rdo" redirect="true" />
936       <forward name="retry" path="/admingroup/showModForm.rdo" redirect="true" />
937       <forward name="delete" path="/admingroup/showDeleteConfirm.rdo" redirect="true" />
938     </action>
939
940     <action    path="/admingroup/updateMembers"
941                type="org.bedework.webadmin.admingroup.PEUpdateAGAction"
942                name="peForm"
943                scope="session"
944                validate="false">
945       <forward name="cancelled" path="/admingroup/showUpdateList.rdo" redirect="true" />
946       <forward name="continue" path="/admingroup/showModMembersForm.rdo" redirect="true" />
947       <forward name="retry" path="/admingroup/showModMembersForm.rdo" redirect="true" />
948     </action>
949
950     <action    path="/admingroup/switch"
951                type="org.bedework.webadmin.admingroup.PESwitchAGAction"
952                name="peForm"
953                scope="session"
954                validate="false">
955       <forward name="continue"  path="/admingroup/showChooseGroup.rdo" redirect="true" />
956     </action>
957
958     <!-- ===============================================================
959                      Stats Actions
960          =============================================================== -->
961
962     <action    path="/stats/show"
963                type="org.bedework.webadmin.PERenderAction"
964                name="peForm"
965                scope="session"
966                validate="false">
967       <forward name="success" path="/docs/system/showSysStats.jsp" />
968     </action>
969
970     <action    path="/stats/update"
971                type="org.bedework.webcommon.misc.StatisticsAction"
972                name="peForm"
973                scope="session"
974                validate="false">
975       <forward name="continue"  path="/stats/show.rdo" redirect="true" />
976       <forward name="success"  path="/stats/show.rdo" redirect="true" />
977     </action>
978   </action-mappings>
979
980   <!-- Below will be one or more comments which must not be edited or removed
981        for the portlet build process to succeed. The comment will be replaced
982         by some extra cofiguration.
983        -->
984
985   <!-- Jetspeed2 controller def here -->
986
987   <message-resources parameter="servlet" null="true" />
988
989 </struts-config>
Note: See TracBrowser for help on using the browser.