I want to test the presence of <delim/> tag after </citau> in
the below example. If it is missing the XSL should raise an error.
<citref id="bib12">
<citaug>
<citau>
<citsname>Ferri</citsname>
<delim/>
<citfnames>E</citfnames>
</citau>
<delim/>
<cittext>(ed.).</cittext>
</citaug>
I have tried the following code but i am not getting the
required result.
<xsl:template match="citref">
<xsl:if test="citau/following-sibling::*[1]/self::delim">
<xsl:message>citau does not followed by delim</xsl:message>
</xsl:if> </xsl:template>
The citau element is not a child of citref, but a grandchild. Perhaps you
were misled by the poor indentation.
Michael Kay
http://www.saxonica.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>
--~--