Re: [Web-SIG] transaction progress with cgi.FieldStorage

2006-04-19 Thread John Weissberg
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

Re: [Web-SIG] transaction progress with cgi.FieldStorage

2006-01-13 Thread kai
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

Re: [Web-SIG] transaction progress with cgi.FieldStorage

2006-01-11 Thread Clark C. Evans
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

Re: [Web-SIG] transaction progress with cgi.FieldStorage

2005-12-30 Thread Chris McDonough
> 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

Re: [Web-SIG] transaction progress with cgi.FieldStorage

2005-12-30 Thread Chad Whitacre
> 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

Re: [Web-SIG] transaction progress with cgi.FieldStorage

2005-12-30 Thread kai
> 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 >

Re: [Web-SIG] transaction progress with cgi.FieldStorage

2005-12-29 Thread Clark C. Evans
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

Re: [Web-SIG] transaction progress with cgi.FieldStorage

2005-12-29 Thread Ian Bicking
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