diff options
author | Victor Costan <costan@gmail.com> | 2012-02-19 03:58:52 -0500 |
---|---|---|
committer | Victor Costan <costan@gmail.com> | 2012-02-19 03:58:52 -0500 |
commit | 64fa7f72581e86cd75d052867bdf520e5fb09386 (patch) | |
tree | 5d9d52f0f3321d45c6b1aa91feb6ea321732c0e9 /railties | |
parent | b2e9bbdcffa0bfe9dc7953dc57f035b08fda04e7 (diff) | |
download | rails-64fa7f72581e86cd75d052867bdf520e5fb09386.tar.gz rails-64fa7f72581e86cd75d052867bdf520e5fb09386.tar.bz2 rails-64fa7f72581e86cd75d052867bdf520e5fb09386.zip |
Removed (outdated?) config.action_view.logger from configuration guide.
Diffstat (limited to 'railties')
-rw-r--r-- | railties/guides/source/configuring.textile | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/railties/guides/source/configuring.textile b/railties/guides/source/configuring.textile index 2488f86450..98582946b4 100644 --- a/railties/guides/source/configuring.textile +++ b/railties/guides/source/configuring.textile @@ -337,7 +337,7 @@ h4. Configuring Action Dispatch h4. Configuring Action View -There are only a few configuration options for Action View, starting with four on +ActionView::Base+: +There are only a few configuration options for Action View, starting with three on +ActionView::Base+: * +config.action_view.field_error_proc+ provides an HTML generator for displaying errors that come from Active Record. The default is @@ -347,8 +347,6 @@ Proc.new { |html_tag, instance| %Q(<div class="field_with_errors">#{html_tag}</d * +config.action_view.default_form_builder+ tells Rails which form builder to use by default. The default is +ActionView::Helpers::FormBuilder+. -* +config.action_view.logger+ accepts a logger conforming to the interface of Log4r or the default Ruby Logger class, which is then used to log information from Action Mailer. Set to +nil+ to disable logging. - * +config.action_view.erb_trim_mode+ gives the trim mode to be used by ERB. It defaults to +'-'+. See the "ERB documentation":http://www.ruby-doc.org/stdlib/libdoc/erb/rdoc/ for more information. * +config.action_view.javascript_expansions+ is a hash containing expansions that can be used for the JavaScript include tag. By default, this is defined as: |