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

Re: node traversal

Subject: Re: node traversal
From: David Carlisle <davidc@xxxxxxxxx>
Date: Tue, 24 Feb 2004 15:44:28 GMT
xsl node traversal
something like this (untested)


<xsl:template match="stem">
<table:table-cell>
<xsl:apply-templates mode="x"/>
</table:table-cell>
</xsl:template>

<!-- most stuff goes in a p -->
<xsl:template mode="x" match="*"/>
  <p>
 <xsl:copy-of select="."/>
</p>
</xsl:template>

<!-- most inline and text gets zapped (for now)
<xsl:template mode="x" match="inline|text()"/>

<!-- first inline or text in each consecutive sequence starts a p and
slurps up its following siblings-->

<xsl:template mode="x" match="node()
          [self::inline or self::text()]
          [not(preceding-sibling::node()[1][self::inline or self::text()])]
"/>
<p>
<xsl:apply-templates mode="y" select="."/>
</p>
</xsl:template>

<!-- mode y just copies the inlines in one at a time until teh next node
is not of that type in which case it stops -->

<xsltemplate match="inline|text()" mode="y">
<xsl:copy-of select="."/>
<xsl:apply-templates select=following-sibling::node()[1][self::inline or self::text()]"/>
</xsl:template>


-- 
http://www.dcarlisle.demon.co.uk/matthew

________________________________________________________________________
This e-mail has been scanned for all viruses by Star Internet. The
service is powered by MessageLabs. For more information on a proactive
anti-virus service working around the clock, around the globe, visit:
http://www.star.net.uk
________________________________________________________________________

 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


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.