rss/urls.py @ a8bf2eea85f7

Fixed the plural for blog entries too.
author Steve Losh <steve@stevelosh.com>
date Sat, 14 Feb 2009 11:46:36 -0500
parents 315df6ca542d
children 677d5ff5c56e
from django.conf.urls.defaults import *
from stevelosh.rss.feeds import *

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

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