* Output the encoding label (still fixed to "utf-8", others are not yet supported), Mantis #19827, #19172.

git-svn-id: trunk@18034 -
This commit is contained in:
sergei 2011-07-29 06:08:04 +00:00
parent 70bc36da85
commit 72dcf89350

View File

@ -673,17 +673,11 @@ begin
else else
wrtStr('1.0'); wrtStr('1.0');
wrtChr('"'); wrtChr('"');
// DISABLED - we are only able write in UTF-8 which does not require labeling // Here we ignore doc.xmlEncoding and write a fixed utf-8 label,
// writing incorrect encoding will render xml unreadable... // because it is the only output encoding currently supported.
(* wrtStr(' encoding="utf-8"');
if Length(TXMLDocument(node).Encoding) > 0 then
begin
wrtStr(' encoding="');
wrtStr(TXMLDocument(node).Encoding);
wrtChr('"');
end;
*)
if TXMLDocument(node).xmlStandalone then if TXMLDocument(node).xmlStandalone then
wrtStr(' standalone="yes"'); wrtStr(' standalone="yes"');