david_williams | b70dda7 | 2009-01-13 07:17:22 +0000 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
2 | <project | ||||
3 | name="xsl-conversion" | ||||
4 | default="main" | ||||
5 | basedir="."> | ||||
6 | |||||
7 | <target | ||||
8 | name="main" | ||||
9 | description="example.bin.xml to produce example.html"> | ||||
10 | <xslt | ||||
11 | destdir="./compilelogs" | ||||
12 | scanincludeddirectories="true" | ||||
13 | style="c.xsl" | ||||
14 | force="true" > | ||||
15 | <fileset dir="./compilelogs" includes="**/*.bin.xml" /> | ||||
16 | <mapper type="glob" from="*.xml" to="*.html"/> | ||||
17 | </xslt> | ||||
18 | </target> | ||||
19 | </project> |