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

Re: XSLT 2: Best Way to Synthesize Elements Given List

Subject: Re: XSLT 2: Best Way to Synthesize Elements Given List of Tagnames
From: "G. Ken Holman g.ken.holman@xxxxxxxxx" <xsl-list-service@xxxxxxxxxxxxxxxxxxxxxx>
Date: Sat, 5 Nov 2016 17:10:10 -0000
Re:  XSLT 2: Best Way to Synthesize Elements Given List
At 2016-11-05 16:50 +0000, Dimitre Novatchev dnovatchev@xxxxxxxxx wrote:
I'd suggest this non-recursive solution:

Personally, I classify this approach as recursive:


  <xsl:template match="*">
    ...
    <xsl:apply-templates select="*"/>
    ...
  </xsl:template>

... as it isn't much different than the following:

  <xsl:function name="my:do-children" xmlns:my="urn:X-myFunctions">
    <xsl:param name="children" as="element()*"/>
    <xsl:for-each select="$children">
      ...
      <xsl:sequence select="my:do-children(*)"/>
      ...
    </xsl:for-each>
  </xsl:function>

But that's just me.

. . . . . . . . Ken


-- Check our site for free XML, XSLT, XSL-FO and UBL developer resources | Streaming hands-on XSLT/XPath 2 training @US$45: http://goo.gl/Dd9qBK | Crane Softwrights Ltd. _ _ _ _ _ _ http://www.CraneSoftwrights.com/s/ | G Ken Holman _ _ _ _ _ _ _ _ _ _ mailto:gkholman@xxxxxxxxxxxxxxxxxxxx | Google+ blog _ _ _ _ _ http://plus.google.com/+GKenHolman-Crane/posts | Legal business disclaimers: _ _ http://www.CraneSoftwrights.com/legal |

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.