diff -r de4a2ed2f34b -r e6e33366df0f sphinx_django/urls.py~ --- a/sphinx_django/urls.py~ Wed Oct 27 13:59:11 2010 +0530 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,29 +0,0 @@ -from django.conf.urls.defaults import * -from django.contrib import admin -# Uncomment the next two lines to enable the admin: -# from django.contrib import admin -admin.autodiscover() - -urlpatterns = patterns('', - # Example: - # (r'^sphinx_django/', include('sphinx_django.foo.urls')), - - (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'^static/(?P.*)$', 'django.views.static.serve', - {'document_root': '/home/amit/review/st-scripts/_build/commenthtml'}), - - # Uncomment the admin/doc line below and add 'django.contrib.admindocs' - # to INSTALLED_APPS to enable admin documentation: - # (r'^admin/doc/', include('django.contrib.admindocs.urls')), - - # Uncomment the next line to enable the admin: - (r'^admin/', include(admin.site.urls)), - (r'^pages/_static/(?P.*)$', 'django.views.static.serve', - {'document_root': '/home/amit/review/st-scripts/_build/commenthtml/_static'}), - - (r'^pages/(?P.*)$', 'sphinxcomment.views.page'), -)