mirror of
				https://github.com/django/django.git
				synced 2025-10-31 01:25:32 +00:00 
			
		
		
		
	git-svn-id: http://code.djangoproject.com/svn/django/trunk@16981 bcc190cf-cafb-0310-a4f2-bffc1f526a37
		
			
				
	
	
		
			21 lines
		
	
	
		
			750 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			750 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| # coding: utf-8
 | ||
| from __future__ import absolute_import
 | ||
| 
 | ||
| from django.conf.urls import patterns, url
 | ||
| from . import views
 | ||
| 
 | ||
| 
 | ||
| urlpatterns = patterns('',
 | ||
| 
 | ||
|     # Test urls for testing reverse lookups
 | ||
|     (r'^$', views.index),
 | ||
|     (r'^client/([\d,]+)/$', views.client),
 | ||
|     (r'^client/(?P<id>\d+)/(?P<action>[^/]+)/$', views.client_action),
 | ||
|     (r'^client/(?P<client_id>\d+)/(?P<action>[^/]+)/$', views.client_action),
 | ||
|     url(r'^named-client/(\d+)/$', views.client2, name="named.client"),
 | ||
| 
 | ||
|     # Unicode strings are permitted everywhere.
 | ||
|     url(ur'^Юникод/(\w+)/$', views.client2, name=u"метка_оператора"),
 | ||
|     url(ur'^Юникод/(?P<tag>\S+)/$', 'regressiontests.templates.views.client2', name=u"метка_оператора_2"),
 | ||
| )
 |