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

Re: selecting an element in an external doc using its

Subject: Re: selecting an element in an external doc using its id attribute
From: "J.Pietschmann" <j3322ptm@xxxxxxxx>
Date: Tue, 18 Jun 2002 00:44:49 +0200
Re:  selecting an element in an external doc using its
Cindy Mazza wrote:
But when I try to find an element whose id attribute is equal to the
value of the 'from' variable, I get an error saying "Unexpected token
[<function>] in path expression."

        <xsl:variable name="from" select="@from"/>
        <xsl:variable name="docnode" select="document('../texts/odes.xml')"/>
        <xsl:message>
          <xsl:value-of select="$docnode//id($from)"/>
        </xsl:message>

You can't use id() this way. A slash '/' in an XPath mus be
followed by another step, and functions, like id(), do not
fall into this category (in XPath 1.0).

Use either a predicete
  <xsl:message>
    <xsl:value-of select="$docnode//*[@id=$from]"/>
  </xsl:message>
(supposed all your ID attributes are named "id")
or change the context using an xsl:for-each:
  <xsl:message>
    <xsl:for-each select="$docnode">
      <xsl:value-of select="id($from)"/>
    </xsl:for-each>
  </xsl:message>

This makes it a bit inconvenient to use id() or key() to
grab elements from another document, but so are the rules...

J.Pietschmann


XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list



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.