[Springnet-commits] Spring.Net/doc build.xml,1.11,1.12
Brought to you by:
aseovic,
markpollack
From: Erich E. <oak...@us...> - 2007-12-06 15:53:17
|
Update of /cvsroot/springnet/Spring.Net/doc In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv31696 Modified Files: build.xml Log Message: fixed admonition image paths Index: build.xml =================================================================== RCS file: /cvsroot/springnet/Spring.Net/doc/build.xml,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** build.xml 8 Aug 2007 09:11:59 -0000 1.11 --- build.xml 6 Dec 2007 15:53:07 -0000 1.12 *************** *** 12,24 **** <project name="Spring.NET Docbook" default="refdoc" basedir="."> ! <property file="build.properties" /> <property file="project.properties" /> ! <target name="clean" description="Delete output and temporary directories."> <delete dir="${basedir}/${doc.output.dir}" /> </target> ! <target name="preparedocs" description="Extra preparation for the documentation (common to all formats)"> --- 12,24 ---- <project name="Spring.NET Docbook" default="refdoc" basedir="."> ! <property file="build.properties" /> <property file="project.properties" /> ! <target name="clean" description="Delete output and temporary directories."> <delete dir="${basedir}/${doc.output.dir}" /> </target> ! <target name="preparedocs" description="Extra preparation for the documentation (common to all formats)"> *************** *** 54,66 **** </target> ! <target name="docpdf" depends="preparedocs" description="Compile reference documentation to pdf"> ! <antcall target="copycommoncontent"> <param name="doc.type.output.dir" value="${basedir}/${doc.ref.output.dir}/pdf/images"/> </antcall> ! <java classname="com.icl.saxon.StyleSheet" fork="true" dir="${doc.ref.dir}"> --- 54,66 ---- </target> ! <target name="docpdf" depends="preparedocs" description="Compile reference documentation to pdf"> ! <antcall target="copycommoncontent"> <param name="doc.type.output.dir" value="${basedir}/${doc.ref.output.dir}/pdf/images"/> </antcall> ! <java classname="com.icl.saxon.StyleSheet" fork="true" dir="${doc.ref.dir}"> *************** *** 75,79 **** <arg value="${basedir}/${doc.ref.dir}/styles/fopdf.xsl" /> </java> ! <java classname="org.apache.fop.apps.Fop" fork="true" maxmemory="1024m" dir="${doc.ref.dir}"> --- 75,79 ---- <arg value="${basedir}/${doc.ref.dir}/styles/fopdf.xsl" /> </java> ! <java classname="org.apache.fop.apps.Fop" fork="true" maxmemory="1024m" dir="${doc.ref.dir}"> *************** *** 93,97 **** </target> ! <target name="dochtml" depends="preparedocs,preparedocshtml" description="Compile reference documentation to chunked html"> --- 93,97 ---- </target> ! <target name="dochtml" depends="preparedocs,preparedocshtml" description="Compile reference documentation to chunked html"> *************** *** 101,105 **** value="${basedir}/${doc.ref.output.dir}/html/images"/> </antcall> ! <java classname="com.icl.saxon.StyleSheet" fork="true" dir="${doc.ref.output.dir}/html"> --- 101,105 ---- value="${basedir}/${doc.ref.output.dir}/html/images"/> </antcall> ! <java classname="com.icl.saxon.StyleSheet" fork="true" dir="${doc.ref.output.dir}/html"> *************** *** 112,126 **** <arg value="${basedir}/${doc.ref.dir}/styles/html_chunk.xsl" /> </java> ! </target> ! <target name="dochtmlsingle" depends="preparedocs,preparedocshtml" description="Compile reference documentation to single html"> ! <antcall target="copycommoncontent"> <param name="doc.type.output.dir" value="${basedir}/${doc.ref.output.dir}/html_single/images"/> </antcall> ! <java classname="com.icl.saxon.StyleSheet" fork="true" dir="${doc.ref.dir}"> --- 112,126 ---- <arg value="${basedir}/${doc.ref.dir}/styles/html_chunk.xsl" /> </java> ! </target> ! <target name="dochtmlsingle" depends="preparedocs,preparedocshtml" description="Compile reference documentation to single html"> ! <antcall target="copycommoncontent"> <param name="doc.type.output.dir" value="${basedir}/${doc.ref.output.dir}/html_single/images"/> </antcall> ! <java classname="com.icl.saxon.StyleSheet" fork="true" dir="${doc.ref.dir}"> *************** *** 135,149 **** <arg value="${basedir}/${doc.ref.dir}/styles/html.xsl" /> </java> ! </target> <target name="htmlhelp" depends="preparedocs,preparedocshtml" description="Compile reference documentation to MS HTML-HELP"> ! <antcall target="copycommoncontent"> <param name="doc.type.output.dir" value="${basedir}/${doc.ref.output.dir}/htmlhelp/images"/> </antcall> ! <java classname="com.icl.saxon.StyleSheet" fork="true" dir="${doc.ref.output.dir}/htmlhelp"> --- 135,149 ---- <arg value="${basedir}/${doc.ref.dir}/styles/html.xsl" /> </java> ! </target> <target name="htmlhelp" depends="preparedocs,preparedocshtml" description="Compile reference documentation to MS HTML-HELP"> ! <antcall target="copycommoncontent"> <param name="doc.type.output.dir" value="${basedir}/${doc.ref.output.dir}/htmlhelp/images"/> </antcall> ! <java classname="com.icl.saxon.StyleSheet" fork="true" dir="${doc.ref.output.dir}/htmlhelp"> *************** *** 165,173 **** </fileset> </delete> ! ! ! </target> ! <!-- copies content common to all docs to the dir in the ${doc.type.output.dir} property --- 165,173 ---- </fileset> </delete> ! ! ! </target> ! <!-- copies content common to all docs to the dir in the ${doc.type.output.dir} property *************** *** 183,186 **** --- 183,194 ---- </fileset> </copy> + <copy todir="${doc.type.output.dir}"> + <fileset dir="${basedir}/${doc.ref.dir}/images"> + <include name="**/*.gif"/> + <include name="**/*.svg"/> + <include name="**/*.jpg"/> + <include name="**/*.png"/> + </fileset> + </copy> </target> *************** *** 188,192 **** <target name="refdoc" depends="clean,dochtml,htmlhelp,docpdf" description="Generate reference documentation"/> ! </project> --- 196,200 ---- <target name="refdoc" depends="clean,dochtml,htmlhelp,docpdf" description="Generate reference documentation"/> ! </project> |