Changeset 6699
- Timestamp:
- 05/08/07 05:48:18 (2 years ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/actionpack/CHANGELOG
r6689 r6699 1 1 *SVN* 2 3 * Included the HttpAuthentication plugin as part of core (ActionController::HttpAuthentication::Basic) [DHH] 2 4 3 5 * Modernize documentation for form helpers. [jeremymcanally] trunk/actionpack/lib/action_controller.rb
r6633 r6699 54 54 require 'action_controller/streaming' 55 55 require 'action_controller/session_management' 56 require 'action_controller/http_authentication' 56 57 require 'action_controller/components' 57 58 require 'action_controller/record_identifier' … … 77 78 include ActionController::Streaming 78 79 include ActionController::SessionManagement 80 include ActionController::HttpAuthentication::Basic::ControllerMethods 79 81 include ActionController::Components 80 82 include ActionController::RecordIdentifier