rss/urls.py @ 444fa384fab8
Got a working photoblog (almost).
author | Steve Losh <steve@stevelosh.com> |
---|---|
date | Sat, 14 Feb 2009 12:39:39 -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}), )