blob: d623e7d6af8e765e25a5deb762f3aacd37767c56 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
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),
]
|