2014-04-02 08:46:34 +08:00
|
|
|
from django.conf.urls import url
|
2010-01-28 21:46:18 +08:00
|
|
|
|
2011-10-14 05:34:56 +08:00
|
|
|
from . import feeds
|
|
|
|
|
2008-03-20 14:35:53 +08:00
|
|
|
|
2014-04-02 08:46:34 +08:00
|
|
|
urlpatterns = [
|
|
|
|
url(r'^syndication/complex/(?P<foo>.*)/$', feeds.ComplexFeed()),
|
|
|
|
url(r'^syndication/rss2/$', feeds.TestRss2Feed()),
|
|
|
|
url(r'^syndication/rss2/guid_ispermalink_true/$',
|
2013-02-06 18:25:35 +08:00
|
|
|
feeds.TestRss2FeedWithGuidIsPermaLinkTrue()),
|
2014-04-02 08:46:34 +08:00
|
|
|
url(r'^syndication/rss2/guid_ispermalink_false/$',
|
2013-02-06 18:25:35 +08:00
|
|
|
feeds.TestRss2FeedWithGuidIsPermaLinkFalse()),
|
2014-04-02 08:46:34 +08:00
|
|
|
url(r'^syndication/rss091/$', feeds.TestRss091Feed()),
|
|
|
|
url(r'^syndication/no_pubdate/$', feeds.TestNoPubdateFeed()),
|
|
|
|
url(r'^syndication/atom/$', feeds.TestAtomFeed()),
|
|
|
|
url(r'^syndication/latest/$', feeds.TestLatestFeed()),
|
|
|
|
url(r'^syndication/custom/$', feeds.TestCustomFeed()),
|
|
|
|
url(r'^syndication/naive-dates/$', feeds.NaiveDatesFeed()),
|
|
|
|
url(r'^syndication/aware-dates/$', feeds.TZAwareDatesFeed()),
|
|
|
|
url(r'^syndication/feedurl/$', feeds.TestFeedUrlFeed()),
|
|
|
|
url(r'^syndication/articles/$', feeds.ArticlesFeed()),
|
|
|
|
url(r'^syndication/template/$', feeds.TemplateFeed()),
|
|
|
|
url(r'^syndication/template_context/$', feeds.TemplateContextFeed()),
|
|
|
|
]
|