Changeset 8215
- Timestamp:
- 11/26/07 20:57:04 (10 months ago)
- Files:
-
- trunk/actionpack/CHANGELOG (modified) (1 diff)
- trunk/actionpack/lib/action_controller/base.rb (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/actionpack/CHANGELOG
r8214 r8215 1 1 *SVN* 2 3 * Minor inconsistency in description of render example. Closes #10029 [ScottSchram] 2 4 3 5 * Add #prepend_view_path and #append_view_path instance methods on ActionController::Base for consistency with the class methods. [rick] trunk/actionpack/lib/action_controller/base.rb
r8214 r8215 765 765 # 766 766 # # Renders the clear text "Hi there!" within the current active layout (if one exists) 767 # render :text => " Explosion!", :layout => true767 # render :text => "Hi there!", :layout => true 768 768 # 769 769 # # Renders the clear text "Hi there!" within the layout 770 770 # # placed in "app/views/layouts/special.r(html|xml)" 771 # render :text => " Explosion!", :layout => "special"771 # render :text => "Hi there!", :layout => "special" 772 772 # 773 773 # The :text option can also accept a Proc object, which can be used to manually control the page generation. This should