diff --git a/ChangeLog b/ChangeLog index 666fe0d84..d06353c7f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,9 +1,13 @@ +2007-11-16 Stéphane Charette + * src/plugins/NarrativeWeb.py: issue #1381, no need to print + "Confidence" on every reference line if it is "Normal" + 2007-11-16 Jerome Rapinat * src/plugins/rel_pt.py: import gen.lib 2007-11-16 Martin Hawlisch Trying to fix unicode filename handling on Windows. Patch ported from 2.2. - * src/Utils.py: add get_unicode_path() + * src/Utils.py: add get_unicode_path() * src/ArgHandler.py: use Utils.get_unicode_path() * src/AddMedia.py: use Utils.get_unicode_path() * src/DbLoader.py: use Utils.get_unicode_path() diff --git a/src/plugins/NarrativeWeb.py b/src/plugins/NarrativeWeb.py index d5bb85d6c..ca6cdfcbe 100644 --- a/src/plugins/NarrativeWeb.py +++ b/src/plugins/NarrativeWeb.py @@ -543,14 +543,11 @@ class BasePage: of.write('\n') for key,sref in citation.get_ref_list(): - of.write('\t') - of.write('') - of.write('' % (cindex,key)) - of.write('%d%s.' % (cindex,key)) - of.write('') tmp = [] confidence = Utils.confidence.get(sref.confidence, _('Unknown')) + if confidence == _('Normal'): + confidence = None for (label,data) in [(_('Date'),_dd.display(sref.date)), (_('Page'),sref.page), (_('Confidence'),confidence)]: @@ -561,9 +558,14 @@ class BasePage: note = self.db.get_note_from_handle(notehandle) tmp.append("%s: %s" % (_('Text'),note.get(True))) if len(tmp) > 0: + of.write('\t') + of.write('') + of.write('' % (cindex,key)) + of.write('%d%s.' % (cindex,key)) + of.write('') of.write('
'.join(tmp)) - of.write('

') - of.write('\n') + of.write('

') + of.write('\n') of.write('\n') of.write('\n')