aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoey Hess <joey@gnu.kitenet.net>2009-01-18 14:52:49 -0500
committerJoey Hess <joey@gnu.kitenet.net>2009-01-18 14:52:49 -0500
commit639f464cb3c703697db2a8887ab32d7a8233508f (patch)
tree4686c8539d5a81ff8be47866a979b4f2a0044ffb
parent1802503af1816106ba15d1101081e72c36eeb8bc (diff)
downloadikiwiki-639f464cb3c703697db2a8887ab32d7a8233508f.tar
ikiwiki-639f464cb3c703697db2a8887ab32d7a8233508f.tar.gz
Avoid feeding decoded unicode to Term::ReadLine
That resulted in double encoded display when using perl's stub readline module. Apparently that module unconditionally upgrades text to utf8, in a quite braindead way. (Term::ReadLine::Gnu::Perl worked ok.)
-rw-r--r--IkiWiki/Setup/Automator.pm3
-rw-r--r--debian/changelog7
2 files changed, 9 insertions, 1 deletions
diff --git a/IkiWiki/Setup/Automator.pm b/IkiWiki/Setup/Automator.pm
index b7798fcec..42caf3039 100644
--- a/IkiWiki/Setup/Automator.pm
+++ b/IkiWiki/Setup/Automator.pm
@@ -9,12 +9,13 @@ use IkiWiki;
use IkiWiki::UserInfo;
use Term::ReadLine;
use File::Path;
+use Encode;
sub ask ($$) {
my ($question, $default)=@_;
my $r=Term::ReadLine->new("ikiwiki");
- $r->readline($question." ", $default);
+ $r->readline(encode_utf8($question)." ", $default);
}
sub prettydir ($) {
diff --git a/debian/changelog b/debian/changelog
index 013dc1884..6e8a54d9d 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+ikiwiki (3.03) UNRELEASED; urgency=low
+
+ * Avoid feeding decoded unicode to Term::ReadLine.
+ Closes: 512169
+
+ -- Joey Hess <joeyh@debian.org> Sun, 18 Jan 2009 14:50:57 -0500
+
ikiwiki (3.02) unstable; urgency=low
* blogspam: New plugin, adding spam filtering for page editing / comment