You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by si...@apache.org on 2011/11/05 10:59:43 UTC

svn commit: r1197913 - /commons/proper/digester/trunk/src/site/xdoc/guide/constructor.xml

Author: simonetripodi
Date: Sat Nov  5 09:59:42 2011
New Revision: 1197913

URL: http://svn.apache.org/viewvc?rev=1197913&view=rev
Log:
fixed apidocs links

Modified:
    commons/proper/digester/trunk/src/site/xdoc/guide/constructor.xml

Modified: commons/proper/digester/trunk/src/site/xdoc/guide/constructor.xml
URL: http://svn.apache.org/viewvc/commons/proper/digester/trunk/src/site/xdoc/guide/constructor.xml?rev=1197913&r1=1197912&r2=1197913&view=diff
==============================================================================
--- commons/proper/digester/trunk/src/site/xdoc/guide/constructor.xml (original)
+++ commons/proper/digester/trunk/src/site/xdoc/guide/constructor.xml Sat Nov  5 09:59:42 2011
@@ -25,7 +25,7 @@ limitations under the License.
   <body>
     <section name="Constructor based rule">
       <p>One of the known limit of the old Digester releases is that the
-      <a href="/apidocs/org/apache/commons/digester3/ObjectCreateRule.html">ObjectCreateRule</a> works just with
+      <a href="../apidocs/org/apache/commons/digester3/ObjectCreateRule.html">ObjectCreateRule</a> works just with
       the default empty constructor.</p>
       <p>One limit that cannot be exceeded is the fact that constructor arguments cannot be extracted from inner
       XML elements; that's because the <code>ObjectCreateRule</code> creates the object when the related XML
@@ -78,9 +78,9 @@ digester.addRule( "root/bean", createRul
       </subsection>
 
       <subsection name="Using the annotations">
-        <p>Since 3.2, <a href="/apidocs/org/apache/commons/digester3/annotations/rules/ObjectCreate.html">ObjectCreate</a>
+        <p>Since 3.2, <a href="../apidocs/org/apache/commons/digester3/annotations/rules/ObjectCreate.html">ObjectCreate</a>
         can be used to annotate constructors as well; with the introduction of
-        <a href="/apidocs/org/apache/commons/digester3/annotations/rules/Attribute.html">Attribute</a> annotation,
+        <a href="../apidocs/org/apache/commons/digester3/annotations/rules/Attribute.html">Attribute</a> annotation,
         constructor based rules can be expressed like:</p>
         <source>class MyBean
 {