rss/urls.py @ 3a51bfa414da

Everything feed is once again unborked, and the templates are cleaner!
author Steve Losh <steve@stevelosh.com>
date Sun, 15 Feb 2009 00:50:20 -0500
parents 677d5ff5c56e
children a3380ed37242
from django.conf.urls.defaults import *
from stevelosh.rss.feeds import *

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

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