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

Re: Recursive grouping won't recurse...

Subject: Re: Recursive grouping won't recurse...
From: "Robert S. Koberg" <rob@xxxxxxxxxx>
Date: Thu, 04 Jul 2002 11:11:25 -0700
xsl flag
Sorry, to quick to respond. I can see that my first one does not address your need. This is a tuff one. How about:

<xsl:template match="list">
>  <xsl:apply-templates/>
> </xsl:template>
>
> <xsl:template match="a | b | c | d | e | f">
>   <xsl:element name="name()">
>     <xsl:attribute  name="type">
>       <xsl:value-of select="@type"/>
>     </xsl:attribute>
>     <xsl:attribute  name="flag">
>       <xsl:value-of select="@flag"/>
>     </xsl:attribute>
>     <xsl:if test="boolean(./*)">
        <xsl:for-each select="./*">
          <xsl:sort select="@type"/>
          <xsl:variable name="prev_sib" select="previous-sibling::*"/>
          <xsl:variable name="type" select="@type"/>
          <xsl:choose>
            <xsl:when test="$type=$prev_sib">
              <xsl:apply-templates select="current()"/>
            </xsl:when>
            <xsl:otherise>
              <xsl:call-template name="grouper">
                <xsl:with-param name="_type" select="type"/>
              </xsl:template>
            </xsl:otherwise>
          </xsl:choose>
        </xsl:for-each>
	<xsl:apply-templates/>

>     </xsl:if>
>   </xsl:element>
> </xsl:template>

<xsl:template name="grouper">
  <xsl:param name="_type"/>
  <group>
    <xsl:apply-temples select="../*[@type=$_type]"/>
  </group>
</xsl:template>




Robert S. Koberg wrote:
Hi Peter,

Hunsberger, Peter wrote:

I'm still shaky on grouping with keys so I've probably missed something
obvious, but I can't get a grouping to work when it has to group on a
recursive structure.  The input looks essentially like the following:

    <list>
       <a type="1" flag="false"/>
       <b type="2" flag="false"/>
       <c type="3" flag="false">
          <d type="4" flag="true"/>
          <e type="4" flag="true"/>
          <f type="5" flag="true"/>
         <g type="5" flag="true"/>
       </c>
    </list>
    <list>
       <a type="1" flag="false"/>
       <b type="2" flag="false"/>
       <c type="3" flag="false">
          <d type="7" flag="false">
             <e type="4" flag="true"/>
             <e type="4" flag="true"/>
          </d>
       </c>
    </list>

Where, if there are adjacent nodes with the same type than the flag will be
true, otherwise the flag will always be false. It could be possible for
adjacent nodes to have the same type with the flag set to false. The same
structure could go many more levels deep than shown here. The desired output
is


Off the top of head, so test it out...

<xsl:template match="list">
 <xsl:apply-templates/>
</xsl:template>

<xsl:template match="a | b | c | d | e | f">
  <xsl:element name="name()">
    <xsl:attribute  name="type">
      <xsl:value-of select="@type"/>
    </xsl:attribute>
    <xsl:attribute  name="flag">
      <xsl:value-of select="@flag"/>
    </xsl:attribute>
    <xsl:if test="boolean(./*)">
      <group>
        <xsl:apply-templates/>
      </group>
    </xsl:if>
  </xsl:element>
</xsl:template>

best,
-Rob


<list> <a type="1" flag="false"/> <b type="2" flag="false"/> <c type="3" flag="false"> <group> <d type="4" flag="true"/> <e type="4" flag="true"/> </group> <group> <f type="5" flag="true"/> <g type="5" flag="true"/> </group> </c> </list> <list> <a type="1" flag="false"/> <b type="2" flag="false"/> <c type="3" flag="false"> <d type="7" flag="false"> <group> <e type="4" flag="true"/> <e type="4" flag="true"/> </group> </d> </c> </list>





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







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.