Files @ 09654a5eac60
Branch filter:

Location: website/www/conservancy/urls.py - annotation

bkuhn
Fundraising goal lookup for template: 1st attempt

This seems to be the best approach to pass a fundraising goal record to
a template. While the static hack that tmarble implemented probably
needs work anyway, this is probably the best way currently to interface
certain general data that we seek to place on many different pages
through the templates.

I looked into a templatetags solution, but this seemed more
straightforward and more fitting with Django principles (I think :).
# 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/>.

from django.conf.urls import patterns, url, include
from django.contrib import admin
from conservancy.apps.fundgoal.models import FundraisingGoal as FundraisingGoal

# import conservancy.settings
from django.conf import settings
from conservancy.feeds import BlogFeed, PressReleaseFeed, OmnibusFeed
# 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

# handler404 = 'modpythoncustom.view404'
# handler401 = 'conservancy.static.views.handler401'
# handler403 = 'conservancy.static.views.handler403'
handler404 = 'conservancy.static.views.handler404'
# handler500 = 'conservancy.static.views.handler500'

admin.autodiscover()

def fundgoal_lookup(fundraiser):
 try:
     return FundraisingGoal.objects.get(fundraiser_code_name)
 except FundraisingGoal.DoesNotExist:
     # we have no object!  do something
     return None

urlpatterns = patterns('',
    (r'^$', 'conservancy.frontpage.view'),
    (r'^sponsors$', 'conservancy.frontpage.view'),
    (r'^sponsors/$', 'conservancy.sponsors.view'),
    (r'^sponsors/index.html$', 'conservancy.sponsors.view'),
    (r'^admin/doc/', include('django.contrib.admindocs.urls')),
    (r'^admin/', admin.site.urls),
    (r'^feeds/blog/?$', BlogFeed()),
    (r'^feeds/news/?$', PressReleaseFeed()),
    (r'^feeds/omnibus/?$', OmnibusFeed()),
    (r'^feeds/?$', 'conservancy.feeds.view'),
    (r'^news(/|$)', include('conservancy.apps.news.urls')),
    (r'^blog(/|$)', include('conservancy.apps.blog.urls')),
    # formerly static templated things... (dirs with templates)
    (r'^error', 'conservancy.static.views.index'),
    (r'^about', 'conservancy.static.views.index'),
    (r'^donate', 'conservancy.static.views.index'),
    (r'^linux-compliance', 'conservancy.static.views.index'),
    (r'^members', 'conservancy.static.views.index'),
    (r'^npoacct', 'conservancy.static.views.index', {'fundgoal' : fundgoal_lookup('npoacct')}),
    (r'^overview', 'conservancy.static.views.index'),
    (r'^privacy-policy', 'conservancy.static.views.index'),
    (r'^supporter', 'conservancy.static.views.index'),
)

# 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)