Implementation of a Node class, the subclasses of which respond to requests at differ...
[philo.git] / urls.py
1 from django.conf.urls.defaults import url, include, patterns, handler404, handler500
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 )