[Htmlparser-cvs] htmlparser build.xml,1.56,1.57
Brought to you by:
derrickoswald
From: <der...@us...> - 2004-01-04 03:23:11
|
Update of /cvsroot/htmlparser/htmlparser In directory sc8-pr-cvs1:/tmp/cvs-serv11427/htmlparser Modified Files: build.xml Log Message: Web site revamp, phase 1. Main and first level pages are refurbished. The wiki is still to do. Fixed bug #865279 Documentation The samples directory is now orphaned and no longer shipped. Index: build.xml =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/build.xml,v retrieving revision 1.56 retrieving revision 1.57 diff -C2 -d -r1.56 -r1.57 *** build.xml 2 Jan 2004 19:32:03 -0000 1.56 --- build.xml 4 Jan 2004 03:23:08 -0000 1.57 *************** *** 6,11 **** Release Procedure - cd htmlparser ! - delete the local Wiki pages with 'rm /home/derrick/htmlparser_cvs/htmlparser/docs/docs/*' ! and 'rm /home/derrick/htmlparser_cvs/htmlparser/docs/docs/images/*', of course any one else would have to adjust this and also the hard-coded path in WikiCapturer --- 6,11 ---- Release Procedure - cd htmlparser ! - delete the local Wiki pages with 'rm /home/derrick/htmlparser_cvs/htmlparser/docs/wiki/*' ! and 'rm /home/derrick/htmlparser_cvs/htmlparser/docs/wiki/images/*', of course any one else would have to adjust this and also the hard-coded path in WikiCapturer *************** *** 23,28 **** - 'ant versionSource' updates the version in Parser.java and release.txt - perform a CVS update on htmlparser to identify new and changed files ! - commit changed files (i.e. Parser.java, release.txt, docs/changes, docs/docs ! and docs/docs/images) to the head revision using a reason of the form: Update version to 1.4-20040104. - use CVS to tag the current head revisions with a name like v1_4_20040104 --- 23,28 ---- - 'ant versionSource' updates the version in Parser.java and release.txt - perform a CVS update on htmlparser to identify new and changed files ! - commit changed files (i.e. Parser.java, release.txt, docs/changes, docs/wiki ! and docs/wiki/images) to the head revision using a reason of the form: Update version to 1.4-20040104. - use CVS to tag the current head revisions with a name like v1_4_20040104 *************** *** 354,367 **** </target> ! <target name="Release" depends="jar,thumbelina,javadoc" description="prepare the release files"> </target> <!-- Package the release --> ! <target name="Package" depends="Release,sources" description="glom the release and source files into the distribution zip file"> <mkdir dir="${distribution}"/> <zip zipfile="${distribution}/htmlparser${versionTag}.zip"> ! <zipfileset dir="${bin}" prefix="htmlparser${versionQualifier}/${bin}"/> ! <zipfileset dir="${docs}" prefix="htmlparser${versionQualifier}/${docs}"/> <zipfileset dir="${lib}" prefix="htmlparser${versionQualifier}/${lib}"/> <zipfileset dir="." prefix="htmlparser${versionQualifier}/" includes="src.zip"/> --- 354,369 ---- </target> ! <target name="release" depends="jar,thumbelina,javadoc" description="prepare the release files"> </target> <!-- Package the release --> ! <target name="package" depends="release,sources" description="glom the release and source files into the distribution zip file"> <mkdir dir="${distribution}"/> <zip zipfile="${distribution}/htmlparser${versionTag}.zip"> ! <zipfileset dir="${bin}" prefix="htmlparser${versionQualifier}/${bin}" includes="*.bat"/> ! <zipfileset dir="${bin}" prefix="htmlparser${versionQualifier}/${bin}" includes="*" excludes="*.bat" filemode="755"/> ! <zipfileset dir="${docs}" prefix="htmlparser${versionQualifier}/${docs}" excludes="docs/**,samples/**"/> ! <zipfileset dir="${docs}/docs" prefix="htmlparser${versionQualifier}/${docs}/wiki"/> <zipfileset dir="${lib}" prefix="htmlparser${versionQualifier}/${lib}"/> <zipfileset dir="." prefix="htmlparser${versionQualifier}/" includes="src.zip"/> *************** *** 391,395 **** <!-- Perform the htmlparser integration --> ! <target name="htmlparser" depends="Package,clean" description="same as Package plus cleanup"> </target> --- 393,397 ---- <!-- Perform the htmlparser integration --> ! <target name="htmlparser" depends="package,clean" description="same as package plus cleanup"> </target> |