Re: [xsl] Hierarchy problem

Subject: Re: [xsl] Hierarchy problem
From: David Carlisle <davidc@xxxxxxxxx>
Date: Mon, 22 Jul 2002 11:09:32 +0100
> (My definitions)
> level3 is a 'direct descendant' of level2

why not use the XPath terminology, "child" ? Then I'd  be sure I know
what you mean.

Also your example was a bit confusing (and still is) as there are two 
things you might have meant by "level 3": the element of that name, and
the h3 element with that content. I assume you meant the former.


> <xsl:variable name='x' select='/level1/level2'/>
> <xsl:variable name='y' select='/level1'/>

well that sets x to be all the level 3 nodes and y to be all thelevel
one ones.

count($x/*|$y) 

That is asking if elements in y is a children  of elements in x which
clearly won't be the case as every element in y is a parent of an
element in x, given your definitions.
If x is /level1/level2 then $x/* is the nodes selected by
/level1/level2/* which is never going to include teh nodes selected by
/level1 is it?

I suspect you just have x and y the wrong way round. Although if you
swap them then the test with count() isn't really needed as it will
always be true.

David

_____________________________________________________________________
This message has been checked for all known viruses by Star Internet
delivered through the MessageLabs Virus Scanning Service. For further
information visit http://www.star.net.uk/stats.asp or alternatively call
Star Internet for details on the Virus Scanning Service.

 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Current Thread