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

Re: Problem with iterating through a sequence of integ

Subject: Re: Problem with iterating through a sequence of integers
From: ac <ac@xxxxxxxxxxxxx>
Date: Mon, 28 Apr 2008 18:35:59 -0400
Re:  Problem with iterating through a sequence of integ
Hi,

A few questions:

1.
Would it not be preferable to invert the choose as in

<xsl:for-each select="(  . . .)">
       <xsl:choose>
           <xsl:when test=". instance of xs:anyAtomicType">
               <xsl:value-of select="."/>
           </xsl:when>
           <xsl:otherwise>
               <xsl:apply-templates select="$foo,." />
           </xsl:otherwise>
       </xsl:choose>
   </xsl:for-each>

especially since node() will also return text nodes that should probably be atomized ?

2.
Also, wouldn't castable as be preferable to instance of, in this case ?
If so, might one want to separate strings, boolean, numbers and integers, as in


...
<xsl:choose>
 <xsl:when test=". instance of xs:integer"> ... </when>
 <xsl:when test=". instance of number()"> ... </when>
 <xsl:when test=". instance of xs:boolean"> ... </when>
 <xsl:when test=". castable as xs:integer"> ... </when>
 <xsl:when test=". castable as number()"> ... </when>
 <xsl:when test=". castable as xs:boolean"> ... </when>
 <xsl:when test=". castable as xs:string"> ... </when>
 <xsl:otherwise><xsl:apply-templates select="$foo,." /></xsl:otherwise>
</xsl:choose>

?

3.
What would be the best way to do this ?


4. As for the use cases, aren't there more than might seem at first, especially where dynamic evaluation (ex: saxon:eval()) is used?


Thanks.


Cheers,
ac







...

David Carlisle a C)crit :
a safer way is to use a global param, this prevents a static type error
(as the system can not know that you will not pass in a node) but if you
never do pass in a value then teh run time behaviour is as you wish:

<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:param name="foo" select="()"/>
<xsl:template name="x">
<xsl:for-each select="(1, 2, 3)">
        <xsl:choose>
            <xsl:when test=". instance of node()">
                <xsl:apply-templates select="$foo,." />
            </xsl:when>
            <xsl:otherwise>
                <xsl:value-of select="."/>
            </xsl:otherwise>
        </xsl:choose>
    </xsl:for-each>
</xsl:template>
</xsl:stylesheet>



$ saxon9 -it x stst.xsl
<?xml version="1.0" encoding="UTF-8"?>123

________________________________________________________________________
The Numerical Algorithms Group Ltd is a company registered in England
and Wales with company number 1249803. The registered office is:
Wilkinson House, Jordan Hill Road, Oxford OX2 8DR, United Kingdom.

This e-mail has been scanned for all viruses by Star. The service is
powered by MessageLabs. ________________________________________________________________________

Current Thread

PURCHASE STYLUS STUDIO ONLINE TODAY!

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

Buy Stylus Studio Now

Cast Your Vote

We need your help – Vote for DataDirect XML Products!

  • Best SOA or XML site

Winners and finalists announced at SOA World Conference in November.

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