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]

RE: Controlling which nodes to process


Hi  Mike,

it works fine.

Thanks for your help

Pascal Troadec

> -----Original Message-----
> From:	Michael Kay 
> Sent:	Freitag, 6. Juli 2001 15:22
> To:	xsl-list@lists.mulberrytech.com
> Subject:	RE: [xsl] Controlling  which nodes to process
> 
> > is there an expression to select all the children except one ?
> > something as : <xsl:apply-templates select="* and not( caption)"/>
> 
> <xsl:apply-templates select="*[not(self::caption)]"/>
> 
> Strictly this processes all the child ELEMENTS except the caption elements;
> if you want all the child NODES except the caption elements write:
> 
> <xsl:apply-templates select="node()[not(self::caption)]"/>
> 
> Mike Kay
> Software AG
> 
> 
>  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]