Files @ 698e9324a683
Branch filter:

Location: website/www/conservancy/urls.py

bkuhn
Fixed to be Jim Garrison's copyright per Eben Moglen's directive that all
SFLC employees hold their own copyright on the software they write.
from django.conf.urls.defaults import *
from conservancy.feeds import feed_dict

handler404 = 'modpythoncustom.view404'

urlpatterns = patterns('',
    (r'^$', 'conservancy.frontpage.view'),
    (r'^feeds/(?P<url>.*)/$', 'django.contrib.syndication.views.feed',
     {'feed_dict': feed_dict}),
    (r'^feeds/$', 'conservancy.feeds.view'),
    (r'^news/', include('conservancy.apps.news.urls')),
)