Add option to restrict dates to years only as per Relationship graph
svn: r11717
This commit is contained in:
parent
9bf926274e
commit
f071a27cfb
@ -3,6 +3,7 @@
|
||||
#
|
||||
# Copyright (C) 2007-2008 Stephane Charette
|
||||
# Copyright (C) 2007-2008 Brian G. Matherly
|
||||
# Copyright (C) 2009 Gary Burton
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Pubilc License as published by
|
||||
@ -229,6 +230,12 @@ class FamilyLinesOptions(MenuReportOptions):
|
||||
'families.'))
|
||||
menu.add_option(category, 'incdates', include_dates)
|
||||
|
||||
justyears = BooleanOption(_("Limit dates to years only"), False)
|
||||
justyears.set_help(_("Prints just dates' year, neither "
|
||||
"month or day nor date approximation "
|
||||
"or interval are shown."))
|
||||
menu.add_option(category, "justyears", justyears)
|
||||
|
||||
include_places = BooleanOption(_('Include places'), True)
|
||||
include_places.set_help(_('Whether to include placenames for people ' \
|
||||
'and families.'))
|
||||
@ -340,6 +347,9 @@ class FamilyLinesReport(Report):
|
||||
_opt = menu.get_option_by_name('incdates')
|
||||
self._incdates = _opt.get_value()
|
||||
|
||||
_opt = menu.get_option_by_name('justyears')
|
||||
self._just_years = _opt.get_value()
|
||||
|
||||
_opt = menu.get_option_by_name('incplaces')
|
||||
self._incplaces = _opt.get_value()
|
||||
|
||||
@ -775,6 +785,9 @@ class FamilyLinesReport(Report):
|
||||
if (bth_event.private and self._incprivate) or \
|
||||
not bth_event.private:
|
||||
date = bth_event.get_date_object()
|
||||
if self._just_years:
|
||||
birthStr = '%i' % date.get_year()
|
||||
else:
|
||||
birthStr = _dd.display(date)
|
||||
|
||||
# get birth place (one of: city, state, or country) we can use
|
||||
@ -798,6 +811,9 @@ class FamilyLinesReport(Report):
|
||||
if (dth_event.private and self._incprivate) or \
|
||||
not dth_event.private:
|
||||
date = dth_event.get_date_object()
|
||||
if self._just_years:
|
||||
deathStr = '%i' % date.get_year()
|
||||
else:
|
||||
deathStr = _dd.display(date)
|
||||
|
||||
# get death place (one of: city, state, or country) we can use
|
||||
@ -918,6 +934,9 @@ class FamilyLinesReport(Report):
|
||||
if (event.private and self._incprivate) or not event.private:
|
||||
if self._incdates:
|
||||
date = event.get_date_object()
|
||||
if self._just_years:
|
||||
weddingDate = '%i' % date.get_year()
|
||||
else:
|
||||
weddingDate = _dd.display(date)
|
||||
# get the wedding location
|
||||
if self._incplaces:
|
||||
|
Loading…
Reference in New Issue
Block a user