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

Changeset 1571

Show
Ignore:
Timestamp:
06/30/05 08:29:14 (3 years ago)
Author:
david
Message:

Dont include the upload progress automatically before it works better

Files:

Legend:

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

    r1570 r1571  
    66 
    77* 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. 
    118 
    129* Added support for graceful error handling of Ajax calls #1217 [Jamis Buck/Thomas Fuchs]. Example: 
  • trunk/actionpack/lib/action_controller.rb

    r1552 r1571  
    4949require 'action_controller/components' 
    5050require 'action_controller/verification' 
    51 require 'action_controller/upload_progress' 
    5251require 'action_controller/streaming' 
    5352require 'action_controller/auto_complete' 
     
    7170  include ActionController::Components 
    7271  include ActionController::Verification 
    73   include ActionController::UploadProgress 
    7472  include ActionController::Streaming 
    7573  include ActionController::AutoComplete