xsl-list
[Top] [All Lists]

Re: [xsl] set union? xslt 2.0

2010-04-08 04:26:09
On 08/04/2010 10:15, Dave Pawson wrote:
Stylesheet parameter of the form "term1|term2|data" I.e. one or more
sought 'terms' So could be just 'term1'

xml source of the form

<skillarea targets="data|general">

I.e. for grouped elements, the terms may or may not overlap with
the targets.

Problem:
    How to select and apply templates to the skillarea elements which
    have at least one
  item in common with the terms?
Either in an apply-templates select attribute or perhaps
better in a 'template match=""' attribute.




E.g. the terms and targets overlap here with the item 'data' and
hence are wanted in the output.

TIA



<xsl;template select="skillarea[tokenize(@targets,'|')=tokenize($param,'|')]"/>

if you're worried about repeatedly tokenizing the attributes probably you can optimise this with a key or some such, or perhaps saxon will optimise for you behind the scenes or perhaps it's fast enough anyway.

David


________________________________________________________________________
The Numerical Algorithms Group Ltd is a company registered in England
and Wales with company number 1249803. The registered office is:
Wilkinson House, Jordan Hill Road, Oxford OX2 8DR, United Kingdom.

This e-mail has been scanned for all viruses by Star. The service is
powered by MessageLabs. ________________________________________________________________________

--~------------------------------------------------------------------
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>
--~--

<Prev in Thread] Current Thread [Next in Thread>