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

Changeset 6992

Show
Ignore:
Timestamp:
06/11/07 00:51:11 (1 year ago)
Author:
bitsweat
Message:

Deprecation: remove pagination. Install the classic_pagination plugin for forward compatibility, or move to the superior will_paginate plugin. Closes #8157.

Files:

Legend:

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

    r6970 r6992  
    11*SVN* 
     2 
     3* Deprecation: remove pagination. Install the classic_pagination plugin for forward compatibility, or move to the superior will_paginate plugin.  #8157 [Josh Peek] 
    24 
    35* Action caching is limited to GET requests returning 200 OK status.  #3335 [tom@craz8.com, halfbyte, Dan Kubb, Josh Peek] 
  • trunk/actionpack/lib/action_controller.rb

    r6729 r6992  
    4545require 'action_controller/layout' 
    4646require 'action_controller/mime_responds' 
    47 require 'action_controller/pagination' 
    4847require 'action_controller/scaffolding' 
    4948require 'action_controller/helpers' 
     
    7069  include ActionController::Rescue 
    7170  include ActionController::MimeResponds 
    72   include ActionController::Pagination 
    7371  include ActionController::Scaffolding 
    7472  include ActionController::Helpers