Subject: Re: Transformation problem
From: "Michael Beddow" <mbnospam@xxxxxxxxxxx>
Date: Thu, 15 Feb 2001 20:57:30 -0000
|
On Thursday, February 15, 2001 5:32 PM
Matthias O. Will wrote:
[..]
> <xsl:apply-templates select="General"/>
> ...
> <xsl:template match="General">
> <xsl:for-each select="Author">
> <xsl:apply-templates select="vCard"/>
> </xsl:for-each>
Like David, I can only guess on the info provided, but what happens if
you change that to
> <xsl:apply-templates select="General"/>
> ...
> <xsl:template match="General">
> <xsl:for-each select="Author/vCard">
> <xsl:apply-templates />
> </xsl:for-each>
>...
Michael
------------------------------------------
Michael Beddow
http://www.mbeddow.net/
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|