Subject: Re: [xsl] Fwd: Combing two different documents From: "David B" <daavidb@xxxxxxxxx> Date: Mon, 17 Jul 2006 16:33:35 +0100 |
Hey guys, thanks for all the answers. I supposed what I really want is something like this: function merge: For each element in file1 and file2: * If element available in both documents, output element and go into that element in both documents, call merge() * If element available in only one document, copy that element and all it's subelements to the output
Thus combining two documents where the depth where they "seperate" isn't fixed.
Best Regards, David
Mukul Gandhi wrote:interface rivolutionnaire.
Hi
> <xsl:template match="*[not(*)]"> > <xsl:copy-of select="." /> > <xsl:copy-of select="$doc2//*[not(*)]" /> > </xsl:template>
With this template rue, you'll copy *all* leaves of the second document after *each* leaf of the first one. The solution proposed by Andrew does the right think IMHO.
Personally, I'd walk through the second tree in parallel with the first one, by passing the current node in the second tree as a parameter in xsl:apply-templates.
Regards,
--drkm
___________________________________________________________________________ Yahoo! Mail riinvente le mail ! Dicouvrez le nouveau Yahoo! Mail et son
http://fr.mail.yahoo.com
Current Thread |
---|
|
<- Previous | Index | Next -> |
---|---|---|
Re: [xsl] Fwd: Combing two differen, Florent Georges | Thread | RE: [xsl] Fwd: Combing two differen, cknell |
Re: [xsl] Fwd: Combing two differen, Florent Georges | Date | Re: [xsl] Fwd: Combing two differen, Mukul Gandhi |
Month |