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

Re: sequence of strings

Subject: Re: sequence of strings
From: Florent Georges <lists@xxxxxxxxxxxx>
Date: Tue, 2 Dec 2008 15:12:37 +0100 (CET)
Re:  sequence of strings
Ruud Grosmann wrote:

  Dag Ruud,

> My question is: this solution looks clumsy. How can I improve it?

  I don't have the time to analyze your stylesheet, but a few
remarks...  It seems you use a string to represent structured values.
Why don't you use something structured?  In XSLT 2.0, you can pass a
sequence of strings like this:

    <xsl:with-param name="style" select="'italic', 'bold'"/>

  Unfortunately, you can't have nested sequences, so you can't have
something like, say:

    <!-- Do not try this at home! -->
    <xsl:with-param name="values" select="
        ('style', ('italic', 'bold')),
        ('key',   ('val1', 'val2', ...))"/>

  But you can use several parameters if suitable:

    <xsl:with-param name="style" select="'italic', 'bold'"/>
    <xsl:with-param name="key"   select="'val1', 'val2', ..."/>

  Or you can always use XML:

    <xsl:with-param name="values">
       <style>
          <italic/>
          <bold/>
       </style>
       <key>
          <val1/>
          <val2/>
          ...
       </key>
    </xsl:with-param>

  Instead of contains(), you will then be able to use regular XPath
set operators and mapping techniques:

    <xsl:template name="get_attributes" as="xs:string?">
       <xsl:param name="style" as="xs:string*"/>
       <xsl:variable name="map">
          <i key="bold"   name="BLD"/>
          <i key="italic" name="ITA"/>
       </xsl:variable>
       <xsl:sequence select="$map/i[@key = $style][1]/@name"/>
    </xsl:template>

  And if you use a function instead of a named template, you can use
the following to get the element name (but that's really a matter of
taste):

    my:get-element-name(('bold', 'italic'))

  Regards,

-- 
Florent Georges
http://www.fgeorges.org/

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-2011 All Rights Reserved.