xsl-list
[Top] [All Lists]

RE: generating xml from xml

2003-11-10 09:24:52
And this is an in-between solution that optimizes the lookup to avoid repeated tree traversals, without going all the way to keys.... :->

At 11:10 AM 11/10/2003, Jarno wrote:
  <xsl:variable name="_" select="Data/Fields/_"/>
  <xsl:template match="Trade/*">
    <xsl:element name="{$_[(_at_)id = name(current())]/@fn}">
      <xsl:apply-templates select="@* | node()"/>
    </xsl:element>
  </xsl:template>
  <xsl:template match="@* | node()">
    <xsl:copy>
      <xsl:apply-templates select="@* | node()"/>
    </xsl:copy>
  </xsl:template>
  <xsl:template match="Fields"/>


======================================================================
Wendell Piez                            
mailto:wapiez(_at_)mulberrytech(_dot_)com
Mulberry Technologies, Inc.                http://www.mulberrytech.com
17 West Jefferson Street                    Direct Phone: 301/315-9635
Suite 207                                          Phone: 301/315-9631
Rockville, MD  20850                                 Fax: 301/315-8285
----------------------------------------------------------------------
  Mulberry Technologies: A Consultancy Specializing in SGML and XML
======================================================================


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



<Prev in Thread] Current Thread [Next in Thread>