Re: [xsl] Conflicting templates?

Subject: Re: [xsl] Conflicting templates?
From: Geert Josten <Geert.Josten@xxxxxxxxxxx>
Date: Fri, 17 Dec 2004 14:42:21 +0100
I realise I am actually offending the XSL standard nearly dayly.

Oh well, not _that_ often actually, but I kind of developed the habit to add things like the following to my stylesheets:


<xsl:template match="@*|node()">
  <xsl:copy-of select="." />
</xsl:template>

<xsl:template match="*">
  <xsl:copy>
    <xsl:apply-templates select="@*|node()" />
  </xsl:copy>
</xsl:template>

(sorry to bother)

Current Thread