aboutsummaryrefslogblamecommitdiffstats
path: root/actionpack/lib/action_controller/new_base/renderer.rb
blob: f21fd746b7f60efb701e7355c512542773ada521 (plain) (tree)
1
2
3
4
5
6
7
8
9

                       
                                           
    




                            
                            

                               
                    
       
 
                               
                            

                                                                          
                                   
                                                     
                                 
                                                        
                                    
         
      


                                                             

       





                     
                      
                           


                       
                    


         
                                 


                                                                      
       
     
   
module ActionController
  module Renderer
    depends_on AbstractController::Renderer
    
    def initialize(*)
      self.formats = [:html]
      super
    end
    
    def render(options = {})
      _process_options(options)
      
      super(options)
    end

    def render_to_body(options)
      if options.key?(:text)
        options[:_template] = ActionView::TextTemplate.new(_text(options))
        template = nil
      elsif options.key?(:template)
        options[:_template_name] = options[:template]
      elsif options.key?(:action)
        options[:_template_name] = options[:action].to_s
        options[:_prefix] = _prefix 
      end
      
      ret = super(options)
      response.content_type ||= options[:_template].mime_type
      ret
    end
    
  private
  
    def _prefix
      controller_path
    end  
  
    def _text(options)
      text = options[:text]

      case text
      when nil then " "
      else text.to_s
      end
    end
  
    def _process_options(options)
      status, content_type = options.values_at(:status, :content_type)
      response.status = status.to_i if status
      response.content_type = content_type if content_type
    end
  end
end