[Secure-testing-commits] r40387 - bin

Thijs Kinkhorst thijs at moszumanska.debian.org
Tue Mar 15 16:50:38 UTC 2016


Author: thijs
Date: 2016-03-15 16:50:38 +0000 (Tue, 15 Mar 2016)
New Revision: 40387

Modified:
   bin/tracker_service.py
Log:
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.


Modified: bin/tracker_service.py
===================================================================
--- bin/tracker_service.py	2016-03-15 14:52:27 UTC (rev 40386)
+++ bin/tracker_service.py	2016-03-15 16:50:38 UTC (rev 40387)
@@ -418,13 +418,14 @@
                 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()))
 




More information about the Secure-testing-commits mailing list