rss/urls.py @ 7e2a0c0282b3

Really, Firefox?  I actually have to tell you to inherit the font-weight for a *div*?
author Steve Losh <steve@stevelosh.com>
date Thu, 19 Mar 2009 20:53:53 -0400
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}),
)