Re: User Authentication - What's the best way?

2005-09-19 Thread Jiri Barton
I am struggling with the builtin authentication interface. I have initialized the tables and entered some data in the authentication tables. I have a couple of questions though, (A) I want to use django.views.auth.login.login. I have entered this in the url patterns. The implementation of this

Re: User Authentication - What's the best way?

2005-09-12 Thread [EMAIL PROTECTED]
That's all fine and well, and sure, it's not hard to figure out. But it's an interim solution, not the official, documented Django way. I'd like to do it the "official" way, so I don't end up overhauling my authentication scheme several weeks into production deployment. I'm also hoping a

Re: User Authentication - What's the best way?

2005-09-08 Thread [EMAIL PROTECTED]
Documentation on authentication is still very much needed. The interim solution suggested earlier in this thread entails far too much code duplication when Django already has an auth system. Here's hoping it will be simple for apps to take advantage of the auth framework without having to

Re: User Authentication - What's the best way?

2005-09-05 Thread [EMAIL PROTECTED]
Thanks so much this was a real help got it woking now based on what you've done. Sure this'll be a great help to others as well. Many thanks charlie

Re: User Authentication - What's the best way?

2005-08-31 Thread Suhku Huh
Hi, What I've found is that any user with appropriate (modify, delete) permission can modify and delete other user's data in admin mode. Is there a way to manage only their own data in admin screen ? Thanks in advance for any comment or help. Suhku

Re: User Authentication - What's the best way?

2005-08-30 Thread Adrian Holovaty
On 8/30/05, Jeremy Noetzelman <[EMAIL PROTECTED]> wrote: > ok ... so ... any documentation planned? Barring that, where's the best > place to look to start to grasp the user support? Yes, documentation is *certainly* planned! If you're too anxious to wait, check out django/models/auth.py,

Re: User Authentication - What's the best way?

2005-08-30 Thread Jeremy Noetzelman
ok ... so ... any documentation planned?  Barring that, where's the best place to look to start to grasp the user support?On 8/30/05, Adrian Holovaty < [EMAIL PROTECTED]> wrote:On 8/30/05, Jeremy Noetzelman < [EMAIL PROTECTED]> wrote:> Doesn't Django have built in User support?  Is there any

Re: User Authentication - What's the best way?

2005-08-30 Thread Adrian Holovaty
On 8/30/05, Jeremy Noetzelman <[EMAIL PROTECTED]> wrote: > Doesn't Django have built in User support? Is there any documentation on > that anywhere? I'll answer your questions in order. Yes, and no. :-) -- Adrian Holovaty holovaty.com | djangoproject.com | chicagocrime.org

Re: User Authentication - What's the best way?

2005-08-30 Thread Jeremy Noetzelman
Doesn't Django have built in User support?  Is there any documentation on that anywhere?On 8/30/05, Jason F. McBrayer < [EMAIL PROTECTED]> wrote:On Tue, 2005-08-30 at 04:24 -0700, [EMAIL PROTECTED] wrote:> Hi All>> Just starting with django and have very quickly got to the point where> I can set

Re: User Authentication - What's the best way?

2005-08-30 Thread Jason F. McBrayer
On Tue, 2005-08-30 at 04:24 -0700, [EMAIL PROTECTED] wrote: > Hi All > > Just starting with django and have very quickly got to the point where > I can set out a simple little app. > > The next thing I need to be able to do is implement user > authentication. Nothing too fancy just a basic one