Re: Django 1.0 and Stdimage does not work

2008-09-24 Thread mwebs
Hi lapain, yes, this solved the TypeError, but now I am running into a "No such file or directory". I opened a new thread: http://groups.google.com/group/django-users/browse_thread/thread/b0d3e55398f2906d. Thanks for your answer. -Toni --~--~-~--~~~---~--~~ You

Re: Django 1.0 and Stdimage does not work

2008-09-23 Thread Iapain
picture = Picture(gallery = gallery, image = request.FILES['image']) Should be picture = Picture(gallery = gallery, image = request.FILES['image'].name) On Sep 23, 4:55 pm, mwebs <[EMAIL PROTECTED]> wrote: > Hello, > I am using Stdimage instead of the native models.ImageField to have > scaling

Django 1.0 and Stdimage does not work

2008-09-23 Thread mwebs
Hello, I am using Stdimage instead of the native models.ImageField to have scaling and thumbnail support. With the former 0.97 release Stdimage just worked perfect. Now I tried to use it with Django 1.0, and of course I also updated Stdimage to the newest svn-release. But when uploading an Image

Django 1.0 and Stdimage does not work

2008-09-23 Thread mwebs
Hello, I am using Stdimage instead of the native models.ImageField to have scaling and thumbnail support. With the former 0.97 release Stdimage just worked perfect. Now I tried to use it with Django 1.0, and of course I also updated Stdimage to the newest svn-release. But when uploading an Image