Subject: RE: Copy element referenced to
From: "Taco Fleur \(@DataBroker\)" <taco@xxxxxxxxxxxxx>
Date: Tue, 26 Jul 2005 11:07:13 +1000
|
Slight correction in there
<!-- If the field element contains a reference
attribute we need to first copy the element it is refering to -->
<xsl:if test="$fieldCollection/field[
current()/@identity = @identity ]/@reference">
<xsl:copy-of select="$fieldCollection/field[
current()/@identity = @referece ]/@*" />
<xsl:element name="$fieldCollection/field[
current()/@identity = @referece ]/*">
<xsl:copy-of
select="$fieldCollection/field[ current()/@identity = @referece ]/*" />
</xsl:element>
</xsl:if>
Should have been
<!-- If the field element contains a reference
attribute we need to first copy the element it is refering to -->
<xsl:if test="$fieldCollection/field[
current()/@identity = @identity ]/@reference">
<xsl:copy-of select="$fieldCollection/field[
@identity = @reference ]/@*" />
<xsl:element name="$fieldCollection/field[
@identity = @reference ]/*">
<xsl:copy-of
select="$fieldCollection/field[ @identity = @reference ]/*" />
</xsl:element>
</xsl:if>
|