RE: [xsl] Xalan bug?

Subject: RE: [xsl] Xalan bug?
From: "Arun Sinha" <arunsinha666@xxxxxxxxxxx>
Date: Thu, 02 Dec 2004 10:46:08 +0000
Hi Mukul,

Hello,
I was solving a problem posted by a user at
microsoft.public.xsl newsgroup. I seem to have been
hit by a Xalan bug(Xalan-J 2.6.0), which I wish to

I think that was a complex solution. Try this one.


<xsl:param name="group-size" select="6" />


<xsl:template match="/Parent">
   <xsl:apply-templates select="node" />
</xsl:template>

<xsl:template match="node">
   <xsl:if test="position() mod $group-size = 1 or $group-size = 1">
       <xsl:text>Group :-</xsl:text>
   </xsl:if>
   <xsl:value-of select="." />
   <xsl:if test="position() mod $group-size != 0 and position() != last()">
       <xsl:text>, </xsl:text>
   </xsl:if>
   <xsl:if test="position() mod $group-size = 0">
       <br />
   </xsl:if>
</xsl:template>

Cheers.

Arun

_________________________________________________________________
Choose what you want to read. Protect your mail from spam. http://server1.msn.co.in/sp04/hotmailspamcontrol/ Win the war in 9 steps!


Current Thread