This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: Recursive grouping won't recurse...


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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]