|
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] Re: determining node position by the content of a tex
If I understand you correctly you don't need the current position, you
just need the preceding element, which is
preceding-sibling::*[1]
To look up the replacement word you would be best to use a key (which is
desined for exctly this use)
<xsl:key name="en2de" match="wort[@xml:lang='de']"use="../wort[@xml:lang='en']"/>
template that replaces any english text that has a German dranslation
<xsl:template match="text()">
<xsl:variable name="t" select="."/>
<xsl:for-each select="document('dict.xml')">
<xsl:choose>
<xsl:when test="key('en2de',$t)
<xsl:value-of select="key('en2de',$t)"/>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="$t"/>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
David
________________________________________________________________________
This e-mail has been scanned for all viruses by Star. 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
________________________________________________________________________
|
PURCHASE STYLUS STUDIO ONLINE TODAY!Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced! Download The World's Best XML IDE!Accelerate XML development with our award-winning XML IDE - Download a free trial today! Subscribe in XML format
|

Cart








