issue 1381, Confidence:Normal
svn: r9363
This commit is contained in:
parent
1ae2e1aa28
commit
2e90dd01a2
@ -1,9 +1,13 @@
|
|||||||
|
2007-11-16 Stéphane Charette <stephanecharette@gmail.com>
|
||||||
|
* src/plugins/NarrativeWeb.py: issue #1381, no need to print
|
||||||
|
"Confidence" on every reference line if it is "Normal"
|
||||||
|
|
||||||
2007-11-16 Jerome Rapinat <romjerome@yahoo.fr>
|
2007-11-16 Jerome Rapinat <romjerome@yahoo.fr>
|
||||||
* src/plugins/rel_pt.py: import gen.lib
|
* src/plugins/rel_pt.py: import gen.lib
|
||||||
|
|
||||||
2007-11-16 Martin Hawlisch <Martin.Hawlisch@gmx.de>
|
2007-11-16 Martin Hawlisch <Martin.Hawlisch@gmx.de>
|
||||||
Trying to fix unicode filename handling on Windows. Patch ported from 2.2.
|
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/ArgHandler.py: use Utils.get_unicode_path()
|
||||||
* src/AddMedia.py: use Utils.get_unicode_path()
|
* src/AddMedia.py: use Utils.get_unicode_path()
|
||||||
* src/DbLoader.py: use Utils.get_unicode_path()
|
* src/DbLoader.py: use Utils.get_unicode_path()
|
||||||
|
@ -543,14 +543,11 @@ class BasePage:
|
|||||||
of.write('</td></tr>\n')
|
of.write('</td></tr>\n')
|
||||||
|
|
||||||
for key,sref in citation.get_ref_list():
|
for key,sref in citation.get_ref_list():
|
||||||
of.write('\t<tr><td></td>')
|
|
||||||
of.write('<td class="field">')
|
|
||||||
of.write('<a name="sref%d%s">' % (cindex,key))
|
|
||||||
of.write('</a>%d%s.</td>' % (cindex,key))
|
|
||||||
of.write('<td>')
|
|
||||||
|
|
||||||
tmp = []
|
tmp = []
|
||||||
confidence = Utils.confidence.get(sref.confidence, _('Unknown'))
|
confidence = Utils.confidence.get(sref.confidence, _('Unknown'))
|
||||||
|
if confidence == _('Normal'):
|
||||||
|
confidence = None
|
||||||
for (label,data) in [(_('Date'),_dd.display(sref.date)),
|
for (label,data) in [(_('Date'),_dd.display(sref.date)),
|
||||||
(_('Page'),sref.page),
|
(_('Page'),sref.page),
|
||||||
(_('Confidence'),confidence)]:
|
(_('Confidence'),confidence)]:
|
||||||
@ -561,9 +558,14 @@ class BasePage:
|
|||||||
note = self.db.get_note_from_handle(notehandle)
|
note = self.db.get_note_from_handle(notehandle)
|
||||||
tmp.append("%s: %s" % (_('Text'),note.get(True)))
|
tmp.append("%s: %s" % (_('Text'),note.get(True)))
|
||||||
if len(tmp) > 0:
|
if len(tmp) > 0:
|
||||||
|
of.write('\t<tr><td></td>')
|
||||||
|
of.write('<td class="field">')
|
||||||
|
of.write('<a name="sref%d%s">' % (cindex,key))
|
||||||
|
of.write('</a>%d%s.</td>' % (cindex,key))
|
||||||
|
of.write('<td>')
|
||||||
of.write('<br />'.join(tmp))
|
of.write('<br />'.join(tmp))
|
||||||
of.write('<p/>')
|
of.write('<p/>')
|
||||||
of.write('</td></tr>\n')
|
of.write('</td></tr>\n')
|
||||||
of.write('</table>\n')
|
of.write('</table>\n')
|
||||||
of.write('</div>\n')
|
of.write('</div>\n')
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user