From 29ce28d505875ae05212766dc12a55a78a5478b7 Mon Sep 17 00:00:00 2001 From: Damyan Ivanov Date: Tue, 1 Aug 2017 10:05:48 +0000 Subject: [PATCH] Translate "dsa-1234" and "DSA 1234" to "DSA-1234" https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=697878 --- icedeb.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/icedeb.js b/icedeb.js index 5b8cd3c..26ea6cf 100644 --- a/icedeb.js +++ b/icedeb.js @@ -146,6 +146,8 @@ function link_clicked(e) { url = 'https://buildd.debian.org/' + clip; break; case 'security': + clip = clip.replace(' ', '-'); + clip = clip.toUpperCase(); url = 'https://security-tracker.debian.org/tracker/' + clip; break; case 'piuparts': -- 2.39.2