1
0
mirror of https://github.com/django/django.git synced 2025-01-15 12:52:31 +00:00

8 lines
242 B
Python
Raw Normal View History

from django.conf.urls.defaults import patterns
urlpatterns = patterns('',
(r'^middleware/customurlconf/noslash$', 'view'),
(r'^middleware/customurlconf/slash/$', 'view'),
(r'^middleware/customurlconf/needsquoting#/$', 'view'),
)