diff options
author | José Valim <jose.valim@gmail.com> | 2011-06-16 17:04:31 -0300 |
---|---|---|
committer | José Valim <jose.valim@gmail.com> | 2011-06-16 17:04:31 -0300 |
commit | f44db45c87561dca3f29555132504a4cbf19857e (patch) | |
tree | 6141107e5ddc61440aabca26e76ace3a5d7b811d /activesupport/lib | |
parent | 594603b45f1248380068c4a32ac62283fe061e82 (diff) | |
download | rails-f44db45c87561dca3f29555132504a4cbf19857e.tar.gz rails-f44db45c87561dca3f29555132504a4cbf19857e.tar.bz2 rails-f44db45c87561dca3f29555132504a4cbf19857e.zip |
safe_concat should not work on dirty buffers.
Diffstat (limited to 'activesupport/lib')
-rw-r--r-- | activesupport/lib/active_support/core_ext/string/output_safety.rb | 17 |
1 files changed, 13 insertions, 4 deletions
diff --git a/activesupport/lib/active_support/core_ext/string/output_safety.rb b/activesupport/lib/active_support/core_ext/string/output_safety.rb index c56ac16203..71f3879e49 100644 --- a/activesupport/lib/active_support/core_ext/string/output_safety.rb +++ b/activesupport/lib/active_support/core_ext/string/output_safety.rb @@ -77,10 +77,19 @@ module ActiveSupport #:nodoc: class SafeBuffer < String UNSAFE_STRING_METHODS = ["capitalize", "chomp", "chop", "delete", "downcase", "gsub", "lstrip", "next", "reverse", "rstrip", "slice", "squeeze", "strip", "sub", "succ", "swapcase", "tr", "tr_s", "upcase"].freeze - # TODO: Should safe_concat check if the current buffer is dirty or not? - # We should probably raise as it would mean we are adding concatenating - # to something that is safe but it actually isn't. - alias safe_concat concat + alias_method :original_concat, :concat + private :original_concat + + class SafeConcatError < StandardError + def initialize + super "Could not concatenate to the buffer because it is not html safe." + end + end + + def safe_concat(value) + raise SafeConcatError if dirty? + original_concat(value) + end def initialize(*) @dirty = false |