[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

Re: xsl:copy-of issue

Subject: Re: xsl:copy-of issue
From: "Imsieke, Gerrit, le-tex" <gerrit.imsieke@xxxxxxxxx>
Date: Thu, 14 Jan 2010 01:19:57 +0100
Re:  xsl:copy-of issue
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>

Current Thread

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.