mirror of
https://github.com/django/django.git
synced 2025-08-03 10:34:04 +00:00
Fixed #17492 -- Allow reversal of named backreferences. Thanks nate_b
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17336 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
e5719b203c
commit
e52c52ea13
5 changed files with 66 additions and 7 deletions
|
@ -76,6 +76,8 @@ test_data = (
|
|||
('people', NoReverseMatch, [], {'name': 'name with spaces'}),
|
||||
('people2', '/people/name/', [], {}),
|
||||
('people2a', '/people/name/fred/', ['fred'], {}),
|
||||
('people_backref', '/people/nate-nate/', ['nate'], {}),
|
||||
('people_backref', '/people/nate-nate/', [], {'name': 'nate'}),
|
||||
('optional', '/optional/fred/', [], {'name': 'fred'}),
|
||||
('optional', '/optional/fred/', ['fred'], {}),
|
||||
('hardcoded', '/hardcoded/', [], {}),
|
||||
|
|
|
@ -22,6 +22,7 @@ urlpatterns = patterns('',
|
|||
url(r'^people/(?P<name>\w+)/$', empty_view, name="people"),
|
||||
url(r'^people/(?:name/)', empty_view, name="people2"),
|
||||
url(r'^people/(?:name/(\w+)/)?', empty_view, name="people2a"),
|
||||
url(r'^people/(?P<name>\w+)-(?P=name)/$', empty_view, name="people_backref"),
|
||||
url(r'^optional/(?P<name>.*)/(?:.+/)?', empty_view, name="optional"),
|
||||
url(r'^hardcoded/$', empty_view, name="hardcoded"),
|
||||
url(r'^hardcoded/doc\.pdf$', empty_view, name="hardcoded2"),
|
||||
|
@ -65,7 +66,4 @@ urlpatterns = patterns('',
|
|||
(r'defaults_view2/(?P<arg1>\d+)/', 'defaults_view', {'arg2': 2}, 'defaults'),
|
||||
|
||||
url('^includes/', include(other_patterns)),
|
||||
|
||||
)
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue