comparison web/hgbook/comments/urls.py @ 673:ad304b606163

Initial cut at web comment system import
author Bryan O'Sullivan <bos@serpentine.com>
date Tue, 10 Mar 2009 21:42:19 -0700
parents
children
comparison
equal deleted inserted replaced
672:40025381bded 673:ad304b606163
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.chapter_count'),
6 (r'single/(?P<id>[^/]+)/?$', 'hgbook.comments.views.single'),
7 (r'submit/(?P<id>[^/]+)/?$', 'hgbook.comments.views.submit')
8 )