Move superscript from Endnotes to each individual report.

svn: r8751
This commit is contained in:
Brian Matherly
2007-07-21 13:23:32 +00:00
parent 2c92fd968b
commit 0b54846df9
5 changed files with 19 additions and 5 deletions

View File

@@ -69,7 +69,6 @@ def cite_source(bibliography,obj):
txt = ""
slist = obj.get_source_references()
if slist:
txt += '<super>'
first = 1
for ref in slist:
if not first:
@@ -79,7 +78,6 @@ def cite_source(bibliography,obj):
txt += "%d" % (cindex + 1)
if rindex != None:
txt += "%s" % string.lowercase[rindex]
txt += '</super>'
return txt
def write_endnotes(bibliography,database,doc):