|
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] RE: Grouping on multiple nested elements
Hi,
> I have no problem grouping by program_name using the
> Muenchian method -
> there is only one program_name for each story. However,
> grouping by subject
> has me stumped - do I need multiple keys and how do I keep
> track of the
> current subject?
Did you mean
<xsl:key name="story" match="story" use="subjects/subject" />
<xsl:key name="subject" match="subject" use="." />
<xsl:template match="data">
<xsl:for-each select="story/subjects/subject[generate-id() = generate-id(key('subject', .))]">
<xsl:sort select="." />
<xsl:value-of select="." />
<xsl:text>

</xsl:text>
<xsl:for-each select="key('story', .)">
<xsl:text> </xsl:text>
<xsl:value-of select="story_title" />
<xsl:text>
 </xsl:text>
<xsl:value-of select="description" />
<xsl:text>

</xsl:text>
</xsl:for-each>
</xsl:for-each>
</xsl:template>
"Launch auto-documentation daemon" and all that,
Santtu
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|
PURCHASE STYLUS STUDIO ONLINE TODAY!Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced! Download The World's Best XML IDE!Accelerate XML development with our award-winning XML IDE - Download a free trial today! Subscribe in XML format
|

Cart








