Re: Change request -- Django Provider update 2

2009-03-12 Thread Ricky Zhou
On 2009-03-12 05:06:45 PM, Toshio Kuratomi wrote:
> Okay, the last auth update fixed redirects but broke logging into django
> apps.  I'd like to install a new python-fedora with a one-line change
> for that.
> 
> === modified file 'fedora/django/auth/middleware.py'
> --- fedora/django/auth/middleware.py  2009-03-12 14:02:58 +
> +++ fedora/django/auth/middleware.py  2009-03-12 22:34:37 +
> @@ -39,7 +39,7 @@
>  logout(request)
> 
>  def process_response(self, request, response):
> -if type(response) == HttpResponse:
> +if response.status_code != 301:
>  if isinstance(request.user, AnonymousUser):
>  #response.set_cookie(key='tg-visit', value='', max_age=0)
>  if 'tg-visit' in request.session:
+1

Thanks,
Ricky


pgptJa6eRE325.pgp
Description: PGP signature
___
Fedora-infrastructure-list mailing list
Fedora-infrastructure-list@redhat.com
https://www.redhat.com/mailman/listinfo/fedora-infrastructure-list


Re: Change request -- Django Provider update 2

2009-03-12 Thread Mike McGrath
On Thu, 12 Mar 2009, Toshio Kuratomi wrote:

> Okay, the last auth update fixed redirects but broke logging into django
> apps.  I'd like to install a new python-fedora with a one-line change
> for that.
>
> === modified file 'fedora/django/auth/middleware.py'
> --- fedora/django/auth/middleware.py  2009-03-12 14:02:58 +
> +++ fedora/django/auth/middleware.py  2009-03-12 22:34:37 +
> @@ -39,7 +39,7 @@
>  logout(request)
>
>  def process_response(self, request, response):
> -if type(response) == HttpResponse:
> +if response.status_code != 301:
>  if isinstance(request.user, AnonymousUser):
>  #response.set_cookie(key='tg-visit', value='', max_age=0)
>  if 'tg-visit' in request.session:
>
>

+1
-Mike

___
Fedora-infrastructure-list mailing list
Fedora-infrastructure-list@redhat.com
https://www.redhat.com/mailman/listinfo/fedora-infrastructure-list