Re: [xsl] key is not liking a url lookup

Subject: Re: [xsl] key is not liking a url lookup
From: David Carlisle <davidc@xxxxxxxxx>
Date: Mon, 27 Oct 2003 12:36:50 GMT
> Is it wrong to put the url into the match attribute of the key?

yes

> If so how do i get around this?
Just use
<xsl:key name="ve-by-firstocc" match="viewentry"

also unless your viewentry has viewentry children you don't want
use="viewentry/entrydata[3]/text,1,1" />

but rather

use="entrydata[3]/text,1,1" />

An xsl:key applies (individually) to all documents. So to look it up
just make sure you are in the document of interets at teh point you use
key()

eg
<xsl:for-each select="document(http://somelink)">
  <xsl:value-of select="key(....

David


-- 
http://www.dcarlisle.demon.co.uk/matthew

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

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


Current Thread