web/hgbook/comments/urls.py~
changeset 0 8083d21c0020
equal deleted inserted replaced
-1:000000000000 0:8083d21c0020
       
     1 from django.conf.urls.defaults import *
       
     2 
       
     3 urlpatterns = patterns('',
       
     4     (r'chapter/(?P<id>[^/]+)/?$', 'hgbook.comments.views.chapter'),
       
     5     (r'chapter/(?P<id>[^/]+)/count/?$', 'hgbook.comments.views.single_com'),
       
     6     (r'single/(?P<id>[^/]+)/?$', 'hgbook.comments.views.single'),
       
     7     (r'submit/(?P<id>[^/]+)/?$', 'hgbook.comments.views.submit')
       
     8 )