Rev 33 | Rev 35 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 33 | Rev 34 | ||
|---|---|---|---|
| Line 6... | Line 6... | ||
| 6 | <constant name="struts.devMode" value="true" /> <!-- activates debugging output --> |
6 | <constant name="struts.devMode" value="true" /> <!-- activates debugging output --> |
| 7 | 7 | ||
| 8 | <!-- User environment -->
|
8 | <!-- User environment -->
|
| 9 | <package name="user" namespace="/user" extends="hibernate-default">
|
9 | <package name="user" namespace="/user" extends="hibernate-default">
|
| 10 | <!-- Term management -->
|
10 | <!-- Term management -->
|
| 11 | <action name="termAddForm">
|
11 | <action name="termAdd">
|
| 12 | <result>/user/termAddForm.jsp</result> |
12 | <result>/user/termAddForm.jsp</result> |
| 13 | </action>
|
13 | </action>
|
| 14 | 14 | ||
| 15 | <action name="doTermAdd" method="add"
|
15 | <action name="termSave" method="save"
|
| 16 | class="ch.ffhs.webE.action.TermAction">
|
16 | class="ch.ffhs.webE.action.TermAction">
|
| 17 | <result name="success">/user/termAdd.jsp</result> |
17 | <result name="success">/user/termAdd.jsp</result> |
| 18 | <result name="error">/user/termAddForm.jsp</result> |
18 | <result name="error">/user/termAddForm.jsp</result> |
| 19 | </action>
|
19 | </action>
|
| 20 | 20 | ||
| Line 30... | Line 30... | ||
| 30 | 30 | ||
| 31 | <action name="editTerm" method="edit"
|
31 | <action name="editTerm" method="edit"
|
| 32 | class="ch.ffhs.webE.action.TermAction">
|
32 | class="ch.ffhs.webE.action.TermAction">
|
| 33 | <result name="success">/user/termAddForm.jsp</result> |
33 | <result name="success">/user/termAddForm.jsp</result> |
| 34 | </action>
|
34 | </action>
|
| - | 35 | ||
| - | 36 | <action name="relationshipAdd" method="add"
|
|
| - | 37 | class="ch.ffhs.webE.action.RelationshipAction">
|
|
| - | 38 | <result>/user/relationshipAddForm.jsp</result> |
|
| - | 39 | </action>
|
|
| - | 40 | ||
| - | 41 | <action name="relationshipSave" method="save"
|
|
| - | 42 | class="ch.ffhs.webE.action.RelationshipAction">
|
|
| - | 43 | <result name="success">/user/relationshipAdd.jsp</result> |
|
| - | 44 | <result name="error">/user/relationshipAddForm.jsp</result> |
|
| - | 45 | </action>
|
|
| - | 46 | ||
| - | 47 | <action name="relationshipList" method="list"
|
|
| - | 48 | class="ch.ffhs.webE.action.RelationshipAction">
|
|
| - | 49 | <result name="success">/user/relationshipList.jsp</result> |
|
| - | 50 | </action>
|
|
| 35 | </package>
|
51 | </package>
|
| 36 | 52 | ||
| 37 | <!-- Admin environment -->
|
53 | <!-- Admin environment -->
|
| 38 | <package name="admin" namespace="/admin" extends="hibernate-default">
|
54 | <package name="admin" namespace="/admin" extends="hibernate-default">
|
| 39 | 55 | ||