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

RE: Xpath to count occurances within a single parent

Subject: RE: Xpath to count occurances within a single parent
From: "David White" <davidw@xxxxxxxxxxx>
Date: Mon, 28 Aug 2006 13:46:13 -0500
david white
Thanks Dave,

Didn't consider XSLT!

I am using an XSLT file to manage this and determine if the <caution>
elements need a column break or not...so maybe
Xsl:number will help for that.

I have an fo:block for a caution..


<xsl:template name="safety.box">
<fo:block>

<xsl:if test="count(preceding-sibling::caution) != 0 and self::caution">
	<xsl:attribute name="break-before">column</xsl:attribute>
</xsl:if>

</fo:block>
</xsl:template>

So in the XML:

<book>
	<chapter>
		<caution/>
		<caution/>
		<caution/>
	</chapter>
	<chapter>
		<sect1>
			<caution/>
		</sect1>
		<caution/>
		<caution/>
	</chapter>
</book>

That template safety.box would kick in for every <caution/> in the XML.  It
would create a block then using that xsl:if statement, decided if it breaks
columns or not.  So thats where I'm running into trouble with my XPATH cuz
its not working right.

Hope that sheds more light on it.

Thanks for the input btw I appreciate the help!

David White

-----Original Message-----
From: David Carlisle [mailto:davidc@xxxxxxxxx]
Sent: Monday, August 28, 2006 1:05 PM
To: xsl-list@xxxxxxxxxxxxxxxxxxxxxx
Subject: Re:  Xpath to count occurances within a single parent


> Doesnt work, because that will include ALL siblings even in other
> chapters.

it will be restricted to one chapter but doesn't work as you ned to count
inside nested sections. (Which you said in your original message but I
didn't take onboard) Do you need to do this in XPath1?
in xslt it's easier to do it with xsl:number (xsl:number from="chapter"
level="any") does just what you want) or if you have to do it in xpath
rather than xslt can you use xpath 2?

David

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.