This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

merging documents/union


Hi!

I need to write a special kind of "union" template that merges two nodesets.
The structure of these nodesets is not known.
For example those two <node> elements should be merged to one <node> where
the
second overwrites the first:

<node>
  <element-a>first value for element a</element-a>
  <element-b>first value for element b</element-b>
</node>

<node>
  <element-b>second value for element b</element-b>
  <element-c>completly new element c</element-c>
</node>

should be merged to:

<node>
  <element-a>first value for element a</element-a>
  <element-b>second value for element b</element-b>
  <element-c>completly new element c</element-c>
</node>

Is this possible? Can I extend this "union" to support attributes and nested
elements?

Thank you for any help.

	David


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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]