I have a main XML document like this:
<chapter xmlns:xi="http://www.w3.org/2001/XInclude" xml:id="chapter1">
<title>First chapter</title>
<section xml:id="section1">
<imageobject>
<id>aa12</id>
<image fileref="image1.jpg"/>
</imageobject>
<imageobject>
<id>bb13</id>
<image fileref="image2.jpg"/>
</imageobject>
</section>
<section xml:id="section2" xml:base="../other/section1.xml">
<imageobject>
<id>ab14</id>
<image fileref="image1.jpg"/>
</imageobject>
<imageobject>
<id>ab15</id>
<image fileref="image2.jpg"/>
</imageobject>
<section xml:id="section3" xml:base="../some-other/more/section3.xml">
<imageobject>
<id>ac16</id>
<image fileref="image1.jpg"/>
</imageobject>
</section>
</section>
<section xml:id="section4" xml:base="../some-other/section4.xml">
<imageobject>
<id>ac17</id>
<image fileref="image2.jpg"/>
</imageobject>
</section>
</chapter>
and another XML file and values like:
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<NewData>
<Rename id="ab14" imageName="aaaa.jpg"/>
<Rename id="ab15" imageName="bbbb.jpg"/>
<Rename id="ac16" imageName="cccc.jpg"/>
<Rename id="ac17" imageName="dddd.jpg"/>
</NewData>
And finally I need an output something like below which is replaced by correct renamed image name according to id value.
<chapter xmlns:xi="http://www.w3.org/2001/XInclude" xml:id="chapter1">
<title>First chapter</title>
<section xml:id="section1">
<imageobject>
<image fileref="image1.jpg"/>
</imageobject>
<imageobject>
<image fileref="image2.jpg"/>
</imageobject>
</section>
<section xml:id="section2" xml:base="../other/section1.xml">
<imageobject>
<image fileref="aaaa.jpg"/>
</imageobject>
<imageobject>
<image fileref="bbbb.jpg"/>
</imageobject>
<section xml:id="section3" xml:base="../some-other/more/section3.xml">
<imageobject>
<image fileref="cccc.jpg"/>
</imageobject>
</section>
</section>
<section xml:id="section4" xml:base="../some-other/section4.xml">
<imageobject>
<image fileref="dddd.jpg"/>
</imageobject>
</section>
</chapter>
What happens here is this: if the id attribute in first XML document matches an id attribute from the second XML, then the value of fileref in the first document is replaced by the matching imageName from the second XML file.
Please see the example I have given here.
How can I do this using XSLT 1.0?
I am using Saxon or Xsltproc processors.
Thanks in advance..!!