xsl-list
[Top] [All Lists]

Re: equivalent for 'while'

2005-02-16 10:31:03

  How could I then place conditions when processing this XML doc such that 
  it continues searching for a <CHILD> element until it finds  
  'abcGrandChild' ?


The way you phrased that implies a time ordering that is not implied by
the language specification. instructions may be processed in arbitrary
order or in parallel.

Don't try to second guess _how_ the system will do it, just state which
nodes you want to process, which in this case is all the ones before
'abcGrandChild'

so
<xsl:for-each 
select="DEFCONCEPT[CHILD='abcGrandChild']/preceding-sibling::DEFCONCEPT">
....

for example.

David

________________________________________________________________________
This e-mail has been scanned for all viruses by Star. The
service is powered by MessageLabs. For more information on a proactive
anti-virus service working around the clock, around the globe, visit:
http://www.star.net.uk
________________________________________________________________________

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