2011-09-12 06:36:16 +08:00
|
|
|
from django.conf.urls import patterns
|
2010-01-28 21:46:18 +08:00
|
|
|
|
2009-04-08 05:20:14 +08:00
|
|
|
import feeds
|
2008-03-20 14:35:53 +08:00
|
|
|
|
2010-01-28 21:46:18 +08:00
|
|
|
urlpatterns = patterns('django.contrib.syndication.views',
|
2011-04-02 21:27:17 +08: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 14:35:53 +08:00
|
|
|
)
|