How to transform this XML file:
<file>
<text ID="201" date="2014-05-04">
<user_name>user_11</user_name>
<message> HELLO </message>
</text>
</file>
into this XML file by using XSLT 1.0:
<doc>
<user name="user_11">
<text id="201" date="2014-05-04"> HELLO </text>
</user>
</doc>
Also if you have any resources on the subject, please post because I have a lot more of XSLT file to code. thanks