2015-03-03 18:40:18 +00:00
|
|
|
from django.conf.urls import patterns, url, include
|
2015-03-09 00:54:05 +00:00
|
|
|
from conservancy.apps.blog.models import Entry, EntryTag # relative import
|
2010-09-26 21:54:29 +00:00
|
|
|
from conservancy.apps.staff.models import Person
|
2010-09-26 21:32:53 +00:00
|
|
|
from datetime import datetime
|
2015-03-09 00:54:05 +00:00
|
|
|
from conservancy.apps.blog.views import last_name, BlogYearArchiveView, BlogMonthArchiveView, BlogDayArchiveView, BlogDateDetailView
|
2010-09-26 21:32:53 +00:00
|
|
|
|
|
|
|
extra_context = {}
|
|
|
|
|
|
|
|
info_dict = {
|
|
|
|
'queryset': Entry.objects.all(),
|
|
|
|
'date_field': 'pub_date',
|
|
|
|
'extra_context': extra_context,
|
|
|
|
}
|
|
|
|
|
2015-03-03 18:40:18 +00:00
|
|
|
# urlpatterns = patterns('django.views.generic.date_based',
|
|
|
|
urlpatterns = patterns('',
|
|
|
|
# (r'^(?P<year>\d{4})/(?P<month>[a-z]{3})/(?P<day>\w{1,2})/(?P<slug>[-\w]+)/$', 'object_detail', dict(info_dict, slug_field='slug')),
|
|
|
|
# (r'^(?P<year>\d{4})/(?P<month>[a-z]{3})/(?P<day>\w{1,2})/$', 'archive_day', info_dict),
|
|
|
|
# (r'^(?P<year>\d{4})/(?P<month>[a-z]{3})/$', 'archive_month', info_dict),
|
|
|
|
# (r'^(?P<year>\d{4})/$', 'archive_year', dict(info_dict,
|
|
|
|
# make_object_list=True)),
|
|
|
|
(r'^(?P<year>\d{4})/(?P<month>[a-z]{3})/(?P<day>\w{1,2})/(?P<slug>[-\w]+)/$', BlogDateDetailView.as_view(**info_dict)),
|
|
|
|
(r'^(?P<year>\d{4})/(?P<month>[a-z]{3})/(?P<day>\w{1,2})/$', BlogDayArchiveView.as_view(**info_dict)),
|
|
|
|
(r'^(?P<year>\d{4})/(?P<month>[a-z]{3})/$', BlogMonthArchiveView.as_view(**info_dict)),
|
|
|
|
(r'^(?P<year>\d{4})/$', BlogYearArchiveView.as_view(**info_dict)),
|
2010-09-26 21:32:53 +00:00
|
|
|
)
|
|
|
|
|
2010-09-26 21:54:29 +00:00
|
|
|
urlpatterns += patterns('conservancy.apps.blog.views',
|
2015-03-04 23:12:02 +00:00
|
|
|
(r'^/?$', 'custom_index', dict(info_dict, paginate_by=4)),
|
2010-09-26 21:32:53 +00:00
|
|
|
(r'^query/$', 'query'),
|
|
|
|
)
|
|
|
|
|
|
|
|
# Code to display authors and tags on each blog page
|
|
|
|
|
|
|
|
def all_tags_by_use_amount():
|
|
|
|
"""Returns all tags with an added 'cnt' attribute (how many times used)
|
|
|
|
|
|
|
|
Also sorts the tags so most-used tags appear first.
|
|
|
|
"""
|
|
|
|
|
|
|
|
# tally use amount
|
|
|
|
retval = []
|
|
|
|
current = None
|
|
|
|
for obj in EntryTag.objects.filter(entry__pub_date__lte=datetime.now(),
|
|
|
|
entry__isnull=False).order_by('label'):
|
|
|
|
if current is not None and obj.id == current.id:
|
|
|
|
current.cnt += 1
|
|
|
|
else:
|
|
|
|
if current is not None:
|
|
|
|
retval.append(current)
|
|
|
|
current = obj
|
|
|
|
current.cnt = 1
|
|
|
|
if current is not None:
|
|
|
|
retval.append(current)
|
|
|
|
|
|
|
|
# sort and return
|
|
|
|
retval.sort(key=lambda x: -x.cnt)
|
|
|
|
return retval
|
|
|
|
|
|
|
|
def all_authors():
|
|
|
|
return sorted(Person.objects.filter(entry__isnull=False).distinct(),
|
|
|
|
key=last_name)
|
|
|
|
|
2015-03-04 23:40:54 +00:00
|
|
|
def all_year_list():
|
2015-03-04 23:43:04 +00:00
|
|
|
return Entry.objects.dates('pub_date', 'year')
|
2015-03-04 23:40:54 +00:00
|
|
|
|
2010-09-26 21:32:53 +00:00
|
|
|
# The functions are passed to the context uncalled so they will be
|
|
|
|
# called for each web request. If we want to only make these database
|
|
|
|
# queries a single time when a web server process begins, call both
|
|
|
|
# functions below (i.e. make both lines below end in '()')
|
|
|
|
|
|
|
|
extra_context['all_authors'] = all_authors
|
|
|
|
extra_context['all_tags'] = all_tags_by_use_amount
|
2015-03-04 23:40:54 +00:00
|
|
|
extra_context['all_year_list'] = all_year_list
|