All of my work from commits: dd4a194, 692644a, 4a60203, 5de46bc, 152042d, 64a2d4e...
[philo.git] / urls.py
1 from django.conf.urls.defaults import patterns, url
2 from philo.views import node_view
3
4
5 urlpatterns = patterns('',
6         url(r'^$', node_view, name='philo-root'),
7         url(r'^(?P<path>.*)$', node_view, name='philo-node-by-path')
8 )