You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@abdera.apache.org by ro...@apache.org on 2006/07/15 04:42:38 UTC

svn commit: r422134 - /incubator/abdera/java/trunk/build/build.xml

Author: rooneg
Date: Fri Jul 14 19:42:37 2006
New Revision: 422134

URL: http://svn.apache.org/viewvc?rev=422134&view=rev
Log:
* build/build.xml
  (docs): Use some brute force to remove the annoying timestamps from
   generated javadoc output, so the web site doesn't change quite so
   much when we update the javadocs.

Modified:
    incubator/abdera/java/trunk/build/build.xml

Modified: incubator/abdera/java/trunk/build/build.xml
URL: http://svn.apache.org/viewvc/incubator/abdera/java/trunk/build/build.xml?rev=422134&r1=422133&r2=422134&view=diff
==============================================================================
--- incubator/abdera/java/trunk/build/build.xml (original)
+++ incubator/abdera/java/trunk/build/build.xml Fri Jul 14 19:42:37 2006
@@ -200,6 +200,12 @@
              destdir="${javadocs}"
              windowtitle="Abdera"
              classpathref="jar.dependencies" />
+    <replaceregexp match="Generated by javadoc on (.*)--"
+                   replace="Generated by javadoc --"
+                   flags="g"
+                   byline="true">
+      <fileset dir="${javadocs}" includes="**/*.html"/>
+    </replaceregexp>
     <copy  todir="${docs}">
       <fileset dir="${basedir}/docs/" includes="*.html" />
     </copy>