This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: Unique sorting


> 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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]