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/>.
|
|
|
|
|
2015-03-03 18:40:18 +00:00
|
|
|
from django.conf.urls import patterns, url, include
|
2013-04-26 17:11:25 +00:00
|
|
|
from django.contrib import admin
|
2015-03-03 18:40:18 +00:00
|
|
|
|
|
|
|
# import conservancy.settings
|
|
|
|
from django.conf import settings
|
2014-07-14 14:55:58 +00:00
|
|
|
from conservancy.feeds import BlogFeed, PressReleaseFeed, OmnibusFeed
|
2015-03-03 18:40:18 +00:00
|
|
|
# from django.views.static import serve
|
|
|
|
# from django.conf.urls.static import static
|
|
|
|
# from django.contrib.staticfiles.urls import staticfiles_urlpatterns
|
|
|
|
# import conservancy.static.overview.views
|
2010-09-26 21:20:05 +00:00
|
|
|
|
2015-03-03 18:40:18 +00:00
|
|
|
# handler404 = 'modpythoncustom.view404'
|
|
|
|
# handler401 = 'conservancy.static.views.handler401'
|
|
|
|
# handler403 = 'conservancy.static.views.handler403'
|
|
|
|
handler404 = 'conservancy.static.views.handler404'
|
|
|
|
# handler500 = 'conservancy.static.views.handler500'
|
2010-09-26 21:20:05 +00:00
|
|
|
|
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'),
|
2015-01-03 14:36:22 +00:00
|
|
|
(r'^sponsors$', 'conservancy.frontpage.view'),
|
|
|
|
(r'^sponsors/$', 'conservancy.sponsors.view'),
|
|
|
|
(r'^sponsors/index.html$', 'conservancy.sponsors.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')),
|
2015-03-03 18:40:18 +00:00
|
|
|
# formerly static templated things... (dirs with templates)
|
2016-12-06 02:43:51 +00:00
|
|
|
(r'^error/(40[134]|500)(?:/index\.html|/|)$', 'conservancy.static.views.handler'),
|
2015-03-03 18:40:18 +00:00
|
|
|
(r'^error', 'conservancy.static.views.index'),
|
|
|
|
(r'^about', 'conservancy.static.views.index'),
|
|
|
|
(r'^donate', 'conservancy.static.views.index'),
|
2015-12-01 04:08:44 +00:00
|
|
|
(r'^copyleft-compliance', 'conservancy.static.views.index',
|
2015-03-09 06:28:42 +00:00
|
|
|
{'fundraiser_sought' : 'vmware-match-0'}),
|
2016-10-24 20:56:37 +00:00
|
|
|
(r'^projects', 'conservancy.static.views.index'),
|
2015-03-09 06:40:47 +00:00
|
|
|
(r'^npoacct', 'conservancy.static.views.index',
|
2015-03-09 06:28:42 +00:00
|
|
|
{'fundraiser_sought' : 'npoacct'}),
|
2016-11-28 19:53:27 +00:00
|
|
|
(r'^contractpatch', include('conservancy.apps.contractpatch.urls')),
|
2015-03-03 18:40:18 +00:00
|
|
|
(r'^overview', 'conservancy.static.views.index'),
|
|
|
|
(r'^privacy-policy', 'conservancy.static.views.index'),
|
2016-12-02 17:52:32 +00:00
|
|
|
(r'^supporter', include('conservancy.apps.supporter.urls')),
|
2015-05-10 00:12:34 +00:00
|
|
|
(r'^fundraiser_data', 'conservancy.apps.fundgoal.views.view'),
|
2010-09-26 21:20:05 +00:00
|
|
|
)
|
2015-03-03 18:40:18 +00:00
|
|
|
|
|
|
|
# urlpatterns += url(regex = r'^%s(?P<path>.*)$' % conservancy.settings.STATIC_URL[1:],
|
|
|
|
# urlpatterns += url(regex = r'^/overview',
|
|
|
|
# view = 'django.views.static.serve',
|
|
|
|
# kwargs = {'document_root': conservancy.settings.STATIC_ROOT,
|
|
|
|
# 'show_indexes' : True})
|
|
|
|
# urlpatterns += (r'^(?P<path>.*)$', 'django.views.static.serve',
|
|
|
|
# urlpatterns += (r'^overview/$', 'django.views.static.serve',
|
|
|
|
# {'document_root': conservancy.settings.STATIC_ROOT,
|
|
|
|
# 'show_indexes' : True})
|
|
|
|
|
|
|
|
# https://docs.djangoproject.com/en/1.7/howto/static-files/
|
|
|
|
# + static(conservancy.settings.STATIC_URL, document_root=conservancy.settings.STATIC_ROOT)
|
|
|
|
|
|
|
|
# urlpatterns += staticfiles_urlpatterns()
|
|
|
|
|
|
|
|
# urlpatterns += static(settings.STATIC_URL, view='django.contrib.staticfiles.views.serve',
|
|
|
|
# urlpatterns += static('/', view='django.contrib.staticfiles.views.serve',
|
|
|
|
# document_root=settings.STATIC_ROOT,
|
|
|
|
# show_indexes=True)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|