mirror of
https://github.com/django/django.git
synced 2024-11-18 07:26:04 +00:00
a269ea4fe0
Some feed aggregators make use of the `published` element as well as the `updated` element (within the Atom standard -- http://bit.ly/2YySb). The standard allows for these two elements to be present in the same entry. `Atom1Feed` had implemented the `updated` element which was incorrectly taking the date from `pubdate`.
27 lines
1.1 KiB
Python
27 lines
1.1 KiB
Python
from __future__ import absolute_import
|
|
|
|
from django.conf.urls import patterns
|
|
|
|
from . import feeds
|
|
|
|
|
|
urlpatterns = patterns('django.contrib.syndication.views',
|
|
(r'^syndication/complex/(?P<foo>.*)/$', feeds.ComplexFeed()),
|
|
(r'^syndication/rss2/$', feeds.TestRss2Feed()),
|
|
(r'^syndication/rss2/guid_ispermalink_true/$',
|
|
feeds.TestRss2FeedWithGuidIsPermaLinkTrue()),
|
|
(r'^syndication/rss2/guid_ispermalink_false/$',
|
|
feeds.TestRss2FeedWithGuidIsPermaLinkFalse()),
|
|
(r'^syndication/rss091/$', feeds.TestRss091Feed()),
|
|
(r'^syndication/no_pubdate/$', feeds.TestNoPubdateFeed()),
|
|
(r'^syndication/atom/$', feeds.TestAtomFeed()),
|
|
(r'^syndication/latest/$', feeds.TestLatestFeed()),
|
|
(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()),
|
|
(r'^syndication/template_context/$', feeds.TemplateContextFeed()),
|
|
)
|