Author: niallp Date: Wed Nov 29 05:25:01 2006 New Revision: 480566 URL: http://svn.apache.org/viewvc?view=rev&rev=480566 Log: STR-2922 and STR-2920 Fix broken User Guide links - reported by Daniel Mayo and Bart Busschots
Modified: struts/struts1/trunk/src/site/xdoc/userGuide/building_controller.xml struts/struts1/trunk/src/site/xdoc/userGuide/building_view.xml struts/struts1/trunk/src/site/xdoc/userGuide/configuration.xml struts/struts1/trunk/src/site/xdoc/userGuide/introduction.xml Modified: struts/struts1/trunk/src/site/xdoc/userGuide/building_controller.xml URL: http://svn.apache.org/viewvc/struts/struts1/trunk/src/site/xdoc/userGuide/building_controller.xml?view=diff&rev=480566&r1=480565&r2=480566 ============================================================================== --- struts/struts1/trunk/src/site/xdoc/userGuide/building_controller.xml (original) +++ struts/struts1/trunk/src/site/xdoc/userGuide/building_controller.xml Wed Nov 29 05:25:01 2006 @@ -2059,7 +2059,7 @@ configuration DTD</a> or the online <a href="../struts-core/dtddoc/struts-config_1_3.dtd.html">DTDDoc</a> docs, and the - <a href="../apidocs/org/apache/struts/action/ActionMapping.html"> + <a href="../struts-core/apidocs/org/apache/struts/action/ActionMapping.html"> ActionMapping documentation.</a> </p> Modified: struts/struts1/trunk/src/site/xdoc/userGuide/building_view.xml URL: http://svn.apache.org/viewvc/struts/struts1/trunk/src/site/xdoc/userGuide/building_view.xml?view=diff&rev=480566&r1=480565&r2=480566 ============================================================================== --- struts/struts1/trunk/src/site/xdoc/userGuide/building_view.xml (original) +++ struts/struts1/trunk/src/site/xdoc/userGuide/building_view.xml Wed Nov 29 05:25:01 2006 @@ -172,7 +172,7 @@ </li> <li> - <a href="../apidocs/org/apache/struts/util/MessageResources.html"> + <a href="../struts-core/apidocs/org/apache/struts/util/MessageResources.html"> <strong>MessageResources</strong> </a> - The framework class Modified: struts/struts1/trunk/src/site/xdoc/userGuide/configuration.xml URL: http://svn.apache.org/viewvc/struts/struts1/trunk/src/site/xdoc/userGuide/configuration.xml?view=diff&rev=480566&r1=480565&r2=480566 ============================================================================== --- struts/struts1/trunk/src/site/xdoc/userGuide/configuration.xml (original) +++ struts/struts1/trunk/src/site/xdoc/userGuide/configuration.xml Wed Nov 29 05:25:01 2006 @@ -819,7 +819,7 @@ servlet are described below. (You can also find these details in the - <a href="../apidocs/org/apache/struts/action/ActionServlet.html"> + <a href="../struts-core/apidocs/org/apache/struts/action/ActionServlet.html"> Javadocs</a> for the ActionServlet class.) Square brackets describe the default values that are Modified: struts/struts1/trunk/src/site/xdoc/userGuide/introduction.xml URL: http://svn.apache.org/viewvc/struts/struts1/trunk/src/site/xdoc/userGuide/introduction.xml?view=diff&rev=480566&r1=480565&r2=480566 ============================================================================== --- struts/struts1/trunk/src/site/xdoc/userGuide/introduction.xml (original) +++ struts/struts1/trunk/src/site/xdoc/userGuide/introduction.xml Wed Nov 29 05:25:01 2006 @@ -426,8 +426,8 @@ Together, these objects form the <strong>Struts Configuration.</strong> The Configuration - defines (among other things) the - <a href="../1.x/apidocs/org/apache/struts/action/ActionMappings.html"> + defines (among other things) the collection of + <a href="../struts-core/apidocs/org/apache/struts/action/ActionMapping.html"> ActionMappings</a> <code>[org.apache.struts.action.ActionMappings]</code> for an application. @@ -438,7 +438,7 @@ routes HTTP requests to other components in the framework. Requests may be forwarded to JavaServer Pages or - <a href="../1.x/apidocs/org/apache/struts/action/Action.html"> + <a href="../struts-core/apidocs/org/apache/struts/action/Action.html"> Action</a> <code>[org.apache.struts.action.Action]</code> subclasses provided by the @@ -451,7 +451,7 @@ <p> An individual - <a href="../1.x/apidocs/org/apache/struts/action/ActionMapping.html"> + <a href="../struts-core/apidocs/org/apache/struts/action/ActionMapping.html"> ActionMapping</a> <code>[org.apache.struts.action.ActionMapping]</code> will usually contain a number of properties including: @@ -517,7 +517,7 @@ requests. You can define your own set of input bean classes, by subclassing - <a href="../1.x/apidocs/org/apache/struts/action/ActionForm.html"> + <a href="../struts-core/apidocs/org/apache/struts/action/ActionForm.html"> ActionForm</a> <code>[org.apache.struts.action.ActionForm].</code> The ActionForm class makes it @@ -544,11 +544,11 @@ <p> Another element of the Configuration are the - <a href="../1.x/apidocs/org/apache/struts/action/ActionFormBeans.html"> + <a href="../struts-core/apidocs/org/apache/struts/action/ActionFormBeans.html"> ActionFormBeans</a> <code>[org.apache.struts.action.ActionFormBeans].</code> This is a collection of - <a href="../1.x/apidocs/org/apache/struts/action/ActionFormBean.html"> + <a href="../struts-core/apidocs/org/apache/struts/action/ActionFormBean.html"> descriptor objects</a> that are used to create instances of the ActionForm objects at runtime. @@ -604,7 +604,7 @@ to support the internationalization features built into the Java platform. All the field labels and messages can be retrieved from a - <a href="../1.x/apidocs/org/apache/struts/util/MessageResources.html"> + <a href="../struts-core/apidocs/org/apache/struts/util/MessageResources.html"> message resource.</a> To provide messages for another language, simply add another file to the resource bundle.