xsl-list
[Top] [All Lists]

Re: [xsl] Sorting using helper structure, position(), xsl:key

2008-04-10 06:18:59

First question: Is it possible, in XSLT 1.0, to sort my items
based on a helper structure like the following,

yes

if $cat stores <Categories) then 

<xsl:sort
select="count($cat/Cat[.=current()/@cat]/preceding-sibling::Cat)"

$cat neets to be a node set (of one node) not an RTF so you need to put
the maping in a source file, perhaps loaded by document() or if you put
it into a RTF variable in the stylesheet use an x;node-set() extension
to make it into a node set. Or use xslt2 where this RTF nonsense goes
away.

Finally, for a huge set of categories, I'd want to use an
xsl:key. How would that fit into the picture? Is it possible
to have the key return the context position? Or would this be
difficult as maybe there is no context when an xsl:key is
built?

in xslt2 you koul just use <xsl:sort select="key('cat',@cat,$cat)" with
the new 3rd argument telling teh system which document to use for the
key, but in xslt1 you have to be in the right document already, which
means that in teh restricted context of xsl:sort you can only use a key
if your mappig element is in teh same document as the nodes over which
you are iterating.

Davud


--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--