Report encoding should be UTF-8
-------------------------------
Key: IVY-816
URL: https://issues.apache.org/jira/browse/IVY-816
Project: Ivy
Issue Type: Improvement
Components: Core
Affects Versions: 2.0.0-beta-2, 2.0.0-beta-1
Reporter: Jim Bonanno
The xsd for ivy specifies xs:string for the values of module and organisation,
so non 8859 characters are supported.
<xs:attribute name="organisation" type="xs:string"
use="required"/>
<xs:attribute name="module" type="xs:string"
use="required"/>
But currently the ivy report is written with xml encoding 8859.
out.println("<?xml version=\"1.0\" encoding=\"ISO-8859-1\"?>");
out.println("<?xml-stylesheet type=\"text/xsl\"
href=\"ivy-report.xsl\"?>");
If the encoding written from XmlReportWriter was changed to UTF-8 then the
report could display dbcs characters.
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.