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: copying only elements


Oops - sorry, the "name" attribute on the xsl:copy is meaningless. This
should have been:

 <xsl:template match="*">
   <xsl:copy>
     <xsl:apply-templates select="*"/>
   </xsl:copy>
 </xsl:template>



James Melton wrote:
> 
> <xsl:template match="*">
>   <xsl:copy name=".">
>     <xsl:apply-templates select="*"/>
>   </xsl:copy>
> </xsl:template>
> 
> -Jim
> 
> john smith wrote:
> >
> > How can I copy just the elements of a node (no attributes and no values).
> > For example, given the following xml:
> >
> > <EMAIL id="2">
> >   <FROM>JOHN</FROM>
> >   <TO>JACK</TO>
> >   <SUBJECT x="5">Hello</SUBJECT>
> > </EMAIL>
> >
> > I want to copy this:
> >
> > <EMAIL>
> >   <FROM></FROM>
> >   <TO></TO>
> >   <SUBJECT></SUBJECT>
> > </EMAIL>
> >
> > In other words, copy just the elements (no attributes and no values).
> >
> > Thanks
> >
> > _________________________________________________________________
> > Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp
> >
> >  XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
> 
> --
> 
> ____________________________________________________________
> James Melton                 CyLogix
> 609.750.5190                 609.750.5100
> james.melton@cylogix.com     www.cylogix.com
> 
>  XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list

-- 

____________________________________________________________
James Melton                 CyLogix
609.750.5190                 609.750.5100
james.melton@cylogix.com     www.cylogix.com

 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]