From: <the...@us...> - 2003-12-17 15:03:24
|
Update of /cvsroot/junk/junk/WEB-INF In directory sc8-pr-cvs1:/tmp/cvs-serv29338 Modified Files: struts-config.xml Log Message: WIO; Config Index: struts-config.xml =================================================================== RCS file: /cvsroot/junk/junk/WEB-INF/struts-config.xml,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** struts-config.xml 17 Nov 2003 19:39:33 -0000 1.1.1.1 --- struts-config.xml 17 Dec 2003 15:03:22 -0000 1.2 *************** *** 39,42 **** --- 39,50 ---- </form-bean> + <form-bean name="configForm" type="org.apache.struts.action.DynaActionForm"> + <form-property name="scanInterval" type="java.lang.Long"/> + <form-property name="threadSleep" type="java.lang.Long"/> + <form-property name="ipRange" type="java.lang.String"/> + <form-property name="tcpTimeout" type="java.lang.Integer"/> + <form-property name="mapSaveFile" type="java.lang.String"/> + </form-bean> + </form-beans> *************** *** 45,75 **** <global-exceptions> - - - - <!-- sample exception handler - - - - <exception - - - - key="expired.password" - - - - type="app.ExpiredPasswordException" - - - - path="/changePassword.jsp"/> - - - - end sample --> - - - </global-exceptions> --- 53,56 ---- *************** *** 81,85 **** <forward name="search" path="/Search.do" /> <forward name="error" path="/Error.jsp" /> ! </global-forwards> --- 62,67 ---- <forward name="search" path="/Search.do" /> <forward name="error" path="/Error.jsp" /> ! <forward name="config" path="/Config.do" /> ! <forward name="wio" path="/WIO.do" /> </global-forwards> *************** *** 88,92 **** <action-mappings> ! <action path="/Search" type="org.apache.struts.actions.ForwardAction" parameter="/pages/Search.jsp" /> <action path="/searchProcessor" type="junk.controller.SearchAction" name="searchForm" scope="request" validate="true" input="/pages/Search.jsp"> --- 70,85 ---- <action-mappings> ! <action path="/Search" type="org.apache.struts.actions.ForwardAction" parameter="/pages/Search.jsp" /> ! ! <action path="/WIO" type="org.apache.struts.actions.ForwardAction" parameter="/pages/WhoIsOnline.jsp" /> ! ! <action path="/Config" ! type="junk.controller.ConfigurationAction" ! name="configForm" ! scope="request" ! validate="true" ! input="/pages/admin/Config.jsp"> ! <forward name="config" path="/pages/admin/Config.jsp" /> ! </action> <action path="/searchProcessor" type="junk.controller.SearchAction" name="searchForm" scope="request" validate="true" input="/pages/Search.jsp"> *************** *** 97,101 **** <forward name="message" path="/pages/Message.jsp" /> </action> ! <!-- sample input and input submit actions <action --- 90,94 ---- <forward name="message" path="/pages/Message.jsp" /> </action> ! <!-- sample input and input submit actions <action |