SEESenv/web/hgbook/comments/urls.py
author amit@shrike.aero.iitb.ac.in
Wed, 14 Apr 2010 14:38:29 +0530
changeset 54 ce987056033c
parent 2 52d12eb31c30
permissions -rwxr-xr-x
Changed the list of chapter according to the actuall SEES course.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
0
8083d21c0020 The first commit of all the required files for the review app
amit@thunder
parents:
diff changeset
     1
from django.conf.urls.defaults import *
8083d21c0020 The first commit of all the required files for the review app
amit@thunder
parents:
diff changeset
     2
8083d21c0020 The first commit of all the required files for the review app
amit@thunder
parents:
diff changeset
     3
urlpatterns = patterns('',
8083d21c0020 The first commit of all the required files for the review app
amit@thunder
parents:
diff changeset
     4
    (r'chapter/(?P<id>[^/]+)/?$', 'hgbook.comments.views.chapter'),
8083d21c0020 The first commit of all the required files for the review app
amit@thunder
parents:
diff changeset
     5
    (r'chapter/(?P<id>[^/]+)/count/?$', 'hgbook.comments.views.single_com'),
8083d21c0020 The first commit of all the required files for the review app
amit@thunder
parents:
diff changeset
     6
    (r'single/(?P<id>[^/]+)/?$', 'hgbook.comments.views.single'),
8083d21c0020 The first commit of all the required files for the review app
amit@thunder
parents:
diff changeset
     7
    (r'submit/(?P<id>[^/]+)/?$', 'hgbook.comments.views.submit')
8083d21c0020 The first commit of all the required files for the review app
amit@thunder
parents:
diff changeset
     8
)