From: Matthieu Moy Date: Wed, 27 Jun 2012 09:10:17 +0000 (+0200) Subject: git-remote-mediawiki: don't "use encoding 'utf8';" X-Git-Tag: v1.7.12-rc0~42^2~4 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=721a533f8c9b152b4510569b3b486437d179c773;p=git.git git-remote-mediawiki: don't "use encoding 'utf8';" The use of this statement is generally discouraged, and is too intrusive for us: it forces the HTTP requests made by the API to contain only valid UTF-8 characters. This would break the upload of binary files. Signed-off-by: Matthieu Moy Signed-off-by: Junio C Hamano --- diff --git a/contrib/mw-to-git/git-remote-mediawiki b/contrib/mw-to-git/git-remote-mediawiki index e929b7a72..4b6149fb5 100755 --- a/contrib/mw-to-git/git-remote-mediawiki +++ b/contrib/mw-to-git/git-remote-mediawiki @@ -36,11 +36,10 @@ use strict; use MediaWiki::API; use DateTime::Format::ISO8601; -use encoding 'utf8'; -# use encoding 'utf8' doesn't change STDERROR -# but we're going to output UTF-8 filenames to STDERR +# By default, use UTF-8 to communicate with Git and the user binmode STDERR, ":utf8"; +binmode STDOUT, ":utf8"; use URI::Escape; use IPC::Open2;