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

Re: Nodesets in XSLT 1.1 and 1.0

Subject: Re: Nodesets in XSLT 1.1 and 1.0
From: Geert Bormans <geert@xxxxxxxxxxxxxxxxxxx>
Date: Tue, 22 Jun 2010 22:28:19 +0200
Re:  Nodesets in XSLT 1.1 and 1.0
strange, I tested this
<xsl:variable name="data" xmlns="">

on both Saxon 6.5.5 and 9.2 prior to posting
and it works,
I see no explanation why it would not work at your end

the other option indeed is keeping the data in the excel namespace and do as you just did
it should not matter


cheers

At 22:23 22/06/2010, you wrote:
That didn't work but this did...
Thanks for helping me think through this...

<xsl:stylesheet version="1.1"
  xmlns="urn:schemas-microsoft-com:office:spreadsheet"
  xmlns:default="urn:schemas-microsoft-com:office:spreadsheet"
  xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  xmlns:exslt="http://exslt.org/common">

  <xsl:variable name="data">
    <root>
      <test>1000</test>
      <test>2000</test>
      <test>3000</test>
      </root>
    </xsl:variable>

    <xsl:template match="/">
      <xsl:for-each select="$data//default:test">
        <xsl:value-of select="."/>
      </xsl:for-each>
    </xsl:template>

</xsl:stylesheet>


----- Original Message ---- From: Geert Bormans <geert@xxxxxxxxxxxxxxxxxxx> To: xsl-list@xxxxxxxxxxxxxxxxxxxxxx Sent: Tue, June 22, 2010 4:13:38 PM Subject: Re: Nodesets in XSLT 1.1 and 1.0

well, also the variable is in that default namespace

try this
<xsl:variable name="data" xmlns="">


At 22:11 22/06/2010, you wrote: >...Thanks! That solved this simply case. > >My actual case (in which do not have this typo!) is more like the >following, having a default namespace of >xmlns="urn:schemas-microsoft-com:office:spreadsheet" >It appears this is the issue. When I remove that default namespace >declaration the node-set thing works just fine. >So my issue is how to reference the $data variable given this >default namespace declaration... > ><xsl:stylesheet version="1.1" >xmlns="urn:schemas-microsoft-com:office:spreadsheet" >xmlns:xsl="http://www.w3.org/1999/XSL/Transform" >xmlns:exslt="http://exslt.org/common"> > > <xsl:variable name="data"> > <root> > <test>1000</test> > <test>2000</test> > <test>3000</test> > </root> > </xsl:variable> > > <xsl:template match="/"> > <xsl:for-each select="$data/root/test"> > <xsl:value-of select="."/> > </xsl:for-each> > </xsl:template> > ></xsl:stylesheet> > > >----- Original Message ---- >From: Geert Bormans <geert@xxxxxxxxxxxxxxxxxxx> >To: xsl-list@xxxxxxxxxxxxxxxxxxxxxx >Sent: Tue, June 22, 2010 2:49:01 PM >Subject: Re: Nodesets in XSLT 1.1 and 1.0 > >not commenting on why you should not use XSLT1.1, >you have a typo in your for-each > > <xsl:for-each select="."/> > >should be > <xsl:value-of select="."/> >or > <xsl:copy-of select="."/> > > >At 20:41 22/06/2010, you wrote: > > <xsl:stylesheet version="1.1" > xmlns:xsl="http://www.w3.org/1999/XSL/Transform" > xmlns:exslt="http://exslt.org/common"> > > > > <xsl:variable name="data"> > > <root> > > <test>1000</test> > > <test>2000</test> > > <test>3000</test> > > </root> > > </xsl:variable> > > > > <xsl:template match="/"> > > <xsl:for-each select="$data/root/test"> > > <xsl:for-each select="."/> > > </xsl:for-each> > > </xsl:template> > > </xsl:stylesheet>

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.