aboutsummaryrefslogtreecommitdiffstats
path: root/railties/doc
diff options
context:
space:
mode:
authorJeff Dean <jeff@zilkey.com>2008-11-16 23:09:26 -0500
committerJeff Dean <jeff@zilkey.com>2008-11-16 23:09:26 -0500
commit223ffb5fa50b217b1f62025f4fb11c7a6e9e431d (patch)
tree9b18544d519f785558a2dcc112cffa8d8291513f /railties/doc
parente08af7219795d28fe9e9eb5f0dc2e7488541382e (diff)
parent80f5f265471e8d53b66f432c203206c1a4197121 (diff)
downloadrails-223ffb5fa50b217b1f62025f4fb11c7a6e9e431d.tar.gz
rails-223ffb5fa50b217b1f62025f4fb11c7a6e9e431d.tar.bz2
rails-223ffb5fa50b217b1f62025f4fb11c7a6e9e431d.zip
Merge branch 'master' of git@github.com:lifo/docrails
Diffstat (limited to 'railties/doc')
-rw-r--r--railties/doc/guides/source/configuring.txt18
1 files changed, 18 insertions, 0 deletions
diff --git a/railties/doc/guides/source/configuring.txt b/railties/doc/guides/source/configuring.txt
index dde04ffb05..1fb73abbb8 100644
--- a/railties/doc/guides/source/configuring.txt
+++ b/railties/doc/guides/source/configuring.txt
@@ -101,8 +101,26 @@ The Active Record session store can also be configured:
=== Configuring Action View
+There are only a few configuration options for Action View, starting with four on +ActionView::Base+:
+
++debug_rjs+ specifies whether RJS responses should be wrapped in a try/catch block that alert()s the caught exception (and then re-raises it). The default is +false+.
+
++warn_cache_misses+ tells Rails to display a warning whenever an action results in a cache miss on your view paths. The default is +false+.
+
++field_error_proc+ provides an HTML generator for displaying errors that come from Active Record. The default is +Proc.new{ |html_tag, instance| "<div class=\"fieldWithErrors\">#{html_tag}</div>" }+
+
++default_form_builder+ tells Rails which form builder to use by default. The default is +ActionView::Helpers::FormBuilder+.
+
+The ERB template handler supplies one additional option:
+
++ActionView::TemplateHandlers::ERB.erb_trim_mode+ gives the trim mode to be used by ERB. It defaults to +'-'+.
+
=== Configuring Action Mailer
+There are a number of settings available on +ActionMailer::Base+:
+
+
+
=== Configuring Active Resource
=== Configuring Active Support