2013-04-26 17:09:24 +00:00
|
|
|
# Copyright 2005-2008, James Garrison
|
|
|
|
# Copyright 2010, 2012 Bradley M. Kuhn
|
|
|
|
|
|
|
|
# This software's license gives you freedom; you can copy, convey,
|
|
|
|
# propagate, redistribute, modify and/or redistribute modified versions of
|
|
|
|
# this program under the terms of the GNU Affero General Public License
|
|
|
|
# (AGPL) as published by the Free Software Foundation (FSF), either
|
|
|
|
# version 3 of the License, or (at your option) any later version of the
|
|
|
|
# AGPL published by the FSF.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful, but
|
|
|
|
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero
|
|
|
|
# General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU Affero General Public License
|
|
|
|
# along with this program in a file in the toplevel directory called
|
|
|
|
# "AGPLv3". If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2010-09-26 21:20:05 +00:00
|
|
|
from django.conf.urls.defaults import *
|
2013-04-26 17:11:25 +00:00
|
|
|
from django.contrib import admin
|
2014-07-14 14:55:58 +00:00
|
|
|
from conservancy.feeds import BlogFeed, PressReleaseFeed, OmnibusFeed
|
2010-09-26 21:20:05 +00:00
|
|
|
|
|
|
|
handler404 = 'modpythoncustom.view404'
|
|
|
|
|
2013-04-26 17:09:24 +00:00
|
|
|
admin.autodiscover()
|
|
|
|
|
2010-09-26 21:20:05 +00:00
|
|
|
urlpatterns = patterns('',
|
2014-07-14 16:08:53 +00:00
|
|
|
(r'^$', 'conservancy.frontpage.view'),
|
2013-04-26 17:09:24 +00:00
|
|
|
(r'^admin/doc/', include('django.contrib.admindocs.urls')),
|
2014-07-14 18:49:17 +00:00
|
|
|
(r'^admin/', admin.site.urls),
|
2014-07-14 15:49:03 +00:00
|
|
|
(r'^feeds/blog/?$', BlogFeed()),
|
|
|
|
(r'^feeds/news/?$', PressReleaseFeed()),
|
|
|
|
(r'^feeds/omnibus/?$', OmnibusFeed()),
|
2010-10-11 20:29:20 +00:00
|
|
|
(r'^feeds/?$', 'conservancy.feeds.view'),
|
|
|
|
(r'^news(/|$)', include('conservancy.apps.news.urls')),
|
|
|
|
(r'^blog(/|$)', include('conservancy.apps.blog.urls')),
|
2010-09-26 21:20:05 +00:00
|
|
|
)
|