Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
1.5.4
-
None
-
linux
java 1.6.0.13
Description
When the source xml contains namespaces, like for example, an xml element having an attribute like
<element xml:lang="en-US" > blabla </element>
The produced markup is
element(xml:lang:'en-US', blabla)
which doesn't compile...
The proper output should have been:
element("xml:lang":'en-US', blabla)