diff --git a/ChangeLog b/ChangeLog index 698bb920a..f3aeb4d89 100644 --- a/ChangeLog +++ b/ChangeLog @@ -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 * src/filters/Complete.py: Add filter matching people with the diff --git a/src/plugins/FtmStyleAncestors.py b/src/plugins/FtmStyleAncestors.py index 5675b1e18..d8efafc40 100644 --- a/src/plugins/FtmStyleAncestors.py +++ b/src/plugins/FtmStyleAncestors.py @@ -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) diff --git a/src/plugins/FtmStyleDescendants.py b/src/plugins/FtmStyleDescendants.py index 50ee43c4c..fbf248e70 100644 --- a/src/plugins/FtmStyleDescendants.py +++ b/src/plugins/FtmStyleDescendants.py @@ -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)