Hi, let me rephrase the question to make it more comprehendable.
Initially, I had input file with this format.
<Activity routeattr="4ID">
but later I had changed it to
<Activity>
<routetag>4ID</routetag>..
The XSLT has to slightly tinkered to allow this modification.
This paste contains Orginal input.xml, transform.xsl and output.xml file
http://paste.plone.org/12700
The modiifcation as I mentioned above is that Activity's attribute is swapped to become the Activity's Child.
In this below paste, I have given the new input.xml, transform.xsl( I have highlighted the changes with "CHANGE HERE" comments) and the output.xml file which
http://paste.plone.org/12726
As you can see, the output inside the <route> in the output.xml is different in the 2 output.xml files.
Instead of
<route>
<t>Email</t>....
</route>
I gotten this instead
<route>
4ID....
</route>
I hope I have tried my best to clarify my problem as much as I can.
Thanks for any help.
Regards