* src/plugins/FtmStyleDescendants.py (write_endnotes): Replace

CallNumber with Abbreviation.
* src/plugins/FtmStyleAncestors.py (write_endnotes): Replace
CallNumber with Abbreviation.


svn: r2477
This commit is contained in:
Alex Roitman 2003-12-09 04:30:05 +00:00
parent bac1ce2bc6
commit efe68db55c
3 changed files with 10 additions and 2 deletions

View File

@ -36,6 +36,10 @@
* src/gramps.glade (sourceEditor): Remove Call Number widgets.
* src/EditSource.py: Remove Call Number support.
* src/plugins/WriteGedcom.py (write_sources): Remove CallNumber export.
* src/plugins/FtmStyleDescendants.py (write_endnotes): Replace
CallNumber with Abbreviation.
* src/plugins/FtmStyleAncestors.py (write_endnotes): Replace
CallNumber with Abbreviation.
2003-12-07 Alex Roitman <shura@alex.neuro.umn.edu>
* src/filters/Complete.py: Add filter matching people with the

View File

@ -18,6 +18,8 @@
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
# $Id$
#------------------------------------------------------------------------
#
# python modules
@ -430,7 +432,7 @@ class FtmAncestorReport(Report.Report):
self.doc.start_paragraph('FTA-Endnotes',"%d." % key)
self.doc.write_text(base.getTitle())
for item in [ base.getAuthor(), base.getPubInfo(), base.getCallNumber(),
for item in [ base.getAuthor(), base.getPubInfo(), base.getAbbrev(),
srcref.getDate().getDate(),]:
if item:
self.doc.write_text('; %s' % item)

View File

@ -18,6 +18,8 @@
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
# $Id$
#
# Written by Alex Roitman, largely based on the FtmStyleAncestors.py
# report by Don Allingham
@ -463,7 +465,7 @@ class FtmDescendantReport(Report.Report):
self.doc.start_paragraph('FTD-Endnotes',"%d." % key)
self.doc.write_text(base.getTitle())
for item in [ base.getAuthor(), base.getPubInfo(), base.getCallNumber(),
for item in [ base.getAuthor(), base.getPubInfo(), base.getAbbrev(),
srcref.getDate().getDate(),]:
if item:
self.doc.write_text('; %s' % item)