mirror of
https://github.com/django/django.git
synced 2025-11-01 12:25:37 +00:00
Fixed #5034 -- honor request.urlconf in reverse and resolve.
This enables {% url %} to honor request.urlconf set from process_request
middleware methods.
Thanks SmileyChris for the initial patch work.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@11740 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
c169f8cb17
commit
6c61ca3d74
7 changed files with 154 additions and 47 deletions
12
tests/regressiontests/urlpatterns_reverse/urlconf_inner.py
Normal file
12
tests/regressiontests/urlpatterns_reverse/urlconf_inner.py
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
from django.conf.urls.defaults import *
|
||||
from django.template import Template, Context
|
||||
from django.http import HttpResponse
|
||||
|
||||
def inner_view(request):
|
||||
content = Template('{% url outer as outer_url %}outer:{{ outer_url }},'
|
||||
'{% url inner as inner_url %}inner:{{ inner_url }}').render(Context())
|
||||
return HttpResponse(content)
|
||||
|
||||
urlpatterns = patterns('',
|
||||
url(r'^second_test/$', inner_view, name='inner'),
|
||||
)
|
||||
Loading…
Add table
Add a link
Reference in a new issue