We are very interested in this widget. Have you been able to complete it?
___
Web-SIG mailing list
Web-SIG@python.org
Web SIG: http://www.python.org/sigs/web-sig
Unsubscribe:
http://mail.python.org/mailman/options/web-sig/archive%40mail-archive.com
Hey Thanks Clark,
I've been gone for a bit and off this project. I'll dig into this
this tommorow.
Kai
Clark C. Evans wrote:
> kai,
>
> I don't know if your still interested, but I wrote something which
> might help with your end-user goal of a progress meter:
>
>http://svn.w4py.org/Paste/tr
kai,
I don't know if your still interested, but I wrote something which
might help with your end-user goal of a progress meter:
http://svn.w4py.org/Paste/trunk/paste/progress.py
Kind Regards,
Clark
P.S. it is far from perfect and marked experimental
On Thu, Dec 22, 2005 at 12:24:59PM -0500
> An aside on cgi.FieldStorage itself. It reads data using readline
> instead of reading in blocks of limited size. doing this I think means
> a file with very long lines, 20MB, 100MB, ... could cause excessive
> memory consumption.
This was reported and solved a long time ago (but not yet fixed i
> I need to investigate more may very well be me
> doing something silly.
Are your prints buffered? sys.stdout.flush()
chad
___
Web-SIG mailing list
Web-SIG@python.org
Web SIG: http://www.python.org/sigs/web-sig
Unsubscribe:
http://mail.python.org/m
> Incidentally, one way I've considered implementing this is to simply
> write the entire request body to a file, and parse it later, probably in
> the context of whatever framework I'm using (but typical web frameworks
> don't actually deal well with tracking an upload, hence a custom WSGI
>
On Thu, Dec 22, 2005 at 12:24:59PM -0500, kai wrote:
| this is my first post on this list. I am working on a way to monitor the
| progress of reading a file upload from wsgi.input. I can currently
| monitor the overall transfer and when individual files of a multiple
| file upload are completed
kai wrote:
> Hi All,
> this is my first post on this list. I am working on a way to monitor the
> progress of reading a file upload from wsgi.input. I can currently
> monitor the overall transfer and when individual files of a multiple
> file upload are completed. The ultimate goal of this is t