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: how to change variable values ?


> i got the following problem: i want to output a xml-document with a 
> xsl-stylesheet. In this output it should, for example, make a 
> line when the week changes.

Another grouping problem, see the FAQ. If you just want to output a <hr/>
when the week changes, then you want code such as

<xsl:if test="not(week = preceding-sibling::week)"><hr/></xsl:if>

Mike Kay
> 


 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]