mirror of
https://github.com/github/rails.git
synced 2026-01-31 01:08:19 -05:00
Minor inconsistency in description of render example. Closes #10029 [ScottSchram]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@8215 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
@@ -1,5 +1,7 @@
|
||||
*SVN*
|
||||
|
||||
* Minor inconsistency in description of render example. Closes #10029 [ScottSchram]
|
||||
|
||||
* Add #prepend_view_path and #append_view_path instance methods on ActionController::Base for consistency with the class methods. [rick]
|
||||
|
||||
* Refactor sanitizer helpers into HTML classes and make it easy to swap them out with custom implementations. Closes #10129. [rick]
|
||||
|
||||
@@ -764,11 +764,11 @@ module ActionController #:nodoc:
|
||||
# render :text => "Explosion!", :status => 500
|
||||
#
|
||||
# # Renders the clear text "Hi there!" within the current active layout (if one exists)
|
||||
# render :text => "Explosion!", :layout => true
|
||||
# render :text => "Hi there!", :layout => true
|
||||
#
|
||||
# # Renders the clear text "Hi there!" within the layout
|
||||
# # placed in "app/views/layouts/special.r(html|xml)"
|
||||
# render :text => "Explosion!", :layout => "special"
|
||||
# render :text => "Hi there!", :layout => "special"
|
||||
#
|
||||
# The :text option can also accept a Proc object, which can be used to manually control the page generation. This should
|
||||
# generally be avoided, as it violates the separation between code and content, and because almost everything that can be
|
||||
|
||||
Reference in New Issue
Block a user