jmitchell 2003/03/06 21:35:02 Modified: conf/test struts-config.xml Log: changes to support more tests Revision Changes Path 1.8 +13 -2 jakarta-struts/conf/test/struts-config.xml Index: struts-config.xml =================================================================== RCS file: /home/cvs/jakarta-struts/conf/test/struts-config.xml,v retrieving revision 1.7 retrieving revision 1.8 diff -u -r1.7 -r1.8 --- struts-config.xml 28 Feb 2003 01:11:32 -0000 1.7 +++ struts-config.xml 7 Mar 2003 05:35:02 -0000 1.8 @@ -22,7 +22,7 @@ <!-- Registration form bean --> <form-bean name="testFormBean" - type="org.apache.struts.taglib.SimpleFormBeanForTesting"/> + type="org.apache.struts.taglib.SimpleBeanForTesting"/> </form-beans> @@ -34,6 +34,9 @@ <!-- Example logon forward <forward name="logon" path="/logon.jsp"/> --> + <forward name="simpleForward" + path="/path/to/non/existing/jsp.jsp"/> + <forward name="testIncludeTagForward" path="/test/org/apache/struts/taglib/bean/resources/IncludeTagTest.jsp"/> </global-forwards> @@ -45,7 +48,15 @@ <action path="/testIncludeTagTransaction" type="org.apache.struts.taglib.bean.resources.IncludeTagTransactionTestAction"> <forward name="success" - path="/test/org/apache/struts/taglib/bean/resources/IncludeTagTest.jsp"/> + path="/test/org/apache/struts/taglib/bean/resources/IncludeTagTest.jsp"/> + </action> + + <action path="/testFormTag" + type="org.apache.struts.taglib.html.resources.FormTagTestAction" + name="testFormBean" + scope="request"> + <forward name="success" + path="/test/org/apache/struts/taglib/html/TestFormTag1.jsp"/> </action> </action-mappings>
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]