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: Xalan to transform only selected elements of XML



> I have XML with a few elements. When I am applying a 
> .XSL file for transformation, I want to remove a few
> elements. In other words, I want only some of the
> elements of XML to get transformmed. It seems that
> even *with* and *without* following lines in .XSL file
> <xsl:template match="/">
>    <xsl:apply-templates/>
> </xsl:template>
> the value of all the elements are getting transformeed
> into resulting transformmed file. So the question is:
> Using Xalan how can I transform only selected elements
> and not all?

You'll need 'blank' templates for the tags you want
to filter out. Eg.

<xsl:template match="begone"/>

Morten

> I would appreciate any quick help and/or work around.
> 
> 
> 
> 
> 
> __________________________________________________
> Do You Yahoo!?
> Kick off your party with Yahoo! Invites.
> http://invites.yahoo.com/
> 
> 
>  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]