Re: xsl:if and xsl:when

Subject: Re: xsl:if and xsl:when
From: David Carlisle <davidc@xxxxxxxxx>
Date: Thu, 30 Mar 2000 00:27:55 GMT


<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


Current Thread