[XSL-LIST Mailing List Archive Home] [By Thread] [By Date]

RE: [xsl] Repeating Code


Subject: RE: [xsl] Repeating Code
From: "Michael Kay" <mike@xxxxxxxxxxxx>
Date: Mon, 10 Oct 2005 11:51:40 +0100

> The only thing is that it only reduces my 5 line <COL> node into  
> three xsl:call-template items instead of just one (because of the  
> parameter). 

Yes, that's a drawback with the xsl:call-template mechanism. 

One workaround is to use apply-templates with a mode. Instead of

<xsl:call-template name="NNN">
  <xsl:with-param name="node" select="x"/>
</xsl:call-template>

<xsl:template name="NNN">
  <xsl:with-param name="node"/>

write

<xsl:apply-templates select="x" mode="MMM"/>

<xsl:template match="*" mode="MMM">

I'm sure this was suggested way back when in this thread...

Michael Kay
http://www.saxonica.com/


Current Thread