~widelands-dev/widelands-website/django_staticfiles

« back to all changes in this revision

Viewing changes to pybb/urls.py

  • Committer: franku
  • Date: 2016-03-02 21:02:38 UTC
  • mto: This revision was merged to the branch mainline in revision 409.
  • Revision ID: somal@arcor.de-20160302210238-kuzuundfpu2fgiab
first partially working version with old data

Show diffs side-by-side

added added

removed removed

Lines of Context:
13
13
    url('^$', views.index, name='pybb_index'),
14
14
    url('^category/(?P<category_id>\d+)/$', views.show_category, name='pybb_category'),
15
15
    url('^forum/(?P<forum_id>\d+)/$', views.show_forum, name='pybb_forum'),
16
 
    #url('^feeds/(?P<url>.*)/$', 'django.contrib.syndication.views.feed',
17
 
    #    {'feed_dict': feeds}, name='pybb_feed'),
 
16
    url('^feeds/(?P<url>.*)/$', 'django.contrib.syndication.views.Feed',
 
17
        {'feed_dict': feeds}, name='pybb_feed'),
18
18
 
19
19
    # Topic
20
20
    url('^topic/(?P<topic_id>\d+)/$', views.show_topic, name='pybb_topic'),