xsl-list
[Top] [All Lists]

Re: Modify one element ?

2004-01-30 06:32:37
Thanks, I found it.
So I'm using an apply-templates on the element I want to change and copy the others.

Lionel



At 13:12 30/01/2004 +0000, you wrote:

Note that XSL has no method of updating an XML tree (unlike DOM
programming) so you can not modify an element you just copy every
element except that one.

Take the indentity transform stylesheet (which appears in the xslt spec,
the faq for this list and most days in te harchives of this list) then
just add one template that matches the element you want to change, and
make it produce the new element, eg

<xsl:template match="author[.='']">
  <author>Lionel</author>
</xsl:template>

would change all empty author elements to <author>Lionel</author>

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

Lionel CRINE
Ingénieur Systèmes documentaires
Société : 4DConcept
22 rue Etienne de Jouy 78353 JOUY EN JOSAS
Tel : 01.34.58.70.70 Fax : 01.39.58.70.70


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



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