Subject: Re: Using XSLT as a namespace filter...
From: Florent Georges <lists@xxxxxxxxxxxx>
Date: Tue, 13 Jan 2009 03:29:12 +0100 (CET)
|
Nathan Potter wrote:
> <xsl:template match="dap:*">
> <xsl:copy >
> <xsl:copy-of select="dap:*" />
> </xsl:copy>
> </xsl:template>
That would copy the child dap:* and all their descendants.
> <xsl:template match="*">
> <xsl:apply-templates />
> </xsl:template>
That would copy the child text nodes. I guess you just want:
<xsl:template match="dap:*">
<xsl:copy>
<xsl:apply-templates/>
</xsl:copy>
</xsl:template>
<xsl:template match="*">
<xsl:apply-templates select="*"/>
</xsl:template>
Regards,
--
Florent Georges
http://www.fgeorges.org/
|