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/>.
|
|
|
|
|
2017-11-03 15:47:21 +00:00
|
|
|
from django.conf.urls import url, include
|
2021-10-13 10:20:24 +00:00
|
|
|
from django.contrib import admin
|
2015-03-03 18:40:18 +00:00
|
|
|
|
2017-11-03 15:47:21 +00:00
|
|
|
from conservancy import feeds, frontpage, sponsors
|
|
|
|
import conservancy.apps.fundgoal.views as fundgoal_views
|
|
|
|
import conservancy.static.views as static_views
|
2010-09-26 21:20:05 +00:00
|
|
|
|
2013-04-26 17:09:24 +00:00
|
|
|
admin.autodiscover()
|
|
|
|
|
2017-11-03 15:47:21 +00:00
|
|
|
urlpatterns = [
|
2022-07-06 18:18:22 +00:00
|
|
|
# Uncomment these 3 lines when testing locally to get static content
|
2023-01-31 18:52:44 +00:00
|
|
|
url(r'^css', static_views.index),
|
|
|
|
url(r'^img', static_views.index),
|
|
|
|
url(r'^js', static_views.index),
|
2017-11-03 15:47:21 +00:00
|
|
|
url(r'^$', frontpage.view),
|
|
|
|
url(r'^sponsors$', frontpage.view),
|
|
|
|
url(r'^sponsors/$', sponsors.view),
|
|
|
|
url(r'^sponsors/index.html$', sponsors.view),
|
|
|
|
url(r'^admin/doc/', include('django.contrib.admindocs.urls')),
|
|
|
|
url(r'^admin/', admin.site.urls),
|
|
|
|
url(r'^feeds/blog/?$', feeds.BlogFeed()),
|
|
|
|
url(r'^feeds/news/?$', feeds.PressReleaseFeed()),
|
|
|
|
url(r'^feeds/omnibus/?$', feeds.OmnibusFeed()),
|
|
|
|
url(r'^feeds/?$', feeds.view),
|
2021-12-17 07:14:50 +00:00
|
|
|
url(r'^news/', include('conservancy.apps.news.urls')),
|
|
|
|
url(r'^blog/', include('conservancy.apps.blog.urls')),
|
2015-03-03 18:40:18 +00:00
|
|
|
# formerly static templated things... (dirs with templates)
|
2017-11-03 15:47:21 +00:00
|
|
|
url(r'^error/(40[134]|500)(?:/index\.html|/|)$', static_views.handler),
|
|
|
|
url(r'^error', static_views.index),
|
|
|
|
url(r'^about', static_views.index),
|
2021-10-19 11:56:20 +00:00
|
|
|
url(r'^activities', static_views.index),
|
2017-11-03 15:47:21 +00:00
|
|
|
url(r'^donate', static_views.index),
|
|
|
|
url(r'^copyleft-compliance', static_views.index,
|
2015-03-09 06:28:42 +00:00
|
|
|
{'fundraiser_sought' : 'vmware-match-0'}),
|
2021-10-19 12:47:58 +00:00
|
|
|
url(r'^learn', static_views.index),
|
|
|
|
url(r'^press', static_views.index),
|
2017-11-03 15:47:21 +00:00
|
|
|
url(r'^projects', static_views.index),
|
2022-06-30 12:34:00 +00:00
|
|
|
url(r'^GiveUpGitHub', static_views.index),
|
2017-11-03 15:47:21 +00:00
|
|
|
url(r'^npoacct', static_views.index,
|
2015-03-09 06:28:42 +00:00
|
|
|
{'fundraiser_sought' : 'npoacct'}),
|
2017-11-03 15:47:21 +00:00
|
|
|
url(r'^contractpatch', include('conservancy.apps.contractpatch.urls')),
|
|
|
|
url(r'^overview', static_views.index),
|
|
|
|
url(r'^privacy-policy', static_views.index),
|
2021-12-17 06:27:26 +00:00
|
|
|
url(r'^sustainer/', include('conservancy.apps.supporter.urls')),
|
2021-10-19 04:51:11 +00:00
|
|
|
url(r'^coming-soon.html', static_views.index),
|
2017-11-03 15:47:21 +00:00
|
|
|
url(r'^fundraiser_data', fundgoal_views.view),
|
2021-11-26 07:14:22 +00:00
|
|
|
url(r'^ccs-upload/', include('conservancy.apps.ccs_upload.urls', namespace='ccs_upload')),
|
2022-05-02 15:05:02 +00:00
|
|
|
url(r'^assignment/', include('conservancy.apps.assignment.urls')),
|
2023-01-27 08:49:25 +00:00
|
|
|
url(r'^fossy/$', static_views.index),
|
|
|
|
url(r'^fossy/', include('conservancy.apps.fossy.urls')),
|
2023-10-13 02:08:16 +00:00
|
|
|
url(r'^cast/', include('podjango.urls')),
|
2017-11-03 15:47:21 +00:00
|
|
|
]
|