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: xsl:if and xsl:when





<xsl:template match="image">
	<xsl:choose>
		<xsl:when test="//illust/@obj.id=1">

you are matching on a particular image but your xsl:when test
asks whether there is any illust element anywhere in the document that
has an obj.id attribute with value 1. So will give the same result
on all images.

you almost certainly don't want that // at the start of the test
but without seeing your input format can't be sure exactly what it
should be.

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]