Re: django authentication system

2010-04-26 Thread Leo
I've done any number of authentication-integration adapters, and it's best to just use django.contrib.auth.models.User. In your authentication backend, just auto-create an instance of User if the supplied username and password pass authentication. You can use a constant password, after all

Re: django authentication system

2010-04-03 Thread Anand Agarwal
I guess you can use django-openid, though i am not sure what exactly you are trying. -BootStrapToday http://www.bootstraptoday.com On Sat, Apr 3, 2010 at 1:04 AM, orokusaki wrote: > You have to use ``auth.models.User`` if you want to

Re: django authentication system

2010-04-02 Thread orokusaki
You have to use ``auth.models.User`` if you want to enjoy all the benefits of the auth system. Just create a model and make a onetoone to User. On Apr 2, 8:22 am, Heit wrote: > Hello, > > I'm newbie in django, reading documentation i understood that django >

django authentication system

2010-04-02 Thread Heit
Hello, I'm newbie in django, reading documentation i understood that django authorization model is based on django.contrib.auth.models.User class and without having an instance of it, it is impossible to maintain authentication and maybe an authorization. Even if I'll write my own authentication