[chromium-bugs] Issue 4715 in chromium: Need a progress indicator for uploads

2009-10-05 Thread codesite-noreply


Comment #12 on issue 4715 by nathanbrauer: Need a progress indicator for  
uploads
http://code.google.com/p/chromium/issues/detail?id=4715

This is an excellent feature! This is the first time I've seen any such  
thing in a browser
(or maybe I haven't noticed before). Kudos for this.

Here's something that's a little confusing though:
I just uploaded 6 items to Issue 23767 and wasn't sure is Uploading (35%)  
meant 35% of one
of the files or of all of the files. If the browser is uploading multiple  
items, it should
reflect that.

Here are some options:
Uploading xyz.file.jpg (5% of file)...
Uploading file 1 of 7 (35% total)...
Uploaded 5% of xyz.file.jpg, 35% total...

Also, I'd like to be able to see exactly how much data has been uploaded  
(2.8/3.2 MB).

--
You received this message because you are listed in the owner
or CC fields of this issue, or because you starred this issue.
You may adjust your issue notification preferences at:
http://code.google.com/hosting/settings

--~--~-~--~~~---~--~~
Automated mail from issue updates at http://crbug.com/
Subscription options: http://groups.google.com/group/chromium-bugs
-~--~~~~--~~--~--~---



[chromium-bugs] Issue 4715 in chromium: Need a progress indicator for uploads

2009-09-25 Thread codesite-noreply


Comment #10 on issue 4715 by fgfemperor: Need a progress indicator for  
uploads
http://code.google.com/p/chromium/issues/detail?id=4715

When will this hit Dev Channel?

--
You received this message because you are listed in the owner
or CC fields of this issue, or because you starred this issue.
You may adjust your issue notification preferences at:
http://code.google.com/hosting/settings

--~--~-~--~~~---~--~~
Automated mail from issue updates at http://crbug.com/
Subscription options: http://groups.google.com/group/chromium-bugs
-~--~~~~--~~--~--~---



[chromium-bugs] Issue 4715 in chromium: Need a progress indicator for uploads

2009-09-24 Thread codesite-noreply


Comment #9 on issue 4715 by bugdro...@chromium.org: Need a progress  
indicator for uploads
http://code.google.com/p/chromium/issues/detail?id=4715

The following revision refers to this bug:
 http://src.chromium.org/viewvc/chrome?view=revrevision=27169


r27169 | da...@chromium.org | 2009-09-24 21:23:56 -0700 (Thu, 24 Sep 2009)  
| 20 lines
Changed paths:
M  
http://src.chromium.org/viewvc/chrome/trunk/src/chrome/app/generated_resources.grd?r1=27169r2=27168
M  
http://src.chromium.org/viewvc/chrome/trunk/src/chrome/browser/renderer_host/render_view_host.cc?r1=27169r2=27168
M  
http://src.chromium.org/viewvc/chrome/trunk/src/chrome/browser/renderer_host/render_view_host.h?r1=27169r2=27168
M  
http://src.chromium.org/viewvc/chrome/trunk/src/chrome/browser/renderer_host/render_view_host_delegate.h?r1=27169r2=27168
M  
http://src.chromium.org/viewvc/chrome/trunk/src/chrome/browser/renderer_host/resource_dispatcher_host.cc?r1=27169r2=27168
M  
http://src.chromium.org/viewvc/chrome/trunk/src/chrome/browser/renderer_host/resource_dispatcher_host.h?r1=27169r2=27168
M  
http://src.chromium.org/viewvc/chrome/trunk/src/chrome/browser/tab_contents/tab_contents.cc?r1=27169r2=27168
M  
http://src.chromium.org/viewvc/chrome/trunk/src/chrome/browser/tab_contents/tab_contents.h?r1=27169r2=27168

Implemented upload progress indicator in status bar.

When sending an HTTP POST request with sufficiently large payload data  
(such as
uploading a file or several), the status bar should display the progress in  
the
form of a percentage. The ResourceDispatcherHost periodically sends upload
progress messages to the UI thread as well as to the renderer. If an upload  
is
occurring, other potential LoadStateChanged messages to the same  
RenderViewHost
are ignored; this prevents the upload progress display from being  
interrupted
periodically by Waiting for site messages.

Original code review:
http://codereview.chromium.org/211050

Original patch by Simon Radford
r=darin
BUG=4715
TEST=Try uploading one or more files (e.g. at a file hosting site) and  
confirm
that the percentage is shown in the status bar.

Review URL: http://codereview.chromium.org/244001



--
You received this message because you are listed in the owner
or CC fields of this issue, or because you starred this issue.
You may adjust your issue notification preferences at:
http://code.google.com/hosting/settings

--~--~-~--~~~---~--~~
Automated mail from issue updates at http://crbug.com/
Subscription options: http://groups.google.com/group/chromium-bugs
-~--~~~~--~~--~--~---



[chromium-bugs] Issue 4715 in chromium: Need a progress indicator for uploads

2009-07-08 Thread codesite-noreply


Comment #7 on issue 4715 by stingerblack1: Need a progress indicator for  
uploads
http://code.google.com/p/chromium/issues/detail?id=4715

Similar FF bug report since 2004
https://bugzilla.mozilla.org/show_bug.cgi?id=243468

--
You received this message because you are listed in the owner
or CC fields of this issue, or because you starred this issue.
You may adjust your issue notification preferences at:
http://code.google.com/hosting/settings

--~--~-~--~~~---~--~~
Automated mail from issue updates at http://crbug.com/
Subscription options: http://groups.google.com/group/chromium-bugs
-~--~~~~--~~--~--~---



[chromium-bugs] Issue 4715 in chromium: Need a progress indicator for uploads

2009-07-01 Thread codesite-noreply


Comment #6 on issue 4715 by 5t0q63fv: Need a progress indicator for uploads
http://code.google.com/p/chromium/issues/detail?id=4715

http://michaelkimsal.com/blog/why-do-browsers-still-not-have-file-upload-progress-meters/
The guy is right.
The browser is pushing the file up - it has a notion of how many bytes  
have been
pushed out to the network.  It is in a position to know the accurate size  
of the file
in question.  Showing a local status of that information would be a faster
experience, rather than adding a layer of AJAX calls to an upload screen.

--
You received this message because you are listed in the owner
or CC fields of this issue, or because you starred this issue.
You may adjust your issue notification preferences at:
http://code.google.com/hosting/settings

--~--~-~--~~~---~--~~
Automated mail from issue updates at http://crbug.com/
Subscription options: http://groups.google.com/group/chromium-bugs
-~--~~~~--~~--~--~---



[chromium-bugs] Issue 4715 in chromium: Need a progress indicator for uploads

2008-12-09 Thread codesite-noreply

Updates:
Status: Available
Labels: DesignDocNeeded

Comment #3 on issue 4715 by [EMAIL PROTECTED]: Need a progress indicator  
for uploads
http://code.google.com/p/chromium/issues/detail?id=4715

(No comment was entered for this change.)

-- 
You received this message because you are listed in the owner
or CC fields of this issue, or because you starred this issue.
You may adjust your issue notification preferences at:
http://code.google.com/hosting/settings

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Chromium-bugs group.
To post to this group, send email to chromium-bugs@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/chromium-bugs?hl=en
-~--~~~~--~~--~--~---



[chromium-bugs] Issue 4715 in chromium: Need a progress indicator for uploads

2008-11-23 Thread codesite-noreply


Comment #1 on issue 4715 by krackguy: Need a progress indicator for uploads
http://code.google.com/p/chromium/issues/detail?id=4715

Do we really need this feature?

-- 
You received this message because you are listed in the owner
or CC fields of this issue, or because you starred this issue.
You may adjust your issue notification preferences at:
http://code.google.com/hosting/settings

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Chromium-bugs group.
To post to this group, send email to chromium-bugs@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/chromium-bugs?hl=en
-~--~~~~--~~--~--~---



[chromium-bugs] Issue 4715 in chromium: Need a progress indicator for uploads

2008-11-22 Thread codesite-noreply

Status: Untriaged
Owner: 
Labels: Type-Feature Pri-2 OS-All Area-BrowserUI Mstone-X HelpWanted

New issue 4715 by [EMAIL PROTECTED]: Need a progress indicator for uploads
http://code.google.com/p/chromium/issues/detail?id=4715

Not sure if this is something to implement in the browser front end or
WebKit.

 From email:

With Chrome, there's no progress indicator for uploads. For example, when
uploading a PowerPoint to Presently over a normal (i.e. not the office)
connection, you have no idea if anything is really happening, or how long
it's going to take.


-- 
You received this message because you are listed in the owner
or CC fields of this issue, or because you starred this issue.
You may adjust your issue notification preferences at:
http://code.google.com/hosting/settings

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Chromium-bugs group.
To post to this group, send email to chromium-bugs@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/chromium-bugs?hl=en
-~--~~~~--~~--~--~---