1. from django.urls import path
    
  2. 
    
  3. from . import feeds
    
  4. 
    
  5. urlpatterns = [
    
  6.     path("syndication/rss2/", feeds.TestRss2Feed()),
    
  7.     path(
    
  8.         "syndication/rss2/with-decorated-methods/",
    
  9.         feeds.TestRss2FeedWithDecoratedMethod(),
    
  10.     ),
    
  11.     path(
    
  12.         "syndication/rss2/with-wrong-decorated-methods/",
    
  13.         feeds.TestRss2FeedWithWrongDecoratedMethod(),
    
  14.     ),
    
  15.     path("syndication/rss2/articles/<int:entry_id>/", feeds.TestGetObjectFeed()),
    
  16.     path(
    
  17.         "syndication/rss2/guid_ispermalink_true/",
    
  18.         feeds.TestRss2FeedWithGuidIsPermaLinkTrue(),
    
  19.     ),
    
  20.     path(
    
  21.         "syndication/rss2/guid_ispermalink_false/",
    
  22.         feeds.TestRss2FeedWithGuidIsPermaLinkFalse(),
    
  23.     ),
    
  24.     path("syndication/rss091/", feeds.TestRss091Feed()),
    
  25.     path("syndication/no_pubdate/", feeds.TestNoPubdateFeed()),
    
  26.     path("syndication/atom/", feeds.TestAtomFeed()),
    
  27.     path("syndication/latest/", feeds.TestLatestFeed()),
    
  28.     path("syndication/custom/", feeds.TestCustomFeed()),
    
  29.     path("syndication/language/", feeds.TestLanguageFeed()),
    
  30.     path("syndication/naive-dates/", feeds.NaiveDatesFeed()),
    
  31.     path("syndication/aware-dates/", feeds.TZAwareDatesFeed()),
    
  32.     path("syndication/feedurl/", feeds.TestFeedUrlFeed()),
    
  33.     path("syndication/articles/", feeds.ArticlesFeed()),
    
  34.     path("syndication/template/", feeds.TemplateFeed()),
    
  35.     path("syndication/template_context/", feeds.TemplateContextFeed()),
    
  36.     path("syndication/rss2/single-enclosure/", feeds.TestSingleEnclosureRSSFeed()),
    
  37.     path("syndication/rss2/multiple-enclosure/", feeds.TestMultipleEnclosureRSSFeed()),
    
  38.     path("syndication/atom/single-enclosure/", feeds.TestSingleEnclosureAtomFeed()),
    
  39.     path("syndication/atom/multiple-enclosure/", feeds.TestMultipleEnclosureAtomFeed()),
    
  40. ]