You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@manifoldcf.apache.org by kw...@apache.org on 2010/03/05 15:39:35 UTC

svn commit: r919430 - in /incubator/lcf/trunk/modules/framework: build.xml core/org/apache/lcf/core/common/XMLDoc.java

Author: kwright
Date: Fri Mar  5 14:39:34 2010
New Revision: 919430

URL: http://svn.apache.org/viewvc?rev=919430&view=rev
Log:
Fix a javadoc build error, due to invalid html tags.

Modified:
    incubator/lcf/trunk/modules/framework/build.xml
    incubator/lcf/trunk/modules/framework/core/org/apache/lcf/core/common/XMLDoc.java

Modified: incubator/lcf/trunk/modules/framework/build.xml
URL: http://svn.apache.org/viewvc/incubator/lcf/trunk/modules/framework/build.xml?rev=919430&r1=919429&r2=919430&view=diff
==============================================================================
--- incubator/lcf/trunk/modules/framework/build.xml (original)
+++ incubator/lcf/trunk/modules/framework/build.xml Fri Mar  5 14:39:34 2010
@@ -8,7 +8,7 @@
     
     <target name="doc">
         <mkdir dir="doc"/>
-        <javadoc destdir="doc" classpath="lib/servlet-api.jar:lib/jdbcpool-0.99.jar:lib/postgresql.jar:lib/commons-fileupload.jar:lib/serializer.jar:lib/log4j-1.2.jar:lib/commons-logging.jar:lib/commons-httpclient-lcf.jar:lib/xml-apis.jar:lib/xalan2.jar:lib/commons-collections.jar:lib/commons-codec.jar:lib/commons-io.jar">
+        <javadoc destdir="doc" classpath="lib/servlet-api.jar:lib/jdbcpool-0.99.jar:lib/postgresql.jar:lib/commons-fileupload.jar:lib/serializer.jar:lib/log4j-1.2.jar:lib/commons-logging.jar:lib/commons-httpclient-lcf.jar:lib/xml-apis.jar:lib/xalan2.jar:lib/commons-collections.jar:lib/commons-codec.jar:lib/commons-io.jar" maxmemory="256M" source="1.4">
             <fileset dir="core" includes="**/*.java"/>
             <fileset dir="agents" includes="**/*.java"/>
             <fileset dir="pull-agent" includes="**/*.java"/>

Modified: incubator/lcf/trunk/modules/framework/core/org/apache/lcf/core/common/XMLDoc.java
URL: http://svn.apache.org/viewvc/incubator/lcf/trunk/modules/framework/core/org/apache/lcf/core/common/XMLDoc.java?rev=919430&r1=919429&r2=919430&view=diff
==============================================================================
--- incubator/lcf/trunk/modules/framework/core/org/apache/lcf/core/common/XMLDoc.java (original)
+++ incubator/lcf/trunk/modules/framework/core/org/apache/lcf/core/common/XMLDoc.java Fri Mar  5 14:39:34 2010
@@ -54,7 +54,7 @@
   * IE SPECIFING A PATH
 
   * NOTE wildcards are supported BUT the evaluation of wildcards
-  * is not recursive.  IE if the path presented is THIS/<wildchar>/THAT
+  * is not recursive.  IE if the path presented is THIS/[wildchar]/THAT
   * only ONE list of element is returned for the first child of THIS.
   * All children of THIS that have subchildren THAT are NOT returned!
   *
@@ -383,8 +383,8 @@
     return (String)(el.getAttribute(a));
   }
 
-  /** Return element name ie <Author></Author>
-  * return "Author" - may return null if node not
+  /** Return element name.
+  * May return null if node not
   * of type Element
   * @param el Object to ask
   * @return String value
@@ -404,7 +404,7 @@
   /** Get TEXT element value as single string.
   * @param obj Element to grab data
   * @return TXT collapsed for this element
-  * ie <Author>Julie</Author> returns "Julie"
+  * ie [tag]Julie[/tag] returns "Julie"
   */
   public final String getData(Object obj)
   {