Author: zearin Date: 2008-01-18 09:43:47-0800 New Revision: 14055 Added: branches/work_docbook5_zearin/branch1/documentation/build-docbook5.xml
Log: STARTED - task 4963: Convert documentation to DocBook v5 http://argouml.tigris.org/issues/show_bug.cgi?id=4963 Created a new Ant file from scratch for testing builds of documentation. Added: branches/work_docbook5_zearin/branch1/documentation/build-docbook5.xml Url: http://argouml.tigris.org/source/browse/argouml/branches/work_docbook5_zearin/branch1/documentation/build-docbook5.xml?view=auto&rev=14055 ============================================================================== --- (empty file) +++ branches/work_docbook5_zearin/branch1/documentation/build-docbook5.xml 2008-01-18 09:43:47-0800 @@ -0,0 +1,37 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + I created this buildfile to try and test the build process of + the DocBook v5.0 documentation with simpler commands. + + Unfortunately, although I am pretty comfy with most XML, Ant is weird. + Ant is cool, and I prefer it to make...but weird. + + ~ Tony | "Zearin" + 2008-JAN-18 +--> +<project name="ArgoDocs" default="defaulthtml" basedir="."> + + <property + name="saxon.jar.path" + value="${argo.tools.lib}/saxonb9-0-0-2j/saxon9.jar" /> + + <property file="build.properties" /> + + + <target name="printablehtml"> + + <!-- + @see http://ant.apache.org/manual/CoreTasks/style.html + --> + <xslt + classpath="${saxon.jar.path}" + basedir="." + destdir="../build/documentation" + style="docbook-setup/create-printable.xsl" + includes="*.xml" + force="yes" + ></xslt> + + </target> + +</project> \ No newline at end of file --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
