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

Changeset 6699

Show
Ignore:
Timestamp:
05/08/07 05:48:18 (2 years ago)
Author:
david
Message:

Included the HttpAuthentication plugin as part of core (ActionController::HttpAuthentication::Basic) [DHH]

Files:

Legend:

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

    r6689 r6699  
    11*SVN* 
     2 
     3* Included the HttpAuthentication plugin as part of core (ActionController::HttpAuthentication::Basic) [DHH] 
    24 
    35* Modernize documentation for form helpers. [jeremymcanally] 
  • trunk/actionpack/lib/action_controller.rb

    r6633 r6699  
    5454require 'action_controller/streaming' 
    5555require 'action_controller/session_management' 
     56require 'action_controller/http_authentication' 
    5657require 'action_controller/components' 
    5758require 'action_controller/record_identifier' 
     
    7778  include ActionController::Streaming 
    7879  include ActionController::SessionManagement 
     80  include ActionController::HttpAuthentication::Basic::ControllerMethods 
    7981  include ActionController::Components 
    8082  include ActionController::RecordIdentifier