[XSL-LIST Mailing List Archive Home] [By Thread] [By Date]

Re: [xsl] limiting a apply-template


Subject: Re: [xsl] limiting a apply-template
From: Sam Carleton <sam@xxxxxxxxxxxxxx>
Date: Sun, 16 Mar 2003 22:45:44 -0500

On Sun, Mar 16, 2003 at 08:25:29PM -0700, Mike Brown wrote:
> Sam Carleton wrote:
> > This is what I have:
> > 
> > <xsl:apply-templates select="//*[@url=$docUri]" mode="dspLocal"/>
> > 
> > Normally the url attribute in the XML will be unique, but not
> > always.  When it is not unique, I only want to process the first
> > node it finds.  How do I do that?
> 
> (//*[@url=$docUri])[1]
> 
> Of course if you can eliminate the //* and provide a more specific path,
> it will be faster. Or use keys:
> 
> <xsl:key name="elem-by-url" match="*" use="@url"/>
> ...
> <xsl:template ...>
>   ...
>   <xsl:apply-templates select="key('elem-by-url',$docUri)"/>

Thanks, I appreciate it!

Sam

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



Current Thread
Keywords
xml