xsl-list
[Top] [All Lists]

Re: [xsl] Using XSLT as a namespace filter...

2009-01-12 21:29:41
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/






















      


--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--

<Prev in Thread] Current Thread [Next in Thread>