Simplified date-based generic views.

Removed a confusing helper function that was confusing -- it used
last_day to store the first day of the next month.
This commit is contained in:
Aymeric Augustin 2012-04-30 14:45:25 +02:00
parent c09f6ff0a5
commit e4d4cb6130
1 changed files with 12 additions and 18 deletions

View File

@ -62,16 +62,19 @@ class MonthMixin(object):
""" """
Get the next valid month. Get the next valid month.
""" """
first_day, last_day = _month_bounds(date) # next must be the first day of the next month.
next = (last_day + datetime.timedelta(days=1)).replace(day=1) if date.month == 12:
next = date.replace(year=date.year + 1, month=1, day=1)
else:
next = date.replace(month=date.month + 1, day=1)
return _get_next_prev_month(self, next, is_previous=False, use_first_day=True) return _get_next_prev_month(self, next, is_previous=False, use_first_day=True)
def get_previous_month(self, date): def get_previous_month(self, date):
""" """
Get the previous valid month. Get the previous valid month.
""" """
first_day, last_day = _month_bounds(date) # prev must be the last day of the previous month.
prev = (first_day - datetime.timedelta(days=1)) prev = date.replace(day=1) - datetime.timedelta(days=1)
return _get_next_prev_month(self, prev, is_previous=True, use_first_day=True) return _get_next_prev_month(self, prev, is_previous=True, use_first_day=True)
@ -309,7 +312,11 @@ class BaseMonthArchiveView(YearMixin, MonthMixin, BaseDateListView):
month, self.get_month_format()) month, self.get_month_format())
# Construct a date-range lookup. # Construct a date-range lookup.
first_day, last_day = _month_bounds(date) first_day = date.replace(day=1)
if first_day.month == 12:
last_day = first_day.replace(year=first_day.year + 1, month=1)
else:
last_day = first_day.replace(month=first_day.month + 1)
lookup_kwargs = { lookup_kwargs = {
'%s__gte' % date_field: first_day, '%s__gte' % date_field: first_day,
'%s__lt' % date_field: last_day, '%s__lt' % date_field: last_day,
@ -499,19 +506,6 @@ def _date_from_string(year, year_format, month, month_format, day='', day_format
}) })
def _month_bounds(date):
"""
Helper: return the first and last days of the month for the given date.
"""
first_day = date.replace(day=1)
if first_day.month == 12:
last_day = first_day.replace(year=first_day.year + 1, month=1)
else:
last_day = first_day.replace(month=first_day.month + 1)
return first_day, last_day
def _get_next_prev_month(generic_view, naive_result, is_previous, use_first_day): def _get_next_prev_month(generic_view, naive_result, is_previous, use_first_day):
""" """
Helper: Get the next or the previous valid date. The idea is to allow Helper: Get the next or the previous valid date. The idea is to allow