module ActionController::Base::DeprecatedBehavior

def allow_concurrency

def allow_concurrency
  ActiveSupport::Deprecation.warn "ActionController::Base.allow_concurrency is deprecated, " <<
    "use Rails.application.config.allow_concurrency instead", caller
  Rails.application.config.allow_concurrency
end

def allow_concurrency=(value)

def allow_concurrency=(value)
  ActiveSupport::Deprecation.warn "ActionController::Base.allow_concurrency= is deprecated. " <<
    "Please configure it on your application with config.allow_concurrency=", caller
  Rails.application.config.allow_concurrency = value
end

def consider_all_requests_local

def consider_all_requests_local
  ActiveSupport::Deprecation.warn "ActionController::Base.consider_all_requests_local is deprecated, " <<
    "use Rails.application.config.consider_all_requests_local instead", caller
  Rails.application.config.consider_all_requests_local
end

def consider_all_requests_local=(value)

def consider_all_requests_local=(value)
  ActiveSupport::Deprecation.warn "ActionController::Base.consider_all_requests_local= is deprecated. " <<
    "Please configure it on your application with config.consider_all_requests_local=", caller
  Rails.application.config.consider_all_requests_local = value
end

def cookie_verifier_secret

def cookie_verifier_secret
  ActiveSupport::Deprecation.warn "ActionController::Base.cookie_verifier_secret is deprecated.", caller
end

def cookie_verifier_secret=(value)

def cookie_verifier_secret=(value)
  ActiveSupport::Deprecation.warn "ActionController::Base.cookie_verifier_secret= is deprecated. " <<
    "Please configure it on your application with config.secret_token=", caller
end

def exempt_from_layout(*)

def exempt_from_layout(*)
  ActiveSupport::Deprecation.warn "exempt_from_layout is no longer needed, because layouts in Rails 3 " \
    "are restricted to the content-type of the template that was rendered.", caller
end

def filter_parameter_logging(*args, &block)

This method has been moved to ActionDispatch::Request.filter_parameters
def filter_parameter_logging(*args, &block)
  ActiveSupport::Deprecation.warn("Setting filter_parameter_logging in ActionController is deprecated and has no longer effect, please set 'config.filter_parameters' in config/application.rb instead", caller)
  filter = Rails.application.config.filter_parameters
  filter.concat(args)
  filter << block if block
  filter
end

def ip_spoofing_check

def ip_spoofing_check
  ActiveSupport::Deprecation.warn "ActionController::Base.ip_spoofing_check is deprecated. " <<
    "Configuring ip_spoofing_check on the application configures a middleware.", caller
  Rails.application.config.action_dispatch.ip_spoofing_check
end

def ip_spoofing_check=(value)

def ip_spoofing_check=(value)
  ActiveSupport::Deprecation.warn "ActionController::Base.ip_spoofing_check= is deprecated. " <<
    "Please configure it on your application with config.action_dispatch.ip_spoofing_check=", caller
  Rails.application.config.action_dispatch.ip_spoofing_check = value
end

def relative_url_root

:nodoc:
(like the verify method.)
Deprecated methods. Wrap them in a module so they can be overwritten by plugins
def relative_url_root
  ActiveSupport::Deprecation.warn "ActionController::Base.relative_url_root is ineffective. " <<
    "Please stop using it.", caller
end

def relative_url_root=

def relative_url_root=
  ActiveSupport::Deprecation.warn "ActionController::Base.relative_url_root= is ineffective. " <<
    "Please stop using it.", caller
end

def resource_action_separator

Controls the resource action separator
def resource_action_separator
  @resource_action_separator ||= "/"
end

def resource_action_separator=(val)

def resource_action_separator=(val)
  ActiveSupport::Deprecation.warn "ActionController::Base.resource_action_separator is deprecated and only " \
                                  "works with the deprecated router DSL."
  @resource_action_separator = val
end

def session(*args)

def session(*args)
  ActiveSupport::Deprecation.warn(
    "Disabling sessions for a single controller has been deprecated. " +
    "Sessions are now lazy loaded. So if you don't access them, " +
    "consider them off. You can still modify the session cookie " +
    "options with request.session_options.", caller)
end

def session=(value)

def session=(value)
  ActiveSupport::Deprecation.warn "ActionController::Base.session= is deprecated. " <<
    "Please configure it on your application with config.session_store :cookie_store, :key => '....'", caller
  if secret = value.delete(:secret)
    Rails.application.config.secret_token = secret
  end
  if value.delete(:disabled)
    Rails.application.config.session_store :disabled
  else
    store = Rails.application.config.session_store
    Rails.application.config.session_store store, value
  end
end

def trusted_proxies

def trusted_proxies
  ActiveSupport::Deprecation.warn "ActionController::Base.trusted_proxies is deprecated. " <<
    "Configuring trusted_proxies on the application configures a middleware.", caller
  Rails.application.config.action_dispatch.ip_spoofing_check = value
end

def trusted_proxies=(value)

def trusted_proxies=(value)
  ActiveSupport::Deprecation.warn "ActionController::Base.trusted_proxies= is deprecated. " <<
    "Please configure it on your application with config.action_dispatch.trusted_proxies=", caller
  Rails.application.config.action_dispatch.ip_spoofing_check = value
end

def use_accept_header

def use_accept_header
  ActiveSupport::Deprecation.warn "ActionController::Base.use_accept_header doesn't do anything anymore. " \
                                  "The accept header is always taken into account."
end

def use_accept_header=(val)

def use_accept_header=(val)
  use_accept_header
end

def verify(*args)

This was moved to a plugin
def verify(*args)
  ActiveSupport::Deprecation.warn "verify was removed from Rails and is now available as a plugin. " \
    "Please install it with `rails plugin install git://github.com/rails/verification.git`.", caller
end