2002/ws/desc/test-suite/results results.xsl,1.3,1.4

Update of /sources/public/2002/ws/desc/test-suite/results
In directory hutz:/tmp/cvs-serv1743/test-suite/results

Added Files:
	results.xsl 
Log Message:
Undelete (stupid me)

--- NEW FILE: results.xsl ---
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
	<xsl:output method="html"/>
	
	<xsl:variable name="implementations" select="document('../desc/test-suite/results/implementations.xml')"/>
	<xsl:variable name="test-suite" select="document('../desc/test-suite/test-suite.xml')"/>

	<xsl:template match="comparing">
		<html>
			<head>
				<title>Test Pass Results</title>
			</head>
			<body>
				<h3>Test Pass Results</h3>
				<p>Comparing <a href="{@aspirant}"><xsl:value-of select="@aspirant"/></a> with <a href="{@archetype}"><xsl:value-of select="@archetype"/></a> for testcase <a href="{@source}"><xsl:value-of select="@source"/></a></p>
				<xsl:for-each select="failure">
					<dl>
						<dt>xpath: <xsl:value-of select="@xpath"/></dt>
						<dd><xsl:copy-of select="node()"/></dd>
					</dl>
				</xsl:for-each>
			</body>
		</html>
	</xsl:template>
</xsl:stylesheet>

Received on Monday, 29 May 2006 15:58:48 UTC