[Git][security-tracker-team/security-tracker][master] Revert "Fix references to DLA regression updates on website"
Brian May
bam at debian.org
Wed Dec 4 06:21:48 GMT 2019
Brian May pushed to branch master at Debian Security Tracker / security-tracker
Commits:
5e79d2c2 by Brian May at 2019-12-04T06:21:13Z
Revert "Fix references to DLA regression updates on website"
This reverts commit 7177c0e348acbd70b76de7fc36116d02201bc9bf.
I accidentally pushed this to the wrong branch.
- - - - -
1 changed file:
- bin/tracker_service.py
Changes:
=====================================
bin/tracker_service.py
=====================================
@@ -1570,20 +1570,16 @@ Debian bug number.'''),
% (int(y), int(number)))
return None
- def url_dla(self, url, dla, re_dla=re.compile(r'^DLA-(\d+)(-\d+)?$')):
+ def url_dla(self, url, dla, re_dla=re.compile(r'^DLA-(\d+)(?:-\d+)?$')):
match = re_dla.match(dla)
if match:
- (number,revision) = match.groups()
- if revision == "-1":
- link = "dla-%d" % int(number)
- else:
- link = dla.lower()
# We must determine the year because there is no generic URL.
+ (number,) = match.groups()
for (date,) in self.db.cursor().execute(
"SELECT release_date FROM bugs WHERE name = ?", (dla,)):
(y, m, d) = date.split('-')
- return url.absolute("https://www.debian.org/lts/security/%d/%s"
- % (int(y), link))
+ return url.absolute("https://www.debian.org/lts/security/%d/dla-%d"
+ % (int(y), int(number)))
return None
def url_debian_bug(self, url, debian):
View it on GitLab: https://salsa.debian.org/security-tracker-team/security-tracker/commit/5e79d2c2c5f77358b41b6bdbc14b00e6b5cd55a3
--
View it on GitLab: https://salsa.debian.org/security-tracker-team/security-tracker/commit/5e79d2c2c5f77358b41b6bdbc14b00e6b5cd55a3
You're receiving this email because of your account on salsa.debian.org.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://alioth-lists.debian.net/pipermail/debian-security-tracker-commits/attachments/20191204/4b564078/attachment-0001.html>
More information about the debian-security-tracker-commits
mailing list