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

Re: testing for position of an element and displaying

Subject: Re: testing for position of an element and displaying it accordingly
From: David Carlisle <davidc@xxxxxxxxx>
Date: Mon, 22 Jan 2007 22:07:13 GMT
Re:  testing for position of an element and displaying
you don't appear to have changed the code at all in response to teh
previous comments.


you have (as before)

    <xsl:template match="r1">
<xsl:if test="child::a">
<xsl:apply-templates select="a" mode="t"/>
</xsl:if>

The xsl:if here soes nothing at all this is equivalent to

    <xsl:template match="r1">
<xsl:apply-templates select="a" mode="t"/>


and by specifying select="a" you are selecting all the a elements
to be processed first, before any other elements. You do not want that,
so select all children, not just a ones, then they will be processed in
the natural order.

<xsl:template match="r1">
<xsl:apply-templates/>
</xsl:template>

then have templates for a and test that do the right thing

<xsl:template match="a">
<fo:block><xsl:number/>: <xsl:apply-templates/></fo:block>
</xsl:template>

<xsl:template match="text">
<fo:block><xsl:apply-templates/></fo:block>
</xsl:template>

which is exactly Michael's suggestion in the message that you quoted.

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.