~widelands-dev/widelands-website/django_staticfiles

« back to all changes in this revision

Viewing changes to urls.py

  • Committer: franku
  • Date: 2016-05-15 14:41:54 UTC
  • mto: This revision was merged to the branch mainline in revision 409.
  • Revision ID: somal@arcor.de-20160515144154-00m3tiibyxm0nw2w
added the old threadedcomments app as wildelands app

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
    # Feed for Mainpage
23
23
    url (r'^feeds/news/$', NewsPostsFeed()),
24
24
 
25
 
    # 3rd party, unmodified
26
 
#    (r'^notification/', include('notification.urls')), #replaced with next
27
 
    url(r"^notifications/", include("pinax.notifications.urls")),
 
25
    # Formerly 3rd party
 
26
#    (r'^notification/', include('notification.urls')),
28
27
 
29
28
    # (r'^stats/', include('simplestats.urls')),
30
29
    url (r'^messages/', include('django_messages.urls')),
31
 
#    (r'^threadedcomments/', include('threadedcomments.urls')), #replaced with next
32
 
    url(r'^articles/comments/', include('django_comments.urls')),
 
30
    url (r'^threadedcomments/', include('threadedcomments.urls')),
 
31
#    url(r'^articles/comments/', include('django_comments.urls')),
33
32
    
34
33
#    (r'^docs/', include('sphinxdoc.urls')),
35
34