xsl-list
[Top] [All Lists]

RE: [xsl] Searching in Sub-children from an Array

2006-12-05 09:17:39
Many thanks. This has helped me getting forward.

Houman

-----Original Message-----
From: David Carlisle [mailto:davidc(_at_)nag(_dot_)co(_dot_)uk] 
Sent: 04 December 2006 16:36
To: xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com
Subject: Re: [xsl] Searching in Sub-children from an Array


in xslt2 something like

 <xsl:key name="ids" match="*" use="@ID"/>

<xsl:template match="Steps">
 <xsl:variable name="ids" select="tokenize(.,',\s*')"/>
 <xsl:apply-templates mode="step" select="key('ids',$ids[1])[1]">
   <xsl:with-param name="ids" select="$ids[position()!=1]"/>
  </xsl:apply-templates>
</xsl:template>

<xsl:template mode="step" match="*">
 <xsl:param name="ids"/>
 do something with this node then
  <xsl:apply-templates mode="step" select="key('ids',$ids[1],.)[1]">
   <xsl:with-param name="ids" select="$ids[position()!=1]"/>
  </xsl:apply-templates>
</xsl:template>

David

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


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