mirror of
				https://github.com/django/django.git
				synced 2025-10-31 09:41:08 +00:00 
			
		
		
		
	git-svn-id: http://code.djangoproject.com/svn/django/trunk@17937 bcc190cf-cafb-0310-a4f2-bffc1f526a37
		
			
				
	
	
		
			14 lines
		
	
	
		
			407 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			407 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| # coding: utf-8
 | |
| from __future__ import absolute_import
 | |
| 
 | |
| from django.conf.urls import patterns
 | |
| 
 | |
| from . import views
 | |
| from .models import Article
 | |
| 
 | |
| urlpatterns = patterns('',
 | |
|     (r'^special_headers/article/(?P<object_id>\d+)/$', views.xview_xheaders),
 | |
|     (r'^special_headers/xview/func/$', views.xview_dec(views.xview)),
 | |
|     (r'^special_headers/xview/class/$', views.xview_dec(views.XViewClass.as_view())),
 | |
| )
 |