~ubuntu-branches/debian/sid/python-django/sid

« back to all changes in this revision

Viewing changes to tests/syndication_tests/urls.py

  • Committer: Package Import Robot
  • Author(s): Raphaël Hertzog
  • Date: 2014-09-17 14:15:11 UTC
  • mfrom: (1.3.17) (6.2.18 experimental)
  • Revision ID: package-import@ubuntu.com-20140917141511-icneokthe9ww5sk4
Tags: 1.7-2
* Release to unstable.
* Add a migrate-south sample script to help users apply their South
  migrations. Thanks to Brian May.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
from django.conf.urls import patterns
 
2
 
 
3
from . import feeds
 
4
 
 
5
 
 
6
urlpatterns = patterns('django.contrib.syndication.views',
 
7
    (r'^syndication/complex/(?P<foo>.*)/$', feeds.ComplexFeed()),
 
8
    (r'^syndication/rss2/$', feeds.TestRss2Feed()),
 
9
    (r'^syndication/rss2/guid_ispermalink_true/$',
 
10
        feeds.TestRss2FeedWithGuidIsPermaLinkTrue()),
 
11
    (r'^syndication/rss2/guid_ispermalink_false/$',
 
12
        feeds.TestRss2FeedWithGuidIsPermaLinkFalse()),
 
13
    (r'^syndication/rss091/$', feeds.TestRss091Feed()),
 
14
    (r'^syndication/no_pubdate/$', feeds.TestNoPubdateFeed()),
 
15
    (r'^syndication/atom/$', feeds.TestAtomFeed()),
 
16
    (r'^syndication/latest/$', feeds.TestLatestFeed()),
 
17
    (r'^syndication/custom/$', feeds.TestCustomFeed()),
 
18
    (r'^syndication/naive-dates/$', feeds.NaiveDatesFeed()),
 
19
    (r'^syndication/aware-dates/$', feeds.TZAwareDatesFeed()),
 
20
    (r'^syndication/feedurl/$', feeds.TestFeedUrlFeed()),
 
21
    (r'^syndication/articles/$', feeds.ArticlesFeed()),
 
22
    (r'^syndication/template/$', feeds.TemplateFeed()),
 
23
    (r'^syndication/template_context/$', feeds.TemplateContextFeed()),
 
24
)