xsl-list
[Top] [All Lists]

Re: [xsl] A non self closed xsl:apply-templates element to create a text node for matching ...

2006-12-05 14:59:29

<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>


--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--