Decorator to ease dynamic redirections in Django

1
2
3
4
5
6
7
8
from django.conf.urls.defaults import *
from django.http import HttpResponsePermanentRedirect

def redirect(url):
    def inner(request, **args):
        redirect_to = '%s?%s' % (url % args, request.GET.urlencode())
        return HttpResponsePermanentRedirect(redirect_to)
    return inner

Comments

(Forgotten your password?)

You may use Markdown syntax here, but raw HTML will be removed.