2006/ws/policy build.xml,1.16,1.17

Update of /sources/public/2006/ws/policy
In directory hutz:/tmp/cvs-serv9894/ws/policy

Modified Files:
	build.xml 
Log Message:
Repaired html task, see http://lists.w3.org/Archives/Public/public-ws-policy-eds/2006Oct/0057.html .

Index: build.xml
===================================================================
RCS file: /sources/public/2006/ws/policy/build.xml,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -d -r1.16 -r1.17
--- build.xml	6 Oct 2006 04:13:21 -0000	1.16
+++ build.xml	12 Oct 2006 12:23:17 -0000	1.17
@@ -39,22 +39,34 @@
 	<target name="validate" depends="validate-xsl,validate-svg,validate-policy-specs" />
 	
 	<target name="html" description="Transforms xml into html.">
-		<xslt style="${stylesheet}" in="ws-policy-framework.xml" out="ws-policy-framework.html"
-			force="yes">
-			<param name="status" expression="ed-copy"/>
-		</xslt>
-		<xslt style="${stylesheet}" in="ws-policy-attachment.xml" out="ws-policy-attachment.html"
-			force="yes">
-			<param name="status" expression="ed-copy"/>
-		</xslt>
-		<xslt style="${stylesheet}" in="ws-policy-primer.xml" out="ws-policy-primer.html"
-			force="yes">
-			<param name="status" expression="ed-copy"/>
-		</xslt>
-		<xslt style="${stylesheet}" in="ws-policy-guidelines.xml" out="ws-policy-guidelines.html"
-			force="yes">
-			<param name="status" expression="ed-copy"/>
-		</xslt>
+	<java fork="true" classname="net.sf.saxon.Transform">
+<classpath refid="saxon8.classpath"/>
+<arg value="-o"/>
+<arg value="ws-policy-framework.html"/>
+<arg value="ws-policy-framework.xml"/>
+<arg value="${stylesheet}"/>
+</java>
+<java fork="true" classname="net.sf.saxon.Transform">
+<classpath refid="saxon8.classpath"/>
+<arg value="-o"/>
+<arg value="ws-policy-attachment.html"/>
+<arg value="ws-policy-attachment.xml"/>
+<arg value="${stylesheet}"/>
+</java>
+<java fork="true" classname="net.sf.saxon.Transform">
+<classpath refid="saxon8.classpath"/>
+<arg value="-o"/>
+<arg value="ws-policy-primer.html"/>
+<arg value="ws-policy-primer.xml"/>
+<arg value="${stylesheet}"/>
+</java>
+<java fork="true" classname="net.sf.saxon.Transform">
+<classpath refid="saxon8.classpath"/>
+<arg value="-o"/>
+<arg value="ws-policy-guidelines.html"/>
+<arg value="ws-policy-guidelines.xml"/>
+<arg value="${stylesheet}"/>
+</java>
 	</target>
 
     <target name="glossaries" description="Generates glossary entries out of temdef elements">

Received on Thursday, 12 October 2006 12:23:45 UTC