1
0
mirror of https://github.com/django/django.git synced 2025-02-07 16:05:34 +00:00

12 lines
315 B
Python

from django.core.urlresolvers import set_urlconf
import urlconf_inner
class ChangeURLconfMiddleware(object):
def process_request(self, request):
request.urlconf = urlconf_inner.__name__
class NullChangeURLconfMiddleware(object):
def process_request(self, request):
request.urlconf = None