Ruby on Rails | Screencasts | Download | Documentation | Weblog | Community | Source

Changeset 949

Show
Ignore:
Timestamp:
03/20/05 23:12:05 (4 years ago)
Author:
david
Message:

Added pagination support through both a controller and helper add-on #817 [Sam Stephenson]

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/actionpack/CHANGELOG

    r945 r949  
    11*SVN* 
     2 
     3* Added pagination support through both a controller and helper add-on #817 [Sam Stephenson] 
    24 
    35* Fixed routing and helpers to make Rails work on non-vhost setups #826 [Nicholas Seckar/Tobias Luetke] 
  • trunk/actionpack/lib/action_controller.rb

    r838 r949  
    4040require 'action_controller/session' 
    4141require 'action_controller/dependencies' 
     42require 'action_controller/pagination' 
    4243require 'action_controller/scaffolding' 
    4344require 'action_controller/helpers' 
     
    5758  include ActionController::Rescue 
    5859  include ActionController::Dependencies 
     60  include ActionController::Pagination 
    5961  include ActionController::Scaffolding 
    6062  include ActionController::Helpers