xsl-list
[Top] [All Lists]

Re: [xsl] checking sequence inside processing-instruction

2008-05-30 22:42:40
"Ganesh" == Ganesh Babu N <nbabuganesh(_at_)gmail(_dot_)com> writes:

    Ganesh> <xsl:template match="processing-instruction()">
    Ganesh> <xsl:for-each select="processing-instruction()/name()">
    Ganesh> <xsl:if test="@id !=
    Ganesh> following-sibling::processing-instruction()/@id"/>
    Ganesh> <xsl:message>following-sibling::processing-instruction()/@id
    Ganesh> is out of sequence</xsl:message> </xsl:if> </xsl:for-each>
    Ganesh> <xsl:template>

    Ganesh> When i compile this sheet with saxon9b, it is showing
    Ganesh> error as processing-instruction can not select anything.

That's because processing instructions may not contain processing
instruction children.

Remove the for-each (you only match on one processing instruction at a
time) for starters.
-- 
Colin Adams
Preston Lancashire

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