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

Re: find unique codes

Subject: Re: find unique codes
From: Jeni Tennison <mail@xxxxxxxxxxxxxxxx>
Date: Wed, 22 Aug 2001 10:21:01 +0100
find unique names
Hi Xiaocun,

> I am still struggling with this problem. I was thinking, is there a
> way to use declare one xsl:key across two different types of
> elements,
> ExtendedAttributeDefinition/@ExtendedAttributeDefinitionCode and
> ExtendedAttribute/@ExtendedAttributeCode?

Yes. You can use two xsl:key elements with the same name, as follows:

<xsl:key name="extended-attrs"
         match="ExtendedAttributeDefinition"
         use="@ExtendedAttributeDefinitionCode" />
<xsl:key name="extended-attrs"
         match="ExtendedAttribute"
         use="@ExtendedAttributeCode" />

If ExtendedAttributeDefinition elements can't have
ExtendedAttributeCode attributes, and ExtendedAttribute elements can't
have ExtendedAttributeCode attributes, then this is exactly the same
as:

<xsl:key name="extended-attrs"
         match="ExtendedAttributeDefinition | ExtendedAttribute"
         use="@ExtendedAttributeDefinitionCode |
              @ExtendedAttributeCode" />

but it's easier to see what's going on with the separate keys.

Cheers,

Jeni

---
Jeni Tennison
http://www.jenitennison.com/


 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.