xsl-list
[Top] [All Lists]

Re: [xsl] xsl:copy-of issue

2010-01-13 18:20:42


On 14.01.2010 01:13, Imsieke, Gerrit, le-tex wrote:
What you probably intended to use is a catch-all template like this:

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

And this more specific template for the table's newly created id (I forgot to mention in the previous message):

  <xsl:template match="table">
    <xsl:copy>
      <xsl:attribute name="id" select="generate-id()" />
      <xsl:apply-templates />
    </xsl:copy>
  </xsl:template>

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