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]

RE: How to express a select attr in for-each for conditional or nonconditonal case.


I see.
Ok you want
<xsl:for-each select="$source[contains($keywrd,.)]|$source[$keywrd='']">


Ciao Chris

XML/XSL Portal
http://www.bayes.co.uk/xml


> -----Original Message-----
> From: owner-xsl-list@lists.mulberrytech.com 
> [mailto:owner-xsl-list@lists.mulberrytech.com] On Behalf Of 
> E100 SFYang
> Sent: 20 December 2001 03:35
> To: xsl-list@lists.mulberrytech.com
> Subject: [xsl] How to express a select attr in for-each for 
> conditional or nonconditonal case.
> 
> 
> Hi, listers,
> 
> I use contains function to get the selected item defined
> by select attr of param element. such as;
> 
> <xsl:for-each select="$source[contains($keywrd,.)]">
> 
> Of course using this expression for empty param, nothing will 
> be displayed.
> 
> I wonder how to modify the above select att to be able to display
> 
>  1. selected items when keywrd is not empty.
>  2. all items when keywrd is empty.  
> 
> Thanks for any help in advance.
> 
> Sun-fu Yang
> 
> sfyang@unisvr.net.tw
> 
> ***  simplified xml file  **
> <?xml-stylesheet href="test.xsl" type="text/xsl"?>
> <docs>
> <item>a</item>
> <item>b</item>
> <item>c</item>
> </docs>
> 
> 
> ***   xsl   file  **
> <?xml version='1.0'?>
> <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform";
> version="1.0">
> <xsl:key name="sourcekey" match="item" use="."/>
> <xsl:variable name="source" 
> select="/docs/item[generate-id(.)=generate-id(key('sourcekey',
> .)[1])]"/>
> <xsl:param name="keywrd" select="'a,b'"/>
> <xsl:template match="/">
> 
> <xsl:for-each select="$source[contains($keywrd,.)]">
> <xsl:value-of select="."/>
> </xsl:for-each>
> </xsl:template>
> </xsl:stylesheet>
> 
> 
> 
>  XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
> 
> 


 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]