Changeset - 9b59b9efe348
[Not reviewed]
0 1 0
Bradley Kuhn (bkuhn) - 13 years ago 2010-10-05 14:45:50
bkuhn@ebb.org
Don't require trailing / on RSS feed URLs.
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
www/conservancy/urls.py
Show inline comments
...
 
@@ -5,7 +5,7 @@ handler404 = 'modpythoncustom.view404'
 

	
 
urlpatterns = patterns('',
 
    (r'^$', 'conservancy.frontpage.view'),
 
    (r'^feeds/(?P<url>.*)/$', 'django.contrib.syndication.views.feed',
 
    (r'^feeds/(?P<url>.*)/?$', 'django.contrib.syndication.views.feed',
 
     {'feed_dict': feed_dict}),
 
    (r'^feeds/$', 'conservancy.feeds.view'),
 
    (r'^news/', include('conservancy.apps.news.urls')),
0 comments (0 inline, 0 general)