[Home] [By Thread] [By Date] [Recent Entries]
Hi,
I try to guess... What is your *context node* when you are doing <xsl:apply-templates select="Inscriptions" mode="english"/> ? It should actualy be "Stamp" because Inscriptions is the child of Stamp. something like : <xsl:template match="Stamp"> [do something] <xsl:apply-templates select="Inscriptions" mode="english"/> [do something] </xsl:template> if your context node is "Set" then you have to do something like :
<xsl:template match="Set">
[do something]
<xsl:apply-templates select="Stamp/Inscriptions" mode="english"/>
[do something]
</xsl:template>Does the mode english exists for Inscriptions ? something like :
<xsl:template match="Inscriptions" mode="english">
[do something]
</xsl:template>Hope this helps, Matthieu Le 11/01/2012 09:26, Marc a C)crit : with de //Inscriptions you do a set of all the Inscriptions of your file. -- Matthieu Ricaud 05 45 37 08 90 NeoLibris
|

Cart



