|
From: Markus B. <mba...@us...> - 2005-03-27 06:27:09
|
Update of /cvsroot/rubyeclipse/org.rubypeople.rdt.doc.user In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10578 Modified Files: plugin.xml build.xml buildDocbook.xml Log Message: updated version to 0.6.0 Index: build.xml =================================================================== RCS file: /cvsroot/rubyeclipse/org.rubypeople.rdt.doc.user/build.xml,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** build.xml 26 Oct 2004 19:28:13 -0000 1.13 --- build.xml 27 Mar 2005 06:27:00 -0000 1.14 *************** *** 13,16 **** --- 13,22 ---- <property name="javacTarget" value="1.2"/> <property name="compilerArg" value=""/> + <property name="featureVersion" value="0.6.0"/> + <!-- featureVersion might also be set from outside --> + <echo message="Using featureVersion=${featureVersion}"/> + <property name="docbook.root" value="../../docbook"/> + <!-- docbook.root might also be set from outside --> + <echo message="Using docbook.root=${docbook.root}"/> <target name="init" depends="properties"> *************** *** 38,50 **** <param name="destination.temp.folder" value="${temp.folder}/"/> </antcall> ! <zip zipfile="${plugin.destination}/org.rubypeople.rdt.doc.user_0.5.0.jar" basedir="${temp.folder}/org.rubypeople.rdt.doc.user_0.5.0" filesonly="false" whenempty="skip" update="false"/> <delete dir="${temp.folder}"/> </target> <target name="build.jars" depends="init" description="Build all the jars for the plug-in: org.rubypeople.rdt.doc.user."> ! <!-- when this script is called from automatic build, docbook.root is probably defined ! when this script is called. Otherwise use the default from buildDocbook.xml --> ! ! <ant antfile="buildDocbook.xml"/> </target> --- 44,53 ---- <param name="destination.temp.folder" value="${temp.folder}/"/> </antcall> ! <zip zipfile="${plugin.destination}/org.rubypeople.rdt.doc.user_${featureVersion}.jar" basedir="${temp.folder}/org.rubypeople.rdt.doc.user_${featureVersion}" filesonly="false" whenempty="skip" update="false"/> <delete dir="${temp.folder}"/> </target> <target name="build.jars" depends="init" description="Build all the jars for the plug-in: org.rubypeople.rdt.doc.user."> ! <ant antfile="buildDocbook.xml" target="html"/> </target> *************** *** 53,58 **** <target name="gather.bin.parts" depends="init" if="destination.temp.folder"> ! <mkdir dir="${destination.temp.folder}/org.rubypeople.rdt.doc.user_0.5.0"/> ! <copy todir="${destination.temp.folder}/org.rubypeople.rdt.doc.user_0.5.0" failonerror="true"> <fileset dir="${basedir}" includes="plugin.xml,toc.xml,html/,images/" excludes="build.xml" /> </copy> --- 56,61 ---- <target name="gather.bin.parts" depends="init" if="destination.temp.folder"> ! <mkdir dir="${destination.temp.folder}/org.rubypeople.rdt.doc.user_${featureVersion}"/> ! <copy todir="${destination.temp.folder}/org.rubypeople.rdt.doc.user_${featureVersion}" failonerror="true"> <fileset dir="${basedir}" includes="plugin.xml,toc.xml,html/,images/" excludes="build.xml" /> </copy> *************** *** 63,67 **** <target name="gather.sources" depends="init" if="destination.temp.folder"> ! <copy todir="${destination.temp.folder}/org.rubypeople.rdt.doc.user_0.5.0" failonerror="false"> <fileset dir="${basedir}" includes="docbook.xml,plugin.xml" /> </copy> --- 66,70 ---- <target name="gather.sources" depends="init" if="destination.temp.folder"> ! <copy todir="${destination.temp.folder}/org.rubypeople.rdt.doc.user_${featureVersion}" failonerror="false"> <fileset dir="${basedir}" includes="docbook.xml,plugin.xml" /> </copy> *************** *** 72,77 **** <target name="clean" depends="init" description="Clean the plug-in: org.rubypeople.rdt.doc.user of all the zips, jars and logs created."> ! <delete file="${plugin.destination}/org.rubypeople.rdt.doc.user_0.5.0.jar"/> ! <delete file="${plugin.destination}/org.rubypeople.rdt.doc.user_0.5.0.zip"/> <delete dir="${temp.folder}"/> </target> --- 75,80 ---- <target name="clean" depends="init" description="Clean the plug-in: org.rubypeople.rdt.doc.user of all the zips, jars and logs created."> ! <delete file="${plugin.destination}/org.rubypeople.rdt.doc.user_${featureVersion}.jar"/> ! <delete file="${plugin.destination}/org.rubypeople.rdt.doc.user_${featureVersion}.zip"/> <delete dir="${temp.folder}"/> </target> *************** *** 96,100 **** <fileset dir="${temp.folder}" includes="**/*.bin.log" /> </delete> ! <zip zipfile="${plugin.destination}/org.rubypeople.rdt.doc.user_0.5.0.zip" basedir="${temp.folder}" filesonly="true" whenempty="skip" update="false"/> <delete dir="${temp.folder}"/> </target> --- 99,103 ---- <fileset dir="${temp.folder}" includes="**/*.bin.log" /> </delete> ! <zip zipfile="${plugin.destination}/org.rubypeople.rdt.doc.user_${featureVersion}.zip" basedir="${temp.folder}" filesonly="true" whenempty="skip" update="false"/> <delete dir="${temp.folder}"/> </target> Index: buildDocbook.xml =================================================================== RCS file: /cvsroot/rubyeclipse/org.rubypeople.rdt.doc.user/buildDocbook.xml,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** buildDocbook.xml 12 Jan 2005 11:32:13 -0000 1.11 --- buildDocbook.xml 27 Mar 2005 06:27:00 -0000 1.12 *************** *** 1,14 **** <?xml version="1.0" encoding="UTF-8"?> ! <project name="org.rubypeople.rdt.doc.user" default="html" basedir="."> ! <target name="init"> ! <property name="docbook.root" value="../../docbook"/> ! <!-- docbook.root might also be set from outside --> ! <echo message="Using docbook.root=${docbook.root}"/> ! <property name="featureVersion" value="0.5.0"/> ! <!-- featureVersion might also be set from outside --> ! <echo message="Using featureVersion=${featureVersion}"/> <property name="docbook.xsl.dir" value="${docbook.root}/docbook-xsl-1.64.1"/> <property name="docbook.dtd.dir" value="${docbook.root}/dtd"/> --- 1,12 ---- <?xml version="1.0" encoding="UTF-8"?> ! <project name="org.rubypeople.rdt.doc.user" default="nodefault" basedir="."> + <target name="nodefault"> + <echo message="Please always call this script from build.xml"/> + </target> <target name="init"> ! <fail unless="featureVersion" message="Property featureVersion must be set. Please always call this script from build.xml"/> ! <fail unless="featureVersion" message="Property docbook.root must be set. Please always call this script from build.xml"/> <property name="docbook.xsl.dir" value="${docbook.root}/docbook-xsl-1.64.1"/> <property name="docbook.dtd.dir" value="${docbook.root}/dtd"/> Index: plugin.xml =================================================================== RCS file: /cvsroot/rubyeclipse/org.rubypeople.rdt.doc.user/plugin.xml,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** plugin.xml 24 Oct 2004 16:44:18 -0000 1.11 --- plugin.xml 27 Mar 2005 06:26:49 -0000 1.12 *************** *** 1 **** ! <plugin provider-name="RubyPeople, Inc." version="0.5.0" id="org.rubypeople.rdt.doc.user" name="Ruby Development Documentation"><extension point="org.eclipse.help.toc"><toc primary="true" file="toc.xml"></toc></extension></plugin> \ No newline at end of file --- 1 ---- ! <plugin provider-name="RubyPeople, Inc." version="0.6.0" id="org.rubypeople.rdt.doc.user" name="Ruby Development Documentation"><extension point="org.eclipse.help.toc"><toc primary="true" file="toc.xml"></toc></extension></plugin> \ No newline at end of file |