summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSaito <saitowu@gmail.com>2011-12-13 00:41:31 +0800
committerSaito <saitowu@gmail.com>2011-12-13 00:41:31 +0800
commitf615c877bcb36aa2e4bc399545376671b55f167e (patch)
tree3749645bb60dd9db9e1b95d93a8f570f962970fe
parent822c0a506043a2e5ba0a58769b398cfe91d3df47 (diff)
downloadgitlab-ce-f615c877bcb36aa2e4bc399545376671b55f167e.tar.gz
fix can not guess problem
-rw-r--r--app/helpers/application_helper.rb1
-rw-r--r--app/helpers/commits_helper.rb2
-rw-r--r--lib/utils.rb3
3 files changed, 3 insertions, 3 deletions
diff --git a/app/helpers/application_helper.rb b/app/helpers/application_helper.rb
index 4706708304c..ed065bc4155 100644
--- a/app/helpers/application_helper.rb
+++ b/app/helpers/application_helper.rb
@@ -1,5 +1,6 @@
require 'digest/md5'
module ApplicationHelper
+ include Utils::CharEncode
def gravatar_icon(user_email)
gravatar_host = request.ssl? ? "https://secure.gravatar.com" : "http://www.gravatar.com"
diff --git a/app/helpers/commits_helper.rb b/app/helpers/commits_helper.rb
index ae7826712a5..98ec9936f11 100644
--- a/app/helpers/commits_helper.rb
+++ b/app/helpers/commits_helper.rb
@@ -1,6 +1,4 @@
module CommitsHelper
- include Utils::CharEncode
-
def old_line_number(line, i)
end
diff --git a/lib/utils.rb b/lib/utils.rb
index 17c9dfe3dd2..2de14761444 100644
--- a/lib/utils.rb
+++ b/lib/utils.rb
@@ -18,13 +18,14 @@ module Utils
module CharEncode
def encode(string)
+ return '' unless string
cd = CharDet.detect(string)
if cd.confidence > 0.6
string.force_encoding(cd.encoding)
end
string.encode("utf-8", :undef => :replace, :replace => "?", :invalid => :replace)
rescue
- "Invalid code encoding"
+ "Invalid Encoding"
end
end