Re: File upload progress bar for Django?

2008-10-22 Thread Ian Lawrence
Hi very cool..thx for putting this together. You have saved me some time! Ian -- http://ianlawrence.info --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to

Re: File upload progress bar for Django?

2008-10-22 Thread john
On Oct 20, 2008, at 12:22 PM, M Godshall wrote: > Is anyone familiar with a django or python tutorial that shows how > to implement > some kind of file upload progress bar? Ideally I'd like to use > jquery, but I'm open to anything at this point. Any links or code > examples would be greatly

Re: File upload progress bar for Django?

2008-10-21 Thread john
On Oct 20, 2008, at 12:22 PM, M Godshall wrote: > Is anyone familiar with a django or python tutorial that shows how > to implement > some kind of file upload progress bar? Ideally I'd like to use > jquery, but I'm open to anything at this point. Any links or code > examples would be greatly

Re: File upload progress bar for Django?

2008-10-21 Thread john Moylan
There are working examples around. Basically get your server to report the upload status to a javascript ui at intervals. Try searching the djangoproject trac server - there is a link from there to a django uploader project on google code that I have used in the past. I think it uses JQuery. I'd

Re: File upload progress bar for Django?

2008-10-21 Thread jonknee
On Oct 20, 7:15 pm, Sascha Brossmann <[EMAIL PROTECTED]> wrote: > > Is anyone > > familiar with a django or python tutorial that shows how to implement > > some kind of file upload progress bar? > > Sorry, but the main magic in those uploaders is done via flash, not > via js or php. AFAIK there

Re: File upload progress bar for Django?

2008-10-21 Thread varikin
On Oct 20, 6:15 pm, Sascha Brossmann <[EMAIL PROTECTED]> wrote: > > Is anyone > > familiar with a django or python tutorial that shows how to implement > > some kind of file upload progress bar? > > Sorry, but the main magic in those uploaders is done via flash, not > via js or php. AFAIK there

Re: File upload progress bar for Django?

2008-10-20 Thread Sascha Brossmann
> Is anyone > familiar with a django or python tutorial that shows how to implement > some kind of file upload progress bar? Sorry, but the main magic in those uploaders is done via flash, not via js or php. AFAIK there is currently no sane (though you may use Java ;-)) way to do it otherwise.

File upload progress bar for Django?

2008-10-20 Thread M Godshall
I've found several file upload progress bar applications, but the source code is usually written in php (like http://www.swfupload.org/ and http://www.pixeline.be/experiments/jqUploader/). Is anyone familiar with a django or python tutorial that shows how to implement some kind of file upload