i want to render multiple xml-sources with a single xsl-source. the xml-sources
could have the same structure, but sould be rendered differently. let's assume 2
xml-sources:
first:
<doc>
<item>bla</item>
</doc>
second:
<doc>
<item>bla</item>
</doc>
my thought was to combine the two xml-source like this:
<composition>
<doc1:doc xmlns:doc1="http://bla/doc1">
<item>bla</item>
</doc1:doc>
<doc2:doc xmlns:doc2="http://bla/doc2">
<item>bla</item>
</doc2:doc>
</composition>
the two sources could be identified by their different namespace. is this the
right approach ?
regards
oliver bruening
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|