Re: enforce login on generic views

2005-11-12 Thread Ian Holsman
Hi Adrian. would it be too hard to just stick the 'user login' views in the main codebase? regards ian On 11/13/05, Adrian Holovaty <[EMAIL PROTECTED]> wrote: > > On 11/12/05, Bryan Murdock <[EMAIL PROTECTED]> wrote: > > How do I limit access to a generic view to logged in users? > > Hey Bryan,

Re: enforce login on generic views

2005-11-12 Thread Bryan Murdock
On 11/12/05, Adrian Holovaty <[EMAIL PROTECTED]> wrote: > > On 11/12/05, Bryan Murdock <[EMAIL PROTECTED]> wrote: > > How do I limit access to a generic view to logged in users? > > Hey Bryan, > > I've added a section to the docs for you: All for me? I'm...I'm touched. :-) After that kind of

Re: enforce login on generic views

2005-11-12 Thread Adrian Holovaty
On 11/12/05, Bryan Murdock <[EMAIL PROTECTED]> wrote: > How do I limit access to a generic view to logged in users? Hey Bryan, I've added a section to the docs for you: Limiting access to generic views http://www.djangoproject.com/documentation/authentication/#limiting-access-to-generic-views

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?

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

Re: broken admin links to logout and change password

2005-11-12 Thread Grigory Fateyev
Hello Bryan Murdock! On Sat, 12 Nov 2005 07:34:42 -0800 you wrote: > > My site is set up with mod_python so that to get to the admin page you > go to: > > example.com/appname/admin > > In the admin view the links for logging out and changing password are > broken. They use

broken admin links to logout and change password

2005-11-12 Thread Bryan Murdock
My site is set up with mod_python so that to get to the admin page you go to: example.com/appname/admin In the admin view the links for logging out and changing password are broken. They use example.com/admin/..., leaving out the appname. How can I fix this? Thanks, Bryan