CARVIEW |
Select Language
HTTP/2 302
server: nginx
date: Fri, 08 Aug 2025 01:54:43 GMT
content-type: text/plain; charset=utf-8
content-length: 0
x-archive-redirect-reason: found capture at 20100310201935
location: https://web.archive.org/web/20100310201935/https://github.com/rails/upload_progress
server-timing: captures_list;dur=0.950485, exclusion.robots;dur=0.066301, exclusion.robots.policy;dur=0.024506, esindex;dur=0.015952, cdx.remote;dur=9.011478, LoadShardBlock;dur=261.376371, PetaboxLoader3.datanode;dur=75.001976, PetaboxLoader3.resolve;dur=55.572055
x-app-server: wwwb-app202
x-ts: 302
x-tr: 312
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=1
set-cookie: wb-p-SERVER=wwwb-app202; path=/
x-location: All
x-rl: 0
x-na: 0
x-page-cache: MISS
server-timing: MISS
x-nid: DigitalOcean
referrer-policy: no-referrer-when-downgrade
permissions-policy: interest-cohort=()
HTTP/2 200
server: nginx
date: Fri, 08 Aug 2025 01:54:43 GMT
content-type: text/html; charset=utf-8
x-archive-orig-server: nginx/0.7.61
x-archive-orig-date: Wed, 10 Mar 2010 20:19:35 GMT
x-archive-orig-connection: close
x-archive-orig-status: 200 OK
x-archive-orig-etag: "38afb364b3c4d295170c1f34a93e73f0"
x-archive-orig-x-runtime: 102ms
x-archive-orig-content-length: 25278
x-archive-orig-cache-control: private, max-age=0, must-revalidate
x-archive-guessed-content-type: text/html
x-archive-guessed-charset: utf-8
memento-datetime: Wed, 10 Mar 2010 20:19:35 GMT
link: ; rel="original", ; rel="timemap"; type="application/link-format", ; rel="timegate", ; rel="first memento"; datetime="Sun, 27 Sep 2009 12:30:35 GMT", ; rel="prev memento"; datetime="Mon, 15 Feb 2010 05:15:38 GMT", ; rel="memento"; datetime="Wed, 10 Mar 2010 20:19:35 GMT", ; rel="next memento"; datetime="Mon, 12 Apr 2010 11:41:28 GMT", ; rel="last memento"; datetime="Sun, 06 Sep 2020 08:36:46 GMT"
content-security-policy: default-src 'self' 'unsafe-eval' 'unsafe-inline' data: blob: archive.org web.archive.org web-static.archive.org wayback-api.archive.org athena.archive.org analytics.archive.org pragma.archivelab.org wwwb-events.archive.org
x-archive-src: 51_14_20100310170849_crawl101-c/51_14_20100310201924_crawl101.arc.gz
server-timing: captures_list;dur=0.551714, exclusion.robots;dur=0.051673, exclusion.robots.policy;dur=0.017444, esindex;dur=0.012146, cdx.remote;dur=13.086610, LoadShardBlock;dur=213.414712, PetaboxLoader3.datanode;dur=140.822197, PetaboxLoader3.resolve;dur=214.152600, load_resource;dur=180.389321
x-app-server: wwwb-app202
x-ts: 200
x-tr: 472
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=2
x-location: All
x-rl: 0
x-na: 0
x-page-cache: MISS
server-timing: MISS
x-nid: DigitalOcean
referrer-policy: no-referrer-when-downgrade
permissions-policy: interest-cohort=()
content-encoding: gzip
rails's upload_progress at master - GitHub
This service is courtesy of Pledgie.
rails / upload_progress
- Source
- Commits
- Network (3)
- Issues (0)
- Downloads (0)
- Wiki (1)
- Graphs
-
Branch:
master
click here to add a description
click here to add a homepage
Sending Request…
Enable Donations
Pledgie Donations
Once activated, we'll place the following badge in your repository's detail box:
Upload progress plugin — Read more
name | age | message | |
---|---|---|---|
![]() |
CHANGELOG | Wed Jun 28 10:03:46 -0700 2006 | Make Upload Progress work with edge Rails [4388... [madrobby] |
![]() |
MIT-LICENSE | Sun Jan 15 05:57:25 -0800 2006 | Added upload_progress as a plugin [madrobby] |
![]() |
README | Sun Jan 15 05:57:25 -0800 2006 | Added upload_progress as a plugin [madrobby] |
![]() |
Rakefile | Sun Jan 15 05:57:25 -0800 2006 | Added upload_progress as a plugin [madrobby] |
![]() |
init.rb | Sun Jan 15 05:57:25 -0800 2006 | Added upload_progress as a plugin [madrobby] |
![]() |
lib/ | Wed Jun 28 10:03:46 -0700 2006 | Make Upload Progress work with edge Rails [4388... [madrobby] |
![]() |
public/ | Sun Jan 15 05:57:25 -0800 2006 | Added upload_progress as a plugin [madrobby] |
![]() |
test/ | Sun Jan 15 05:57:25 -0800 2006 | Added upload_progress as a plugin [madrobby] |
README
=Overview The upload progress plugin will alter your rails CGI handling to track the uploaded status of multipart/form encoded posts. The plugin will also add helper methods to create an AJAX updating progress bar. ==Installing Run "script/plugin upload_progress" or checkout the source into your plugins folder. svn checkout https://dev.rubyonrails.com/svn/plugins/upload_progress Expand this archive in your RAILS_ROOT/vendor/plugins directory. The resulting plugin directory should look like: RAILS_ROOT/vendor/plugins/upload_progress/ RAILS_ROOT/vendor/plugins/upload_progress/README.txt RAILS_ROOT/vendor/plugins/upload_progress/Rakefile RAILS_ROOT/vendor/plugins/upload_progress/init.rb RAILS_ROOT/vendor/plugins/upload_progress/public/ RAILS_ROOT/vendor/plugins/upload_progress/public/stylesheets/ RAILS_ROOT/vendor/plugins/upload_progress/public/stylesheets/upload_progress.css RAILS_ROOT/vendor/plugins/upload_progress/lib/ RAILS_ROOT/vendor/plugins/upload_progress/doc/ RAILS_ROOT/vendor/plugins/upload_progress/test/ The stylesheets included in public/stylesheets are used as a guideline for styling your progress bar and status messages. You can copy them directly into your own public/stylesheets folder or copy and paste. ==Documentation You can create the documentation by running: rake rdoc ==Requirements The requirments for getting periodic upload progress updates can be found here: https://sean.treadway.info/articles/2005/07/18/upload-progress-checklist ==Credits Sean Treadway <seant@superchannel.org> https://sean.treadway.info Thomas Fuchs <thomas@fesch.at> https://mir.aculo.us ==License This plugin is released under the MIT license. See MIT-LICENSE for details