Author: niallp Date: Thu Nov 10 19:47:51 2005 New Revision: 332438 URL: http://svn.apache.org/viewcvs?rev=332438&view=rev Log: Fix for Bug 37463 - Misc edits to building_controller - based on a patch supplied by Christian MederBug
Modified: struts/core/trunk/xdocs/userGuide/building_controller.xml struts/core/trunk/xdocs/userGuide/index.xml Modified: struts/core/trunk/xdocs/userGuide/building_controller.xml URL: http://svn.apache.org/viewcvs/struts/core/trunk/xdocs/userGuide/building_controller.xml?rev=332438&r1=332437&r2=332438&view=diff ============================================================================== --- struts/core/trunk/xdocs/userGuide/building_controller.xml (original) +++ struts/core/trunk/xdocs/userGuide/building_controller.xml Thu Nov 10 19:47:51 2005 @@ -710,7 +710,7 @@ <p> DynaActionForms are <strong>not</strong> a drop-in replacement for ActionForms. - If you need to access ActionForm properties in your Action, you will need to + If you need to access DynaActionForm properties in your Action, you will need to use the map-style accessor, like myForm.get("name"). If you actively use the ActionForm object in your Action, then you may want to use conventional ActionForms instead. @@ -740,15 +740,16 @@ </p> <p> - And, of course, while the DynaActionForm may support various binary types, + And, of course, while the DynaActionForm may support various binary types, properties used with the html:text tag should still be String properties. </p> <p> DynaActionForms relieve developers of maintaining simple ActionForms. For even - less maintenance, try Niall Pemberton's - <a href="http://www.niallp.pwp.blueyonder.co.uk/">LazyActionForm</a>. + less maintenance, try the + <a href="#lazy_action_form_classes">LazyActionForm</a> described in the following + section. </p> </subsection> @@ -757,7 +758,9 @@ <subsection name="4.3.2 LazyActionForm Classes"> <p> - Struts <i>Lazy</i> ActionForm which <i>wraps</i> a LazyDynaBean. + Struts <i>Lazy</i> ActionForm which <i>wraps</i> a LazyDynaBean (see + <a href="http://jakarta.apache.org/commons/beanutils/apidocs/org/apache/commons/beanutils/package-summary.html#dynamic.lazy"> + Commons BeanUtils JavaDoc</a>). </p> <p> Modified: struts/core/trunk/xdocs/userGuide/index.xml URL: http://svn.apache.org/viewcvs/struts/core/trunk/xdocs/userGuide/index.xml?rev=332438&r1=332437&r2=332438&view=diff ============================================================================== --- struts/core/trunk/xdocs/userGuide/index.xml (original) +++ struts/core/trunk/xdocs/userGuide/index.xml Thu Nov 10 19:47:51 2005 @@ -122,7 +122,7 @@ <li><a href="building_controller.html#action_form_classes">4.3 ActionForm Classes</a> <ul> <li><a href="building_controller.html#dyna_action_form_classes">4.3.1 DynaActionForm Classes</a></li> - <li><a href="building_controller.html#dyna_action_form_classes">4.3.2 LazyActionForm Classes</a></li> + <li><a href="building_controller.html#lazy_action_form_classes">4.3.2 LazyActionForm Classes</a></li> <li><a href="building_controller.html#map_action_form_classes">4.3.3 Map-backed ActionForm Classes</a></li> </ul> </li> --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]