xsl-list
[Top] [All Lists]

Re: [xsl] Relationships in for-each statement

2006-09-07 14:27:24

you could probably speed this al up (greatly) by using keys (// can be
an expensive operation) but get it working first...

not sure what you want but possibilitie for avoiding having that big //
twice are

<xsl:variable name="x" select="//member[(role='Actor') or (role='Guest Star') or
(role='Host')][concat(tv:givenname, ' ', tv:surname) = $matcher]"/>

<xsl:if test="$x"> stuff...

<xsl:for-each select="$x/../@program"..

If you just want to llop over those programs and don't need the varable
you could do something like

<xsl:for-each select="/productionCrew/crew[member[(role='Actor') or 
(role='Guest Star') or
(role='Host')][concat(tv:givenname, ' ', tv:surname) =
$matcher]]/@program">

David



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