[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: Larry Garfield <lgarfiel@xxxxxxxxxxxxxxxxxxx>
Date: Wed, 18 Jul 2001 08:47:22 -0500
mambo use section title
David Carlisle wrote:

>     <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.

Yeah, I think I'm giving a full path in the actual file, I was just using this for
demonstration purposes.


>      <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" />

Hm.  I like that.  If nothing else it would make the code shorter.  I think that
takes care of questions 1 and 2.  But what exactly is happening internally with the
trees, and is there any way to differentiate between them so that the identity
transform doesn't pass through stuff from one of the trees?

--
Larry Garfield
lgarfiel@xxxxxxxxxxxxxxxxxxx

Do you have a PalmOS Organizer?  Click here to add me to your address book:
http://signature.coola.com/?lgarfiel@xxxxxxxxxxxxxxxxxxx

-- "If at first you don't succeed, skydiving isn't for you." :-)


 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.