From 7577c85dbaafb9f0b7760a6e02c912808a99aca7 Mon Sep 17 00:00:00 2001 From: Damyan Ivanov Date: Tue, 29 Jul 2014 14:19:14 +0000 Subject: [PATCH] switch all URLs to https --- chrome/content/icedeb.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/chrome/content/icedeb.js b/chrome/content/icedeb.js index 262f09d..a8db84b 100644 --- a/chrome/content/icedeb.js +++ b/chrome/content/icedeb.js @@ -50,7 +50,7 @@ IceDeb = { lookup_bts: function(in_new) { var bug = IceDeb.trim_keyword(IceDeb.getClipboardText()); if (!bug) return null; - var uri="http://bugs.debian.org/" + bug; + var uri="https://bugs.debian.org/" + bug; if (in_new) { var b = getBrowser(); @@ -78,7 +78,7 @@ IceDeb = { lookup_deb: function(in_new) { var pkg = IceDeb.trim_keyword(IceDeb.getClipboardText()); if (!pkg) return null; - var uri="http://packages.debian.org/" + pkg; + var uri="https://packages.debian.org/" + pkg; if (in_new) { var b = getBrowser(); @@ -92,7 +92,7 @@ IceDeb = { lookup_ml: function(in_new) { var msg_id = IceDeb.trim_keyword(IceDeb.getClipboardText()); if (!msg_id) msg_id = ''; - var uri="http://lists.debian.org/msgid-search/" + msg_id; + var uri="https://lists.debian.org/msgid-search/" + msg_id; if (in_new) { var b = getBrowser(); @@ -105,7 +105,7 @@ IceDeb = { }, lookup_ddpo: function(in_new) { var keyword = IceDeb.trim_keyword(IceDeb.getClipboardText()); - var uri="http://qa.debian.org/developer.php"; + var uri="https://qa.debian.org/developer.php"; if (keyword) uri += "?login=" + keyword; @@ -135,7 +135,7 @@ IceDeb = { }, lookup_security: function(in_new) { var keyword = IceDeb.trim_keyword(IceDeb.getClipboardText()); - var uri="http://security-tracker.debian.org/"; + var uri="https://security-tracker.debian.org/"; if (keyword) uri += "tracker/" + keyword; -- 2.39.2