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

RE: Searching in Sub-children from an Array

Subject: RE: Searching in Sub-children from an Array
From: "Houman Khorasani" <Houman.Khorasani@xxxxxxxxxxx>
Date: Tue, 12 Dec 2006 15:33:33 -0000
RE:  Searching in Sub-children from an Array
David,

Sorry for late feedback. I was dragged from one meeting into other
(short before release).  I tried it out and extended the XSLT according
to your example and it works wonderful! Thumbs up!


Thanks
Houman

-----Original Message-----
From: David Carlisle [mailto:davidc@xxxxxxxxx]
Sent: 07 December 2006 12:31
To: xsl-list@xxxxxxxxxxxxxxxxxxxxxx
Subject: Re:  Searching in Sub-children from an Array



<xsl:stylesheet version="2.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

  <xsl:key name="step" match="fruit_adjustment/color" use="../Steps"/>

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

  <xsl:template match="fruit_adjustment"/>

  <xsl:template match="color">
    <xsl:copy-of
select="(key('step',string-join(ancestor-or-self::*[@ID]/@ID,',')),.)[1]
"/>
  </xsl:template>

</xsl:stylesheet>




David



$ saxon8 fruit.xml fruit.xsl
<?xml version="1.0" encoding="UTF-8"?><tree>
        <fruit ID="111">
                <mango ID="333">
                        <color>green</color>
                </mango>
                <orange ID="222">
                        <color>orange</color>
                </orange>
        </fruit>

</tree>

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.