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

RE: Creating JavaScript recursively

Subject: RE: Creating JavaScript recursively
From: "Passin, Tom" <tpassin@xxxxxxxxxxxx>
Date: Tue, 21 Oct 2003 14:45:25 -0400
javascript recursive
[Jonny Pony]

> I want to dynamically create JavaScript with my xsl document 
> from an xml 
> document.
> The xsl should recursively go through the xml and create the 
> JavScript 
> described below.
> 
[code snipped]

The javascript you want does not seem to be recursive.  It looks like
each node element becomes  a javascript function call.  If that is
correct, you can probably get what you want using something like

xsl:apply-templates select='//node'/>

Normally I do not favor using "//", but in this case it will pick up all
the nodes in document order.  Alternatively - if you decided to use
recursion after all -  you could use

<xsl:template match='node'>
   ... do things here ....
   <xsl:apply-templates select='node'/>
</xsl:template>

This would recursively pick up all child nodes.

Cheers,

Tom P

 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.