Re: Django Session Variables

2008-12-21 Thread j...@zigzap.com
> about two minutes to test it though--just try it out. > > -Jeff > > On Dec 19, 6:18 pm, "j...@zigzap.com" wrote: > > > Does django maintain session variables when logging in or does it > > generate a new session when you use the built in authentication. &g

Re: S3Storage.py and Thumbnails using PIL (IOError / cannot identify image file)

2008-12-21 Thread j...@zigzap.com
>From what I can tell your not wrapping the thumbnail file in ContentFile your just returning the raw file from the string IO. To use the the ImageField django provides you must provide it with a file that is in a special wrapper called ContentFile. I would suggest trying this: from django.core

Re: MySpace clone using Django? Is it possible?

2008-12-19 Thread j...@zigzap.com
Other comments aside, it really depends on your budget and exactly how "customized" or different this going to be from other social networking sites. If your not planning on spending more than 10K for the development of the site, you are going to be hard pressed to find any decent developers that

Django Session Variables

2008-12-19 Thread j...@zigzap.com
Does django maintain session variables when logging in or does it generate a new session when you use the built in authentication. Essentially I want to be able to assign session values to an Anonymous User and be able to carry them through when they log in. --~--~-~--~~~--