git.ithinksw.org
/
philo.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Added slug to the context for ajax searches.
[philo.git]
/
urls.py
diff --git
a/urls.py
b/urls.py
index
47be7da
..
0363224
100644
(file)
--- a/
urls.py
+++ b/
urls.py
@@
-3,6
+3,6
@@
from philo.views import node_view
urlpatterns = patterns('',
urlpatterns = patterns('',
- url(r'^$', node_view, name='philo-root'),
+ url(r'^$', node_view,
kwargs={'path': '/'},
name='philo-root'),
url(r'^(?P<path>.*)$', node_view, name='philo-node-by-path')
)
url(r'^(?P<path>.*)$', node_view, name='philo-node-by-path')
)