summaryrefslogtreecommitdiff
path: root/legacy
diff options
context:
space:
mode:
authorAymeric Augustin <aymeric.augustin@m4x.org>2013-02-07 15:16:19 +0100
committerAymeric Augustin <aymeric.augustin@m4x.org>2013-02-07 15:16:19 +0100
commit747929aa2cc9767008e66946ca74f83794672418 (patch)
tree16cfdb41b38e45daff58f8c1e2060cfd42dc3c8c /legacy
parent01b5ef5f0bf7360304938064f1b7a1cb628b0043 (diff)
Remove all code related to comments.
They were turned off on July 28th, 2009.
Diffstat (limited to 'legacy')
-rw-r--r--legacy/urls.py10
1 files changed, 6 insertions, 4 deletions
diff --git a/legacy/urls.py b/legacy/urls.py
index 807e93e9..759a7412 100644
--- a/legacy/urls.py
+++ b/legacy/urls.py
@@ -9,8 +9,10 @@ from django.conf.urls import patterns
from .views import gone
urlpatterns = patterns('',
- (r'^documentation/models/$', gone),
- (r'^documentation/models/(?P<slug>\w+)/$', gone),
- (r'^documentation/(?P<version>[\d.]+)/models/$', gone),
- (r'^documentation/(?P<version>[\d.]+)/models/(?P<slug>\w+)/$', gone),
+ (r'^comments/', gone),
+ (r'^rss/comments/$', gone),
+ (r'^documentation/models/$', gone),
+ (r'^documentation/models/(?P<slug>\w+)/$', gone),
+ (r'^documentation/(?P<version>[\d.]+)/models/$', gone),
+ (r'^documentation/(?P<version>[\d.]+)/models/(?P<slug>\w+)/$', gone),
)