Subversion Repositories general

Compare Revisions

Ignore whitespace Rev 15 → Rev 16

/kickup/trunk/webapp/WEB-INF/ak-kickup.tld
270,4 → 270,60
<rtexprvalue>true</rtexprvalue>
</attribute>
</tag>
 
<tag>
<name>write</name>
<tagclass>ak.kickup.core.taglib.ExtendedWriteTag</tagclass>
<bodycontent>empty</bodycontent>
<attribute>
<name>bundle</name>
<required>false</required>
<rtexprvalue>true</rtexprvalue>
</attribute>
<attribute>
<name>filter</name>
<required>false</required>
<rtexprvalue>true</rtexprvalue>
</attribute>
<attribute>
<name>filterBr</name>
<required>false</required>
<rtexprvalue>true</rtexprvalue>
</attribute>
<attribute>
<name>format</name>
<required>false</required>
<rtexprvalue>true</rtexprvalue>
</attribute>
<attribute>
<name>formatKey</name>
<required>false</required>
<rtexprvalue>true</rtexprvalue>
</attribute>
<attribute>
<name>ignore</name>
<required>false</required>
<rtexprvalue>true</rtexprvalue>
</attribute>
<attribute>
<name>locale</name>
<required>false</required>
<rtexprvalue>true</rtexprvalue>
</attribute>
<attribute>
<name>name</name>
<required>true</required>
<rtexprvalue>true</rtexprvalue>
</attribute>
<attribute>
<name>property</name>
<required>false</required>
<rtexprvalue>true</rtexprvalue>
</attribute>
<attribute>
<name>scope</name>
<required>false</required>
<rtexprvalue>true</rtexprvalue>
</attribute>
</tag>
</taglib>
/kickup/trunk/webapp/WEB-INF/struts-config.xml
116,7 → 116,72
</global-forwards>
 
<action-mappings>
 
<!-- ** PARTICIPANTS ********************************************************************** -->
 
<!-- == event ============================================================================= -->
 
<action
path="/index"
type="ak.kickup.core.action.EventAction"
parameter="list"
>
<forward name="default" path="/event/list.jsp" />
</action>
 
<action
path="/event/show"
type="ak.kickup.core.action.EventAction"
parameter="show"
name="EventForm"
validate="true"
scope="request"
>
<forward name="default" path="/event/show.jsp" />
</action>
 
<!-- == participant ========================================================================= -->
 
<action
path="/participant/list"
type="ak.kickup.core.action.ParticipantAction"
parameter="list"
name="ParticipantListForm"
validate="true"
scope="request"
>
<forward name="default" path="/participant/list.jsp" />
</action>
 
<!-- == transport =========================================================================== -->
 
<action
path="/transport/list"
type="ak.kickup.core.action.TransportAction"
parameter="list"
name="ParticipantListForm"
validate="true"
scope="request"
>
<forward name="default" path="/transport/list.jsp" />
</action>
 
<!-- == apartment =========================================================================== -->
 
<action
path="/apartment/list"
type="ak.kickup.core.action.ApartmentAction"
parameter="list"
name="ParticipantListForm"
validate="true"
scope="request"
>
<forward name="default" path="/apartment/list.jsp" />
</action>
 
<!-- ** ADMINISTATION ********************************************************************* -->
 
<action
path="/admin/index"
forward="/admin/index.jsp"
/>