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

Re: Problem using Muenchian Method

Subject: Re: Problem using Muenchian Method
From: David Carlisle <davidc@xxxxxxxxx>
Date: Mon, 23 Aug 2004 11:21:04 +0100
Re:  Problem using Muenchian Method
> This works for some nodes but not others. 

it works when you're lucky and not when you're not.


/categories//category[@name=$c]//product

that's all the products below your chosen category but then 

[generate-id(@id)=generate-id(key('products-by-id', @id)[1])]

just allows through those for which the id is teh first occurrence of
that id in the whole document (your key doesn't use the category code)
so if the id appears first in some other category  it will be filtered
out completely.

The solution is to include the categroy code in your key

	<xsl:key name="products-by-id-and-category" match="@id" use="concat(ancestor::category/@name,':',.)"/>


then use key('products-by-id-and-category', concat($c,':',@id)) in your
$c case.

David

________________________________________________________________________
This e-mail has been scanned for all viruses by Star Internet. The
service is powered by MessageLabs. For more information on a proactive
anti-virus service working around the clock, around the globe, visit:
http://www.star.net.uk
________________________________________________________________________

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.