Sha256: 37a7123704adb56eac19fc52d4507b32c4c7407540eb01830f95d12e583ced52

Contents?: true

Size: 919 Bytes

Versions: 6

Compression:

Stored size: 919 Bytes

Contents

# wrap the action rendering for ActiveScaffold controllers
module ActiveScaffold
  module ActionController #:nodoc:
    def render(*args, &block)
      if self.class.uses_active_scaffold? && params[:adapter] && @rendering_adapter.nil? && request.xhr?
        @rendering_adapter = true # recursion control
        # if we need an adapter, then we render the actual stuff to a string and insert it into the adapter template
        opts = args.blank? ? {} : args.first
        render :partial => params[:adapter][1..-1],
               :locals => {:payload => render_to_string(opts.merge(:layout => false), &block).html_safe},
               :use_full_path => true, :layout => false, :content_type => :html
        @rendering_adapter = nil # recursion control
      else
        super(*args, &block)
      end
    end
  end
end

module ActionController
  class Base
    prepend ActiveScaffold::ActionController
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
active_scaffold-3.5.5 lib/active_scaffold/extensions/action_controller_rendering.rb
active_scaffold-3.5.4 lib/active_scaffold/extensions/action_controller_rendering.rb
active_scaffold-3.5.3 lib/active_scaffold/extensions/action_controller_rendering.rb
active_scaffold-3.5.2 lib/active_scaffold/extensions/action_controller_rendering.rb
active_scaffold-3.5.1 lib/active_scaffold/extensions/action_controller_rendering.rb
active_scaffold-3.5.0 lib/active_scaffold/extensions/action_controller_rendering.rb