[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

RE: checking sequence inside processing-instruction

Subject: RE: checking sequence inside processing-instruction
From: "Michael Kay" <mike@xxxxxxxxxxxx>
Date: Sat, 31 May 2008 08:58:14 +0100
RE:  checking sequence inside processing-instruction
You context node in the template is a processing instruction. This path
expression

<xsl:for-each select="processing-instruction()/name()">

attempts to select children of that processing instruction that are
themselves processing instructions. A processing instruction cannot have
children, so Saxon gives you a warning. I don't know what the for-each is
doing there anyway, take it out.

Note also that a processing instruction does not have attributes. id="P001"
might look like an attribute, but it is not. You have to parse the value out
by hand, or by using the saxon:get-pseudo-attribute() extension function,
see

http://www.saxonica.com/documentation/extensions/functions/getpseudoattribut
e.html 

Michael Kay
http://www.saxonica.com/

> -----Original Message-----
> From: Ganesh Babu N [mailto:nbabuganesh@xxxxxxxxx] 
> Sent: 31 May 2008 06:07
> To: xsl-list@xxxxxxxxxxxxxxxxxxxxxx
> Subject:  checking sequence inside processing-instruction
> 
> Hai,
> 
> I am having some processing instructions which will appear like this.
> 
> <?PAGEBREAK id="P001"?>
> -------------------
> -----------------
> <?PAGEBREAK id="P002"?>
> -------------
> ---------------
> <?PAGEBREAK id="P003"?>
> --------------------
> --------------------
> <?PAGEBREAK id="P004"?>
> ------------------------
> ------------------------
> <?PAGEBREAK id="P006"?>
> 
> 
> the result should say id="P006" is out of sequence.
> 
> <xsl:template match="processing-instruction()">
>      <xsl:for-each select="processing-instruction()/name()">
>         <xsl:if test="@id != 
> following-sibling::processing-instruction()/@id"/>
>            
> <xsl:message>following-sibling::processing-instruction()/@id
> is out of sequence</xsl:message>
>         </xsl:if>
>      </xsl:for-each>
> <xsl:template>
> 
> When i compile this sheet with saxon9b, it is showing error 
> as processing-instruction can not select anything.
> 
> Please help me in solving this problem.
> 
> Regards,
> Ganesh

Current Thread

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.