david_williams | 2e87efa | 2008-09-01 02:56:08 +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="${resultDir}/compilelogs" |
| 12 | scanincludeddirectories="true" |
| 13 | style="compilerXMLOutputToHTML.xsl" |
| 14 | force="true" > |
| 15 | <fileset dir="${resultDir}/compilelogs" includes="**/*.bin.xml" /> |
| 16 | <mapper type="glob" from="*.xml" to="*.html"/> |
| 17 | </xslt> |
| 18 | </target> |
| 19 | </project> |