streaming patches reloaded

2006-05-12 Thread arthur debert
Hi folks. Following this thread ( http://groups.google.com/group/django-developers/browse_frm/thread/a0ae32019bb02f05/2c05c5363516ea76?q=streaming&rnum=2#2c05c5363516ea76) , since I can't reply there ( over 30 days old, google tells me). I have an app that uploads a 4mb file and is taking a ton o

Re: streaming patches reloaded

2006-05-17 Thread arthur debert
Hi Ivan. Just to make sure I understand: - after patching django I 've set: STORE_UPLOAD_ON_DISK = True I am trying to use this on the admin. Any more steps I must take? thanks a lot (for the patch and help) arthur --~--~-~--~~~---~--~~ You received this messag

Re: ImageField and its use in templates

2006-05-17 Thread arthur debert
Hi Wegen. carimage = models.ImageField(upload_to = 'images/cars/%s.png' % carID, null = True, blank = True) this won't work. upload_to must be a string (it's not evaluated at the time the object is saved to the database). your best bet is to leave the path to the desired directory and name the

Re: Progress, status, and opinions of #2070

2007-06-03 Thread arthur debert
Hi Mike. This is less of a patch review, and more of an user's feedback. Probably not the best place to post this, but I figured track's ticket 2070 page already has too much going on there. Been using this patch for a while without a glitch ( in webfaction's setup, apache2, mod_python). Running

Re: {GSoC 2008}Django-Newcomments : A preview

2008-05-22 Thread arthur debert
Hi Thejaswi. A couple of suggestions: Any reasons for having CommentFlag.flag being a string, and not a foreign key to a FlagType model ? Having them as strings makes it easier to end up with bad data (misspelling and so forth). Of course there is always the performance penalty, but it seems wor