[XSL-LIST Mailing List Archive Home] [By Thread] [By Date]

Re: [xsl] $variables with xsl:key()


Subject: Re: [xsl] $variables with xsl:key()
From: Wendell Piez <wapiez@xxxxxxxxxxxxxxxx>
Date: Tue, 25 Jul 2006 14:42:34 -0400

Hi Steve,

At 12:47 PM 7/25/2006, you wrote:
What isn't matched about the sample data?

The data you offered:


<Records>
   <Record>
         <disabPrimary>101</disabPrimary>
    </Record>
    <Record>
         <disabPrimary>201</disabPrimary>
    </Record>
    <Record>
         <disabPrimary>151</disabPrimary>
    </Record>

.....etc

And consumer.xml disabilties are like----------

<option oldID="413" type="Physical" name="Cancer"/>
<option oldID="400" type="Cognitive" name="Cerebral Palsy"/>
<option oldID="410" type="Physical" name="Chronic Fatigue Syndrome"/>
<option oldID="305" type="Cognitive" name="Cognitive-Other"/>

In the best case, we'd have a complete if reduced sample where records would appear matching oldIDs you actually represented ... this makes it much easier to run the XSLT engines we keep in our heads, or even engines we run in our computers, to test everything. (List participants have been known to test each other's code in live processors from time to time.)


What do you mean by "key declarations"?

By "key declaration" I mean the top-level element that sets up the key and assigns it a name, as in


<xsl:key name="things-by-id" match="thing" use="@id"/>

Without those it's impossible for us to determine whether you're calling the key in a way that will actually return you the nodes you want.

In your sample stylesheet you actually call two separate keys, "options" and "oldID". The declarations would help us understand what they do and whether there may be an error somewhere.

Cheers,
Wendell


Current Thread
  • [xsl] $variables with xsl:key()
    • Steve - Mon, 24 Jul 2006 13:41:48 -0400
      • Message not available
        • Wendell Piez - Tue, 25 Jul 2006 11:52:41 -0400
          • Steve - Tue, 25 Jul 2006 12:47:34 -0400
          • Message not available
          • Wendell Piez - Tue, 25 Jul 2006 14:42:34 -0400 <=
          • Steve - Tue, 25 Jul 2006 14:57:11 -0400
          • Message not available
          • Wendell Piez - Tue, 25 Jul 2006 15:54:08 -0400
Keywords