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

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

added calendar descriptions jsp, special css for it, and javascript to open the window. Began adding status to the mod event form.

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="continue" path="/event/initUpdateEvent.do" redirect="true" />
156     </action>
157
158     <action    path="/event/fetchForDisplay"
159                type="org.bedework.webadmin.event.PEFetchEventAction"
160                name="peForm"
161                scope="session"
162                validate="false">
163       <forward name="notFound" path="/admin/showMain.rdo" redirect="true" />
164       <forward name="continue" path="/event/showEvent.rdo" redirect="true" />
165     </action>
166
167     <action    path="/event/fetchForUpdate"
168                type="org.bedework.webadmin.event.PEFetchEventAction"
169                name="peForm"
170                scope="session"
171                validate="false">
172       <forward name="notFound" path="/admin/showMain.rdo" redirect="true" />
173       <forward name="continue" path="/event/showModForm.rdo" redirect="true" />
174     </action>
175
176     <action    path="/event/update"
177                type="org.bedework.webadmin.event.PEUpdateEventAction"
178                name="peForm"
179                scope="session"
180                validate="false">
181       <forward name="continue" path="/event/initUpdateEvent.do" redirect="true" />
182       <forward name="retry" path="/event/showModForm.rdo" redirect="true" />
183       <forward name="delete" path="/event/showDeleteConfirm.rdo" redirect="true" />
184       <forward name="copy" path="/event/showModForm.rdo" redirect="true" />
185     </action>
186
187     <!-- ===============================================================
188                          Calendar Actions
189          =============================================================== -->
190
191     <action    path="/calendar/showCalendar"
192                type="org.bedework.webadmin.PERenderAction"
193                name="peForm"
194                scope="session"
195                validate="false">
196       <forward name="success" path="/docs/calendar/displayCalendar.jsp"/>
197     </action>
198
199     <action    path="/calendar/showReferenced"
200                type="org.bedework.webadmin.PERenderAction"
201                name="peForm"
202                scope="session"
203                validate="false">
204       <forward name="success" path="/docs/calendar/referenced.jsp"/>
205     </action>
206
207     <action    path="/calendar/showModForm"
208                type="org.bedework.webadmin.PERenderAction"
209                name="peForm"
210                scope="session"
211                validate="false">
212       <forward name="success" path="/docs/calendar/modCalendar.jsp"/>
213     </action>
214
215     <action    path="/calendar/showDescriptionList"
216                type="org.bedework.webadmin.PERenderAction"
217                name="peForm"
218                scope="session"
219                validate="false">
220       <forward name="success" path="/docs/calendar/calendarDescriptions.jsp"/>
221     </action>
222
223     <action    path="/calendar/showUpdateList"
224                type="org.bedework.webadmin.PERenderAction"
225                name="peForm"
226                scope="session"
227                validate="false">
228       <forward name="success" path="/docs/calendar/calendarList.jsp"/>
229     </action>
230
231     <action    path="/calendar/showDeleteConfirm"
232                type="org.bedework.webadmin.PERenderAction"
233                name="peForm"
234                scope="session"
235                validate="false">
236       <forward name="success" path="/docs/calendar/deleteConfirm.jsp" />
237     </action>
238
239     <action    path="/calendar/initAdd"
240                type="org.bedework.webcommon.calendars.InitAddCalendarAction"
241                name="peForm"
242                scope="session"
243                validate="false">
244       <forward name="continue" path="/calendar/showModForm.rdo" redirect="true" />
245     </action>
246
247     <action    path="/calendar/delete"
248                type="org.bedework.webcommon.calendars.DeleteCalendarAction"
249                name="peForm"
250                scope="session"
251                validate="false">
252       <forward name="inUse" path="/calendar/showReferenced.rdo" redirect="true" />
253       <forward name="notFound" path="/calendar/showUpdateList.rdo" redirect="true" />
254       <forward name="cancelled" path="/calendar/showUpdateList.rdo" redirect="true" />
255       <forward name="continue" path="/calendar/showUpdateList.rdo" redirect="true" />
256     </action>
257
258     <action    path="/calendar/fetchForDisplay"
259                type="org.bedework.webcommon.calendars.FetchCalendarAction"
260                name="peForm"
261                scope="session"
262                validate="false">
263       <forward name="notFound" path="/admin/showMain.rdo" redirect="true" />
264       <forward name="continue" path="/calendar/showCalendar.rdo" redirect="true" />
265     </action>
266
267     <action    path="/calendar/fetchForUpdate"
268                type="org.bedework.webcommon.calendars.FetchCalendarAction"
269                name="peForm"
270                scope="session"
271                validate="false">
272       <forward name="notFound" path="/admin/showUpdateList.rdo" redirect="true" />
273       <forward name="continue" path="/calendar/showModForm.rdo" redirect="true" />
274     </action>
275
276     <action    path="/calendar/update"
277                type="org.bedework.webcommon.calendars.UpdateCalendarAction"
278                name="peForm"
279                scope="session"
280                validate="false">
281       <forward name="continue" path="/calendar/showUpdateList.rdo" redirect="true" />
282       <forward name="cancelled" path="/calendar/showUpdateList.rdo" redirect="true" />
283       <forward name="retry" path="/calendar/showModForm.rdo" redirect="true" />
284       <forward name="delete" path="/calendar/showDeleteConfirm.rdo" redirect="true" />
285     </action>
286
287     <!-- ===============================================================
288                          Subscription Actions
289          =============================================================== -->
290
291     <action    path="/subs/showSubs"
292                type="org.bedework.webadmin.PERenderAction"
293                name="peForm"
294                scope="session"
295                validate="false">
296       <forward name="success" path="/docs/subs/subscriptions.jsp"/>
297     </action>
298
299     <action    path="/subs/showModForm"
300                type="org.bedework.webadmin.PERenderAction"
301                name="peForm"
302                scope="session"
303                validate="false">
304       <forward name="success" path="/docs/subs/modSubscription.jsp"/>
305     </action>
306
307     <action    path="/subs/fetch"
308                type="org.bedework.webcommon.subs.GetSubscriptionsAction"
309                name="peForm"
310                scope="session"
311                validate="false">
312       <forward name="success" path="/subs/showSubs.rdo" redirect="true" />
313     </action>
314
315     <action    path="/subs/fetchForUpdate"
316                type="org.bedework.webcommon.subs.FetchSubscriptionAction"
317                name="peForm"
318                scope="session"
319                validate="false">
320       <forward name="notFound" path="/admin/showMain.rdo" redirect="true" />
321       <forward name="continue" path="/subs/showModForm.rdo" redirect="true" />
322     </action>
323
324     <action    path="/subs/initAdd"
325                type="org.bedework.webcommon.subs.InitSubscribeAction"
326                name="peForm"
327                scope="session"
328                validate="false">
329       <forward name="cancelled" path="/subs/showSubs.rdo" redirect="true"/>
330       <forward name="success" path="/subs/showModForm.rdo" redirect="true" />
331     </action>
332
333
334     <action    path="/subs/subscribe"
335                type="org.bedework.webcommon.subs.SubscribeAction"
336                name="peForm"
337                scope="session"
338                validate="false">
339       <forward name="cancelled" path="/subs/showSubs.rdo" redirect="true"/>
340       <forward name="retry" path="/subs/showSubs.rdo" redirect="true"/>
341       <forward name="reffed" path="/subs/showSubs.rdo" redirect="true"/>
342       <forward name="success" path="/subs/showSubs.rdo" redirect="true" />
343     </action>
344
345     <action    path="/subs/unsubscribe"
346                type="org.bedework.webcommon.subs.UnsubscribeAction"
347                name="peForm"
348                scope="session"
349                validate="false">
350       <forward name="success" path="/subs/showSubs.rdo" redirect="true" />
351     </action>
352
353     <!-- ===============================================================
354                          View Actions
355          =============================================================== -->
356
357     <action    path="/view/showViews"
358                type="org.bedework.webadmin.PERenderAction"
359                name="peForm"
360                scope="session"
361                validate="false">
362       <forward name="success" path="/docs/view/viewList.jsp"/>
363     </action>
364
365     <action    path="/view/showModForm"
366                type="org.bedework.webadmin.PERenderAction"
367                name="peForm"
368                scope="session"
369                validate="false">
370       <forward name="success" path="/docs/view/modView.jsp"/>
371     </action>
372
373     <action    path="/view/showDeleteConfirm"
374                type="org.bedework.webadmin.PERenderAction"
375                name="peForm"
376                scope="session"
377                validate="false">
378       <forward name="success" path="/docs/view/deleteConfirm.jsp" />
379     </action>
380
381     <action    path="/view/fetchForUpdate"
382                type="org.bedework.webcommon.views.FetchViewAction"
383                name="peForm"
384                scope="session"
385                validate="false">
386       <forward name="delete" path="/view/showDeleteConfirm.rdo" redirect="true" />
387       <forward name="success" path="/view/showModForm.rdo" redirect="true" />
388     </action>
389
390     <action    path="/view/update"
391                type="org.bedework.webcommon.views.UpdateViewAction"
392                name="peForm"
393                scope="session"
394                validate="false">
395       <forward name="success" path="/view/showModForm.rdo" redirect="true" />
396     </action>
397
398     <action    path="/view/addView"
399                type="org.bedework.webcommon.views.AddViewAction"
400                name="peForm"
401                scope="session"
402                validate="false">
403       <forward name="success" path="/view/showModForm.rdo" redirect="true" />
404     </action>
405
406     <action    path="/view/removeView"
407                type="org.bedework.webcommon.views.DeleteViewAction"
408                name="peForm"
409                scope="session"
410                validate="false">
411     </action>
412
413     <!-- ===============================================================
414                          Syspars Actions
415          =============================================================== -->
416
417     <action    path="/syspars/show"
418                type="org.bedework.webadmin.PERenderAction"
419                name="peForm"
420                scope="session"
421                validate="false">
422       <forward name="success" path="/docs/system/modSyspars.jsp"/>
423     </action>
424
425     <action    path="/syspars/fetch"
426                type="org.bedework.webadmin.system.FetchSysparsAction"
427                name="peForm"
428                scope="session"
429                validate="false">
430       <forward name="continue" path="/syspars/show.rdo" redirect="true" />
431     </action>
432
433     <action    path="/syspars/update"
434                type="org.bedework.webadmin.system.UpdateSysparsAction"
435                name="peForm"
436                scope="session"
437                validate="false">
438       <forward name="continue" path="/syspars/show.rdo" redirect="true" />
439     </action>
440
441     <!-- ===============================================================
442                          Timezone Actions
443          =============================================================== -->
444
445     <action    path="/timezones/showUpload"
446                type="org.bedework.webadmin.PERenderAction"
447                name="peForm"
448                scope="session"
449                validate="false">
450       <forward name="success" path="/docs/timezones/upload.jsp"/>
451     </action>
452
453     <action    path="/timezones/initUpload"
454                type="org.bedework.webadmin.timezones.PEInitUploadTimezonesAction"
455                name="peForm"
456                scope="session"
457                validate="false">
458       <forward name="continue" path="/timezones/showUpload.rdo" redirect="true" />
459     </action>
460
461     <action    path="/timezones/upload"
462                type="org.bedework.webadmin.timezones.PEUploadTimezonesAction"
463                name="peForm"
464                scope="session"
465                validate="false">
466     </action>
467
468
469     <!-- ===============================================================
470                          Sponsor Actions
471          =============================================================== -->
472
473     <action    path="/sponsor/showSponsor"
474                type="org.bedework.webadmin.PERenderAction"
475                name="peForm"
476                scope="session"
477                validate="false">
478       <forward name="success" path="/docs/sponsor/displaySponsor.jsp"/>
479     </action>
480
481     <action    path="/sponsor/showReferenced"
482                type="org.bedework.webadmin.PERenderAction"
483                name="peForm"
484                scope="session"
485                validate="false">
486       <forward name="success" path="/docs/sponsor/referenced.jsp"/>
487     </action>
488
489     <action    path="/sponsor/showModForm"
490                type="org.bedework.webadmin.PERenderAction"
491                name="peForm"
492                scope="session"
493                validate="false">
494       <forward name="success" path="/docs/sponsor/modSponsor.jsp"/>
495     </action>
496
497     <action    path="/sponsor/showUpdateList"
498                type="org.bedework.webadmin.PERenderAction"
499                name="peForm"
500                scope="session"
501                validate="false">
502       <forward name="success" path="/docs/sponsor/sponsorList.jsp"/>
503     </action>
504
505     <action    path="/sponsor/showDeleteConfirm"
506                type="org.bedework.webadmin.PERenderAction"
507                name="peForm"
508                scope="session"
509                validate="false">
510       <forward name="success" path="/docs/sponsor/deleteConfirm.jsp" />
511     </action>
512
513     <action    path="/sponsor/initAdd"
514                type="org.bedework.webadmin.sponsor.PEInitAddSponsorAction"
515                name="peForm"
516                scope="session"
517                validate="false">
518       <forward name="continue" path="/sponsor/showModForm.rdo" redirect="true" />
519     </action>
520
521     <action    path="/sponsor/initUpdate"
522                type="org.bedework.webadmin.sponsor.PEInitUpdateSponsorAction"
523                name="peForm"
524                scope="session"
525                validate="false">
526       <forward name="continue" path="/sponsor/showUpdateList.rdo" redirect="true" />
527     </action>
528
529     <action    path="/sponsor/delete"
530                type="org.bedework.webadmin.sponsor.PEDeleteSponsorAction"
531                name="peForm"
532                scope="session"
533                validate="false">
534       <forward name="inUse" path="/sponsor/showReferenced.rdo" redirect="true" />
535       <forward name="notFound" path="/sponsor/showUpdateList.rdo" redirect="true" />
536       <forward name="cancelled" path="/sponsor/showUpdateList.rdo" redirect="true" />
537       <forward name="continue" path="/sponsor/showUpdateList.rdo" redirect="true" />
538     </action>
539
540     <action    path="/sponsor/fetchForDisplay"
541                type="org.bedework.webadmin.sponsor.PEFetchSponsorAction"
542                name="peForm"
543                scope="session"
544                validate="false">
545       <forward name="notFound" path="/admin/showMain.rdo" redirect="true" />
546       <forward name="continue" path="/sponsor/showSponsor.rdo" redirect="true" />
547     </action>
548
549     <action    path="/sponsor/fetchForUpdate"
550                type="org.bedework.webadmin.sponsor.PEFetchSponsorAction"
551                name="peForm"
552                scope="session"
553                validate="false">
554       <forward name="notFound" path="/admin/showMain.rdo" redirect="true" />
555       <forward name="continue" path="/sponsor/showModForm.rdo" redirect="true" />
556     </action>
557
558     <action    path="/sponsor/update"
559                type="org.bedework.webadmin.sponsor.PEUpdateSponsorAction"
560                name="peForm"
561                scope="session"
562                validate="false">
563       <forward name="continue" path="/sponsor/showModForm.rdo" redirect="true" />
564       <forward name="retry" path="/sponsor/showModForm.rdo" redirect="true" />
565       <forward name="cancelled" path="/sponsor/showUpdateList.rdo" redirect="true" />
566       <forward name="delete" path="/sponsor/showDeleteConfirm.rdo" redirect="true" />
567     </action>
568
569     <!-- ===============================================================
570                          Location Actions
571          =============================================================== -->
572
573     <action    path="/location/showLocation"
574                type="org.bedework.webadmin.PERenderAction"
575                name="peForm"
576                scope="session"
577                validate="false">
578       <forward name="success" path="/docs/location/displayLocation.jsp"/>
579     </action>
580
581     <action    path="/location/showReferenced"
582                type="org.bedework.webadmin.PERenderAction"
583                name="peForm"
584                scope="session"
585                validate="false">
586       <forward name="success" path="/docs/location/referenced.jsp"/>
587     </action>
588
589     <action    path="/location/showModForm"
590                type="org.bedework.webadmin.PERenderAction"
591                name="peForm"
592                scope="session"
593                validate="false">
594       <forward name="success" path="/docs/location/modLocation.jsp"/>
595     </action>
596
597     <action    path="/location/showUpdateList"
598                type="org.bedework.webadmin.PERenderAction"
599                name="peForm"
600                scope="session"
601                validate="false">
602       <forward name="success" path="/docs/location/locationList.jsp"/>
603     </action>
604
605     <action    path="/location/showDeleteConfirm"
606                type="org.bedework.webadmin.PERenderAction"
607                name="peForm"
608                scope="session"
609                validate="false">
610       <forward name="success" path="/docs/location/deleteConfirm.jsp" />
611     </action>
612
613     <action    path="/location/initAdd"
614                type="org.bedework.webadmin.location.PEInitAddLocationAction"
615                name="peForm"
616                scope="session"
617                validate="false">
618       <forward name="continue" path="/location/showModForm.rdo" redirect="true" />
619     </action>
620
621     <action    path="/location/initUpdate"
622                type="org.bedework.webadmin.location.PEInitUpdateLocationAction"
623                name="peForm"
624                scope="session"
625                validate="false">
626       <forward name="continue" path="/location/showUpdateList.rdo" redirect="true" />
627     </action>
628
629     <action    path="/location/delete"
630                type="org.bedework.webadmin.location.PEDeleteLocationAction"
631                name="peForm"
632                scope="session"
633                validate="false">
634       <forward name="inUse" path="/location/showReferenced.rdo" redirect="true" />
635       <forward name="notFound" path="/location/showUpdateList.rdo" redirect="true" />
636       <forward name="cancelled" path="/location/showUpdateList.rdo" redirect="true" />
637       <forward name="continue" path="/location/showUpdateList.rdo" redirect="true" />
638     </action>
639
640     <action    path="/location/fetchForDisplay"
641                type="org.bedework.webadmin.location.PEFetchLocationAction"
642                name="peForm"
643                scope="session"
644                validate="false">
645       <forward name="notFound" path="/admin/showMain.rdo" redirect="true" />
646       <forward name="continue" path="/location/showLocation.rdo" redirect="true" />
647     </action>
648
649     <action    path="/location/fetchForUpdate"
650                type="org.bedework.webadmin.location.PEFetchLocationAction"
651                name="peForm"
652                scope="session"
653                validate="false">
654       <forward name="notFound" path="/admin/showMain.rdo" redirect="true" />
655       <forward name="continue" path="/location/showModForm.rdo" redirect="true" />
656     </action>
657
658     <action    path="/location/update"
659                type="org.bedework.webadmin.location.PEUpdateLocationAction"
660                name="peForm"
661                scope="session"
662                validate="false">
663       <forward name="cancelled" path="/location/showUpdateList.rdo" redirect="true" />
664       <forward name="continue" path="/location/showModForm.rdo" redirect="true" />
665       <forward name="retry" path="/location/showModForm.rdo" redirect="true" />
666       <forward name="delete" path="/location/showDeleteConfirm.rdo" redirect="true" />
667     </action>
668
669     <!-- ===============================================================
670                          Category Actions
671          =============================================================== -->
672
673     <action    path="/category/showReferenced"
674                type="org.bedework.webadmin.PERenderAction"
675                name="peForm"
676                scope="session"
677                validate="false">
678       <forward name="success" path="/docs/category/referenced.jsp"/>
679     </action>
680
681     <action    path="/category/showModForm"
682                type="org.bedework.webadmin.PERenderAction"
683                name="peForm"
684                scope="session"
685                validate="false">
686       <forward name="success" path="/docs/category/modCategory.jsp"/>
687     </action>
688
689     <action    path="/category/showUpdateList"
690                type="org.bedework.webadmin.PERenderAction"
691                name="peForm"
692                scope="session"
693                validate="false">
694       <forward name="success" path="/docs/category/modCategoryList.jsp"/>
695     </action>
696
697     <action    path="/category/showDeleteConfirm"
698                type="org.bedework.webadmin.PERenderAction"
699                name="peForm"
700                scope="session"
701                validate="false">
702       <forward name="success" path="/docs/category/deleteConfirm.jsp" />
703     </action>
704
705     <action    path="/category/initAdd"
706                type="org.bedework.webadmin.category.PEInitAddCategoryAction"
707                name="peForm"
708                scope="session"
709                validate="false">
710       <forward name="continue" path="/category/showModForm.rdo" redirect="true" />
711     </action>
712
713     <action    path="/category/initUpdate"
714                type="org.bedework.webadmin.category.PEInitUpdateCategoryAction"
715                name="peForm"
716                scope="session"
717                validate="false">
718       <forward name="continue" path="/category/showUpdateList.rdo" redirect="true" />
719     </action>
720
721     <action    path="/category/delete"
722                type="org.bedework.webadmin.category.PEDeleteCategoryAction"
723                name="peForm"
724                scope="session"
725                validate="false">
726       <forward name="inUse" path="/category/showReferenced.rdo" redirect="true" />
727       <forward name="notFound" path="/category/showUpdateList.rdo" redirect="true" />
728       <forward name="continue" path="/category/showUpdateList.rdo" redirect="true" />
729     </action>
730
731     <action    path="/category/fetchForUpdate"
732                type="org.bedework.webadmin.category.PEFetchCategoryAction"
733                name="peForm"
734                scope="session"
735                validate="false">
736       <forward name="notFound" path="/admin/showMain.rdo" redirect="true" />
737       <forward name="continue" path="/category/showModForm.rdo" redirect="true" />
738     </action>
739
740     <action    path="/category/update"
741                type="org.bedework.webadmin.category.PEUpdateCategoryAction"
742                name="peForm"
743                scope="session"
744                validate="false">
745       <forward name="continue" path="/category/showUpdateList.rdo" redirect="true" />
746       <forward name="retry" path="/category/showModForm.rdo" />
747       <forward name="delete" path="/category/showDeleteConfirm.rdo" redirect="true" />
748     </action>
749
750     <!-- ===============================================================
751                      Authorisation and user Actions
752          =============================================================== -->
753
754     <action    path="/authuser/showModForm"
755                type="org.bedework.webadmin.PERenderAction"
756                name="peForm"
757                scope="session"
758                validate="false">
759       <forward name="success" path="/docs/authuser/modAuthUser.jsp"/>
760     </action>
761
762     <action    path="/authuser/showUpdateList"
763                type="org.bedework.webadmin.PERenderAction"
764                name="peForm"
765                scope="session"
766                validate="false">
767       <forward name="success" path="/docs/authuser/authUserList.jsp"/>
768     </action>
769
770     <action    path="/authuser/initUpdate"
771                type="org.bedework.webadmin.authuser.PEGetAuthUsersAction"
772                name="peForm"
773                scope="session"
774                validate="false">
775       <forward name="continue" path="/authuser/showUpdateList.rdo" redirect="true" />
776     </action>
777
778     <action    path="/authuser/fetchForUpdate"
779                type="org.bedework.webadmin.authuser.PEFetchAuthAction"
780                name="peForm"
781                scope="session"
782                validate="false">
783       <forward name="notFound" path="/authuser/showUpdateList.rdo" redirect="true" />
784       <forward name="continue" path="/authuser/showModForm.rdo" redirect="true" />
785     </action>
786
787     <action    path="/authuser/update"
788                type="org.bedework.webadmin.authuser.PEUpdateAuthAction"
789                name="peForm"
790                scope="session"
791                validate="false">
792       <forward name="cancelled" path="/authuser/showUpdateList.rdo" redirect="true" />
793       <forward name="retry" path="/authuser/showModForm.rdo" />
794       <forward name="continue" path="/authuser/showUpdateList.rdo" redirect="true" />
795     </action>
796
797     <!-- ===============================================================
798                      User Preferences Actions
799          =============================================================== -->
800
801     <action    path="/prefs/showModForm"
802                type="org.bedework.webadmin.PERenderAction"
803                name="peForm"
804                scope="session"
805                validate="false">
806       <forward name="success" path="/docs/prefs/modPrefs.jsp"/>
807     </action>
808
809     <action    path="/prefs/fetchForUpdate"
810                type="org.bedework.webcommon.pref.FetchPrefsAction"
811                name="peForm"
812                scope="session"
813                validate="false">
814       <forward name="notFound" path="/admin/showMain.rdo" redirect="true" />
815       <forward name="success" path="/prefs/showModForm.rdo" redirect="true" />
816     </action>
817
818     <action    path="/prefs/update"
819                type="org.bedework.webcommon.pref.UpdatePrefsAction"
820                name="peForm"
821                scope="session"
822                validate="false">
823       <forward name="cancelled" path="/admin/showMain.rdo" redirect="true" />
824       <forward name="retry" path="/prefs/showModForm.rdo" />
825       <forward name="success" path="/admin/showMain.rdo" redirect="true" />
826     </action>
827
828     <!-- ===============================================================
829                      Admin Group Actions
830          =============================================================== -->
831
832     <action    path="/admingroup/showChooseGroup"
833                type="org.bedework.webadmin.PERenderAction"
834                name="peForm"
835                scope="session"
836                validate="false">
837       <forward name="success" path="/docs/admingroup/chooseAdminGroup.jsp" />
838       <forward name="chooseGroup" path="/docs/admingroup/chooseAdminGroup.jsp" />
839     </action>
840
841     <action    path="/admingroup/showModForm"
842                type="org.bedework.webadmin.PERenderAction"
843                name="peForm"
844                scope="session"
845                validate="false">
846       <forward name="success" path="/docs/admingroup/modAdminGroup.jsp"/>
847     </action>
848
849     <action    path="/admingroup/showModMembersForm"
850                type="org.bedework.webadmin.PERenderAction"
851                name="peForm"
852                scope="session"
853                validate="false">
854       <forward name="success" path="/docs/admingroup/modAdminGroupMembers.jsp"/>
855     </action>
856
857     <action    path="/admingroup/showUpdateList"
858                type="org.bedework.webadmin.PERenderAction"
859                name="peForm"
860                scope="session"
861                validate="false">
862       <forward name="success" path="/docs/admingroup/adminGroupList.jsp"/>
863     </action>
864
865     <action    path="/admingroup/showDeleteConfirm"
866                type="org.bedework.webadmin.PERenderAction"
867                name="peForm"
868                scope="session"
869                validate="false">
870       <forward name="success" path="/docs/admingroup/deleteAdminGroupConfirm.jsp" />
871     </action>
872
873     <action    path="/admingroup/initAdd"
874                type="org.bedework.webadmin.admingroup.PEInitAddAGAction"
875                name="peForm"
876                scope="session"
877                validate="false">
878       <forward name="continue" path="/admingroup/showModForm.rdo" redirect="true" />
879     </action>
880
881     <action    path="/admingroup/initUpdate"
882                type="org.bedework.webadmin.admingroup.PEInitUpdateAGAction"
883                name="peForm"
884                scope="session"
885                validate="false">
886       <forward name="continue" path="/admingroup/showUpdateList.rdo" redirect="true" />
887     </action>
888
889     <action    path="/admingroup/delete"
890                type="org.bedework.webadmin.admingroup.PEDeleteAGAction"
891                name="peForm"
892                scope="session"
893                validate="false">
894       <forward name="inUse" path="/admingroup/showReferenced.rdo" redirect="true" />
895       <forward name="notFound" path="/admingroup/showUpdateList.rdo" redirect="true" />
896       <forward name="cancelled" path="/admingroup/showUpdateList.rdo" redirect="true" />
897       <forward name="continue" path="/admingroup/showUpdateList.rdo" redirect="true" />
898     </action>
899
900     <action    path="/admingroup/fetchForUpdate"
901                type="org.bedework.webadmin.admingroup.PEFetchAGAction"
902                name="peForm"
903                scope="session"
904                validate="false">
905       <forward name="notFound" path="/admin/showUpdateList.rdo" redirect="true" />
906       <forward name="continue" path="/admingroup/showModForm.rdo" redirect="true" />
907     </action>
908
909     <action    path="/admingroup/fetchForUpdateMembers"
910                type="org.bedework.webadmin.admingroup.PEFetchAGAction"
911                name="peForm"
912                scope="session"
913                validate="false">
914       <forward name="notFound" path="/admin/showMain.rdo" redirect="true" />
915       <forward name="continue" path="/admingroup/showModMembersForm.rdo" redirect="true" />
916     </action>
917
918     <action    path="/admingroup/update"
919                type="org.bedework.webadmin.admingroup.PEUpdateAGAction"
920                name="peForm"
921                scope="session"
922                validate="false">
923       <forward name="cancelled" path="/admingroup/showUpdateList.rdo" redirect="true" />
924       <forward name="continue" path="/admingroup/showUpdateList.rdo" redirect="true" />
925       <forward name="retry" path="/admingroup/showModForm.rdo" redirect="true" />
926       <forward name="delete" path="/admingroup/showDeleteConfirm.rdo" redirect="true" />
927     </action>
928
929     <action    path="/admingroup/updateMembers"
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/showModMembersForm.rdo" redirect="true" />
936       <forward name="retry" path="/admingroup/showModMembersForm.rdo" />
937     </action>
938
939     <action    path="/admingroup/switch"
940                type="org.bedework.webadmin.admingroup.PESwitchAGAction"
941                name="peForm"
942                scope="session"
943                validate="false">
944       <forward name="continue"  path="/admingroup/showChooseGroup.rdo" redirect="true" />
945     </action>
946   </action-mappings>
947
948   <!-- Below will be one or more comments which must not be edited or removed
949        for the portlet build process to succeed. The comment will be replaced
950         by some extra cofiguration.
951        -->
952
953   <!-- Jetspeed2 controller def here -->
954
955   <message-resources parameter="servlet" null="true" />
956
957 </struts-config>
Note: See TracBrowser for help on using the browser.