File: urls.py

package info (click to toggle)
python-django 3%3A3.2.19-1%2Bdeb12u2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm-proposed-updates
  • size: 56,696 kB
  • sloc: python: 264,418; javascript: 18,362; xml: 193; makefile: 178; sh: 43
file content (30 lines) | stat: -rw-r--r-- 1,502 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
from django.urls import path

from . import feeds

urlpatterns = [
    path('syndication/rss2/', feeds.TestRss2Feed()),
    path('syndication/rss2/articles/<int:entry_id>/', feeds.TestGetObjectFeed()),
    path(
        'syndication/rss2/guid_ispermalink_true/',
        feeds.TestRss2FeedWithGuidIsPermaLinkTrue()),
    path(
        'syndication/rss2/guid_ispermalink_false/',
        feeds.TestRss2FeedWithGuidIsPermaLinkFalse()),
    path('syndication/rss091/', feeds.TestRss091Feed()),
    path('syndication/no_pubdate/', feeds.TestNoPubdateFeed()),
    path('syndication/atom/', feeds.TestAtomFeed()),
    path('syndication/latest/', feeds.TestLatestFeed()),
    path('syndication/custom/', feeds.TestCustomFeed()),
    path('syndication/language/', feeds.TestLanguageFeed()),
    path('syndication/naive-dates/', feeds.NaiveDatesFeed()),
    path('syndication/aware-dates/', feeds.TZAwareDatesFeed()),
    path('syndication/feedurl/', feeds.TestFeedUrlFeed()),
    path('syndication/articles/', feeds.ArticlesFeed()),
    path('syndication/template/', feeds.TemplateFeed()),
    path('syndication/template_context/', feeds.TemplateContextFeed()),
    path('syndication/rss2/single-enclosure/', feeds.TestSingleEnclosureRSSFeed()),
    path('syndication/rss2/multiple-enclosure/', feeds.TestMultipleEnclosureRSSFeed()),
    path('syndication/atom/single-enclosure/', feeds.TestSingleEnclosureAtomFeed()),
    path('syndication/atom/multiple-enclosure/', feeds.TestMultipleEnclosureAtomFeed()),
]