[Secure-testing-commits] r20564 - bin

Paul Wise pabs at alioth.debian.org
Wed Nov 28 02:28:50 UTC 2012


Author: pabs
Date: 2012-11-28 02:28:50 +0000 (Wed, 28 Nov 2012)
New Revision: 20564

Modified:
   bin/tracker_service.py
Log:
Link to the oss-security mailing list too.

Use marc.info since the other archives have either
broken searching or no searching.


Modified: bin/tracker_service.py
===================================================================
--- bin/tracker_service.py	2012-11-27 23:44:45 UTC (rev 20563)
+++ bin/tracker_service.py	2012-11-28 02:28:50 UTC (rev 20564)
@@ -314,6 +314,8 @@
                                       self.make_nvd_ref(url, bug.name,
                                                         'NVD'),
                                       "; ",
+                                      self.make_osssec_bug_ref(url, bug.name, 'oss-sec'),
+                                      ", ",
                                       self.make_rhbug_ref(url, bug.name,
                                                         'Red Hat'),
                                       ", ",
@@ -1194,6 +1196,8 @@
     def url_nvd(self, url, name):
         return url.absolute("http://web.nvd.nist.gov/view/vuln/detail",
                             vulnId=name)
+    def url_osssec_bug(self, url, name):
+        return url.absolute("http://marc.info/", l="oss-security", s=name)
     def url_rhbug(self, url, name):
         return url.absolute("https://bugzilla.redhat.com/show_bug.cgi",
                             id=name)
@@ -1253,6 +1257,11 @@
             name = cve
         return A(self.url_nvd(url, cve), name)
     
+    def make_osssec_ref(self, url, cve, name=None):
+        if name is None:
+            name = cve
+        return A(self.url_osssec_bug(url, cve), name)
+
     def make_rhbug_ref(self, url, cve, name=None):
         if name is None:
             name = cve




More information about the Secure-testing-commits mailing list