Initial commit of django based commenting system for sphinx. Already has
most of the boiler plate code.
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/', 'sphinxcomment.views.chapter_count'),
(r'single/(?P<id>[^/]+)/?$', 'sphinxcomment.views.single'),
(r'submit/(?P<id>[^/]+)/?$', 'sphinxcomment.views.submit'),
(r'^static/(?P<path>.*)$', 'django.views.static.serve',
{'document_root': '/home/amit/review/sttp/_build/html/'}),
# 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)),
)