Re: Where art thou ImageField

2007-03-13 Thread gorans
Thanks, I found http://www.carcosa.net/jason/software/django/stockphoto/ pretty helpful! Goran On Mar 13, 11:48 am, "Jay Parlar" <[EMAIL PROTECTED]> wrote: > You may want to check out the 'stockphoto' app. Even if you don't use > it directly, it might give you ideas. It seems to handle thumbnai

Re: Where art thou ImageField

2007-03-12 Thread akonsu
the view i think. on a form submission. new forms have save method too. konstantin On Mar 12, 8:46 pm, "gorans" <[EMAIL PROTECTED]> wrote: > Hmm.. I see the point there. > > But where would be the right place to generate the set of thumbs from > the original image? > > On Mar 13, 1:04 am, "akons

Re: Where art thou ImageField

2007-03-12 Thread Jay Parlar
You may want to check out the 'stockphoto' app. Even if you don't use it directly, it might give you ideas. It seems to handle thumbnails quite well. http://www.carcosa.net/jason/software/django/stockphoto/ Jay P. --~--~-~--~~~---~--~~ You received this message b

Re: Where art thou ImageField

2007-03-12 Thread gorans
Hmm.. I see the point there. But where would be the right place to generate the set of thumbs from the original image? On Mar 13, 1:04 am, "akonsu" <[EMAIL PROTECTED]> wrote: > hello, > > regarding the last part of your post: i have an unconfirmed suspicion > that data validation should not be d

Re: Where art thou ImageField

2007-03-12 Thread akonsu
hello, regarding the last part of your post: i have an unconfirmed suspicion that data validation should not be done in models but in the forms that manipulate data. does anyone know if this is correct? konstantin On Mar 12, 9:56 am, "gorans" <[EMAIL PROTECTED]> wrote: > Hi, > > I'm trying to a

Where art thou ImageField

2007-03-12 Thread gorans
Hi, I'm trying to access the value of an image field which is uploaded in the django admin interface - prior to calling the save. I have a model called Photo with three attributes: large, medium and small. Each are ImageFields. I have overwritten the save( ) function in Photo so that I can chec