mirror of
https://github.com/Hopiu/django.git
synced 2026-05-03 13:14:44 +00:00
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8310 bcc190cf-cafb-0310-a4f2-bffc1f526a37
12 lines
330 B
Python
12 lines
330 B
Python
from feeds import TestRssFeed, TestAtomFeed, ComplexFeed
|
|
from django.conf.urls.defaults import patterns
|
|
|
|
feed_dict = {
|
|
'complex': ComplexFeed,
|
|
'rss': TestRssFeed,
|
|
'atom': TestAtomFeed,
|
|
|
|
}
|
|
urlpatterns = patterns('',
|
|
(r'^feeds/(?P<url>.*)/$', 'django.contrib.syndication.views.feed', {'feed_dict': feed_dict})
|
|
)
|