rss/urls.py @ 8bf8390a254a

Change the source link to point at the REAL BitBucket link.
author Steve Losh <steve@stevelosh.com>
date Thu, 01 Oct 2009 18:05:49 -0400
parents afec18ea1700
children (none)
from django.conf.urls.defaults import *
from stevelosh.rss.feeds import *

feeds = { 'comments': LatestComments,
          'all': LatestEverything, }

urlpatterns = patterns('',
    url(r'^(?P<url>.+)/$', 'django.contrib.syndication.views.feed', 
        {'feed_dict': feeds}),
)