|
Subject: Re: [xsl] 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/
| Current Thread |
|---|
|
| <- Previous | Index | Next -> |
|---|---|---|
| [xsl] Using XSLT as a namespace fil, Nathan Potter | Thread | Re: [xsl] Using XSLT as a namespace, Nathan Potter |
| [xsl] To control node duplication, nick public | Date | Re: [xsl] Opera's XSLT engine - ava, Vyacheslav Sedov |
| Month |