From 97ab048fb68fbc3aec66cc83947692a390e62e35 Mon Sep 17 00:00:00 2001 From: Mattia Rizzolo Date: Fri, 6 Mar 2015 23:02:50 +0100 Subject: reproducible: notes: add a +/# sign after bug numbers, if they are close/with-patch --- bin/reproducible_html_notes.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'bin/reproducible_html_notes.py') diff --git a/bin/reproducible_html_notes.py b/bin/reproducible_html_notes.py index 3fec2ddc..993d7842 100755 --- a/bin/reproducible_html_notes.py +++ b/bin/reproducible_html_notes.py @@ -188,7 +188,7 @@ def fill_issue_in_note(issue): return note_issue_html.substitute(issue=issue, issue_info=html) -def gen_html_note(note): +def gen_html_note(package, note): """ Given a note as input (as a dict: {"package_name": {"version": "0.0.0", "comments": "blablabla", @@ -211,7 +211,8 @@ def gen_html_note(note): bugurls = '' for bug in note['bugs']: bugurls += '' + str(bug) + '
' + '" target="_parent">' + str(bug) + '' + \ + get_trailing_bug_icon(bug, bugs, package) + '
' infos += note_bugs_html.substitute(bugs=bugurls) # check for comments: if 'comments' in note: @@ -292,7 +293,7 @@ def iterate_over_notes(notes): note = notes[package] note['package'] = package log.debug('\t' + str(note)) - html = gen_html_note(note) + html = gen_html_note(package, note) title = 'Notes for ' + package + ' - reproducible builds result' destfile = NOTES_PATH + '/' + package + '_note.html' -- cgit v1.2.3-54-g00ecf