2011-10-14 02:51:33 +08:00
|
|
|
from __future__ import absolute_import
|
|
|
|
|
2011-09-12 06:36:16 +08:00
|
|
|
from django.conf.urls import patterns, url
|
2011-01-13 22:51:34 +08:00
|
|
|
from django.contrib.comments.feeds import LatestCommentFeed
|
|
|
|
|
2011-10-14 02:51:33 +08:00
|
|
|
from .custom_comments import views
|
|
|
|
|
|
|
|
|
2011-01-13 22:51:34 +08:00
|
|
|
feeds = {
|
|
|
|
'comments': LatestCommentFeed,
|
|
|
|
}
|
2009-02-24 06:16:26 +08:00
|
|
|
|
2011-10-14 02:51:33 +08:00
|
|
|
urlpatterns = patterns('',
|
|
|
|
url(r'^post/$', views.custom_submit_comment),
|
|
|
|
url(r'^flag/(\d+)/$', views.custom_flag_comment),
|
|
|
|
url(r'^delete/(\d+)/$', views.custom_delete_comment),
|
|
|
|
url(r'^approve/(\d+)/$', views.custom_approve_comment),
|
2009-02-24 06:16:26 +08:00
|
|
|
)
|
|
|
|
|
2011-01-13 22:51:34 +08:00
|
|
|
urlpatterns += patterns('',
|
|
|
|
(r'^rss/comments/$', LatestCommentFeed()),
|
|
|
|
)
|