SEESenv/web/hgbook/comments/urls.py
author amit@thunder
Thu, 25 Feb 2010 17:06:32 +0530
changeset 29 5ce5b22a9a0b
parent 2 52d12eb31c30
permissions -rwxr-xr-x
Making changes for an automatic build so writing paths according to server

from django.conf.urls.defaults import *

urlpatterns = patterns('',
    (r'chapter/(?P<id>[^/]+)/?$', 'hgbook.comments.views.chapter'),
    (r'chapter/(?P<id>[^/]+)/count/?$', 'hgbook.comments.views.single_com'),
    (r'single/(?P<id>[^/]+)/?$', 'hgbook.comments.views.single'),
    (r'submit/(?P<id>[^/]+)/?$', 'hgbook.comments.views.submit')
)