[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

Re: Modes - Necessary Construct or Syntactic Sugar

Subject: Re: Modes - Necessary Construct or Syntactic Sugar
From: Liam R E Quin <liam@xxxxxx>
Date: Tue, 19 Mar 2013 21:58:19 -0400
Re:  Modes - Necessary Construct or Syntactic Sugar
On Tue, 2013-03-19 at 08:58 +0000, Ihe Onwuka wrote:
> Suppose there was a genuine use case for modes. By genuine I mean the
> transform requires me to process the same nodes more than once and in
> different ways.
> 
> Can I do this without using modes.

Yes, but not in he way you describe, and not easily.

For example, you can pass a parameter to every template and have the
contents of every template wrapped inside an xsl:choose. Essentially you
end up duplicating the mode mechanism of apply-templates, though, with a
lot of inconvenience. Here's a snippet of one possible approach.

<xsl:template name="title">
  <xsl:param name="mode" select=" 'default' " as="xs:string" />
  <xsl:choose test="$mode eq 'index'>
    . . .
  </xsl:choose>
  <xsl:otherwise>
    <xsl:call-template name="process-contents">
      <xsl:with-param name="input" select="node()" />
      <xsl:with-param name="mode" select="$mode" />
    </xsl:call-template>
  </xsl:otherwise>
</xsl:template>

and so on.

-- 
Liam Quin - XML Activity Lead, W3C, http://www.w3.org/People/Quin/
Pictures from old books: http://fromoldbooks.org/
Ankh: irc.sorcery.net irc.gnome.org freenode/#xml

Current Thread

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.