xsl-list
[Top] [All Lists]

Re: removing nodes according to attibute value

2005-11-01 16:32:12
On 11/1/05, Michael Kay wrote:

Michael Kay:

Start with an identity template that copies everything:

<xsl:template match="*">
  <xsl:copy><xsl:copy-of
select="@*"/><xsl:apply-templates/></xsl:copy>
</xsl:template>

  Or matching "node()" if you want to copy everything, isn't it?

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

Your version will copy comments and processing instructions,
mine won't.

  Yes.  It's what I meant (by "everything").  But you're right, it's
not relevant to the OP problem.

--drkm

--~------------------------------------------------------------------
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>