aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport
diff options
context:
space:
mode:
authorJeremy Kemper <jeremy@bitsweat.net>2009-04-26 16:21:57 -0700
committerJeremy Kemper <jeremy@bitsweat.net>2009-04-26 16:21:57 -0700
commit8aaed3d456bad8a0bdf4789b69b41f7d817f981c (patch)
tree82fa51a0a66571d143d7ad6a2b4702e8724a0d5f /activesupport
parent1d71a34afa206e611d2dc5368c55cc4aed25ba01 (diff)
downloadrails-8aaed3d456bad8a0bdf4789b69b41f7d817f981c.tar.gz
rails-8aaed3d456bad8a0bdf4789b69b41f7d817f981c.tar.bz2
rails-8aaed3d456bad8a0bdf4789b69b41f7d817f981c.zip
Convert encoding before escaping
Diffstat (limited to 'activesupport')
-rw-r--r--activesupport/lib/active_support/json.rb11
1 files changed, 6 insertions, 5 deletions
diff --git a/activesupport/lib/active_support/json.rb b/activesupport/lib/active_support/json.rb
index b2ebe9adc8..5072992cdf 100644
--- a/activesupport/lib/active_support/json.rb
+++ b/activesupport/lib/active_support/json.rb
@@ -28,13 +28,14 @@ module ActiveSupport
}
def self.escape(string)
- json = '"' + string.gsub(escape_regex) { |s| ESCAPED_CHARS[s] }
- json.force_encoding('ascii-8bit') if respond_to?(:force_encoding)
- json.gsub(/([\xC0-\xDF][\x80-\xBF]|
+ string = string.dup.force_encoding(::Encoding::BINARY) if string.respond_to?(:force_encoding)
+ json = string.gsub(escape_regex) { |s| ESCAPED_CHARS[s] }.
+ gsub(/([\xC0-\xDF][\x80-\xBF]|
[\xE0-\xEF][\x80-\xBF]{2}|
[\xF0-\xF7][\x80-\xBF]{3})+/nx) { |s|
- s.unpack("U*").pack("n*").unpack("H*")[0].gsub(/.{4}/, '\\\\u\&')
- } + '"'
+ s.unpack("U*").pack("n*").unpack("H*")[0].gsub(/.{4}/, '\\\\u\&')
+ }
+ %("#{json}")
end
end