view web/hgbook/comments/urls.py @ 838:d1f676a6a4b3 default tip

update mq chapter. propagate ef53d025f410.
author Yoshiki Yazawa <yaz@honeyplanet.jp>
date Thu, 03 Dec 2009 01:26:08 +0900
parents ad304b606163
children
line wrap: on
line source

from django.conf.urls.defaults import *

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