conor 2003/09/12 06:59:35
Modified: src/etc/testcases/taskdefs/style build.xml
Log:
Make easier to read
Revision Changes Path
1.3 +8 -2 ant/src/etc/testcases/taskdefs/style/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/ant/src/etc/testcases/taskdefs/style/build.xml,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -w -u -r1.2 -r1.3
--- build.xml 6 Sep 2003 13:30:30 -0000 1.2
+++ build.xml 12 Sep 2003 13:59:35 -0000 1.3
@@ -43,12 +43,18 @@
</target>
<target name="testNewerStylesheet">
- <antcall target="copyXsl"><param name="xsl.value"
value="old-value"/></antcall>
+ <antcall target="copyXsl">
+ <param name="xsl.value" value="old-value"/>
+ </antcall>
<style in="data.xml" out="${out.dir}/out.xml" style="tmp.xsl"/>
- <antcall target="copyXsl"><param name="xsl.value"
value="new-value"/></antcall>
+
+ <antcall target="copyXsl">
+ <param name="xsl.value" value="new-value"/>
+ </antcall>
<style in="data.xml" out="${out.dir}/out.xml" style="tmp.xsl"/>
<delete file="tmp.xsl"/>
</target>
+
<target name="copyXsl" if="xsl.value">
<copy file="testNewerStylesheet.xsl" tofile="tmp.xsl" overwrite="true">
<filterchain><expandproperties/></filterchain>
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]