This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: RE: Finding corresponding node in structurally identical sibling tree?


Oooppsss....

I wrote:

> <xsl:variable name="br1AncIndex"
> select="$br1/count(ancestor::node())"/>
> 
......
> <xsl:variable name="br2AncIndex"
> select="$br2/count(ancestor::node())"/>

must be:

> <xsl:variable name="br1AncIndex"
> select="count($br1/ancestor::node())"/>
> 
......
> <xsl:variable name="br2AncIndex"
> select="count($br2/ancestor::node())"/>

Cheers,
Dimitre Novatchev.


__________________________________________________
Do You Yahoo!?
Yahoo! Games - play chess, backgammon, pool and more
http://games.yahoo.com/

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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]