mirror of
				https://github.com/django/django.git
				synced 2025-10-31 09:41:08 +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),
 | |
| ]
 |