Changeset 1571
- Timestamp:
- 06/30/05 08:29:14 (3 years ago)
- Files:
-
- trunk/actionpack/CHANGELOG (modified) (1 diff)
- trunk/actionpack/lib/action_controller.rb (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/actionpack/CHANGELOG
r1570 r1571 6 6 7 7 * Routes fail with leading slash #1540 [Nicholas Seckar] 8 9 * EXPERIMENTAL (problems on various different server setups): Added support for upload progress indicators in Apache and lighttpd 1.4.x (won't work in WEBrick or lighttpd 1.3.x) #1475 [Sean Treadway]10 See http://sean.treadway.info/files/howto-upload-progress-2.mov for example.11 8 12 9 * Added support for graceful error handling of Ajax calls #1217 [Jamis Buck/Thomas Fuchs]. Example: trunk/actionpack/lib/action_controller.rb
r1552 r1571 49 49 require 'action_controller/components' 50 50 require 'action_controller/verification' 51 require 'action_controller/upload_progress'52 51 require 'action_controller/streaming' 53 52 require 'action_controller/auto_complete' … … 71 70 include ActionController::Components 72 71 include ActionController::Verification 73 include ActionController::UploadProgress74 72 include ActionController::Streaming 75 73 include ActionController::AutoComplete