aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2005-06-30 08:16:57 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2005-06-30 08:16:57 +0000
commitbab674c681a1e28d44caeb6b7430273aaaaf4e71 (patch)
treebb82a8d78e1c8e6a5fa0954eeb22d0ca8b64af47 /actionpack/lib
parent7e1d002673777bb1240e27949a853a8f287d1f56 (diff)
downloadrails-bab674c681a1e28d44caeb6b7430273aaaaf4e71.tar.gz
rails-bab674c681a1e28d44caeb6b7430273aaaaf4e71.tar.bz2
rails-bab674c681a1e28d44caeb6b7430273aaaaf4e71.zip
File upload progress seems to have problems on a variety of servers, marking as experimental for now and not including it in the docs
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1570 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionpack/lib')
-rw-r--r--actionpack/lib/action_controller/upload_progress.rb5
-rw-r--r--actionpack/lib/action_view/helpers/upload_progress_helper.rb2
2 files changed, 3 insertions, 4 deletions
diff --git a/actionpack/lib/action_controller/upload_progress.rb b/actionpack/lib/action_controller/upload_progress.rb
index ce8d51c67d..1e45f9daf2 100644
--- a/actionpack/lib/action_controller/upload_progress.rb
+++ b/actionpack/lib/action_controller/upload_progress.rb
@@ -126,15 +126,14 @@ module ActionController #:nodoc:
# end
#
#
- module UploadProgress
-
+ module UploadProgress #:nodoc:
def self.append_features(base) #:nodoc:
super
base.extend(ClassMethods)
base.helper_method :upload_progress, :next_upload_id, :last_upload_id, :current_upload_id
end
- module ClassMethods
+ module ClassMethods #:nodoc:
# Creates an +after_filter+ which will call +finish_upload_status+
# creating the document that will be loaded into the hidden IFRAME, terminating
# the status polling forms created with +form_with_upload_progress+.
diff --git a/actionpack/lib/action_view/helpers/upload_progress_helper.rb b/actionpack/lib/action_view/helpers/upload_progress_helper.rb
index 1af8bce754..d9e3400a6e 100644
--- a/actionpack/lib/action_view/helpers/upload_progress_helper.rb
+++ b/actionpack/lib/action_view/helpers/upload_progress_helper.rb
@@ -51,7 +51,7 @@ module ActionView
#
# Default styling is included with the scaffolding CSS.
#
- module UploadProgressHelper
+ module UploadProgressHelper #:nodoc:
unless const_defined? :FREQUENCY
# Default number of seconds between client updates
FREQUENCY = 2.0