2011-09-11 22:36:16 +00:00
|
|
|
from django.conf.urls import patterns
|
2010-01-28 13:46:18 +00:00
|
|
|
|
2009-04-07 21:20:14 +00:00
|
|
|
import feeds
|
2008-03-20 06:35:53 +00:00
|
|
|
|
2010-01-28 13:46:18 +00:00
|
|
|
urlpatterns = patterns('django.contrib.syndication.views',
|
2011-04-02 13:27:17 +00:00
|
|
|
(r'^syndication/complex/(?P<foo>.*)/$', feeds.ComplexFeed()),
|
|
|
|
(r'^syndication/rss2/$', feeds.TestRss2Feed()),
|
|
|
|
(r'^syndication/rss091/$', feeds.TestRss091Feed()),
|
|
|
|
(r'^syndication/atom/$', feeds.TestAtomFeed()),
|
|
|
|
(r'^syndication/custom/$', feeds.TestCustomFeed()),
|
|
|
|
(r'^syndication/naive-dates/$', feeds.NaiveDatesFeed()),
|
|
|
|
(r'^syndication/aware-dates/$', feeds.TZAwareDatesFeed()),
|
|
|
|
(r'^syndication/feedurl/$', feeds.TestFeedUrlFeed()),
|
|
|
|
(r'^syndication/articles/$', feeds.ArticlesFeed()),
|
|
|
|
(r'^syndication/template/$', feeds.TemplateFeed()),
|
2008-03-20 06:35:53 +00:00
|
|
|
)
|