aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view/template/error.rb
diff options
context:
space:
mode:
authorwycats <wycats@gmail.com>2010-05-17 19:41:54 +0400
committerwycats <wycats@gmail.com>2010-05-17 19:41:54 +0400
commit80b60671f7216c571ea8711d1de8ca824aefbe54 (patch)
treec84be59be24bbd978b257ac526eb9b0f9051389f /actionpack/lib/action_view/template/error.rb
parent5371242384171dc0255716e31e9257ddeec17d10 (diff)
downloadrails-80b60671f7216c571ea8711d1de8ca824aefbe54.tar.gz
rails-80b60671f7216c571ea8711d1de8ca824aefbe54.tar.bz2
rails-80b60671f7216c571ea8711d1de8ca824aefbe54.zip
Revert "Moved encoding work in progress to a feature branch."
This reverts commit ade756fe42423033bae8e5aea8f58782f7a6c517.
Diffstat (limited to 'actionpack/lib/action_view/template/error.rb')
-rw-r--r--actionpack/lib/action_view/template/error.rb18
1 files changed, 18 insertions, 0 deletions
diff --git a/actionpack/lib/action_view/template/error.rb b/actionpack/lib/action_view/template/error.rb
index 6866eabf77..d3a53d2147 100644
--- a/actionpack/lib/action_view/template/error.rb
+++ b/actionpack/lib/action_view/template/error.rb
@@ -4,6 +4,24 @@ module ActionView
class ActionViewError < StandardError #:nodoc:
end
+ class EncodingError < StandardError #:nodoc:
+ end
+
+ class WrongEncodingError < EncodingError #:nodoc:
+ def initialize(string, encoding)
+ @string, @encoding = string, encoding
+ end
+
+ def message
+ "Your template was not saved as valid #{@encoding}. Please " \
+ "either specify #{@encoding} as the encoding for your template " \
+ "in your text editor, or mark the template with its " \
+ "encoding by inserting the following as the first line " \
+ "of the template:\n\n# encoding: <name of correct encoding>.\n\n" \
+ "The source of your template was:\n\n#{@string}"
+ end
+ end
+
class MissingTemplate < ActionViewError #:nodoc:
attr_reader :path