urls.py 692 B

12345678910111213141516
  1. from django.conf.urls.defaults import *
  2. import feeds
  3. urlpatterns = patterns('django.contrib.syndication.views',
  4. (r'^syndication/complex/(?P<foo>.*)/$', feeds.ComplexFeed()),
  5. (r'^syndication/rss2/$', feeds.TestRss2Feed()),
  6. (r'^syndication/rss091/$', feeds.TestRss091Feed()),
  7. (r'^syndication/atom/$', feeds.TestAtomFeed()),
  8. (r'^syndication/custom/$', feeds.TestCustomFeed()),
  9. (r'^syndication/naive-dates/$', feeds.NaiveDatesFeed()),
  10. (r'^syndication/aware-dates/$', feeds.TZAwareDatesFeed()),
  11. (r'^syndication/feedurl/$', feeds.TestFeedUrlFeed()),
  12. (r'^syndication/articles/$', feeds.ArticlesFeed()),
  13. (r'^syndication/template/$', feeds.TemplateFeed()),
  14. )