summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2008-03-15 11:05:22 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2008-03-15 11:05:22 +0000
commit451aa6ba4e2478fe7a914d8606c5eba5f53fb887 (patch)
tree4fd139fde862eb1ade13b5cbb74aacd8124abda9 /lib
parent01fdaf5977429d8a40682af915d95bf742c97588 (diff)
downloadredmine-451aa6ba4e2478fe7a914d8606c5eba5f53fb887.tar.gz
redmine-451aa6ba4e2478fe7a914d8606c5eba5f53fb887.zip
Add "--encoding utf8" option to the Mercurial "hg log" command in order to get utf8 encoded commit logs (#834).
git-svn-id: http://redmine.rubyforge.org/svn/trunk@1256 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'lib')
-rw-r--r--lib/redmine/scm/adapters/mercurial_adapter.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/redmine/scm/adapters/mercurial_adapter.rb b/lib/redmine/scm/adapters/mercurial_adapter.rb
index f4dffd905..003e4a5df 100644
--- a/lib/redmine/scm/adapters/mercurial_adapter.rb
+++ b/lib/redmine/scm/adapters/mercurial_adapter.rb
@@ -70,7 +70,7 @@ module Redmine
def revisions(path=nil, identifier_from=nil, identifier_to=nil, options={})
revisions = Revisions.new
- cmd = "#{HG_BIN} -v -R #{target('')} log"
+ cmd = "#{HG_BIN} -v --encoding utf8 -R #{target('')} log"
if identifier_from && identifier_to
cmd << " -r #{identifier_from.to_i}:#{identifier_to.to_i}"
elsif identifier_from