blob: f853b98b13a3ae2d5ba365805349a255c8b8d50b [file] [log] [blame]
david_williams0985c462007-08-29 18:24:10 +00001<?xml version="1.0" encoding="UTF-8"?>
2<project
3 name="xsl-conversion"
4 default="main"
5 basedir=".">
6
7
8 <!-- note: this file isn't used in test, just left here as a handy way to test transform
9 in workspace during development of xsl -->
10
11
12
13 <target
14 name="main"
15 description="Converts log.xml to produce log.html">
16 <xslt
17 in="log.xml"
18 out="log.html"
19 style="wtplog.xsl"
20 force="true" />
21 </target>
22</project>