xsl-list
[Top] [All Lists]

Re: stylesheet for generating html table and aditionally paste calendar data

2005-10-03 01:02:52
Ups!
Quality check was not very good last evening :-(

In this case, the code marked with the asterix (*) will be:
<!-- (Muenchian Method) -->
<xsl:for-each select="$eventdate-by-month-and-day"
use="concat(position(),'_',$pos)">
 <br/>Time: <xsl:value-of select="@time"/>
 <br/>Event: <xsl:value-of select="event"/>
</xsl:for-each>

Completely wrong syntax in the for-each (copy-paste error)
With the same key, the for-each should be:
<xsl:for-each 
select="key('eventdate-by-month-and-day',concat(position(),'_',$pos))>

With this change, the stylesheet should work.

Regards,
Ragulf Pickaxe :-)

--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--



<Prev in Thread] Current Thread [Next in Thread>