1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
|
<?xml version="1.0" encoding="UTF-8" ?>
<!-- This file is part of the DITA Open Toolkit project hosted on
Sourceforge.net. See the accompanying license.txt file for
applicable licenses.-->
<!-- (c) Copyright IBM Corp. 2004, 2009 All Rights Reserved. -->
<project name="sample_xhtml_plus_css" default="samples.xhtml_plus_css" basedir=".">
<property name="dita.dir" location="${basedir}/../.."/>
<property name="sample.output.dir" value="${dita.dir}/out/xhtml_plus_css"/>
<property name="css.source.dir" location="${dita.dir}/samples/css"/>
<target name="samples.xhtml_plus_css" depends="clean.samples.xhtml_plus_css">
<ant antfile="${dita.dir}/build.xml">
<property name="args.input" location="${dita.dir}/samples/hierarchy.ditamap"/>
<property name="output.dir" location="${sample.output.dir}"/>
<property name="transtype" value="xhtml"/>
<property name="args.css" value="style.css"/>
<property name="args.csspath" value="css"/>
<property name="args.copycss" value="yes"/>
<property name="args.cssroot" location="${css.source.dir}"/>
</ant>
<copy todir="${sample.output.dir}/css">
<fileset dir="${css.source.dir}" includes="*.jpg"/>
</copy>
</target>
<target name="clean.samples.xhtml_plus_css" description="remove the sample web output">
<delete dir="${sample.output.dir}"/>
</target>
</project>
|