* 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

@ -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)