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

Re: modify the tag name of a given List Node

Subject: Re: modify the tag name of a given List Node
From: Martin Honnen <Martin.Honnen@xxxxxx>
Date: Fri, 23 Apr 2010 19:46:10 +0200
Re:  modify the tag name of a given List Node
Red Light wrote:

<xsl:template match="/rapport">
<!-- here i got my main xsl elements -->
.
.
.
.
<!-- this doesn't work --> <fo:table-row width="100%" > <fo:table-cell padding="0.1cm">
<fo:block text-align="center" font-size="10.0pt" >
<xsl:choose>
<xsl:when test="(/rapport/content/projectDetails/keyword/keywordDetails/key0)">
<xsl:value-of select="/rapport/content/projectDetails/keyword/keywordDetails/key0"/>
</xsl:when>
</fo:table-cell>
</fo:table-row>


</xsl:template>

<xsl:template match="keywordDetails">
    <xsl:copy>
      <xsl:apply-templates select="key"/>
    </xsl:copy>
  </xsl:template>

  <xsl:template match="key">
    <xsl:element name="key{position()}">
      <xsl:copy-of select="node()"/>
    </xsl:element>
  </xsl:template>

if my understanding is write <xsl:copy-of select="node()"/> will replate the node and i should <keywordDetails><key1>.............

now it doesn't work , am i missing something ?

It is not clear to me what you want to achieve and how the FO stuff you have in there relates to the original problem you posted.
Are you trying to do two transformation steps in one stylesheet?
In any case with the templates posted you of course need to ensure that processing reaches the template for keywordDetails, if you have a template matching your root (which match="/rapport" suggests) then you need to use apply-templates in there to ensure processing continues with child nodes or descendant nodes.



--


	Martin Honnen
	http://msmvps.com/blogs/martin_honnen/

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.