scm: mercurial: path encoding support for "cat" in adapter (#2664).

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@4928 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA 2011-02-23 00:34:27 +00:00 committed by Eric Davis
parent 6caa0f1ce8
commit 4bd39c9df5
1 changed files with 2 additions and 1 deletions

View File

@ -228,7 +228,8 @@ module Redmine
end
def cat(path, identifier=nil)
hg 'cat', '-r', hgrev(identifier), hgtarget(path) do |io|
p = CGI.escape(scm_iconv(@path_encoding, 'UTF-8', path))
hg 'rhcat', '-r', hgrev(identifier), hgtarget(p) do |io|
io.binmode
io.read
end