crossley 2003/03/13 05:24:29
Modified: . build.xml build.properties
Log:
'build docs' was broken by an undefined property.
Revision Changes Path
1.8 +5 -5 cocoon-2.1/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/cocoon-2.1/build.xml,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- build.xml 11 Mar 2003 11:15:09 -0000 1.7
+++ build.xml 13 Mar 2003 13:24:28 -0000 1.8
@@ -358,7 +358,7 @@
<!-- make filtered copy of XML docs -->
<copy todir="${build.context}" filtering="on">
- <fileset dir="${context}">
+ <fileset dir="${documentation}">
<exclude name="images/**"/>
</fileset>
</copy>
@@ -374,7 +374,7 @@
<!-- Copy images -->
<copy todir="${build.context}/images" filtering="off">
- <fileset dir="${context}/images"/>
+ <fileset dir="${documentation}/images"/>
</copy>
<!-- Copy entity catalog and entities -->
@@ -392,7 +392,7 @@
<uptodate property="docs.notrequired" targetfile="${build.docs}/index.html" >
<srcfiles dir="." includes="changes.xml,todo.xml"/>
<srcfiles dir="${build}" includes="jars.xml"/>
- <srcfiles dir="${context}/xdocs" includes="**/*.xml"/>
+ <srcfiles dir="${documentation}/xdocs" includes="**/*.xml"/>
</uptodate>
</target>
@@ -401,7 +401,7 @@
<echo message="-------------------------------------------------------------"/>
<echo message="Not rebuilding docs, as they are up-to-date:"/>
<echo message=" ${build.docs}/index.html is more recent than"/>
- <echo message=" todo.xml, changes.xml, ${context}/xdocs/*.xml"/>
+ <echo message=" todo.xml, changes.xml, ${documentation}/xdocs/*.xml"/>
<echo message="-------------------------------------------------------------"/>
</target>
1.4 +2 -2 cocoon-2.1/build.properties
Index: build.properties
===================================================================
RCS file: /home/cvs/cocoon-2.1/build.properties,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- build.properties 12 Mar 2003 11:08:58 -0000 1.3
+++ build.properties 13 Mar 2003 13:24:28 -0000 1.4
@@ -96,8 +96,8 @@
resources.logos=${resources}/logos
resources.javadoc=${resources}/javadoc
documentation=${src}/documentation
-docs=${context}/xdocs
-images=${context}/images
+docs=${documentation}/xdocs
+images=${documentation}/images
blocks=${src}/blocks
samples=${src}/samples
webapp=${src}/webapp