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

Re: Get the element to original position XSLT 1.0

Subject: Re: Get the element to original position XSLT 1.0
From: Piet van Oostrum <piet@xxxxxxxxxxxxxx>
Date: Mon, 31 Jan 2011 06:53:41 -0400
Re:  Get the element to original position XSLT 1.0
pankaj.c@xxxxxxxxxxxxxxxxxx wrote:

 > All is well and fine till now, but now I am bit struggling with
 > re-transforming back. I understand that I need to match @id of
 > commented text <footnote> with the moved <footnote id="fn0010"> to
 > get at the right position.
 > 
 >  <xsl:template match="comment()">
 >     <xsl:choose>
 >         <xsl:when test="substring(.,2,8)='footnote'">
 >             <!-- do something here  -->
 >         </xsl:when>
 >         <xsl:otherwise>
 >             <xsl:comment><xsl:value-of select="."/></xsl:comment> 
 >         </xsl:otherwise>
 >     </xsl:choose>
 > </xsl:template>
 > 
 > Anybody can throw some idea to get it done. I am definitely missing 
 > something.

  <xsl:key name="endnotes" match="footnote" use="@id"/>

   <xsl:template match="comment()">
      <xsl:choose>
	  <xsl:when test="substring(.,2,8)='footnote'">
	    <xsl:copy-of select="key('endnotes',substring(.,15,6))"/>
	  </xsl:when>
	  <xsl:otherwise>
	      <xsl:copy-of select="."/>
	  </xsl:otherwise>
      </xsl:choose>
   </xsl:template>

-- 
Piet van Oostrum
Cochabamba. URL: http://pietvanoostrum.com/
Nu Fair Trade woonartikelen op http://www.zylja.com

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.