diff -r 5574cfc2b28d -r f5e18f8ed036 sphinx_django/urls.py --- a/sphinx_django/urls.py Thu Sep 30 15:59:32 2010 +0530 +++ b/sphinx_django/urls.py Fri Oct 15 15:59:28 2010 +0530 @@ -10,11 +10,11 @@ (r'^test/','sphinxcomment.views.test' ), (r'chapter/', 'sphinxcomment.views.chapter'), - (r'count/(?P[^/]+)/?$', 'sphinxcomment.views.chapter_count'), - (r'single/(?P[^/]+)/?$', 'sphinxcomment.views.single'), - (r'submit/(?P[^/]+)/?$', 'sphinxcomment.views.submit'), + (r'count/(?P.+)?$', 'sphinxcomment.views.chapter_count'), + (r'single/(?P[^/]+)/$', 'sphinxcomment.views.single'), + (r'submit/(?P[^/]+)/$', 'sphinxcomment.views.submit'), (r'^static/(?P.*)$', 'django.views.static.serve', - {'document_root': '/home/amit/review/sttp/_build/html/'}), + {'document_root': '/home/amit/review/sttp_test/_build/commenthtml'}), # Uncomment the admin/doc line below and add 'django.contrib.admindocs' # to INSTALLED_APPS to enable admin documentation: