git.ithinksw.org
/
philo.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Added name field to File for easier finding in the database. Added automatic mimetype...
[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
)