![]() |
![]() | ![]() | ![]() | Altova Mailing List Archives>Archive Index >xsl-list Archive Home >Recent entries >Thread Prev - RE: [xsl] A non self closed xsl:apply-templates element to create a text node for matching ... >Thread Next - RE: [xsl] A non self closed xsl:apply-templates element to create a text node for matching ... Re: [xsl] A non self closed xsl:apply-templates element to create a text node for matching ...To: Date: 12/5/2006 9:59:00 PM > <xsl:template match="text()[ starts-with( ., '../Russia2006/' ) ]">
> <xsl:template match="@href[ starts-with( ., '../Russia2006/' ) ]">
various ways of combining those:
<xsl:template match="node()[self::text() or (not(self::*) and
name()='href')][ starts-with( ., '../Russia2006/' ) ]">
<xsl:text>http://site.com/gallery/Russia/2006/</xsl:text>
<xsl:value-of select="substring-after( ., '../Russia2006/' )" />
</xsl:template>
or probably better and more efficient
<xsl:template match="text()[ starts-with( ., '../Russia2006/' ) ]">
<xsl:call-template name="share"/>
</xsl:template>
<xsl:template match="@href[ starts-with( ., '../Russia2006/' ) ]">
<xsl:call-template name="share"/>
</xsl:template>
<xsl:template name="share">
<xsl:text>http://site.com/gallery/Russia/2006/</xsl:text>
<xsl:value-of select="substring-after( ., '../Russia2006/' )" />
</xsl:template> | ![]() | ![]() | ![]() |
| Company | Legal | Press | Partners | Careers | Sitemap | Contact Us | Altova Blog | |||||
|
