Re: Django Session Variables

2008-12-21 Thread j...@zigzap.com
Thanks On Dec 20, 11:26 am, Jeff FW wrote: > Looking > athttp://code.djangoproject.com/browser/django/trunk/django/contrib/aut... > it doesn't look like it clears the session.  It *does* generate a new > key, but that shouldn't affect anything.  It should only take you >

Re: Django Session Variables

2008-12-20 Thread Jeff FW
Looking at http://code.djangoproject.com/browser/django/trunk/django/contrib/auth/__init__.py#L46 it doesn't look like it clears the session. It *does* generate a new key, but that shouldn't affect anything. It should only take you about two minutes to test it though--just try it out. -Jeff

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.