blob: 77cfa51dffa4e6959dad2b32db07858903835def (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
module ActionView
class AbstractRenderer #:nodoc:
attr_reader :vew, :lookup_context
delegate :find_template, :template_exists?, :with_fallbacks, :update_details,
:with_layout_format, :formats, :to => :lookup_context
def initialize(view)
@view = view
@lookup_context = view.lookup_context
end
def render
raise NotImplementedError
end
# Checks if the given path contains a format and if so, change
# the lookup context to take this new format into account.
def wrap_formats(value)
return yield unless value.is_a?(String)
@@formats_regexp ||= /\.(#{Mime::SET.symbols.join('|')})$/
if value.sub!(@@formats_regexp, "")
update_details(:formats => [$1.to_sym]){ yield }
else
yield
end
end
protected
def instrument(name, options={})
ActiveSupport::Notifications.instrument("render_#{name}.action_view", options){ yield }
end
end
end
|