aboutsummaryrefslogtreecommitdiffstats
path: root/examples/pygments_api/urls.py
diff options
context:
space:
mode:
authorTom Christie2012-08-29 19:54:38 +0100
committerTom Christie2012-08-29 19:54:38 +0100
commiteea2aa04378d27d79e7aba12ce95c697148bd57e (patch)
tree4ae3c67246c45df2b90e32376a067107fda486b2 /examples/pygments_api/urls.py
parentecd3733c5e229505baca5a870963f2dd492d6dd7 (diff)
downloaddjango-rest-framework-eea2aa04378d27d79e7aba12ce95c697148bd57e.tar.bz2
Remove examples (to be moved to a seperate project)
Diffstat (limited to 'examples/pygments_api/urls.py')
-rw-r--r--examples/pygments_api/urls.py7
1 files changed, 0 insertions, 7 deletions
diff --git a/examples/pygments_api/urls.py b/examples/pygments_api/urls.py
deleted file mode 100644
index e0d44ece..00000000
--- a/examples/pygments_api/urls.py
+++ /dev/null
@@ -1,7 +0,0 @@
-from django.conf.urls.defaults import patterns, url
-from pygments_api.views import PygmentsRoot, PygmentsInstance
-
-urlpatterns = patterns('',
- url(r'^$', PygmentsRoot.as_view(), name='pygments-root'),
- url(r'^([a-zA-Z0-9-]+)/$', PygmentsInstance.as_view(), name='pygments-instance'),
-)