diff options
author | Joey Hess <joey@kodama.kitenet.net> | 2008-02-11 00:11:49 -0500 |
---|---|---|
committer | Joey Hess <joey@kodama.kitenet.net> | 2008-02-11 00:11:49 -0500 |
commit | 4aab5f0a73e9e4643ce8174613bd700cf7c3ab68 (patch) | |
tree | eee6a113c6a91bdae42af47b48f6adeb412b3326 /IkiWiki | |
parent | 402938941406ab2bf611eee6f0b7de2b9c09c2d3 (diff) | |
download | ikiwiki-4aab5f0a73e9e4643ce8174613bd700cf7c3ab68.tar ikiwiki-4aab5f0a73e9e4643ce8174613bd700cf7c3ab68.tar.gz |
* Generate XML RPC messages with the encoding set to utf-8 instead
of XML::RPC's default of us-ascii. Allows interoperation with
python's xmlrpc library, which threw invalid encoding exceptions and
caused the rst plugin to hang.
Diffstat (limited to 'IkiWiki')
-rw-r--r-- | IkiWiki/Plugin/external.pm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/IkiWiki/Plugin/external.pm b/IkiWiki/Plugin/external.pm index 8d1baa587..a5afdc4be 100644 --- a/IkiWiki/Plugin/external.pm +++ b/IkiWiki/Plugin/external.pm @@ -29,6 +29,7 @@ sub import { #{{{ $plugins{$plugin}={in => $plugin_read, out => $plugin_write, pid => $pid, accum => ""}; + $RPC::XML::ENCODING="utf-8"; rpc_call($plugins{$plugin}, "import"); } #}}} |