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

Re: Ignoring Duplicates In key()

Subject: Re: Ignoring Duplicates In key()
From: "Bob Portnell" <simply.bobp@xxxxxxxxx>
Date: Thu, 14 Sep 2006 11:46:24 -0700
xml redaction component
Whoops, spoke too soon. That gives a similar result when applied to
the original XSLT. More specifically, creating a new key

<xsl:key name="ComponentByValue" match="component" use="." />

       <xsl:for-each select="key('ComponentByGroup',$group)">
            <xsl:sort select="."/>
            <xsl:if test="generate-id(.) =
generate-id(key('ComponentByValue',.)[1])">

Still only generates ", gewgaw".

Rats!

Still here,
Bob Portnell
simply.bobp@xxxxxxxxx

On 9/14/06, Bob Portnell <simply.bobp@xxxxxxxxx> wrote:
Hmm. Okay, answer found:
http://www.biglist.com/lists/xsl-list/archives/200006/msg00748.html

Sorry for the distraction.
BobP

On 9/14/06, Bob Portnell <simply.bobp@xxxxxxxxx> wrote:
> Here's some fun in XSLT 1.0, using variously the MSXML 3.0 or xsltproc
> processors (result behaviors are the same).
>
> Here's some data...
>
>    <factor group="0" >
>       <number>100</number>
>       <components>
>         <component>widget</component>
>       </components>
>     </factor>
>     <factor group="1">
>       <number>110</number>
>        <components>
>         <component>widget</component>
>         <component>gewgaw</component>
>       </components>
>     </factor>
>     <factor group="1">
>       <number>112</number>
>       <components>
>         <component>gewgaw</component>
>       </components>
>     </factor>
>
> My need is to create a string of unique "components" in a "group". The
> original XSLT for this relied on a recursion structure and wasn't
> successfully blocking duplicates. My notion was to just wait for it to
> finish all the recursion (for its other needs), and then hit it with a
> key(), defined thus:
>
> (XSLT fragment)
>
> <xsl:key name="ComponentByGroup" match="component" use="../../@group" />
>
> (and then)
>
> <xsl:variable name="ComponentString">
>     <xsl:for-each
> select="key('ComponentByGroup',$group)[not(.=preceding::component)]">
>         <xsl:sort select="."/>
>         <xsl:if test="position() > 1">
>             <xsl:text>, </xsl:text>
>         </xsl:if>
>         <xsl:value-of select="." />
>     </xsl:for-each>
> </xsl:variable>
>
> The desired output would be "gewgaw, widget", but for some reason I'm
> getting only "widget." When applied to more complex data, in one case
> where 12 items should be displayed, it's correctly stopping the
> duplicates but also making two singletons vanish.
>
> The [not(.=preceding::component)] is the basic structure I found for
> reducing duplicates, but it doesn't seem to play quite nicely with the
> key() ... it's reducing too many!
>
> Thoughts welcome.
>
> Bob Portnell
> simply.bobp@xxxxxxxxx

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.