I want to handle several XML-documents based on an attribute value.
The following does not work:
Having a XML document like that:
<AllNews>
<News termin="20060121">
...
</News>
<News>
...
</News>
</AllNews>
and two templates like that:
<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's wrong?
Best regards,
Alex
--~------------------------------------------------------------------
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>
--~--