summaryrefslogtreecommitdiffstats
path: root/bin/tracker_service.py
diff options
context:
space:
mode:
authorThijs Kinkhorst <thijs@debian.org>2016-03-15 16:50:38 +0000
committerThijs Kinkhorst <thijs@debian.org>2016-03-15 16:50:38 +0000
commitd746f81d34967c8ffe7df1ffab3db58d184b24d6 (patch)
treebadbc881396b13efc10954f21d287850c697807d /bin/tracker_service.py
parentfd9a0da656ce5d5dd6a37619eab839154571ca61 (diff)
Disable table with fixed version per suite.
This is often very confusing because it lists the state only for the main archive, not the security archive, so stable will be shown as vulnerable for many weeks after a DSA has been issued, until the next point release. That's not very relevant information. It also duplicates the table below with fixed status per suite and archive. git-svn-id: svn+ssh://svn.debian.org/svn/secure-testing@40387 e39458fd-73e7-0310-bf30-c45bca0a0e42
Diffstat (limited to 'bin/tracker_service.py')
-rw-r--r--bin/tracker_service.py15
1 files changed, 8 insertions, 7 deletions
diff --git a/bin/tracker_service.py b/bin/tracker_service.py
index 99a614f7f7..fc854819ad 100644
--- a/bin/tracker_service.py
+++ b/bin/tracker_service.py
@@ -418,13 +418,14 @@ data source.""")],
yield (B("Debian Bugs"),
self.make_debian_bug_list(url, debian_bugs))
- if not bug.not_for_us:
- for (release, status, reason) in bug.getStatus(cursor):
- if status == 'undetermined':
- reason = self.make_purple(reason)
- elif status <> 'fixed':
- reason = self.make_red(reason)
- yield B('Debian/%s' % release), reason
+# Disable table with fixed status per release.
+# if not bug.not_for_us:
+# for (release, status, reason) in bug.getStatus(cursor):
+# if status == 'undetermined':
+# reason = self.make_purple(reason)
+# elif status <> 'fixed':
+# reason = self.make_red(reason)
+# yield B('Debian/%s' % release), reason
page.append(make_table(gen_header()))

© 2014-2024 Faster IT GmbH | imprint | privacy policy