You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@struts.apache.org by ni...@apache.org on 2007/08/02 15:45:58 UTC

svn commit: r562110 - in /struts/struts1/branches/STRUTS_1_3_BRANCH/src/site/xdoc: faqs/actionForm.xml faqs/db-howto.xml index.xml userGuide/building_controller.xml userGuide/building_model.xml userGuide/configuration.xml

Author: niallp
Date: Thu Aug  2 06:45:57 2007
New Revision: 562110

URL: http://svn.apache.org/viewvc?view=rev&rev=562110
Log:
Update links for Commons TLP move

Modified:
    struts/struts1/branches/STRUTS_1_3_BRANCH/src/site/xdoc/faqs/actionForm.xml
    struts/struts1/branches/STRUTS_1_3_BRANCH/src/site/xdoc/faqs/db-howto.xml
    struts/struts1/branches/STRUTS_1_3_BRANCH/src/site/xdoc/index.xml
    struts/struts1/branches/STRUTS_1_3_BRANCH/src/site/xdoc/userGuide/building_controller.xml
    struts/struts1/branches/STRUTS_1_3_BRANCH/src/site/xdoc/userGuide/building_model.xml
    struts/struts1/branches/STRUTS_1_3_BRANCH/src/site/xdoc/userGuide/configuration.xml

Modified: struts/struts1/branches/STRUTS_1_3_BRANCH/src/site/xdoc/faqs/actionForm.xml
URL: http://svn.apache.org/viewvc/struts/struts1/branches/STRUTS_1_3_BRANCH/src/site/xdoc/faqs/actionForm.xml?view=diff&rev=562110&r1=562109&r2=562110
==============================================================================
--- struts/struts1/branches/STRUTS_1_3_BRANCH/src/site/xdoc/faqs/actionForm.xml (original)
+++ struts/struts1/branches/STRUTS_1_3_BRANCH/src/site/xdoc/faqs/actionForm.xml Thu Aug  2 06:45:57 2007
@@ -308,8 +308,8 @@
 
                 <p>
                     For more about using this technique, see the
-                    <a href="http://jakarta.apache.org/commons/beanutils/">
-                        Jakarta Commons BeanUtils documentation,</a>
+                    <a href="http://commons.apache.org/beanutils/">
+                        Commons BeanUtils documentation,</a>
                     and the Struts MailReader example application.
                 </p>
 

Modified: struts/struts1/branches/STRUTS_1_3_BRANCH/src/site/xdoc/faqs/db-howto.xml
URL: http://svn.apache.org/viewvc/struts/struts1/branches/STRUTS_1_3_BRANCH/src/site/xdoc/faqs/db-howto.xml?view=diff&rev=562110&r1=562109&r2=562110
==============================================================================
--- struts/struts1/branches/STRUTS_1_3_BRANCH/src/site/xdoc/faqs/db-howto.xml (original)
+++ struts/struts1/branches/STRUTS_1_3_BRANCH/src/site/xdoc/faqs/db-howto.xml Thu Aug  2 06:45:57 2007
@@ -310,7 +310,7 @@
 
             <p>
                 Since version 1.1, the simplest option is to use a
-                <a href="http://jakarta.apache.org/commons/beanutils/api/org/apache/commons/beanutils/ResultSetDynaClass.html">
+                <a href="http://commons.apache.org/beanutils/api/org/apache/commons/beanutils/ResultSetDynaClass.html">
                     ResultSetDynaClass</a>
                 to transfer the ResultSet into an ArrayList of DynaBeans.
                 The Struts custom tags can use DynaBean properties as easily

Modified: struts/struts1/branches/STRUTS_1_3_BRANCH/src/site/xdoc/index.xml
URL: http://svn.apache.org/viewvc/struts/struts1/branches/STRUTS_1_3_BRANCH/src/site/xdoc/index.xml?view=diff&rev=562110&r1=562109&r2=562110
==============================================================================
--- struts/struts1/branches/STRUTS_1_3_BRANCH/src/site/xdoc/index.xml (original)
+++ struts/struts1/branches/STRUTS_1_3_BRANCH/src/site/xdoc/index.xml Thu Aug  2 06:45:57 2007
@@ -37,7 +37,7 @@
                 like Java
                 Servlets, JavaBeans, ResourceBundles, and XML, as well as
                 various
-                <a href="http://jakarta.apache.org/commons/index.html">Jakarta
+                <a href="http://commons.apache.org/index.html">Apache
                     Commons</a>
                 packages, like BeanUtils and Chain of Responsibility.
                 The framework helps you create an extensible
@@ -79,7 +79,7 @@
                     <a href="struts-el/index.html">JSTL</a> and 
                     <a href="struts-faces/index.html">JSF,</a>
                     as well as
-                    <a href="http://jakarta.apache.org/velocity/tools/struts/">
+                    <a href="http://velocity.apache.org/tools/struts/">
                         Velocity Templates,</a>
                     <a href="http://stxx.sourceforge.net/">XSLT,</a>
                     and other presentation systems.
@@ -214,7 +214,7 @@
                     Every class deployed by the framework can be replaced by
                     your own default class.
                     The properties of your default class can be set using the
-                    <a href="http://jakarta.apache.org/commons/digester/">
+                    <a href="http://commons.apache.org/digester/">
                         Digester's</a>
                     <code>set-property</code>
                     feature.

Modified: struts/struts1/branches/STRUTS_1_3_BRANCH/src/site/xdoc/userGuide/building_controller.xml
URL: http://svn.apache.org/viewvc/struts/struts1/branches/STRUTS_1_3_BRANCH/src/site/xdoc/userGuide/building_controller.xml?view=diff&rev=562110&r1=562109&r2=562110
==============================================================================
--- struts/struts1/branches/STRUTS_1_3_BRANCH/src/site/xdoc/userGuide/building_controller.xml (original)
+++ struts/struts1/branches/STRUTS_1_3_BRANCH/src/site/xdoc/userGuide/building_controller.xml Thu Aug  2 06:45:57 2007
@@ -198,7 +198,7 @@
                     Request Processor
                     <code>(ComposableRequestProcessor)</code>
                     is composed using
-                    <a href="http://jakarta.apache.org/commons/chain/">Jakarta
+                    <a href="http://commons.apache.org/chain/">
                         Commons Chain,</a>
                     which is an implementation of the
                     <i>Chain of Responsibility</i>
@@ -988,7 +988,7 @@
                     ActionForm which
                     <i>wraps</i>
                     a LazyDynaBean 
-                    <a href="http://jakarta.apache.org/commons/beanutils/apidocs/org/apache/commons/beanutils/package-summary.html#dynamic.lazy">
+                    <a href="http://commons.apache.org/beanutils/apidocs/org/apache/commons/beanutils/package-summary.html#dynamic.lazy">
                         (see Commons BeanUtils JavaDoc).</a>
                 </p>
 
@@ -1874,12 +1874,12 @@
                     of
                     the appropriate setter methods.
                     To make this process easier,
-                    the framework uses the Jakarta Commons Digester component
+                    the framework uses the Commons Digester component
                     to parse an XML-based description of the desired mappings
                     and create the appropriate objects initialized
                     to the appropriate default values.
                     See the
-                    <a href="http://jakarta.apache.org/commons">Jakarta
+                    <a href="http://commons.apache.org">
                         Commons
                         website</a>
                     for more information about the Digester.
@@ -2389,7 +2389,7 @@
                 <p>
                     The framework doesn't configure logging itself -- it's all
                     done by
-                    <a href="http://jakarta.apache.org/commons/">
+                    <a href="http://commons.apache.org/">
                         commons-logging</a>
                     under the covers.
                     The default algorithm is a search:
@@ -2422,7 +2422,7 @@
                     For more information about the currently-supported
                     implementations,
                     please refer to the
-                    <a href="http://jakarta.apache.org/commons/logging/api/index.html">
+                    <a href="http://commons.apache.org/logging/api/index.html">
                         the description for the org.apache.commons.logging
                         package.</a>
                 </p>

Modified: struts/struts1/branches/STRUTS_1_3_BRANCH/src/site/xdoc/userGuide/building_model.xml
URL: http://svn.apache.org/viewvc/struts/struts1/branches/STRUTS_1_3_BRANCH/src/site/xdoc/userGuide/building_model.xml?view=diff&rev=562110&r1=562109&r2=562110
==============================================================================
--- struts/struts1/branches/STRUTS_1_3_BRANCH/src/site/xdoc/userGuide/building_model.xml (original)
+++ struts/struts1/branches/STRUTS_1_3_BRANCH/src/site/xdoc/userGuide/building_model.xml Thu Aug  2 06:45:57 2007
@@ -453,10 +453,10 @@
                 <ul>
                     <li>
                         The Commons BeanUtils
-                        <a href="http://jakarta.apache.org/commons/beanutils/api/org/apache/commons/beanutils/package-summary.html#package_description">
+                        <a href="http://commons.apache.org/beanutils/api/org/apache/commons/beanutils/package-summary.html#package_description">
                             Package Description</a>
                         and
-                        <a href="http://jakarta.apache.org/commons/beanutils/api/index.html">
+                        <a href="http://commons.apache.org/beanutils/api/index.html">
                             Javadocs.</a>
                     </li>
                     <li>
@@ -503,9 +503,9 @@
 
                 <p>
                     To implement its Chain, the Request Processor uses the
-                    <a href="http://jakarta.apache.org/commons/chain/">
+                    <a href="http://commons.apache.org/chain/">
                         Chain of Responsibility</a>
-                    component in the Jakarta Commons
+                    component in the Apache Commons
                     which provides a standard implementation of the CoR
                     pattern,
                     along with various implementations of the Context and
@@ -518,8 +518,8 @@
 
                 <ul>
                     <li>
-                        <a href="http://jakarta.apache.org/commons/chain/">
-                            Jakarta Commons Chain of Responsibility</a>
+                        <a href="http://commons.apache.org/chain/">
+                            Commons Chain of Responsibility</a>
                     </li>
                     <li>
                         <a href="http://www.onjava.com/lpt/a/5671">

Modified: struts/struts1/branches/STRUTS_1_3_BRANCH/src/site/xdoc/userGuide/configuration.xml
URL: http://svn.apache.org/viewvc/struts/struts1/branches/STRUTS_1_3_BRANCH/src/site/xdoc/userGuide/configuration.xml?view=diff&rev=562110&r1=562109&r2=562110
==============================================================================
--- struts/struts1/branches/STRUTS_1_3_BRANCH/src/site/xdoc/userGuide/configuration.xml (original)
+++ struts/struts1/branches/STRUTS_1_3_BRANCH/src/site/xdoc/userGuide/configuration.xml Thu Aug  2 06:45:57 2007
@@ -1271,7 +1271,7 @@
                     logging messages written by the framework, as well as the
                     commons libraries
                     that it utilizes, flow through an abstract wrapper called
-                    <a href="http://jakarta.apache.org/commons/logging">
+                    <a href="http://commons.apache.org/logging">
                         Commons Logging,</a>
                     which can be used as a wrapper around any logging
                     implementation. The most
@@ -1298,7 +1298,7 @@
                     on using Commons Logging, consult the documentation for
                     the logging system
                     you are using, plus the Commons Logging
-                    <a href="http://jakarta.apache.org/commons/logging/commons-logging-1.0.3/docs/api/">
+                    <a href="http://commons.apache.org/logging/commons-logging-1.0.3/docs/api/">
                         Javadocs.</a>
                 </p>