aboutsummaryrefslogtreecommitdiffstats
path: root/examples/urls.py
diff options
context:
space:
mode:
authortom christie tom@tomchristie.com2011-01-26 21:06:40 +0000
committertom christie tom@tomchristie.com2011-01-26 21:06:40 +0000
commit9adb965126366bfe4b364357f565baabd819c982 (patch)
treef924a64d0c4c8ff023f92fd9ef035060c825f647 /examples/urls.py
parent6807cf014cb0fde611f63c64bc352038206176cc (diff)
parent8b89d7416cf4e2396deac4ba41c23cdcdc8b9704 (diff)
downloaddjango-rest-framework-9adb965126366bfe4b364357f565baabd819c982.tar.bz2
content type tunneling
Diffstat (limited to 'examples/urls.py')
-rw-r--r--examples/urls.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/examples/urls.py b/examples/urls.py
index 3b93045d..62001016 100644
--- a/examples/urls.py
+++ b/examples/urls.py
@@ -4,9 +4,15 @@ from django.contrib import admin
admin.autodiscover()
urlpatterns = patterns('',
+<<<<<<< local
(r'^blog-post-api/', include('blogpost.urls')),
(r'^object-store-api/', include('objectstore.urls')),
(r'^pygments-api/', include('pygments_api.urls')),
+=======
+ (r'pygments-example/', include('pygmentsapi.urls')),
+ (r'^blog-post-example/', include('blogpost.urls')),
+ (r'^object-store-example/', include('objectstore.urls')),
+>>>>>>> other
(r'^admin/doc/', include('django.contrib.admindocs.urls')),
(r'^admin/', include(admin.site.urls)),
)