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

Re: question with using Muenchian/xsl:key (Re: sort/group/co

Subject: Re: question with using Muenchian/xsl:key (Re: sort/group/count problem)
From: Mike Brown <mike@xxxxxxxx>
Date: Sat, 11 Nov 2000 13:05:24 -0700 (MST)
access sort group
Xu, Xiaocun wrote:
>   Thanks to Jeni's suggestion, I started to apply Muenchian for grouping.
> It works well, but I have one problem: since xsl:key is top-level element, I
> can not seem to apply element scope with it.

This is *exactly* my problem with xsl:key. The only way to restrict your
key lookup to a certain node-set is to find the intersection of that
node-set and the result of a key lookup across the whole current node's
document.

The "Kaysian Method" of finding node-set intersections is:

	$set1[count(.|$set2)=count($set2)]

With your data, the indicated section will be $set1:
  <xsl:for-each select="item[count(. | key('items-by-itemid', @itemid)[1]) =1]">
                                       ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
And you'll need to prepare a variable for $set2 right before that:
  <xsl:variable name="this_lists_items" select="item"/>

So the for-each should look like (and I haven't tested this):
  <xsl:for-each select="item[count(.|key('items-by-itemid',@itemid)[count(.|$this_lists_items)=count($this_lists_items)][1])=1]">

Clear as mud, eh?

   - Mike
____________________________________________________________________
Mike J. Brown, software engineer at         My XML/XSL resources:
webb.net in Denver, Colorado, USA           http://www.skew.org/xml/


 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.