Update of /cvsroot/jython/htdocs
In directory usw-pr-cvs1:/tmp/cvs-serv26204
Modified Files:
build.xml
Log Message:
Make sure that images and generated javadoc gets included in the .tar
file.
Index: build.xml
===================================================================
RCS file: /cvsroot/jython/htdocs/build.xml,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** build.xml 2001/12/03 21:11:49 1.3
--- build.xml 2001/12/03 21:39:58 1.4
***************
*** 93,99 ****
<target name="collect" depends="generate">
<tar tarfile="${htdocs.tar}" basedir="."
! includes="*.html docs/*.html docs/api applets/*.html
! applets/*.class applets/*.java applets/*.jar
! applets/*.cab graphics/*.* mac/*.*"/>
<gzip zipfile="${htdocs.tgz}" src="${htdocs.tar}" />
</target>
--- 93,107 ----
<target name="collect" depends="generate">
<tar tarfile="${htdocs.tar}" basedir="."
! includes="*.html
! images/*.gif
! docs/*.html
! docs/javadoc/**
! applets/*.html
! applets/*.class
! applets/*.java
! applets/*.jar
! applets/*.cab
! graphics/*.*
! mac/*.*"/>
<gzip zipfile="${htdocs.tgz}" src="${htdocs.tar}" />
</target>
|