Difference between revisions of "xmlwrite"

From Lazarus wiki
Jump to navigationJump to search
(updated description)
Line 2: Line 2:
  
 
== Encodings ==
 
== Encodings ==
At the moment it supports only the UTF-8 output encoding. The encoding label is not written because it is optional for UTF-8.
+
At the moment it supports only the [[UTF-8]] output encoding. The encoding label is not written because it is optional for UTF-8.
  
 
== Character escaping ==
 
== Character escaping ==
Line 14: Line 14:
 
* Single apostrophes (') don't need to get converted, as values are already written using "" quotes.
 
* Single apostrophes (') don't need to get converted, as values are already written using "" quotes.
  
The XML reader (in xmlread.pp) will convert these entity references back to their original characters.
+
The [[xmlread|XML reader]] (in xmlread.pp) will convert these entity references back to their original characters.
  
 
== Exceptions ==
 
== Exceptions ==
Line 22: Line 22:
 
== End-of-line handling ==
 
== End-of-line handling ==
  
At the moment always uses line endings which are default for the target platform (#13#10 for Windows, #10 for Linux).
+
At the moment always uses [[End of Line|line endings]] which are default for the target platform (#13#10 for Windows, #10 for Linux).
 
Moreover, any #13, #10 or #13#10 in input data is treated as a single line-ending.
 
Moreover, any #13, #10 or #13#10 in input data is treated as a single line-ending.
  

Revision as of 11:20, 25 June 2009

Writes a DOM structure as XML data into a file or stream. It can deal both with XML files and XML fragments.

Encodings

At the moment it supports only the UTF-8 output encoding. The encoding label is not written because it is optional for UTF-8.

Character escaping

The writer provides proper character escaping as required by XML:

  • for normal text nodes, the following replacements will be done:
    • '<' => '&lt;'
    • '>' => '&gt;'
    • '&' => '&amp;'
  • For attribute values, additionally '"' (#34) gets replaced by '&quot;', and characters #9, #10 and #13 are escaped using numerical references.
  • Single apostrophes (') don't need to get converted, as values are already written using "" quotes.

The XML reader (in xmlread.pp) will convert these entity references back to their original characters.

Exceptions

Will raise EConvertError if any DOM node contains an unpaired UTF-16 surrogate in its name or value.

End-of-line handling

At the moment always uses line endings which are default for the target platform (#13#10 for Windows, #10 for Linux). Moreover, any #13, #10 or #13#10 in input data is treated as a single line-ending.

Notes

  • The sets of WriteXML() and WriteXMLFile() procedures duplicate each other, one of them is actually redundant.


Back to fcl-xml overview.