| <?xml version="1.0"?> |
| <project default="create-doc" basedir="."> |
| |
| <property name="current-loc" location="." /> |
| <property name="workspace" location=".." /> |
| <property name="htmldir" value="${current-loc}/html" /> |
| <property name="docbookdir" value="${workspace}/CommonUtilities/docbook-xsl/eclipse" /> |
| <property name="docbooksource" value="${current-loc}/docbook"/> |
| <property name="xalan" value="org.apache.xalan.processor.TransformerFactoryImpl" /> |
| |
| <!-- XSLT Chunking Properties --> |
| <property name="base.dir" value="${htmldir}"/> |
| |
| <target name="create-doc"> |
| |
| <xslt force="true" style="${docbookdir}/eclipse33.xsl" in="${docbooksource}/xslhelpcombined.dbk" out="test.xml"> |
| <factory name="${xalan}" /> |
| <param name="manifest" expression="1"/> |
| <param name="base.dir" expression="${htmldir}/"/> |
| <param name="create.plugin.xml" expression="0"/> |
| <param name="chunker.output.indent" expression="yes"/> |
| <param name="navig.showtitles" expression="0"/> |
| <param name="suppress.navigation" expression="1"/> |
| <param name="generate.toc" expression="book toc,title,figure |
| chapter toc,title |
| section title" /> |
| </xslt> |
| |
| <replace file="${current-loc}/toc.xml" token="${current-loc}/" value=""/> |
| </target> |
| |
| </project> |