rss/urls.py @ 304d881c8458

Fix the formatting of inline code snippets in list items.
author Steve Losh <steve@stevelosh.com>
date Mon, 01 Jun 2009 21:51:26 -0400
parents 9f1be6d74c1b
children afec18ea1700
from django.conf.urls.defaults import *
from stevelosh.rss.feeds import *

feeds = { 'blog': LatestEntries, 
          'comments': LatestComments,
          'projects': LatestProjects, 
          'all': LatestEverything, }

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