ASPN ActiveState Programmer Network
ActiveState
/ Home / Perl / PHP / Python / Tcl / XSLT /
/ Safari / My ASPN /
Cookbooks | Documentation | Mailing Lists | Modules | News Feeds | Products | User Groups


Recent Messages
List Archives
About the List
List Leaders
Subscription Options

View Subscriptions
Help

View by Topic
ActiveState
.NET Framework
Open Source
Perl
PHP
Python
Tcl
Web Services
XML & XSLT

View by Category
Database
General
SOAP
System Administration
Tools
User Interfaces
Web Programming
XML Programming


MyASPN >> Mail Archive >> xsl-list
xsl-list
[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

Privacy Policy | Email Opt-out | Feedback | Syndication
© ActiveState Software Inc. All rights reserved