On Tue Apr 21 15:37:35 2009, andrewksmith@gmail.com wrote:
Show quoted text> If you have vertical tabs (character 11) in your character data
> XML::Writer crashes.
This check is by design, to prevent invalid XML 1.0. Using UNSAFE mode
will relax the check.
The XML 1.0 charset requirements:
http://www.w3.org/TR/REC-xml/#charsets
only allow certain characters:
Char ::=
#x9 | #xA | #xD | [#x20-#xD7FF] | [#xE000-#xFFFD] | [#x10000-#x10FFFF]
/* any Unicode character, excluding the surrogate blocks, FFFE, and
FFFF. */
and XML::Writer enforces that.