vmassol 2002/12/15 05:18:39
Modified: documentation build.xml
Log:
Applied patch by IAS (do not filter images/ when copying them)
Revision Changes Path
1.16 +9 -12 jakarta-cactus/documentation/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/jakarta-cactus/documentation/build.xml,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -r1.15 -r1.16
--- build.xml 12 Dec 2002 11:00:44 -0000 1.15
+++ build.xml 15 Dec 2002 13:18:39 -0000 1.16
@@ -179,32 +179,29 @@
</cvslog>
- <!-- Copy book.xml to replace the token filters (year) -->
- <copy file="${doc.xdoc.dir}/book.xml"
- todir="${target.xdoc.dir}" filtering="on"/>
-
- <!-- Copy all remaining files -->
+ <!-- Copy all files that may contain token filters or that are not
+ binary files -->
<copy todir="${target.xdoc.dir}" filtering="on">
<fileset dir="${doc.xdoc.dir}">
- <exclude name="book.xml"/>
<exclude name="original/**"/>
<exclude name="misc/**"/>
+ <exclude name="images/**"/>
</fileset>
</copy>
- <!-- Copy the version.txt file -->
- <copy file="${conf.dir}/version.txt" todir="${target.doc.dir}"
- filtering="on"/>
-
<!-- Copy the images -->
- <copy todir="${target.doc.dir}/images">
+ <copy todir="${target.doc.dir}/images" filtering="off">
<fileset dir="${doc.xdoc.dir}/images"/>
</copy>
<!-- Copy the misc doc files needed by the web site -->
- <copy todir="${target.doc.dir}/misc">
+ <copy todir="${target.doc.dir}/misc" filtering="off">
<fileset dir="${doc.xdoc.dir}/misc"/>
</copy>
+
+ <!-- Copy the version.txt file -->
+ <copy file="${conf.dir}/version.txt" todir="${target.doc.dir}"
+ filtering="on"/>
<!-- Generate the docs -->
<stylebook book="${target.xdoc.dir}/book.xml"
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>