This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]