提交 e3b69533 编写于 作者: R Rafael Mendonça França

Merge pull request #12110 from strzalek/revert-default-protected-instance-vars

Revert default protected instance vars
......@@ -373,6 +373,8 @@ class Base < AbstractController::Base
include AbstractController::AssetPaths
include AbstractController::Callbacks
self.protected_instance_variables = [:@_action_has_layout]
helper ActionMailer::MailHelper
private_class_method :new #:nodoc:
......@@ -385,10 +387,6 @@ class Base < AbstractController::Base
parts_order: [ "text/plain", "text/enriched", "text/html" ]
}.freeze
def self.default_protected_instance_vars
super.concat [:@_action_has_layout]
end
class << self
# Register one or more Observers which will be notified when mail is delivered.
def register_observers(*observers)
......
......@@ -114,11 +114,6 @@ def method_added(name)
end
end
# Define some internal variables that should not be propagated to the view.
def self.default_protected_instance_vars
[]
end
abstract!
# Calls the action going through the entire action dispatch stack.
......
......@@ -13,8 +13,9 @@ def initialize(message = nil)
module Rendering
extend ActiveSupport::Concern
def self.default_protected_instance_vars
super.concat [:@_action_name, :@_response_body, :@_formats, :@_prefixes, :@_config]
included do
class_attribute :protected_instance_variables
self.protected_instance_variables = []
end
# Raw rendering of a template to a string.
......@@ -47,14 +48,20 @@ def render(*args, &block)
def rendered_format
end
DEFAULT_PROTECTED_INSTANCE_VARIABLES = %w(
@_action_name @_response_body @_formats @_prefixes @_config
@_view_context_class @_view_renderer @_lookup_context
)
# This method should return a hash with assigns.
# You can overwrite this configuration per controller.
# :api: public
def view_assigns
hash = {}
(instance_variables - self.class.default_protected_instance_vars).each do |name|
hash[name[1..-1]] = instance_variable_get(name)
end
variables = instance_variables
variables -= protected_instance_variables
variables -= DEFAULT_PROTECTED_INSTANCE_VARIABLES
variables.each { |name| hash[name[1..-1]] = instance_variable_get(name) }
hash
end
......
......@@ -261,12 +261,11 @@ def self.without_modules(*modules)
include mod
end
def self.default_protected_instance_vars
super.concat [
# Define some internal variables that should not be propagated to the view.
self.protected_instance_variables = [
:@_status, :@_headers, :@_params, :@_env, :@_response, :@_request,
:@_view_runtime, :@_stream, :@_url_options, :@_action_has_layout
]
end
ActiveSupport.run_load_hooks(:action_controller, self)
end
......
......@@ -17,7 +17,7 @@ def before_filters
def assigns(key = nil)
assigns = {}
instance_variables.each do |ivar|
next if ActionController::Base.default_protected_instance_vars.include?(ivar)
next if ActionController::Base.protected_instance_variables.include?(ivar)
assigns[ivar[1..-1]] = instance_variable_get(ivar)
end
......
......@@ -109,10 +109,6 @@ def rendered_format
Mime[lookup_context.rendered_format]
end
def default_protected_instance_vars
super.concat([:@_view_context_class, :@_view_renderer, :@_lookup_context])
end
private
# Normalize args and options.
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册