mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Eliminate an error from an implicit dependency on AV::Base
This commit is contained in:
parent
7f53dca1a1
commit
9f92563892
3 changed files with 25 additions and 24 deletions
|
@ -44,13 +44,15 @@ module ActionView
|
|||
|
||||
autoload :Base
|
||||
autoload :LookupContext
|
||||
autoload :MissingTemplate, 'action_view/base'
|
||||
autoload :Resolver, 'action_view/template/resolver'
|
||||
autoload :PathResolver, 'action_view/template/resolver'
|
||||
autoload :FileSystemResolver, 'action_view/template/resolver'
|
||||
autoload :PathSet, 'action_view/paths'
|
||||
|
||||
autoload :MissingTemplate, 'action_view/template/error'
|
||||
autoload :ActionViewError, 'action_view/template/error'
|
||||
autoload :TemplateError, 'action_view/template/error'
|
||||
|
||||
autoload :TemplateHandler, 'action_view/template'
|
||||
autoload :TemplateHandlers, 'action_view/template'
|
||||
end
|
||||
|
|
|
@ -7,27 +7,6 @@ module ActionView #:nodoc:
|
|||
class NonConcattingString < ActiveSupport::SafeBuffer
|
||||
end
|
||||
|
||||
class ActionViewError < StandardError #:nodoc:
|
||||
end
|
||||
|
||||
class MissingTemplate < ActionViewError #:nodoc:
|
||||
attr_reader :path
|
||||
|
||||
def initialize(paths, path, details, partial)
|
||||
@path = path
|
||||
display_paths = paths.compact.map{ |p| p.to_s.inspect }.join(", ")
|
||||
template_type = if partial
|
||||
"partial"
|
||||
elsif path =~ /layouts/i
|
||||
'layout'
|
||||
else
|
||||
'template'
|
||||
end
|
||||
|
||||
super("Missing #{template_type} #{path} with #{details.inspect} in view paths #{display_paths}")
|
||||
end
|
||||
end
|
||||
|
||||
# Action View templates can be written in three ways. If the template file has a <tt>.erb</tt> (or <tt>.rhtml</tt>) extension then it uses a mixture of ERb
|
||||
# (included in Ruby) and HTML. If the template file has a <tt>.builder</tt> (or <tt>.rxml</tt>) extension then Jim Weirich's Builder::XmlMarkup library is used.
|
||||
# If the template file has a <tt>.rjs</tt> extension then it will use ActionView::Helpers::PrototypeHelper::JavaScriptGenerator.
|
||||
|
|
|
@ -1,6 +1,26 @@
|
|||
require "active_support/core_ext/enumerable"
|
||||
|
||||
module ActionView
|
||||
class ActionViewError < StandardError #:nodoc:
|
||||
end
|
||||
|
||||
class MissingTemplate < ActionViewError #:nodoc:
|
||||
attr_reader :path
|
||||
|
||||
def initialize(paths, path, details, partial)
|
||||
@path = path
|
||||
display_paths = paths.compact.map{ |p| p.to_s.inspect }.join(", ")
|
||||
template_type = if partial
|
||||
"partial"
|
||||
elsif path =~ /layouts/i
|
||||
'layout'
|
||||
else
|
||||
'template'
|
||||
end
|
||||
|
||||
super("Missing #{template_type} #{path} with #{details.inspect} in view paths #{display_paths}")
|
||||
end
|
||||
end
|
||||
class Template
|
||||
# The Template::Error exception is raised when the compilation of the template fails. This exception then gathers a
|
||||
# bunch of intimate details and uses it to report a very precise exception message.
|
||||
|
@ -73,11 +93,11 @@ module ActionView
|
|||
end
|
||||
|
||||
def to_s
|
||||
"\n#{self.class} (#{message}) #{source_location}:\n" +
|
||||
"\n#{self.class} (#{message}) #{source_location}:\n" +
|
||||
"#{source_extract}\n #{clean_backtrace.join("\n ")}\n\n"
|
||||
end
|
||||
|
||||
# don't do anything nontrivial here. Any raised exception from here becomes fatal
|
||||
# don't do anything nontrivial here. Any raised exception from here becomes fatal
|
||||
# (and can't be rescued).
|
||||
def backtrace
|
||||
@backtrace
|
||||
|
|
Loading…
Reference in a new issue