Re: Filtering using XSL

Subject: Re: Filtering using XSL
From: David Carlisle <davidc@xxxxxxxxx>
Date: Thu, 10 Feb 2000 18:57:57 GMT
Oh PS
> I tried using   <xsl:template match = "Main//Chapter[@Value = 'false']"/>

given that Main is your document element that is equivalent (but most
likely much less efficient ) to

 <xsl:template match = "Chapter[@Value = 'false']"/>

either match expression is true on Chapter elements with Value false,
and false on all other elements.

David


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


Current Thread