[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:
>
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