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

Re: Cross-referencing

Subject: Re: Cross-referencing
From: Francis Norton <francis@xxxxxxxxxxx>
Date: Mon, 18 Oct 1999 17:03:04 +0100
Re: Cross-referencing
The following works with latest XT, using the new "current()" function -
it could also by placing the key values in variables. It might be worth
trying out the key() apporach if performance is an issue.

<?xml version="1.0"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/XSL/Transform/1.0">

<xsl:template match="/">
	<result>
		<xsl:apply-templates select="//item"/>
	</result>
</xsl:template>

<xsl:template match="item">
	<expanded-item name="{item-name}">
		<xsl:for-each select="attribute-list/attribute">
			<xsl:for-each
select="//character[@number=current()/@character]/state[@number=current()/value]">
				<property> 
					<xsl:value-of select="." />
				</property>
			</xsl:for-each>
		</xsl:for-each>
	</expanded-item>
</xsl:template>

</xsl:stylesheet>

Francis.



Leigh Dodds wrote:
> 
> Hi,
> 
> First of all, thanks for the response to my previous post,
> I managed to realise what I'd done wrong. Now I've got a bit
> more of a thorny problem...
> 
> Consider the following xml file:
> 
....


 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.