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

Re: current-group () function trouble

Subject: Re: current-group () function trouble
From: James Fuller <jim.fuller@xxxxxxxxxxxxxx>
Date: Wed, 09 Mar 2005 18:56:05 +0100
xsl current group
Kessler, Marcy wrote:


Hello All -


I don't think I understand how the current-group () function works
exactly. What I want to do is add "FourHead" and "FiveHead" to the



<pedantic>all current-group() does is return the contents of the 'current group' defined/selected by xsl:for-each-group</pedantic>


following code.  I've attempted to modify this code to accomplish this
and finally got it to be both well-formed in XMLSpy and not have any
errors when processing (using Saxon 8.3).  However, with my changes, I
lose data in the output xml files.

The following is the original code.  Can any of you help me with
understanding how I need to change this to add these elements?

Thank you,
Marcy (still a newbie, but learning)


ok first thing is that the following snippet isnt even well formed (closing tags </section>, </generic>...).

the first select statement for me using current-group() is hard to grok without the hindsight of the rest of your xslt and example xml.

<xsl:apply-templates select="current-group()[self::OneHead]" />
<xsl:for-each-group select="current-group() except ."
group-starting-with="TwoHead">
<xsl:choose>
<xsl:when test="self::TwoHead">
<section>
<xsl:call-template name="addId"/>
<xsl:apply-templates
select="current-group()[self::TwoHead]"/>
<xsl:for-each-group select="current-group() except ."
group-starting-with="ThreeHead">
<xsl:choose>
<xsl:when test="self::ThreeHead">
<section>
<xsl:call-template name="addId"/>
<xsl:apply-templates
select="current-group()[self::*]"/>
</section>
</xsl:when>
<xsl:otherwise>
<xsl:apply-templates
select="current-group()[self::*]"/>
</xsl:otherwise>
</xsl:choose>
</xsl:for-each-group>
</section>
</xsl:when> <xsl:otherwise>
<xsl:for-each-group select="current-group()"
group-starting-with="ThreeHead">
<xsl:choose>
<xsl:when test="self::ThreeHead">
<section>
<xsl:call-template name="addId"/>
<xsl:apply-templates
select="current-group()[self::*]"/>
</section>
</xsl:when>
<xsl:otherwise>
<xsl:apply-templates
select="current-group()[self::*]"/>
</xsl:otherwise>
</xsl:choose>
</xsl:for-each-group>
</xsl:otherwise>
</xsl:choose>
</xsl:for-each-group>


whats going on here ?

</section>
</generic>
</c_support_doc>
</xsl:result-document> </xsl:for-each-group>
</xsl:template>



anyway of providing a simplified yet whole xslt and ex xml ?


gl, Jim Fuller

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.