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

RE: Nesting <xsl:value-of> tags

Subject: RE: Nesting <xsl:value-of> tags
From: "Zvolensky, Thomas J {PGL~Nutley}" <THOMAS_J.ZVOLENSKY@xxxxxxxxx>
Date: Tue, 04 Feb 2003 15:05:20 -0500
ntname
Wendell,

Thanks for your help.  The code works - sort of.

If the <id> corresponds to the first person in the ShareWebUsers.xml, it returns the correct value of the <ntname> tag.  If the <id> is for the 2nd ... nth person, I get nothing.

There is a sample of what ShareWebUsers.xml looks like:

<?xml version="1.0" encoding="UTF-8"?>
<directory>
	<person>
		<id>4763453</id>
		<ntname>zvolenst</ntname>
	</person>
	<person>
		<id>1580652</id>
		<ntname>watsonc</ntname>
	</person>
	<person>
		<id>3113434</id>
		<ntname>zabkas</ntname>
	</person>
</directory>

Any idea why I can't get the ntname back for 1580652 or 3113434?



-----Original Message-----
From: Wendell Piez [mailto:wapiez@xxxxxxxxxxxxxxxx]
Sent: Monday, February 03, 2003 4:10 PM
To: xsl-list@xxxxxxxxxxxxxxxxxxxxxx
Subject: Re:  Nesting <xsl:value-of> tags


Hello Thomas,

>Is it possible to nest <xsl: value-of> tags like this?

No.

>   If not, is there another way to look up the value of <ntname> from the 
> other document?

This is how I would do it:

Outside your template, bind the other document to a variable:

<xsl:variable name="lookupdoc" select="document('ShareWebUsers.xml')"/>

Set up a key to retrieve persons by id element child:

<xsl:key name="personsbyID" match="person" use="id"/>

(In your code, you have "person[id=..." so I've said use="id"; change to 
@id if you're actually wanting an attribute not an element)

Then inside your template:

<xsl:for-each select="//*[./@filename != '']">
   <xsl:variable name="ownedby" select="../@ownedby"/>
   <!-- binds the ownedby to a variable so we can get it after
        we change context -->
   <xsl:for-each select="$lookupdoc">
     <!-- change context to lookup doc -->
     <xsl:value-of select="key('personsbyID',$ownedby)/ntname"/>
   </xsl:for-each>
</xsl:for-each>

If you wanted to skip the whole key thing you could simply do

<xsl:value-of 
select="document('ShareWebUsers.xml')//person[id=$ownedby]"/>]/ntname"/>

but that's relatively more expensive (since ShareWebUsers.xml will have to 
be traversed again and again, and maybe even parsed repeatedly depending on 
your processor).

<xsl:value-of select="$lookupdoc//person[id=$ownedby]"/>]/ntname"/>

may be somewhat better but is still costly compared to using the key.

HTH--
Wendell


======================================================================
Wendell Piez                            mailto:wapiez@xxxxxxxxxxxxxxxx
Mulberry Technologies, Inc.                http://www.mulberrytech.com
17 West Jefferson Street                    Direct Phone: 301/315-9635
Suite 207                                          Phone: 301/315-9631
Rockville, MD  20850                                 Fax: 301/315-8285
----------------------------------------------------------------------
   Mulberry Technologies: A Consultancy Specializing in SGML and XML
======================================================================


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


 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.