git.ithinksw.org
/
philo.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Merge branch 'gilbert' of git://github.com/lapilofu/philo into gilbert
[philo.git]
/
urls.py
diff --git
a/urls.py
b/urls.py
index
77ec968
..
47be7da
100644
(file)
--- a/
urls.py
+++ b/
urls.py
@@
-1,8
+1,8
@@
-from django.conf.urls.defaults import
url, include, patterns, handler404, handler500
-from philo.views import
pag
e_view
+from django.conf.urls.defaults import
patterns, url
+from philo.views import
nod
e_view
urlpatterns = patterns('',
urlpatterns = patterns('',
- url(r'^$',
pag
e_view, name='philo-root'),
- url(r'^(?P<path>.*)$',
page_view, name='philo-pag
e-by-path')
+ url(r'^$',
nod
e_view, name='philo-root'),
+ url(r'^(?P<path>.*)$',
node_view, name='philo-nod
e-by-path')
)
)