mirror of
https://github.com/Hopiu/django.git
synced 2026-03-19 07:20:31 +00:00
git-svn-id: http://code.djangoproject.com/svn/django/trunk@16539 bcc190cf-cafb-0310-a4f2-bffc1f526a37
9 lines
265 B
Python
9 lines
265 B
Python
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
|