rss/urls.py @ 115fd0ac6843

Cleanup Tuesdays - Cleaned up the entry URLs in the templates.
author Steve Losh <steve@stevelosh.com>
date Tue, 24 Mar 2009 19:42:38 -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}),
)