xsl-list
[Top] [All Lists]

RE: excluding xml fragments by attributes using copy-of?

2002-12-16 02:23:19
Mike Brown wrote:
Carl Yu wrote:
I'm trying to translate one XML document to another using XSL but I
can't come 
up with the proper XSL.

lets say the incoming document has this form

[...snip...]

The transformed file would ideally be 

[...snip...]

Notice how D was changed to DPRIME.  I want to retain all of the nodes
and 
attributes of the rest of the original XML file, but change the contents
of

select="/A/B/C[value='foo']" from D to DPRIME.

Use the identity transformation (a recursive copy-through), as described
in
the XSLT spec under "Copying".

Add this template to it:

<xsl:template match="C[value='foo']/D">
  <Dprime/>
</xsl:template>

From the XML given, shouldn't that be:

  C[(_at_)value='foo']/D

Dan.

-- 
Danny Yates
Technical Architect
Abbey National Treasury Services
E-mail: Danny(_dot_)Yates(_at_)ants(_dot_)co(_dot_)uk
Phone: +44 20 7756 5012
Fax: +44 20 7612 4342


***************************************************************************
This communication (including any attachments) contains confidential 
information.  If you are not the intended recipient and you have received this 
communication in error, you should destroy it without copying, disclosing or 
otherwise using its contents.  Please notify the sender immediately of the 
error.

Internet communications are not necessarily secure and may be intercepted or 
changed after they are sent.  Abbey National Treasury Services plc does not 
accept liability for any loss you may suffer as a result of interception or any 
liability for such changes.  If you wish to confirm the origin or content of 
this communication, please contact the sender by using an alternative means of 
communication.

This communication does not create or modify any contract and, unless otherwise 
stated, is not intended to be contractually binding.

Abbey National Treasury Services plc. Registered Office:  Abbey National House, 
2 Triton Square, Regents Place, London NW1 3AN.  Registered in England under 
Company Registration Number: 2338548.  Regulated by the Financial Services 
Authority (FSA).
***************************************************************************


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



<Prev in Thread] Current Thread [Next in Thread>