diff options
author | intrigeri <intrigeri@boum.org> | 2011-05-10 01:07:53 +0200 |
---|---|---|
committer | intrigeri <intrigeri@boum.org> | 2011-05-10 14:48:37 +0200 |
commit | 480fbcc25f97491e6577955e104566ac2f339ebc (patch) | |
tree | 088a79c8ef0f7ad8837b307bc3fb6c764c59b23d /doc | |
parent | 6c684723a5736e60480af2ba488c36512414bdf4 (diff) | |
download | ikiwiki-480fbcc25f97491e6577955e104566ac2f339ebc.tar ikiwiki-480fbcc25f97491e6577955e104566ac2f339ebc.tar.gz |
Guessed right, but practically wrong => let's clear the mess and fix things up?
Diffstat (limited to 'doc')
-rw-r--r-- | doc/bugs/yaml_setup_file_does_not_support_UTF-8_if_XS_is_installed.mdwn | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/doc/bugs/yaml_setup_file_does_not_support_UTF-8_if_XS_is_installed.mdwn b/doc/bugs/yaml_setup_file_does_not_support_UTF-8_if_XS_is_installed.mdwn index c12492c6a..e9ae1883a 100644 --- a/doc/bugs/yaml_setup_file_does_not_support_UTF-8_if_XS_is_installed.mdwn +++ b/doc/bugs/yaml_setup_file_does_not_support_UTF-8_if_XS_is_installed.mdwn @@ -84,3 +84,17 @@ preferred one? >>>>>>> avoid this failure, while resulting in parsed yaml where every >>>>>>> string was likewise not decoded unicode, which is not very useful. >>>>>>> --[[Joey]] + +>>>>>>>> You guessed right about the non-decoded bytes being passed to +>>>>>>>> YAML::XS, except this is the way it shall be done. YAML::XS +>>>>>>>> POD reads: "YAML::XS only deals with streams of utf8 octets". +>>>>>>>> Feed it with non-decoded UTF-8 bytes and it gives you +>>>>>>>> properly encoded UTF-8 Perl strings in exchange. +>>>>>>>> +>>>>>>>> Once this has been made clear, since 1. this module indeed +>>>>>>>> seems to be the future of YAML in Perl, and 2. is depended on +>>>>>>>> by other popular software such as dh-make-perl (on the 2nd +>>>>>>>> degree), I suggest using it explicitly instead of the current +>>>>>>>> "try to support every single YAML Perl module and end up +>>>>>>>> conflicting with the now recommended one" nightmare. +>>>>>>>> --[[intrigeri]] |