Re: problem with sessions docs?

2005-11-12 Thread Bryan Murdock
On 11/12/05, Adrian Holovaty <[EMAIL PROTECTED]> wrote: > Hey Bryan, > > This technically isn't an error in the docs; it's just a bit > misleading. The "user" in that example wasn't intended to be the user > from the authentication framework -- it's just some generic concept of > "user." > > I've

Re: problem with sessions docs?

2005-11-12 Thread Adrian Holovaty
On 11/12/05, Bryan Murdock <[EMAIL PROTECTED]> wrote: > The example code for logging a user in here: > > http://www.djangoproject.com/documentation/sessions/ > [...] > It doesn't work for me. I googled and found some code here: > [...] > Is this an error in the docs? Maybe I need to svn up? Hey

problem with sessions docs?

2005-11-12 Thread Bryan Murdock
The example code for logging a user in here: http://www.djangoproject.com/documentation/sessions/ is this: def login(request): u = users.get_object(username__exact=request.POST['username']) if u.check_password(request.POST['password']): request.session['user_id'] = u.id