RE: [xsl] Merging two xml files

Subject: RE: [xsl] Merging two xml files
From: "Kielen, Agnes" <Agnes.Kielen@xxxxxxxxxxxxxx>
Date: Wed, 14 Jan 2004 13:21:38 +0100
Bette than mine

Cheers,
Agnes



-----Original Message-----
From: David Carlisle [mailto:davidc@xxxxxxxxx]
Sent: dinsdag 13 januari 2004 16:48
To: xsl-list@xxxxxxxxxxxxxxxxxxxxxx
Subject: Re: [xsl] Merging two xml files




	      <xsl:variable name="pincode"
    select="$addresses/employees/employee[$id =
    @id]/@pincode"/>
    	    <employee pincode="{$pincode}">


You don't want to do that as it will make pincode="" if there is no
attribute in the source, just do

	  <employee>	
  <xsl:copy-of select="$addresses/employees/employee[$id = @id]/@pincode"/>

as this will do nothing if there is no attribute  and copy it if
there is.

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



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


Current Thread