[xsl] for loop in conditional statement
by Eric Smith other posts by this author
Nov 19 2001 12:40PM messages near this date
Re: [xsl] Looping over a CSV in XSL
|
Re: [xsl] for loop in conditional statement
In the xsl conditional statement below, I would like to have some
kind of for loop that will generate these rules for both 'executive'
and 'public' etc...
How?
<xsl:if test="
( $output='executive' and
(
ancestor::executive
or
@executive
or
contains(@include,'executive')
or
contains(@exclusive,'executive')
)
and not(contains(@reject,'executive'))
and not(@exclusive and not(contains(@exclusive,'executive')))
)
or
( $output='public' and
(
ancestor::public
or
@public
or
contains(@include,'public')
or
contains(@exclusive,'public')
)
and not(contains(@reject,'public'))
and not(@exclusive and not(contains(@exclusive,'public')))
)
etc...
">
--
Eric Smith - currently using xalan and fop on linux
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
Thread:
Eric Smith
David Carlisle
|