Merge branch 'release/0.9.2'
[philo.git] / philo / urls.py
1 from django.conf.urls.defaults import patterns, url
2
3 from philo.views import node_view
4
5
6 urlpatterns = patterns('',
7         url(r'^$', node_view, kwargs={'path': '/'}, name='philo-root'),
8         url(r'^(?P<path>.*)$', node_view, name='philo-node-by-path')
9 )