Re: Feature Request: small extension to mod python authentication handler

2008-01-27 Thread Gary Wilson Jr.
[EMAIL PROTECTED] wrote: > Hi, > > I'd like to use django for authentication in apache, and it would be > nice to have group based access. > Therefore i did a little patch to django/contrib/auth/handlers/ > mod_python.py > > group = options.get('DjangoRequireGroup', None) > ... > if group: >

Feature Request: small extension to mod python authentication handler

2008-01-14 Thread [EMAIL PROTECTED]
Hi, I'd like to use django for authentication in apache, and it would be nice to have group based access. Therefore i did a little patch to django/contrib/auth/handlers/ mod_python.py group = options.get('DjangoRequireGroup', None) ... if group: kwargs['groups__name'] = group So i'm abl