Files @ 54451c15e228
Branch filter:

Location: website/www/conservancy/urls.py

bkuhn
I think I want this color to appear on highlighted menu items.
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')),
)