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]

Re: Filtering using XSL



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

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