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_common.py | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) (limited to 'bin/reproducible_common.py') diff --git a/bin/reproducible_common.py b/bin/reproducible_common.py index 554e95ed..7dc0e21b 100755 --- a/bin/reproducible_common.py +++ b/bin/reproducible_common.py @@ -446,6 +446,25 @@ def get_trailing_icon(package, bugs): return html +def get_trailing_bug_icon(bug, bugs, package=None): + html = '' + if not package: + for pkg in bugs.keys(): + if get_trailing_bug_icon(bug, bugs, pkg): + return get_trailing_bug_icon(bug, bugs, pkg) + else: + try: + if bug in bugs[package].keys(): + html += '#' + elif bugs[package][bug]['patch']: + html += 'bug-patch" title="#' + str(bug) + ', with patch">+' + html += '' + except KeyError: + pass + return html + # init the databases connections conn_db = start_db_connection() # the local sqlite3 reproducible db conn_udd = start_udd_connection() -- cgit v1.2.3-54-g00ecf