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]
Other format: [Raw text]

Re: Using mode to override templates


What about replacing all occurances of

<xsl:apply-templates/>

with

<xsl:apply-templates select="." mode="choose"/>

and add a template

<xsl:template match="*" mode="choose">
  <xsl:choose>
    <xsl:when test="$print = 'yes'">
      <xsl:apply-templates mode="print"/>
    </xsl:when>
    <xsl:otherwise>
      <xsl:apply-templates/>
    </xsl:otherwise>
  </xsl:choose>
</xsl:template>

Should work ;-)

Regards,

Joerg


Andrew Welch wrote:
Peter,

For this to work I would need to replace all occurances of:

<xsl:apply-templates/>

with:

<xsl:choose>
<xsl:when test="$print = 'yes'">
<xsl:apply-templates mode="print"/>
</xsl:when>
<xsl:otherwise>
<xsl:apply-templates/>
</xsl:otherwise>
</xsl:choose>

Not such a big deal I suppose, especially if I isolate all the cases
where a call to a print template is possible.
I guess I was just hoping for some kind of workaround.

cheers
andrew

--

System Development
VIRBUS AG
Fon  +49(0)341-979-7419
Fax  +49(0)341-979-7409
joerg.heinicke@virbus.de
www.virbus.de


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]