Browse Source

preserving binary dist files during creation

tags/V_1_1_b2
wisberg 21 years ago
parent
commit
800a62a91f
2 changed files with 11 additions and 5 deletions
  1. 8
    2
      docs/build.xml
  2. 3
    3
      docs/readme-docs-module.html

+ 8
- 2
docs/build.xml View File

@@ -127,7 +127,8 @@ XXX no update to avoid builds in this script
location="${docs.temp.dir}/xml-target-file.dummy"/>
<!-- default value for xml-html copying (copy all graphics) -->
<property name="xml-html-copy" value="*.gif,*.png" />

<property name="binary.pattern"
value="**/*.gif,**/*.png,**/*,**/*.doc,**/*.pdf"/>
<uptodate property="local.dist.uptodate"
targetfile="${docs.dist.dir}/faq.html"> <!-- use faq as tag file -->
<srcfiles dir="${docs.src.dir}"/>
@@ -221,7 +222,12 @@ XXX no update to avoid builds in this script
unless="local.dist.uptodate"
description="finish products by copying dist files">
<copy todir="${docs.dist.dir}" filtering="on">
<fileset dir="${docs.src.dir}/dist" />
<fileset dir="${docs.src.dir}/dist"
excludes="${binary.pattern}"/>
</copy>
<copy todir="${docs.dist.dir}" filtering="off">
<fileset dir="${docs.src.dir}/dist"
includes="${binary.pattern}"/>
</copy>
</target>


+ 3
- 3
docs/readme-docs-module.html View File

@@ -21,12 +21,12 @@ Dependencies outside this directory:
<ul>
<li>.xml files refer to their docbook dtds using relative
path, for the moment ../../lib/docbook/...
<li>
</li>
<li>When building docbook, uses ../lib/saxon libraries.
<li>
</li>
<li>When building installer, using ../lib/build/build.jar
and the ../build/installer-resources.
<li>
</li>
</ul>
</body>
</html>

Loading…
Cancel
Save