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

Re: Question about predicate

Subject: Re: Question about predicate
From: Wendell Piez <wapiez@xxxxxxxxxxxxxxxx>
Date: Mon, 05 May 2003 12:35:37 -0400
xslt apply templates predicate
Didier,

You want the current() function, which returns the current node (typically the node that has matched the template) irrespective of what the context node happens to be (e.g. inside a predicate, where the context node has changed).

So:
<xsl:apply-templates select="//rdf:description[@about=current()/@xlink:href]" />


But you'd get better performance using a key:

<xsl:key name="descs-by-about" match="rdf:description" use="@about"/>

Then

<xsl:apply-templates select="key('descs-by-about',@xlink:href)"/>

Enjoy,
Wendell

At 12:07 PM 5/5/2003, you wrote:
Hi

I didn't wrote a stylesheet since quite a long time and I am completely
rusted. Since this morning I am trying to match certain templates without
success.
I want to do:
 <xsl:apply-templates select="//rdf:description[@about="the unknown
expression here."]" /> my problem is with the second part of the equation
("the unknown expression here"). I want it to match with any rdf:description
element having its attribute "about" equal to the value of ./@xlink:href
(the currently matched node having an xlink:href attribute). I tried
different expressions without success. Any help on that will be greatly
appreciated.

Many thanks
Didier PH Martin


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


======================================================================
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



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.