aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/inflector
diff options
context:
space:
mode:
authorKristopher Murata <kris@kside.net>2010-04-04 02:03:41 -0400
committerJeremy Kemper <jeremy@bitsweat.net>2010-04-04 09:37:26 -0700
commitef84e691ffe7b43ce64e859f43b17128a405785a (patch)
tree89d4ae1c41e2f7e8cd27c1912941d0366f1ed258 /activesupport/lib/active_support/inflector
parent98b4424141b4775183618bc307e0e7d09d74df6e (diff)
downloadrails-ef84e691ffe7b43ce64e859f43b17128a405785a.tar.gz
rails-ef84e691ffe7b43ce64e859f43b17128a405785a.tar.bz2
rails-ef84e691ffe7b43ce64e859f43b17128a405785a.zip
Parameterize should accept malformed utf8 characters [#4323 state:resolved]
Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net>
Diffstat (limited to 'activesupport/lib/active_support/inflector')
-rw-r--r--activesupport/lib/active_support/inflector/transliterate.rb5
1 files changed, 4 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/inflector/transliterate.rb b/activesupport/lib/active_support/inflector/transliterate.rb
index 2ce27cf406..ca591abc7d 100644
--- a/activesupport/lib/active_support/inflector/transliterate.rb
+++ b/activesupport/lib/active_support/inflector/transliterate.rb
@@ -1,5 +1,6 @@
# encoding: utf-8
require 'iconv'
+require 'kconv'
require 'active_support/core_ext/string/multibyte'
module ActiveSupport
@@ -44,6 +45,8 @@ module ActiveSupport
# <%= link_to(@person.name, person_path(@person)) %>
# # => <a href="/person/1-donald-e-knuth">Donald E. Knuth</a>
def parameterize(string, sep = '-')
+ # remove malformed utf8 characters
+ string = string.toutf8 unless string.is_utf8?
# replace accented chars with their ascii equivalents
parameterized_string = transliterate(string)
# Turn unwanted chars into the separator
@@ -58,4 +61,4 @@ module ActiveSupport
parameterized_string.downcase
end
end
-end \ No newline at end of file
+end