blob: 36c9f66f583a19da6d762d552671e367feee8363 [file] [log] [blame]
dacarverfac57092008-03-15 23:43:51 +00001<?xml version="1.0"?>
2<project default="create-doc" basedir=".">
3
4 <property name="current-loc" location="." />
5 <property name="workspace" location=".." />
6 <property name="htmldir" value="${current-loc}/html" />
7 <property name="docbookdir" value="${workspace}/CommonUtilities/docbook-xsl/eclipse" />
8 <property name="docbooksource" value="${current-loc}/docbook"/>
9 <property name="xalan" value="org.apache.xalan.processor.TransformerFactoryImpl" />
10
11 <!-- XSLT Chunking Properties -->
12 <property name="base.dir" value="${htmldir}"/>
13
14 <target name="create-doc">
dacarver8f6274e2008-03-22 23:29:12 +000015 <xslt force="true" style="${docbookdir}/eclipse33.xsl" in="${docbooksource}/xslhelpcombined.dbk" out="test.xml">
dacarverfac57092008-03-15 23:43:51 +000016 <factory name="${xalan}" />
17 <param name="manifest" expression="1"/>
dacarver8f6274e2008-03-22 23:29:12 +000018 <param name="base.dir" expression="${htmldir}/"/>
dacarverfac57092008-03-15 23:43:51 +000019 <param name="create.plugin.xml" expression="0"/>
20 <param name="chunker.output.indent" expression="yes"/>
21 <param name="navig.showtitles" expression="0"/>
22 <param name="suppress.navigation" expression="1"/>
23 <param name="generate.toc" expression="book toc,title,figure
24chapter toc,title
25section title" />
26 </xslt>
27
28 <replace file="${current-loc}/toc.xml" token="${current-loc}/" value=""/>
29 </target>
30
31</project>