mirror of
https://github.com/django/django.git
synced 2024-11-20 08:24:58 +00:00
12 lines
296 B
Python
12 lines
296 B
Python
from django.conf.urls import url
|
|
|
|
from . import views
|
|
|
|
urlpatterns = [
|
|
url(r'^noslash$', views.empty_view),
|
|
url(r'^slash/$', views.empty_view),
|
|
url(r'^needsquoting#/$', views.empty_view),
|
|
# Accepts paths with two leading slashes.
|
|
url(r'^(.+)/security/$', views.empty_view),
|
|
]
|