From: <jm...@us...> - 2005-07-11 07:13:44
|
Update of /cvsroot/struts/dialogs/war/WEB-INF In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12963/war/WEB-INF Modified Files: struts-config.xml Log Message: Index: struts-config.xml =================================================================== RCS file: /cvsroot/struts/dialogs/war/WEB-INF/struts-config.xml,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** struts-config.xml 11 Jul 2005 06:49:04 -0000 1.8 --- struts-config.xml 11 Jul 2005 07:13:04 -0000 1.9 *************** *** 11,17 **** corresponding form bean. This is a dummy dynabean for such cases. --> <form-bean name="dummyForm" type="org.apache.struts.action.DynaActionForm"/> ! <form-bean name="dialogloginform" type="net.sf.dialogs.samples.dialogloginaction.DialogLoginForm"/> ! <form-bean name="crudform" type="net.sf.dialogs.samples.crudaction.CRUDFormSample"/> ! <form-bean name="wizardform" type="net.sf.dialogs.samples.wizardaction.wizardsimple.SimpleSignupForm"/> </form-beans> --- 11,17 ---- corresponding form bean. This is a dummy dynabean for such cases. --> <form-bean name="dummyForm" type="org.apache.struts.action.DynaActionForm"/> ! <form-bean name="dialogloginform" type="net.jspcontrols.dialogs.samples.dialogloginaction.DialogLoginForm"/> ! <form-bean name="crudform" type="net.jspcontrols.dialogs.samples.crudaction.CRUDFormSample"/> ! <form-bean name="wizardform" type="net.jspcontrols.dialogs.samples.wizardaction.wizardsimple.SimpleSignupForm"/> </form-beans> *************** *** 23,27 **** <action path="/selectaction" ! type = "net.sf.dialogs.samples.selectaction.SelectActionTest" name = "dummyForm" scope = "request" --- 23,27 ---- <action path="/selectaction" ! type = "net.jspcontrols.dialogs.samples.selectaction.SelectActionTest" name = "dummyForm" scope = "request" *************** *** 39,43 **** <action path="/dialogloginaction" ! type = "net.sf.dialogs.samples.dialogloginaction.DialogLoginAction" name = "dialogloginform" scope = "session" --- 39,43 ---- <action path="/dialogloginaction" ! type = "net.jspcontrols.dialogs.samples.dialogloginaction.DialogLoginAction" name = "dialogloginform" scope = "session" *************** *** 57,61 **** <action path="/dialogloginactioncontrol" ! type = "net.sf.dialogs.samples.dialogloginaction.DialogLoginActionControl" name = "dialogloginform" scope = "session" --- 57,61 ---- <action path="/dialogloginactioncontrol" ! type = "net.jspcontrols.dialogs.samples.dialogloginaction.DialogLoginActionControl" name = "dialogloginform" scope = "session" *************** *** 78,82 **** <!-- CRUD action helper: item list --> <action path="/cruditemlist" ! type = "net.sf.dialogs.samples.crudaction.ItemListActionSample" name = "dummyForm"> <forward name = "showlist" path="/crudaction-list.jsp"/> --- 78,82 ---- <!-- CRUD action helper: item list --> <action path="/cruditemlist" ! type = "net.jspcontrols.dialogs.samples.crudaction.ItemListActionSample" name = "dummyForm"> <forward name = "showlist" path="/crudaction-list.jsp"/> *************** *** 85,89 **** <!-- CRUD action --> <action path="/crudaction" ! type = "net.sf.dialogs.actions.crud.CRUDAction" name = "crudform" scope = "session" --- 85,89 ---- <!-- CRUD action --> <action path="/crudaction" ! type = "net.jspcontrols.dialogs.actions.crud.CRUDAction" name = "crudform" scope = "session" *************** *** 130,134 **** <!-- CRUD action --> <action path="/crudactionlite" ! type = "net.sf.dialogs.samples.crudaction.CRUDActionSample" name = "crudform" scope = "session" --- 130,134 ---- <!-- CRUD action --> <action path="/crudactionlite" ! type = "net.jspcontrols.dialogs.samples.crudaction.CRUDActionSample" name = "crudform" scope = "session" *************** *** 170,174 **** <action path="/wizardaction" ! type = "net.sf.dialogs.samples.wizardaction.wizardsimple.SimpleSignupAction" name = "wizardform" scope = "session" --- 170,174 ---- <action path="/wizardaction" ! type = "net.jspcontrols.dialogs.samples.wizardaction.wizardsimple.SimpleSignupAction" name = "wizardform" scope = "session" *************** *** 201,205 **** <action path="/embeddedmasterpage-resin" forward="/embedded-masterpage-resin.jsp"/> <action path="/embeddedchild-resin" ! type = "net.sf.dialogs.samples.childaction.EmbeddedActionResin" name = "dialogloginform" scope = "session" --- 201,205 ---- <action path="/embeddedmasterpage-resin" forward="/embedded-masterpage-resin.jsp"/> <action path="/embeddedchild-resin" ! type = "net.jspcontrols.dialogs.samples.childaction.EmbeddedActionResin" name = "dialogloginform" scope = "session" *************** *** 221,225 **** <action path="/embeddedmasterpage-tomcat" forward="/embedded-masterpage-tomcat.jsp"/> <action path="/embeddedchild-tomcat" ! type = "net.sf.dialogs.samples.childaction.EmbeddedActionTomcat" name = "dialogloginform" scope = "session" --- 221,225 ---- <action path="/embeddedmasterpage-tomcat" forward="/embedded-masterpage-tomcat.jsp"/> <action path="/embeddedchild-tomcat" ! type = "net.jspcontrols.dialogs.samples.childaction.EmbeddedActionTomcat" name = "dialogloginform" scope = "session" *************** *** 233,237 **** <action path="/tabcontrol" ! type = "net.sf.collab.TabControlAction"> <!-- Reload phase: base path, appended with sublevels --> <forward name = "MAINPAGE" path="main" redirect="true"/> --- 233,237 ---- <action path="/tabcontrol" ! type = "net.jspcontrols.collab.TabControlAction"> <!-- Reload phase: base path, appended with sublevels --> <forward name = "MAINPAGE" path="main" redirect="true"/> *************** *** 242,246 **** <action path="/main" ! type = "net.sf.collab.MasterPageAction"> <forward name = "FORWARD" path="main/" redirect="true"/> </action> --- 242,246 ---- <action path="/main" ! type = "net.jspcontrols.collab.MasterPageAction"> <forward name = "FORWARD" path="main/" redirect="true"/> </action> |