xsl-list
[Top] [All Lists]

RE: value-of vs copy-of, was Different templates for same set of nodes

2003-12-12 01:17:03
I was caught out by this one.
I can't think of a title that captures the problem though.
If someone hasn't appreciated the difference between
copy-of and value-of, then that as a title isn't much use.

Any suggestions please.

Say with xml

 <wrapper>
    <content1/>
    <content2>Text nodes</content2>
    <content3>More text nodes</content3>
 </wrapper>

I 'see' 
 <xsl:template match="wrapper">
  <xsl:value-of select="wrapper"/>

showing output of 
   Text nodes
   More text nodes

when what I really want is

    <content1/>
    <content2>Text nodes</content2>
    <content3>More text nodes</content3>

for which 
 <xsl:template match="wrapper">
  <xsl:copy-of select="*"/>


How do people see the problem, to which the above is the solution please?

regards DaveP. 



    > Any idea why it is behaving in this way?
    
    this is a FAQ
    
     <xsl:value-of select="$doc_link"/>
    
    xsl:value-of gives the string value of the expression, and 
    so does not produce any elements.
    
    You want xsl:copy-of
    
    (You asked this question under the wrong thread see the 
    subject lien above which is for your other question on modes)
    
    David
    
    
    --
    http://www.dcarlisle.demon.co.uk/matthew
    
    ____________________________________________________________
    ____________
    This e-mail has been scanned for all viruses by Star 
    Internet. The service is powered by MessageLabs. For more 
    information on a proactive anti-virus service working 
    around the clock, around the globe, visit:
    http://www.star.net.uk
    ____________________________________________________________
    ____________
    
     XSL-List info and archive:  
    http://www.mulberrytech.com/xsl/xsl-list
    

- 
DISCLAIMER: 

NOTICE: The information contained in this email and any attachments is 
confidential and may be privileged. If you are not the intended 
recipient you should not use, disclose, distribute or copy any of the 
content of it or of any attachment; you are requested to notify the 
sender immediately of your receipt of the email and then to delete it 
and any attachments from your system. 

RNIB endeavours to ensure that emails and any attachments generated by 
its staff are free from viruses or other contaminants. However, it 
cannot accept any responsibility for any  such which are transmitted.
We therefore recommend you scan all attachments. 

Please note that the statements and views expressed in this email and 
any attachments are those of the author and do not necessarily represent 
those of RNIB. 

RNIB Registered Charity Number: 226227 

Website: http://www.rnib.org.uk 

 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list



<Prev in Thread] Current Thread [Next in Thread>
  • RE: value-of vs copy-of, was Different templates for same set of nodes, David . Pawson <=