Added ActionController::Base.enable_upload_progress for people who want to play with the experimental upload progress

git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1607 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
David Heinemeier Hansson 2005-07-02 11:29:41 +00:00
parent 50f0a73624
commit eb2b86d795
1 changed files with 6 additions and 0 deletions

View File

@ -325,6 +325,12 @@ module ActionController #:nodoc:
path_of_controller_root = path_of_calling_controller.sub(/#{controller_path.split("/")[0..-2]}$/, "")
self.template_root = path_of_controller_root
end
# Temporary method for enabling upload progress until it's ready to leave experimental mode
def enable_upload_progress # :nodoc:
require 'action_controller/upload_progress'
include ActionController::UploadProgress
end
end
public