提交 83f4d86a 编写于 作者: D David Heinemeier Hansson

Rename the RenderingController module to just plain Rendering

上级 bdccffc4
......@@ -253,7 +253,7 @@ module ActionMailer #:nodoc:
class Base
include AdvAttrAccessor, PartContainer, Quoting, Utils
include AbstractController::RenderingController
include AbstractController::Rendering
include AbstractController::LocalizedCache
include AbstractController::Layouts
......
......@@ -15,6 +15,6 @@ module AbstractController
autoload :Layouts
autoload :LocalizedCache
autoload :Logger
autoload :RenderingController
autoload :Rendering
end
end
......@@ -4,7 +4,7 @@ module AbstractController
module Helpers
extend ActiveSupport::Concern
include RenderingController
include Rendering
def self.next_serial
@helper_serial ||= 0
......
......@@ -2,7 +2,7 @@ module AbstractController
module Layouts
extend ActiveSupport::Concern
include RenderingController
include Rendering
included do
extlib_inheritable_accessor(:_layout_conditions) { Hash.new }
......
......@@ -10,7 +10,7 @@ def initialize(message = nil)
end
end
module RenderingController
module Rendering
extend ActiveSupport::Concern
include AbstractController::Logger
......@@ -80,7 +80,7 @@ def render_to_body(options = {})
#
# :api: plugin
def render_to_string(options = {})
AbstractController::RenderingController.body_to_s(render_to_body(options))
AbstractController::Rendering.body_to_s(render_to_body(options))
end
# Renders the template from an object.
......
......@@ -25,7 +25,7 @@ module ActionController
autoload :RackConvenience
autoload :Compatibility
autoload :Redirector
autoload :RenderingController
autoload :Rendering
autoload :RenderOptions
autoload :Rescue
autoload :Responder
......
......@@ -9,7 +9,7 @@ class Base < Metal
include ActionController::HideActions
include ActionController::UrlFor
include ActionController::Redirector
include ActionController::RenderingController
include ActionController::Rendering
include ActionController::RenderOptions::All
include ActionController::Layouts
include ActionController::ConditionalGet
......
......@@ -158,7 +158,7 @@ module ActionController
module Layouts
extend ActiveSupport::Concern
include ActionController::RenderingController
include ActionController::Rendering
include AbstractController::Layouts
module ClassMethods
......
module ActionController
module RenderingController
module Rendering
extend ActiveSupport::Concern
included do
include AbstractController::RenderingController
include AbstractController::Rendering
include AbstractController::LocalizedCache
end
......
......@@ -4,7 +4,7 @@ module ActionController #:nodoc:
module Streaming
extend ActiveSupport::Concern
include ActionController::RenderingController
include ActionController::Rendering
DEFAULT_SEND_FILE_OPTIONS = {
:type => 'application/octet-stream'.freeze,
......
......@@ -2,7 +2,7 @@ module ActionController #:nodoc:
module Verification #:nodoc:
extend ActiveSupport::Concern
include AbstractController::Callbacks, Session, Flash, RenderingController
include AbstractController::Callbacks, Session, Flash, Rendering
# This module provides a class-level method for specifying that certain
# actions are guarded against being called without certain prerequisites
......
......@@ -28,7 +28,7 @@ class TestBasic < ActiveSupport::TestCase
# Test Render mixin
# ====
class RenderingController < AbstractController::Base
include ::AbstractController::RenderingController
include ::AbstractController::Rendering
def _prefix() end
......
......@@ -6,7 +6,7 @@ module AbstractController
module Testing
class ControllerWithHelpers < AbstractController::Base
include AbstractController::RenderingController
include AbstractController::Rendering
include Helpers
def with_module
......
......@@ -6,7 +6,7 @@ module Layouts
# Base controller for these tests
class Base < AbstractController::Base
include AbstractController::RenderingController
include AbstractController::Rendering
include AbstractController::Layouts
self.view_paths = [ActionView::FixtureResolver.new(
......
......@@ -4,7 +4,7 @@ module AbstractController
module Testing
class CachedController < AbstractController::Base
include AbstractController::RenderingController
include AbstractController::Rendering
include AbstractController::LocalizedCache
self.view_paths = [ActionView::FixtureResolver.new(
......
......@@ -4,7 +4,7 @@ module AbstractController
module Testing
class ControllerRenderer < AbstractController::Base
include AbstractController::RenderingController
include AbstractController::Rendering
self.view_paths = [ActionView::FixtureResolver.new(
"default.erb" => "With Default",
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册