- From: Jonathan Marsh via cvs-syncmail <cvsmail@w3.org>
- Date: Thu, 20 Jul 2006 17:34:34 +0000
- To: public-ws-desc-eds@w3.org
Update of /sources/public/2002/ws/desc/test-suite/results
In directory hutz:/tmp/cvs-serv27518/test-suite/results
Modified Files:
build.xml interchange-results.xsl Overview.html
Log Message:
Added "Generated" date to interchange format test report.
Index: Overview.html
===================================================================
RCS file: /sources/public/2002/ws/desc/test-suite/results/Overview.html,v
retrieving revision 1.27
retrieving revision 1.28
diff -C 2 -d -r1.27 -r1.28
*** Overview.html 20 Jul 2006 15:08:16 -0000 1.27
--- Overview.html 20 Jul 2006 17:34:31 -0000 1.28
***************
*** 13,16 ****
--- 13,17 ----
<body>
<h3>Component Model Test Results</h3>
+ <address>Generated July 20 2006</address>
<p>These results present the results of parsing "good" (e.g. valid) WSDL documents and emitting
an XML representation of the component model. These interchange format results are canonicalized
Index: interchange-results.xsl
===================================================================
RCS file: /sources/public/2002/ws/desc/test-suite/results/interchange-results.xsl,v
retrieving revision 1.2
retrieving revision 1.3
diff -C 2 -d -r1.2 -r1.3
*** interchange-results.xsl 19 Jul 2006 18:47:49 -0000 1.2
--- interchange-results.xsl 20 Jul 2006 17:34:31 -0000 1.3
***************
*** 3,6 ****
--- 3,10 ----
<xsl:output method="html" encoding="UTF-8" indent="yes"/>
+ <xsl:param name="DSTAMP" />
+ <xsl:param name="TSTAMP" />
+ <xsl:param name="TODAY" />
+
<xsl:template match="/">
<html>
***************
*** 17,20 ****
--- 21,28 ----
<body>
<h3>Component Model Test Results</h3>
+ <address>
+ <xsl:text>Generated </xsl:text>
+ <xsl:value-of select="$TODAY" />
+ </address>
<p>These results present the results of parsing "good" (e.g. valid) WSDL documents and emitting
an XML representation of the component model. These interchange format results are canonicalized
Index: build.xml
===================================================================
RCS file: /sources/public/2002/ws/desc/test-suite/results/build.xml,v
retrieving revision 1.10
retrieving revision 1.11
diff -C 2 -d -r1.10 -r1.11
*** build.xml 20 Jul 2006 15:08:16 -0000 1.10
--- build.xml 20 Jul 2006 17:34:31 -0000 1.11
***************
*** 8,12 ****
<target name="rollup" depends="evaluate-Woden, evaluate-Canon, evaluate-wsdl-xslt" description="roll up the results of evaluation into a results page.">
<xslt style="combine.xslt" in="implementations.xml" out="interchange-summary.xml" force="yes"/>
! <xslt style="interchange-results.xsl" in="interchange-summary.xml" out="Overview.html" force="yes"/>
</target>
--- 8,17 ----
<target name="rollup" depends="evaluate-Woden, evaluate-Canon, evaluate-wsdl-xslt" description="roll up the results of evaluation into a results page.">
<xslt style="combine.xslt" in="implementations.xml" out="interchange-summary.xml" force="yes"/>
! <tstamp />
! <xslt style="interchange-results.xsl" in="interchange-summary.xml" out="Overview.html" force="yes">
! <param name="DSTAMP" expression="${DSTAMP}"/>
! <param name="TSTAMP" expression="${TSTAMP}"/>
! <param name="TODAY" expression="${TODAY}"/>
! </xslt>
</target>
***************
*** 40,44 ****
<target name="evaluate-Woden" depends="canonicalize-Woden" description="Compare Woden/*/*.wsdlcm results with the Baseline, reporting the results as *.results.xml.">
<xslt style="compare-wsdlcm.xslt" extension=".results.xml"
! basedir="../documents/good" destdir="Woden" includes="*/*.filename" force="yes">
<param name="implementation" expression="Woden"/>
</xslt>
--- 45,49 ----
<target name="evaluate-Woden" depends="canonicalize-Woden" description="Compare Woden/*/*.wsdlcm results with the Baseline, reporting the results as *.results.xml.">
<xslt style="compare-wsdlcm.xslt" extension=".results.xml"
! basedir="../documents/good" destdir="Woden" includes="*/*.filename">
<param name="implementation" expression="Woden"/>
</xslt>
***************
*** 64,68 ****
<target name="evaluate-Canon" depends="canonicalize-Canon" description="Compare Canon/*/*.wsdlcm results with the Baseline, reporting the results as *.results.xml.">
<xslt style="compare-wsdlcm.xslt" extension=".results.xml"
! basedir="../documents/good" destdir="Canon" includes="*/*.filename" force="yes">
<param name="implementation" expression="Canon"/>
</xslt>
--- 69,73 ----
<target name="evaluate-Canon" depends="canonicalize-Canon" description="Compare Canon/*/*.wsdlcm results with the Baseline, reporting the results as *.results.xml.">
<xslt style="compare-wsdlcm.xslt" extension=".results.xml"
! basedir="../documents/good" destdir="Canon" includes="*/*.filename">
<param name="implementation" expression="Canon"/>
</xslt>
***************
*** 94,98 ****
<target name="evaluate-wsdl-xslt" depends="canonicalize-wsdl-xslt" description="Compare wsdl-xslt/*/*.wsdlcm results with the Baseline, reporting the results as *.results.xml.">
<xslt style="compare-wsdlcm.xslt" extension=".results.xml"
! basedir="../documents/good" destdir="wsdl-xslt" includes="*/*.filename" force="yes">
<param name="implementation" expression="wsdl-xslt"/>
</xslt>
--- 99,103 ----
<target name="evaluate-wsdl-xslt" depends="canonicalize-wsdl-xslt" description="Compare wsdl-xslt/*/*.wsdlcm results with the Baseline, reporting the results as *.results.xml.">
<xslt style="compare-wsdlcm.xslt" extension=".results.xml"
! basedir="../documents/good" destdir="wsdl-xslt" includes="*/*.filename">
<param name="implementation" expression="wsdl-xslt"/>
</xslt>
Received on Thursday, 20 July 2006 17:34:41 UTC