Re: [xsl] Unique sorting

Subject: Re: [xsl] Unique sorting
From: "Joerg Heinicke" <joerg.heinicke@xxxxxx>
Date: Wed, 26 Dec 2001 10:28:50 +0100
> is there something wrong with my xsl??
> but It report:
> XSL Runtime Error
> Required attribute 'match' is missing.
>
> I'm puzzling...
>
> <?xsl version="1.0" encoding="GB2312"?>
> <xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform";
xmlns:msxsl="urn:schemas-microsoft-com:xslt">
> <xsl:template><xsl:apply-templates/></xsl:template>

Here the match-attribute is missing. I think it should be

<xsl:template match="*"><xsl:apply-templates/></xsl:template>

Regards,

Joerg

> <xsl:template match="/">
> <html>
> <head><title>my test</title>
> </head>
> <body>
> <xsl:apply-templates select="clone"/>
> </body>
> </html>
> </xsl:template>


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Current Thread