[
Lists Home |
Date Index |
Thread Index
]
- From: smessenger@mms.org
- To: xml-dev@lists.xml.org
- Date: Fri, 21 Jul 2000 11:37:01 -0400
You could use XSL to create a new XML document from these two sources, and
write a windows or similar script to output your resultant file, eh?
-----
Sean Messenger
Senior Internet Developer
Massachusetts Medical Society, www.mms.org
-----
smessenger@mms.org
781.434.7581
-----
'If you're not part of the solution, you're part of the precipitate.'
> -----Original Message-----
> From: Eric Casteel [SMTP:Eric.Casteel@brinker.com]
> Sent: Friday, July 21, 2000 11:24 AM
> To: 'E.L. Willighagen'; xml-dev@lists.xml.org
> Subject: RE: tool for merging two DOM trees?
>
> Wow, it would have to handle nesting of elements, and attributes at every
> level. What if there was an ambiguity of elements when merging? Sounds
> like it would be a fun project.
>
> Eric C
>
>
> -----Original Message-----
> From: E.L. Willighagen [mailto:egonw@sci.kun.nl]
> Sent: Friday, July 21, 2000 2:11 AM
> To: xml-dev@lists.xml.org
> Subject: Q: tool for merging two DOM trees?
>
>
>
> Hi all, i am looking for a tool two merge two DOM trees containing the
> following XML data:
>
> DOM1:
> <themes>
> <theme id="appl">
> <title xml:lang="nl">Toepassingen</title>
> </theme>
> </themes>
>
> DOM2:
> <themes>
> <theme id="appl">
> <title xml:lang="en">Applications</title>
> </theme>
> </themes>
>
> The output should be something like:
>
> <themes>
> <theme id="appl">
> <title xml:lang="en">Applications</title>
> <title xml:lang="nl">Toepassingen</title>
> </theme>
> </themes>
>
>
> Thus:
> 1. every node available twices -> one is removed
> 2. child nodes which are different -> merge
>
> Is there a tool available for this purpose? (Any programming language.)
>
> yours,
>
> Egon Willighagen
|