RE: [xsl] need help on referencing

Subject: RE: [xsl] need help on referencing
From: "Andreas L. Delmelle" <a_l.delmelle@xxxxxxxxxx>
Date: Fri, 14 Nov 2003 08:51:44 +0100
> -----Original Message-----
> From: Lenny Wu
>

Hi,

If I'm not mistaken this should be possible just by rewriting

>      <xsl:copy>
>          <xsl:copy-of select="document('author.xml')/authors/author[@id =
> current()/@idref]/name"/>
>      </xsl:copy>

as

<xsl:copy-of select="document('author.xml')/authors/author[id =
current()]/name" />

Since you don't have the id's as attributes in your source XML, you have to
test for an id element equal to the current element being processed.


Hope this helps!

Cheerz,

Andreas


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


Current Thread