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

Re: More Multi-Document Mambo

Subject: Re: More Multi-Document Mambo
From: David Carlisle <davidc@xxxxxxxxx>
Date: Wed, 18 Jul 2001 09:33:33 +0100
mambo select section
    <xsl:for-each select="//section">

note that is very costly it causes the system to searth the entire
depth of the document looking for sections, if you know all the sections
are at the same level much better to not use //, or more simply just let
the  templates application mechanism take you to the sections, and don't
use for-each here at all.

     <xsl:with-param name="sectNum"><xsl:value-of select="$sectNum" />
so your outer variable isn't doing anything, you coul have use
position() here.

   <xsl:with-param name="sectNum"><xsl:value-of
select="$sectNum" /></xsl:with-param>

That passes the string value of the number, you could have passed the number as

   <xsl:with-param name="sectNum" select="$sectNum" />

but if you will ever need anything other than the number in the
templates, you may as well pass the node itself, then you can
get all information

  <xsl:with-param name="section" select="." />


see, then instead of doing:
  <xsl:apply-templates
select="$sourcefile/source/body/section[position()=$sectNum]/title" />
you could do

  <xsl:apply-templates select="$section/title" />

David

_____________________________________________________________________
This message has been checked for all known viruses by Star Internet
delivered through the MessageLabs Virus Scanning Service. For further
information visit http://www.star.net.uk/stats.asp or alternatively call
Star Internet for details on the Virus Scanning Service.

 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.