xsl-list
[Top] [All Lists]

RE: attribute-match

2006-01-29 12:38:22
Alexander Stippler wrote:

<xsl:template match="//*[not(@termin)]">
         bla
</xsl:template>

<xsl:template match="News[(_at_)termin]">
         blub
</xsl:template>

I would expect the first to match News-nodes without
the attribute, the second to match News-nodes having
the attribute, but the results are not like this.

  What does the result look like?  Just "bla"?  Does the following work
as you expect?

    <xsl:template match="*">
      <xsl:text>bla</xsl:text>
      <xsl:apply-templates select="*"/>
    </xsl:template>

    <xsl:template match="News[(_at_)termin]">
      <xsl:text>blub</xsl:text>
      <xsl:apply-templates select="*"/>
    </xsl:template>

--drkm




















        

        
                
___________________________________________________________________________ 
Nouveau : téléphonez moins cher avec Yahoo! Messenger ! Découvez les tarifs 
exceptionnels pour appeler la France et l'international.
Téléchargez sur http://fr.messenger.yahoo.com

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



<Prev in Thread] Current Thread [Next in Thread>