From a8eb90fcee1efdc491c9eb030827b46929ea979c Mon Sep 17 00:00:00 2001 From: Jeremy Kemper Date: Thu, 10 Jan 2008 03:17:20 +0000 Subject: Move fragment caching from special helper methods to TemplateHandler. Closes #10754 [Josh Peek] git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@8619 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- actionpack/lib/action_view/template_handlers/rjs.rb | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'actionpack/lib/action_view/template_handlers/rjs.rb') diff --git a/actionpack/lib/action_view/template_handlers/rjs.rb b/actionpack/lib/action_view/template_handlers/rjs.rb index 4ca9fc3277..bd51cc4d39 100644 --- a/actionpack/lib/action_view/template_handlers/rjs.rb +++ b/actionpack/lib/action_view/template_handlers/rjs.rb @@ -9,6 +9,17 @@ module ActionView "controller.response.content_type ||= Mime::JS\n" + "update_page do |page|\n#{template}\nend" end + + def cache_fragment(block, name = {}, options = nil) #:nodoc: + @view.fragment_for(block, name, options) do + begin + debug_mode, ActionView::Base.debug_rjs = ActionView::Base.debug_rjs, false + eval('page.to_s', block.binding) + ensure + ActionView::Base.debug_rjs = debug_mode + end + end + end end end end -- cgit v1.2.3