[Blends-commit] [SCM] website branch, master, updated. 0373c238987b76c1b7a6dc591cf250d7cfed5f88

Ole Streicher ole at aip.de
Mon Jun 20 08:14:48 UTC 2016


The following commit has been merged in the master branch:
commit 0373c238987b76c1b7a6dc591cf250d7cfed5f88
Author: Ole Streicher <ole at aip.de>
Date:   Mon Jun 20 10:14:34 2016 +0200

    Consequently use https:// urls in webtools

diff --git a/webtools/blendstasktools.py b/webtools/blendstasktools.py
index a77ad88..37a292a 100644
--- a/webtools/blendstasktools.py
+++ b/webtools/blendstasktools.py
@@ -47,8 +47,8 @@ PORT = UDDPORT
 DEFAULTPORT = 5432
 
 # Seems to have problems on 17.04.2009
-# BASEURL  = 'http://ftp.debian.org/debian'
-BASEURL = 'http://ftp.de.debian.org/debian'
+# BASEURL  = 'https://ftp.debian.org/debian'
+BASEURL = 'https://ftp.de.debian.org/debian'
 KEYSTOIGNORE = ('Architecture', 'Comment', 'Leaf', 'NeedConfig', 'Note', 'Section',
                 'Needconfig', 'DontAvoid',
                 'Enhances', 'Test-always-lang', 'Metapackage')
@@ -65,7 +65,7 @@ HOMEPAGENONEFIELDS = (
                     # package matches or URL to inofficial package
 )
 
-PKGURLMASK = 'http://packages.debian.org/search?keywords=%s&searchon=names&exact=1&suite=all&section=all'
+PKGURLMASK = 'https://packages.debian.org/search?keywords=%s&searchon=names&exact=1&suite=all&section=all'
 
 DEPENDENT  = 0
 SUGGESTED  = 1
@@ -670,11 +670,11 @@ def BrowserFromVcsURL(vcs_type, vcs_url):
     if not vcs_type:
         return HOMEPAGENONE
     if vcs_type.lower().startswith('svn'):
-        ret_url = re.sub('^svn:', 'http:', vcs_url)
+        ret_url = re.sub('^svn:', 'https:', vcs_url)
         ret_url = re.sub('/svn/', '/wsvn/', ret_url)
         ret_url = re.sub('$', '?rev=0&sc=0', ret_url)
     elif vcs_type.lower().startswith('git'):
-        ret_url = re.sub('^git:', 'http:', vcs_url)
+        ret_url = re.sub('^git:', 'https:', vcs_url)
         ret_url = re.sub('/git/', '/?p=', ret_url)
     elif vcs_type.lower().startswith('hg'):
         # Seems that vcs_browser = vcs_url in Mercurial
@@ -1517,7 +1517,7 @@ class TaskDependencies:
                 dep.properties['component'] = row['component']
                 dep.properties['version'].append({'archs':'all', 'release':'NEW',
                                                   'version':row['version']})
-                dep.properties['pkg-url'] = 'http://ftp-master.debian.org/new/%s_%s.html' % (row['source'], row['version'])
+                dep.properties['pkg-url'] = 'https://ftp-master.debian.org/new/%s_%s.html' % (row['source'], row['version'])
                 # Warn about remaining information of prospective package
                 if (dep.properties['desc']['en'] and dep.properties['desc']['en']['short']) or dep.properties['homepage'] != HOMEPAGENONE:
                     logger.info("The package %s is not yet in Debian but it is just in the new queue. (Task %s)" % (dep.properties['name'], self.task))
diff --git a/webtools/blendstasktools_udd.py b/webtools/blendstasktools_udd.py
index 8016076..392332d 100644
--- a/webtools/blendstasktools_udd.py
+++ b/webtools/blendstasktools_udd.py
@@ -43,8 +43,8 @@ PORT = UDDPORT
 DEFAULTPORT = 5432
 
 # Seems to have problems on 17.04.2009
-# BASEURL  = 'http://ftp.debian.org/debian'
-BASEURL = 'http://ftp.de.debian.org/debian'
+# BASEURL  = 'https://ftp.debian.org/debian'
+BASEURL = 'https://ftp.de.debian.org/debian'
 KEYSTOIGNORE = ('Architecture', 'Comment', 'Leaf', 'NeedConfig', 'Note', 'Section',
                 'Needconfig', 'DontAvoid',
                 'Enhances', 'Test-always-lang', 'Metapackage')
@@ -61,7 +61,7 @@ HOMEPAGENONEFIELDS = (
                     # package matches or URL to inofficial package
 )
 
-PKGURLMASK = 'http://packages.debian.org/search?keywords=%s&searchon=names&exact=1&suite=all&section=all'
+PKGURLMASK = 'https://packages.debian.org/search?keywords=%s&searchon=names&exact=1&suite=all&section=all'
 
 DEPENDENT  = 0
 SUGGESTED  = 1
@@ -611,11 +611,11 @@ def BrowserFromVcsURL(vcs_type, vcs_url):
     if not vcs_type:
         return HOMEPAGENONE
     if vcs_type.lower().startswith('svn'):
-        ret_url = re.sub('^svn:', 'http:', vcs_url)
+        ret_url = re.sub('^svn:', 'https:', vcs_url)
         ret_url = re.sub('/svn/', '/wsvn/', ret_url)
         ret_url = re.sub('$', '?rev=0&sc=0', ret_url)
     elif vcs_type.lower().startswith('git'):
-        ret_url = re.sub('^git:', 'http:', vcs_url)
+        ret_url = re.sub('^git:', 'https:', vcs_url)
         ret_url = re.sub('/git/', '/?p=', ret_url)
     elif vcs_type.lower().startswith('hg'):
         # Seems that vcs_browser = vcs_url in Mercurial
diff --git a/webtools/bugs.py b/webtools/bugs.py
index 4f885c2..c2d6874 100755
--- a/webtools/bugs.py
+++ b/webtools/bugs.py
@@ -304,7 +304,7 @@ def main():
     data['idxsummary']        = _("""A %sDebian Pure Blend%s is a Debian internal project which assembles
 a set of packages that might help users to solve certain tasks of their work.  The list on
 the right shows the tasks of %s.""") \
-        % ('<a href="http://blends.alioth.debian.org/blends/">', '</a>', data['projectname'])
+        % ('<a href="https://blends.alioth.debian.org/blends/">', '</a>', data['projectname'])
     data['idxsummary']        = Markup(data['idxsummary'])
 
     t = datetime.now()
@@ -322,7 +322,7 @@ the right shows the tasks of %s.""") \
     a set of packages that might help users to solve certain tasks of their work.  This page should be helpful
     to track down the bugs of packages that are interesting for the %s project to enable developers a quick
     overview about possible problems.""") \
-        % ('<a href="http://blends.alioth.debian.org/blends/">', '</a>', data['projectname'])
+        % ('<a href="https://blends.alioth.debian.org/blends/">', '</a>', data['projectname'])
     data['bugssummary']        = Markup(data['bugssummary'])
     data['gtstrBugsPage']     = _("Bugs page")
     data['gtstrListOfBugspages'] = _("This is a list of metapackages.  The links are leading to the respective bugs page.")
diff --git a/webtools/fetch_README.Debian b/webtools/fetch_README.Debian
index 9caaad4..2695d46 100755
--- a/webtools/fetch_README.Debian
+++ b/webtools/fetch_README.Debian
@@ -9,7 +9,7 @@ WGET=wget
 dir=/etc/ssl/ca-debian
 test -d $dir && WGET="wget --ca-directory=$dir"
 
-$WGET -q http://blends.alioth.debian.org/machine-readable/README.Debian.tar.bz2 -O - | tar xj
+$WGET -q https://blends.alioth.debian.org/machine-readable/README.Debian.tar.bz2 -O - | tar xj
 rm -rf ${TARGETDIR}/${SUBDIR}
 mv machine-readable ${SUBDIR}
 
diff --git a/webtools/generate-debtags-field-list b/webtools/generate-debtags-field-list
index 0fb3228..485519c 100755
--- a/webtools/generate-debtags-field-list
+++ b/webtools/generate-debtags-field-list
@@ -45,8 +45,8 @@ print """
 <h1>%s debtagged software</h1>
 
 <p>Packages tagged %s, role::program and interface::x11.
-Please <a href="http://debtags.debian.net/">add debtags</a> if a program
-are missing in the list, and <a href="http://screenshots.debian.net/">add
+Please <a href="https://debtags.debian.net/">add debtags</a> if a program
+are missing in the list, and <a href="https://screenshots.debian.net/">add
 screenshots</a> if no-one did so already.</p>
 """ % (keytag, keytag, keytag)
 
@@ -59,7 +59,7 @@ for row in rows:
         print "<strong>%s</strong>" % fieldtag
         print "<p>"
         lastfieldtag = fieldtag
-    print "<a href=\"http://packages.debian.org/search?searchon=names&exact=1&suite=all&section=all&keywords=%s\"><img src=\"http://screenshots.debian.net/thumbnail/%s\"></a>" % (package, package)
+    print "<a href=\"https://packages.debian.org/search?searchon=names&exact=1&suite=all&section=all&keywords=%s\"><img src=\"https://screenshots.debian.net/thumbnail/%s\"></a>" % (package, package)
 if lastfieldtag is not None:
     print "</p>"
     
diff --git a/webtools/mkpot.sh b/webtools/mkpot.sh
index 1a69842..7d95c42 100755
--- a/webtools/mkpot.sh
+++ b/webtools/mkpot.sh
@@ -25,6 +25,6 @@ exit
 #: tasks.py:109 
 msgid "Packages"
 msgstr ""
-webconf/debian-med.conf:Advertising: {gettext = _('Help us to see Debian used by medical practicioners and researchers! Join us on the <a href="http://alioth.debian.org/projects/debi
+webconf/debian-med.conf:Advertising: {gettext = _('Help us to see Debian used by medical practicioners and researchers! Join us on the <a href="https://alioth.debian.org/projects/debi
 webconf/test.conf:Advertising= _('Help us to see Debian used by medical practicioners and researchers! Join us on the <a href="http=//alioth.debian.org/projects/debian-med">Alioth pa
 
diff --git a/webtools/po/blends-webtools.pot b/webtools/po/blends-webtools.pot
index 7e07072..2c01b5b 100644
--- a/webtools/po/blends-webtools.pot
+++ b/webtools/po/blends-webtools.pot
@@ -324,5 +324,5 @@ msgid "Vcs"
 msgstr ""
 
 #: webconf/debian-med.conf:13
-msgid "Help us to see Debian used by medical practitioners and biomedical researchers! Join us on the <a href=\"http://alioth.debian.org/projects/debian-med\">Alioth page</a>."
+msgid "Help us to see Debian used by medical practitioners and biomedical researchers! Join us on the <a href=\"https://alioth.debian.org/projects/debian-med\">Alioth page</a>."
 msgstr""
diff --git a/webtools/po/cs.po b/webtools/po/cs.po
index f1fc8c4..b10f4d1 100644
--- a/webtools/po/cs.po
+++ b/webtools/po/cs.po
@@ -294,7 +294,7 @@ msgstr  ""
 
 #: webconf/debian-med.conf:13
 msgid   "Help us to see Debian used by medical practitioners and biomedical researchers! Join us "
-        "on the <a href=\"http://alioth.debian.org/projects/debian-med\">Alioth page</a>."
+        "on the <a href=\"https://alioth.debian.org/projects/debian-med\">Alioth page</a>."
 msgstr  ""
 
 #
diff --git a/webtools/po/da.po b/webtools/po/da.po
index 6a1198d..d6813e9 100644
--- a/webtools/po/da.po
+++ b/webtools/po/da.po
@@ -312,7 +312,7 @@ msgstr  ""
 
 #: webconf/debian-med.conf:13
 msgid   "Help us to see Debian used by medical practitioners and biomedical researchers! Join us "
-        "on the <a href=\"http://alioth.debian.org/projects/debian-med\">Alioth page</a>."
+        "on the <a href=\"https://alioth.debian.org/projects/debian-med\">Alioth page</a>."
 msgstr  ""
 
 #
diff --git a/webtools/po/de.po b/webtools/po/de.po
index 5d5b1ab..289325d 100644
--- a/webtools/po/de.po
+++ b/webtools/po/de.po
@@ -326,9 +326,9 @@ msgstr  ""
 
 #: webconf/debian-med.conf:13
 msgid   "Help us to see Debian used by medical practitioners and biomedical researchers! Join us "
-        "on the <a href=\"http://alioth.debian.org/projects/debian-med\">Alioth page</a>."
+        "on the <a href=\"https://alioth.debian.org/projects/debian-med\">Alioth page</a>."
 msgstr  "Hilf uns dabei, Debian für Ärzte und Forscher in der Biomedizin attraktiv zu machen!\n"
-        "Du kannst dem Projekt auf der <a href=\"http://alioth.debian.org/projects/debian-med"
+        "Du kannst dem Projekt auf der <a href=\"https://alioth.debian.org/projects/debian-med"
         "\">Alioth Seite</a> beitreten."
 
 #: ../bug_details.tmpl:8 ../bugs.tmpl:7 ../ddtp.tmpl:7 ../ddtp_details.tmpl:8 ../locales.php:7
diff --git a/webtools/po/es.po b/webtools/po/es.po
index f1fc8c4..b10f4d1 100644
--- a/webtools/po/es.po
+++ b/webtools/po/es.po
@@ -294,7 +294,7 @@ msgstr  ""
 
 #: webconf/debian-med.conf:13
 msgid   "Help us to see Debian used by medical practitioners and biomedical researchers! Join us "
-        "on the <a href=\"http://alioth.debian.org/projects/debian-med\">Alioth page</a>."
+        "on the <a href=\"https://alioth.debian.org/projects/debian-med\">Alioth page</a>."
 msgstr  ""
 
 #
diff --git a/webtools/po/fi.po b/webtools/po/fi.po
index f1fc8c4..b10f4d1 100644
--- a/webtools/po/fi.po
+++ b/webtools/po/fi.po
@@ -294,7 +294,7 @@ msgstr  ""
 
 #: webconf/debian-med.conf:13
 msgid   "Help us to see Debian used by medical practitioners and biomedical researchers! Join us "
-        "on the <a href=\"http://alioth.debian.org/projects/debian-med\">Alioth page</a>."
+        "on the <a href=\"https://alioth.debian.org/projects/debian-med\">Alioth page</a>."
 msgstr  ""
 
 #
diff --git a/webtools/po/fr.po b/webtools/po/fr.po
index b0fcad1..6fefe9a 100644
--- a/webtools/po/fr.po
+++ b/webtools/po/fr.po
@@ -319,8 +319,8 @@ msgid "Vcs"
 msgstr "Gestionnaire de version"
 
 #: webconf/debian-med.conf:13
-msgid "Help us to see Debian used by medical practitioners and biomedical researchers! Join us on the <a href=\"http://alioth.debian.org/projects/debian-med\">Alioth page</a>."
-msgstr "Aidez-nous à montrer Debian utilisé par des médecins et les chercheurs bio-médicaux ! Rejoignez-nous sur le <a href=\"http://alioth.debian.org/projects/debian-med\">site d'Alioth</a>."
+msgid "Help us to see Debian used by medical practitioners and biomedical researchers! Join us on the <a href=\"https://alioth.debian.org/projects/debian-med\">Alioth page</a>."
+msgstr "Aidez-nous à montrer Debian utilisé par des médecins et les chercheurs bio-médicaux ! Rejoignez-nous sur le <a href=\"https://alioth.debian.org/projects/debian-med\">site d'Alioth</a>."
 
 #: ../bug_details.tmpl:8
 #: ../bugs.tmpl:7
diff --git a/webtools/po/it.po b/webtools/po/it.po
index db1f06c..794c460 100644
--- a/webtools/po/it.po
+++ b/webtools/po/it.po
@@ -335,7 +335,7 @@ msgstr  ""
 #: webconf/debian-med.conf:13
 #, fuzzy
 msgid   "Help us to see Debian used by medical practitioners and biomedical researchers! Join us "
-        "on the <a href=\"http://alioth.debian.org/projects/debian-med\">Alioth page</a>."
+        "on the <a href=\"https://alioth.debian.org/projects/debian-med\">Alioth page</a>."
 msgstr  "Aiutaci a vedere Debian usata dai medici e dai ricercatori! Unisciti a noi sulla %spagina "
         "Alioth%s."
 
diff --git a/webtools/po/ja.po b/webtools/po/ja.po
index f1fc8c4..b10f4d1 100644
--- a/webtools/po/ja.po
+++ b/webtools/po/ja.po
@@ -294,7 +294,7 @@ msgstr  ""
 
 #: webconf/debian-med.conf:13
 msgid   "Help us to see Debian used by medical practitioners and biomedical researchers! Join us "
-        "on the <a href=\"http://alioth.debian.org/projects/debian-med\">Alioth page</a>."
+        "on the <a href=\"https://alioth.debian.org/projects/debian-med\">Alioth page</a>."
 msgstr  ""
 
 #
diff --git a/webtools/po/ko.po b/webtools/po/ko.po
index f1fc8c4..b10f4d1 100644
--- a/webtools/po/ko.po
+++ b/webtools/po/ko.po
@@ -294,7 +294,7 @@ msgstr  ""
 
 #: webconf/debian-med.conf:13
 msgid   "Help us to see Debian used by medical practitioners and biomedical researchers! Join us "
-        "on the <a href=\"http://alioth.debian.org/projects/debian-med\">Alioth page</a>."
+        "on the <a href=\"https://alioth.debian.org/projects/debian-med\">Alioth page</a>."
 msgstr  ""
 
 #
diff --git a/webtools/po/nl.po b/webtools/po/nl.po
index f1fc8c4..b10f4d1 100644
--- a/webtools/po/nl.po
+++ b/webtools/po/nl.po
@@ -294,7 +294,7 @@ msgstr  ""
 
 #: webconf/debian-med.conf:13
 msgid   "Help us to see Debian used by medical practitioners and biomedical researchers! Join us "
-        "on the <a href=\"http://alioth.debian.org/projects/debian-med\">Alioth page</a>."
+        "on the <a href=\"https://alioth.debian.org/projects/debian-med\">Alioth page</a>."
 msgstr  ""
 
 #
diff --git a/webtools/po/pl.po b/webtools/po/pl.po
index f1fc8c4..b10f4d1 100644
--- a/webtools/po/pl.po
+++ b/webtools/po/pl.po
@@ -294,7 +294,7 @@ msgstr  ""
 
 #: webconf/debian-med.conf:13
 msgid   "Help us to see Debian used by medical practitioners and biomedical researchers! Join us "
-        "on the <a href=\"http://alioth.debian.org/projects/debian-med\">Alioth page</a>."
+        "on the <a href=\"https://alioth.debian.org/projects/debian-med\">Alioth page</a>."
 msgstr  ""
 
 #
diff --git a/webtools/po/pt.po b/webtools/po/pt.po
index 6bb6ebf..d0ab5b9 100644
--- a/webtools/po/pt.po
+++ b/webtools/po/pt.po
@@ -332,7 +332,7 @@ msgstr  ""
 
 #: webconf/debian-med.conf:13
 msgid   "Help us to see Debian used by medical practitioners and biomedical researchers! Join us "
-        "on the <a href=\"http://alioth.debian.org/projects/debian-med\">Alioth page</a>."
+        "on the <a href=\"https://alioth.debian.org/projects/debian-med\">Alioth page</a>."
 msgstr  ""
 
 #: ../bug_details.tmpl:8 ../bugs.tmpl:7 ../ddtp.tmpl:7 ../ddtp_details.tmpl:8 ../locales.php:7
diff --git a/webtools/po/ru.po b/webtools/po/ru.po
index f1fc8c4..b10f4d1 100644
--- a/webtools/po/ru.po
+++ b/webtools/po/ru.po
@@ -294,7 +294,7 @@ msgstr  ""
 
 #: webconf/debian-med.conf:13
 msgid   "Help us to see Debian used by medical practitioners and biomedical researchers! Join us "
-        "on the <a href=\"http://alioth.debian.org/projects/debian-med\">Alioth page</a>."
+        "on the <a href=\"https://alioth.debian.org/projects/debian-med\">Alioth page</a>."
 msgstr  ""
 
 #
diff --git a/webtools/po/zh_CN.po b/webtools/po/zh_CN.po
index b615456..a689865 100644
--- a/webtools/po/zh_CN.po
+++ b/webtools/po/zh_CN.po
@@ -294,7 +294,7 @@ msgstr  ""
 
 #: webconf/debian-med.conf:14
 msgid   "Help us to see Debian used by medical practicioners and researchers! Join us on the <a "
-        "href=\"http://alioth.debian.org/projects/debian-med\">Alioth page</a>."
+        "href=\"https://alioth.debian.org/projects/debian-med\">Alioth page</a>."
 msgstr  ""
 
 #
diff --git a/webtools/po/zh_TW.po b/webtools/po/zh_TW.po
index 97d01ca..e16ab9c 100644
--- a/webtools/po/zh_TW.po
+++ b/webtools/po/zh_TW.po
@@ -295,7 +295,7 @@ msgstr  ""
 
 #: webconf/debian-med.conf:14
 msgid   "Help us to see Debian used by medical practicioners and researchers! Join us on the <a "
-        "href=\"http://alioth.debian.org/projects/debian-med\">Alioth page</a>."
+        "href=\"https://alioth.debian.org/projects/debian-med\">Alioth page</a>."
 msgstr  ""
 
 #
diff --git a/webtools/tasks.py b/webtools/tasks.py
index 097e3ce..8f457cb 100755
--- a/webtools/tasks.py
+++ b/webtools/tasks.py
@@ -110,7 +110,7 @@ for lang in languages:
     data['gtstrThisIsAList']   = _('This is a list of the Tasks %s is made of:') % data['projectname']
     data['langavail']          = _('This page is also available in the following languages:')
     data['howtosetlang']       = _('How to set <a href="%s">the default document language</a>')
-    data['howtosetlang']       = Markup(data['howtosetlang'] % ('http://www.debian.org/intro/cn.%s.html' % lang['ddtp']))
+    data['howtosetlang']       = Markup(data['howtosetlang'] % ('https://www.debian.org/intro/cn.%s.html' % lang['ddtp']))
     data['nohomepage']         = _('Homepage not available')
     data['translatedesc']      = _('Translate description')
     data['fixtranslation']     = _('Fix translated description')
diff --git a/webtools/tasks_udd.py b/webtools/tasks_udd.py
index 40f0ff5..afcc491 100755
--- a/webtools/tasks_udd.py
+++ b/webtools/tasks_udd.py
@@ -110,7 +110,7 @@ for lang in languages:
     data['gtstrThisIsAList']   = _('This is a list of the Tasks %s is made of:') % data['projectname']
     data['langavail']          = _('This page is also available in the following languages:')
     data['howtosetlang']       = _('How to set <a href="%s">the default document language</a>')
-    data['howtosetlang']       = Markup(data['howtosetlang'] % ('http://www.debian.org/intro/cn.%s.html' % lang['ddtp']))
+    data['howtosetlang']       = Markup(data['howtosetlang'] % ('https://www.debian.org/intro/cn.%s.html' % lang['ddtp']))
     data['nohomepage']         = _('Homepage not available')
     data['translatedesc']      = _('Translate description')
     data['fixtranslation']     = _('Fix translated description')
diff --git a/webtools/templates/bugs.xhtml b/webtools/templates/bugs.xhtml
index 8df4efc..c355e3b 100644
--- a/webtools/templates/bugs.xhtml
+++ b/webtools/templates/bugs.xhtml
@@ -98,7 +98,7 @@
 		  <td class="bugid" colspan="3">
 		    <div class="bugsheadertable">
 		      <div class="bugsheadertr">
-			<span class="bugsheaderpackagetd" id="bugsheaderpackagetd"><a href="http://packages.qa.debian.org/${pkgbug['source'][0]}/${pkgbug['source']}.html">${pkgbug['source']}</a> (${len(pkgbug['bugs'])})</span>
+			<span class="bugsheaderpackagetd" id="bugsheaderpackagetd"><a href="https://packages.qa.debian.org/${pkgbug['source'][0]}/${pkgbug['source']}.html">${pkgbug['source']}</a> (${len(pkgbug['bugs'])})</span>
                         <span class="bugsheaderhomepagetd" id="bugsheaderhomepagetd" py:choose="pkgbug['homepage']">
                           <span py:when="'#'">${nohomepage}</span>
                           <span py:otherwise=""><a href="${pkgbug['homepage']}">Homepage: ${pkgbug['homepage']}</a></span>
@@ -117,7 +117,7 @@
 		</tr>
 		<py:for each="bug in pkgbug['bugs']">
 		  <tr>
-		    <td class="bugid ${bug['severity']}"><a href="http://bugs.debian.org/${bug['id']}">${bug['id']}</a></td>
+		    <td class="bugid ${bug['severity']}"><a href="https://bugs.debian.org/${bug['id']}">${bug['id']}</a></td>
 		    <td class="summary ${bug['severity']}">${bug['title']}</td>
 		    <td class="severity ${bug['severity']}">${bug['tags']}</td>
 		  </tr>
diff --git a/webtools/templates/debian-astro_idx.xhtml b/webtools/templates/debian-astro_idx.xhtml
index ffec737..c481551 100644
--- a/webtools/templates/debian-astro_idx.xhtml
+++ b/webtools/templates/debian-astro_idx.xhtml
@@ -5,17 +5,17 @@
     <title>$projectname Pure Blend</title>
     <meta http-equiv="Content-Type" content="application/xhtml+xml; charset=UTF-8" />
     <meta name="robots" content="noindex" />
-    <link href="http://blends.debian.org/css/debhandheld.css" media="screen" rel="stylesheet" type="text/css" />
-    <link href="http://blends.debian.org//css/debian.css" rel="stylesheet" type="text/css" />
-    <link href="http://blends.debian.org//css/blends.css" rel="stylesheet" type="text/css" />
-    <link rel="shortcut icon" href="http://www.debian.org/favicon.ico" />
+    <link href="https://blends.debian.org/css/debhandheld.css" media="screen" rel="stylesheet" type="text/css" />
+    <link href="https://blends.debian.org//css/debian.css" rel="stylesheet" type="text/css" />
+    <link href="https://blends.debian.org//css/blends.css" rel="stylesheet" type="text/css" />
+    <link rel="shortcut icon" href="https://www.debian.org/favicon.ico" />
   </head>
   <body>
     <div id="header">
       <div id="upperheader">
 	<div id="logo">
-	  <a href="http://www.debian.org/" title="Debian Home">
-	    <img src= "http://www.debian.org/Pics/openlogo-50.png"
+	  <a href="https://www.debian.org/" title="Debian Home">
+	    <img src= "https://www.debian.org/Pics/openlogo-50.png"
 			 alt="Debian" width="50" height= "61" /></a>
 	  </div>
 	  <p class="section">Pure Blend</p>
@@ -29,7 +29,7 @@
 	  </ul>
 	</div>
 	<p id="breadcrumbs">
-	  <a href="http://blends.debian.org">Debian Pure Blends</a>
+	  <a href="https://blends.debian.org">Debian Pure Blends</a>
 	  / $projectname
 	</p>
       </div><!-- end header -->
@@ -125,10 +125,10 @@
       <address>${updatetimestamp}</address>
       <p>
        The Debian Astro logo was created by
-       <a href="http://www.mariahammerstrom.com">Maria Hammerstrøm</a>
+       <a href="https://www.mariahammerstrom.com">Maria Hammerstrøm</a>
        and is under the license
-       <a href="http://www.gnu.org/copyleft/lgpl.html">LGPL-3</a> or
-       <a href="http://creativecommons.org/licenses/by-sa/3.0/">CC BY-SA 3.0</a>
+       <a href="https://www.gnu.org/copyleft/lgpl.html">LGPL-3</a> or
+       <a href="https://creativecommons.org/licenses/by-sa/3.0/">CC BY-SA 3.0</a>
        by your choice.
       </p>
     </div>
diff --git a/webtools/templates/packagelist.xhtml b/webtools/templates/packagelist.xhtml
index 6268a44..128660d 100644
--- a/webtools/templates/packagelist.xhtml
+++ b/webtools/templates/packagelist.xhtml
@@ -61,7 +61,7 @@
 		    <span py:otherwise=""><a href="${project.properties['homepage']}">${project.properties['name'].capitalize()}</a></span>
 		  </span>
                   <span py:choose="">
-		    <span py:when="len(project.properties['stable_testing_version'])>0">(<py:for each="version in project.properties['stable_testing_version']">${version[3]} <a href="http://packages.debian.org/${version[0]}/${project.properties['name']}">${version[2]}</a></py:for>)</span>
+		    <span py:when="len(project.properties['stable_testing_version'])>0">(<py:for each="version in project.properties['stable_testing_version']">${version[3]} <a href="https://packages.debian.org/${version[0]}/${project.properties['name']}">${version[2]}</a></py:for>)</span>
                   </span>
 		  </dt>
 		  <dd><span py:choose="">
diff --git a/webtools/templates/packages.xhtml b/webtools/templates/packages.xhtml
index 783b082..2a2befc 100644
--- a/webtools/templates/packages.xhtml
+++ b/webtools/templates/packages.xhtml
@@ -6,11 +6,11 @@
   <head>
       <title>$projectname ${tasks[task].metapkg.properties['PrintedName'].capitalize()} packages</title>
     <meta http-equiv="Content-Type" content="application/xhtml+xml; charset=UTF-8" />
-    <link href="http://www.debian.org/debhandheld.css" media="screen"
+    <link href="https://www.debian.org/debhandheld.css" media="screen"
 	  rel="stylesheet" type="text/css" />
-    <link href="http://www.debian.org/debian.css" rel="stylesheet"
+    <link href="https://www.debian.org/debian.css" rel="stylesheet"
 	  type="text/css" />
-    <link href="http://blends.debian.org/css/blends.css" rel="stylesheet"
+    <link href="https://blends.debian.org/css/blends.css" rel="stylesheet"
 	  type="text/css" />
     <style type="text/css">
 /* <!-- */
@@ -147,7 +147,7 @@ a.editlink {
 }
 /* --> */
     </style>
-    <link rel="shortcut icon" href="http://www.debian.org/favicon.ico" />
+    <link rel="shortcut icon" href="https://www.debian.org/favicon.ico" />
     <script type="text/javascript">
 /* <!-- */
 function toggle_visibility(id) {
@@ -180,8 +180,8 @@ function show_fulldesc(hash) {
     <div id="header">
       <div id="upperheader">
 	<div id="logo">
-	  <a href="http://www.debian.org/" title="Debian Home">
-	    <img src= "http://www.debian.org/Pics/openlogo-50.png"
+	  <a href="https://www.debian.org/" title="Debian Home">
+	    <img src= "https://www.debian.org/Pics/openlogo-50.png"
 		 alt="Debian" width="50" height= "61" /></a>
 	  </div>
 	  <p class="section">Pure Blend</p>
@@ -195,7 +195,7 @@ function show_fulldesc(hash) {
 	  </ul>
 	</div>
 	<p id="breadcrumbs">
-	  <a href="http://blends.debian.org">Debian Pure Blends</a>
+	  <a href="https://blends.debian.org">Debian Pure Blends</a>
 	  / <a href="$projecturl">$projectname</a>
 	  / <a href="../tasks">$packages</a>
 	  / ${tasks[task].metapkg.properties['PrintedName'].capitalize()}
@@ -223,13 +223,13 @@ function show_fulldesc(hash) {
 	</em>
 	<py:choose>
 	  <py:when test="lang in tasks[task].metapkg.properties['desc']">
-	    <a class="editlink" title="${fixtranslation}" href="http://ddtp.debian.net/ddtss/index.cgi/${lang}/forexternalreview/${tasks[task].metapkg.properties['name']}" py:if="lang != 'en'">
+	    <a class="editlink" title="${fixtranslation}" href="https://ddtp.debian.net/ddtss/index.cgi/${lang}/forexternalreview/${tasks[task].metapkg.properties['name']}" py:if="lang != 'en'">
 	      ✏
 	    </a>
 	    ${render_longdesc(tasks[task].metapkg.properties['desc'][lang].get('long', ''))}
 	  </py:when>
 	  <py:otherwise>
-	    <a class="editlink" title="${translatedesc}" href="http://ddtp.debian.net/ddtss/index.cgi/${lang}/fetch?package=${tasks[task].metapkg.properties['name']}" py:if="lang != 'en'">
+	    <a class="editlink" title="${translatedesc}" href="https://ddtp.debian.net/ddtss/index.cgi/${lang}/fetch?package=${tasks[task].metapkg.properties['name']}" py:if="lang != 'en'">
 	      ✏
 	    </a>
 	    ${render_longdesc(tasks[task].metapkg.properties['desc']['en'].get('long', ''))}
@@ -340,7 +340,7 @@ function show_fulldesc(hash) {
 		    <py:choose>
 		      <py:when test="'screenshot' in project.properties">
 			<dt class="screenshot">
-			  <a class="tooltip" href="http://screenshots.debian.net/package/${project.properties['name']}">
+			  <a class="tooltip" href="https://screenshots.debian.net/package/${project.properties['name']}">
 			    <img src="${project.properties['screenshot']['icon']}" alt="Description:" />
 			    <span class="tooltip centered">
 			      <img src="${project.properties['screenshot']['image']}" />
@@ -363,7 +363,7 @@ function show_fulldesc(hash) {
 		    <dd>
 		      <py:choose>
 			<py:when test="lang != 'en' and lang in project.properties['desc']">
-			  <a class="editlink" title="${fixtranslation}" href="http://ddtp.debian.net/ddtss/index.cgi/${lang}/forexternalreview/${project.properties['name']}">
+			  <a class="editlink" title="${fixtranslation}" href="https://ddtp.debian.net/ddtss/index.cgi/${lang}/forexternalreview/${project.properties['name']}">
 			    ✏
 			  </a>
 			  ${render_longdesc(project.properties['desc'][lang].get('long', ''))}
@@ -397,11 +397,11 @@ function show_fulldesc(hash) {
 			      <py:when test="'doi' in project.properties['published']">
 				<py:choose>
 				  <py:when test="'title' in project.properties['published']">
-				    <a href="http://dx.doi.org/${project.properties['published']['doi']}">
+				    <a href="https://dx.doi.org/${project.properties['published']['doi']}">
 				      ${project.properties['published']['title']}.</a>
 				  </py:when>
 				  <py:otherwise>
-				    <a href="http://dx.doi.org/${project.properties['published']['doi']}">
+				    <a href="https://dx.doi.org/${project.properties['published']['doi']}">
 				      Link to publication</a>
 				  </py:otherwise>
 				</py:choose>
@@ -416,11 +416,11 @@ function show_fulldesc(hash) {
 			    <py:if test="'volume' in project.properties['published']">${project.properties['published']['volume']}</py:if><py:if test="'number' in project.properties['published']">(${project.properties['published']['number']})</py:if><py:if test="'pages' in project.properties['published']">:${project.properties['published']['pages']}</py:if>
 			    <py:if test="'year' in project.properties['published']">(${project.properties['published']['year']})</py:if>
 			    <py:if test="'pubmed' in project.properties['published']">
-			      (<a href="http://www.ncbi.nlm.nih.gov/pubmed/${project.properties['published']['pubmed']}">PubMed</a></py:if><py:if test="'pubmed' in project.properties['published'] and 'eprint' in project.properties['published']">,</py:if><py:if test="'pubmed' not in project.properties['published'] and 'eprint' in project.properties['published']">(</py:if><py:if test="'eprint' in project.properties['published']"><a href="${project.properties['published']['eprint']}">eprint</a></py:if><py:if test="'pubmed' in project.properties['published'] or 'eprint' in project.properties['published']">)</py:if>
+			      (<a href="https://www.ncbi.nlm.nih.gov/pubmed/${project.properties['published']['pubmed']}">PubMed</a></py:if><py:if test="'pubmed' in project.properties['published'] and 'eprint' in project.properties['published']">,</py:if><py:if test="'pubmed' not in project.properties['published'] and 'eprint' in project.properties['published']">(</py:if><py:if test="'eprint' in project.properties['published']"><a href="${project.properties['published']['eprint']}">eprint</a></py:if><py:if test="'pubmed' in project.properties['published'] or 'eprint' in project.properties['published']">)</py:if>
 			  </li>
 			  <py:if test="project.properties.get('ascl_id')">
 			    <li>
-			      <a href="http://ascl.net/${project.properties['ascl_id']}">ascl:[${project.properties['ascl_id']}]</a>
+			      <a href="https://ascl.net/${project.properties['ascl_id']}">ascl:[${project.properties['ascl_id']}]</a>
 			    </li>
 			  </py:if>
 			</ul>
@@ -515,7 +515,7 @@ function show_fulldesc(hash) {
 		      <ul class="desc-inline">
 			<py:if test="'wnpp' in project.properties">
 			  <li>
-			    <a href="http://bugs.debian.org/${project.properties['wnpp']}">
+			    <a href="https://bugs.debian.org/${project.properties['wnpp']}">
 			      Announcement
 			    </a>
 			  </li>
@@ -607,7 +607,7 @@ function show_fulldesc(hash) {
 		      <dd>
 			<ul class="desc-inline">
 			  <li py:if="'screenshot' not in  project.properties">
-			    <a href="http://screenshots.debian.net/uploadfile?packagename=${project.properties['name']}">
+			    <a href="https://screenshots.debian.net/uploadfile?packagename=${project.properties['name']}">
 			      Upload Screenshot
 			    </a>
 			  </li>
@@ -617,7 +617,7 @@ function show_fulldesc(hash) {
 			    </a>
 			  </li>
 			  <li py:if="lang != 'en' and lang not in project.properties['desc']">
-			    <a href="http://ddtp.debian.net/ddtss/index.cgi/${lang}/fetch?package=${project.properties['name']}">
+			    <a href="https://ddtp.debian.net/ddtss/index.cgi/${lang}/fetch?package=${project.properties['name']}">
 			      ${translatedesc}
 			    </a>
 			  </li>
diff --git a/webtools/templates/tasks.xhtml b/webtools/templates/tasks.xhtml
index be9087f..f42c3f6 100644
--- a/webtools/templates/tasks.xhtml
+++ b/webtools/templates/tasks.xhtml
@@ -36,10 +36,10 @@
 				</div>
 				<p><span py:choose="">
 	           <span py:when="lang in tasks[task].metapkg.properties['desc']">${render_longdesc(tasks[task].metapkg.properties['desc'][lang].get('long', ''))}
-                     <div class="transmpkg" py:if="lang != 'en'"><a href="http://ddtp.debian.net/ddtss/index.cgi/${lang}/forexternalreview/${tasks[task].metapkg.properties['name']}">${fixtranslation}</a></div>
+                     <div class="transmpkg" py:if="lang != 'en'"><a href="https://ddtp.debian.net/ddtss/index.cgi/${lang}/forexternalreview/${tasks[task].metapkg.properties['name']}">${fixtranslation}</a></div>
                    </span>
 	           <span py:otherwise="">${render_longdesc(tasks[task].metapkg.properties['desc']['en'].get('long', ''))}
-                     <div class="transmpkg" py:if="lang != 'en'"><a href="http://ddtp.debian.net/ddtss/index.cgi/${lang}/fetch?package=${tasks[task].metapkg.properties['name']}">${translatedesc}</a></div>
+                     <div class="transmpkg" py:if="lang != 'en'"><a href="https://ddtp.debian.net/ddtss/index.cgi/${lang}/fetch?package=${tasks[task].metapkg.properties['name']}">${translatedesc}</a></div>
                    </span>
                  </span></p>
 			</div>
@@ -82,7 +82,7 @@
 	   <td class="project-name">
 	     <a name="${project.properties['name']}" id="${project.properties['name']}"/>
 	     <div class="pkgname">${project.properties['name'].capitalize()}
-	       <span class="wnpp" py:if="'wnpp' in project.properties"> - <a href="http://bugs.debian.org/${project.properties['wnpp']}">wnpp</a></span>
+	       <span class="wnpp" py:if="'wnpp' in project.properties"> - <a href="https://bugs.debian.org/${project.properties['wnpp']}">wnpp</a></span>
 	     </div>
 	     <div class="pkgdesc" py:choose="">
 	           <div py:when="lang in project.properties['desc']">${project.properties['desc'][lang]['short']}</div>
@@ -117,7 +117,7 @@
 	       </table>
 	     </span>
 	     <div py:if="'popcon' in project.properties"
-	     class="popcon"><a href="http://qa.debian.org/popcon-png.php?packages=${project.properties['name']}%26show_vote=on%26show_recent=on%26want_legend=on">Popcon</a>:
+	     class="popcon"><a href="https://qa.debian.org/popcon-png.php?packages=${project.properties['name']}%26show_vote=on%26show_recent=on%26want_legend=on">Popcon</a>:
 	     ${project.properties['popcon']['vote']} users (${project.properties['popcon']['recent']} upd.)<sup><a href="#popconexplanation">*</a></sup></div>
 	     <div py:if="project.properties['version']">
 	       <div py:choose="">
@@ -147,8 +147,8 @@
 	     </div>
             <div py:if="lang != 'en' and project.properties['component'] == 'main' and project.properties['pkgstatus'] != 'new' and project.properties['pkgstatus'] != 'pkgvcs'">
 	       <div py:choose="">
-	           <div class="trans" py:when="lang in project.properties['desc']"><a href="http://ddtp.debian.net/ddtss/index.cgi/${lang}/forexternalreview/${project.properties['name']}">${fixtranslation}</a></div>
-	           <div class="trans-missing" py:otherwise=""><a href="http://ddtp.debian.net/ddtss/index.cgi/${lang}/fetch?package=${project.properties['name']}">${translatedesc}</a></div>
+	           <div class="trans" py:when="lang in project.properties['desc']"><a href="https://ddtp.debian.net/ddtss/index.cgi/${lang}/forexternalreview/${project.properties['name']}">${fixtranslation}</a></div>
+	           <div class="trans-missing" py:otherwise=""><a href="https://ddtp.debian.net/ddtss/index.cgi/${lang}/fetch?package=${project.properties['name']}">${translatedesc}</a></div>
                </div>
             </div>
             <div class="language" py:if="'language' in project.properties and project.properties['component'] != 'main'">Language: ${project.properties['language']}</div>
@@ -184,15 +184,15 @@
 		 <span py:when="'doi' in project.properties['published']">
 		   <span py:choose="">
                      <span class="title"
-			   py:when="'title' in project.properties['published']"><a href="http://dx.doi.org/${project.properties['published']['doi']}">${project.properties['published']['title']}.</a></span>
-		     <span py:otherwise=""><a href="http://dx.doi.org/${project.properties['published']['doi']}">Link
+			   py:when="'title' in project.properties['published']"><a href="https://dx.doi.org/${project.properties['published']['doi']}">${project.properties['published']['title']}.</a></span>
+		     <span py:otherwise=""><a href="https://dx.doi.org/${project.properties['published']['doi']}">Link
 			 to publication</a></span>
 		   </span>
 		 </span>
 		 <span py:otherwise=""><span class="title" py:if="'title' in project.properties['published']">${project.properties['published']['title']}</span>
 		 </span>
 	       </span>
-               <span py:if="'pubmed' in project.properties['published']">(<a href="http://www.ncbi.nlm.nih.gov/pubmed/${project.properties['published']['pubmed']}">PubMed</a></span><span py:if="'pubmed' in project.properties['published'] and 'eprint' in project.properties['published']">,</span><span py:if="'pubmed' not in project.properties['published'] and 'eprint' in project.properties['published']">(</span><span py:if="'eprint' in project.properties['published']"><a href="${project.properties['published']['eprint']}">eprint</a></span><span py:if="'pubmed' in project.properties['published'] or 'eprint' in project.properties['published']">)</span>
+               <span py:if="'pubmed' in project.properties['published']">(<a href="https://www.ncbi.nlm.nih.gov/pubmed/${project.properties['published']['pubmed']}">PubMed</a></span><span py:if="'pubmed' in project.properties['published'] and 'eprint' in project.properties['published']">,</span><span py:if="'pubmed' not in project.properties['published'] and 'eprint' in project.properties['published']">(</span><span py:if="'eprint' in project.properties['published']"><a href="${project.properties['published']['eprint']}">eprint</a></span><span py:if="'pubmed' in project.properties['published'] or 'eprint' in project.properties['published']">)</span>
 	       <span class="journal" py:if="'journal' in project.properties['published']">${project.properties['published']['journal']}</span>
 	       <span class="journal" py:if="'volume' in project.properties['published']">${project.properties['published']['volume']}</span><span class="journal" py:if="'number' in project.properties['published']">(${project.properties['published']['number']})</span><span class="journal" py:if="'pages' in project.properties['published']">:${project.properties['published']['pages']}</span>
 	       <span class="year" py:if="'year' in project.properties['published']">(${project.properties['published']['year']})</span>
@@ -213,10 +213,10 @@
 		     </py:for>
 		   </table>
 		 </span>
-                 <a href="http://screenshots.debian.net/package/${project.properties['name']}"><img class="icon" src="${project.properties['screenshot']['icon']}" width="300" alt="Screenshots of package ${project.properties['name']}" onmouseover="TagToTip('${project.properties['name']}-screenshot', FIX, ['${project.properties['name']}', 80, -100])" onmouseout="UnTip()" /></a>
+                 <a href="https://screenshots.debian.net/package/${project.properties['name']}"><img class="icon" src="${project.properties['screenshot']['icon']}" width="300" alt="Screenshots of package ${project.properties['name']}" onmouseover="TagToTip('${project.properties['name']}-screenshot', FIX, ['${project.properties['name']}', 80, -100])" onmouseout="UnTip()" /></a>
                </div>
 	       <div py:otherwise=""
-		    class="project-infomissing"><a href="http://screenshots.debian.net/uploadfile?packagename=${project.properties['name']}">Upload screenshot</a></div>
+		    class="project-infomissing"><a href="https://screenshots.debian.net/uploadfile?packagename=${project.properties['name']}">Upload screenshot</a></div>
 	     </div>
            </td>
          </tr>
diff --git a/webtools/templates/tasks_idx.xhtml b/webtools/templates/tasks_idx.xhtml
index ae4fe7d..b4b1474 100644
--- a/webtools/templates/tasks_idx.xhtml
+++ b/webtools/templates/tasks_idx.xhtml
@@ -6,11 +6,11 @@
   <head>
     <title>$projectname</title>
     <meta http-equiv="Content-Type" content="application/xhtml+xml; charset=UTF-8" />
-    <link href="http://www.debian.org/debhandheld.css" media="screen"
+    <link href="https://www.debian.org/debhandheld.css" media="screen"
 	  rel="stylesheet" type="text/css" />
-    <link href="http://www.debian.org/debian.css" rel="stylesheet"
+    <link href="https://www.debian.org/debian.css" rel="stylesheet"
 	  type="text/css" />
-    <link href="http://blends.debian.org/css/blends.css" rel="stylesheet"
+    <link href="https://blends.debian.org/css/blends.css" rel="stylesheet"
 	  type="text/css" />
     <style type="text/css">
 /* <!-- */
@@ -23,14 +23,14 @@ table {
 
 /* --> */
     </style>
-    <link rel="shortcut icon" href="http://www.debian.org/favicon.ico" />
+    <link rel="shortcut icon" href="https://www.debian.org/favicon.ico" />
   </head>
   <body>
     <div id="header">
       <div id="upperheader">
 	<div id="logo">
-	  <a href="http://www.debian.org/" title="Debian Home">
-	    <img src= "http://www.debian.org/Pics/openlogo-50.png"
+	  <a href="https://www.debian.org/" title="Debian Home">
+	    <img src= "https://www.debian.org/Pics/openlogo-50.png"
 		 alt="Debian" width="50" height= "61" /></a>
 	  </div>
 	  <p class="section">Pure Blend</p>
@@ -57,7 +57,7 @@ table {
 	  </span>
 	</div>
       <p id="breadcrumbs">
-	<a href="http://blends.debian.org">Debian Pure Blends</a>
+	<a href="https://blends.debian.org">Debian Pure Blends</a>
 	/ <a href="$projecturl">$projectname</a>
 	/ $packages
       </p>
diff --git a/webtools/templates/thermometer.xhtml b/webtools/templates/thermometer.xhtml
index 326feec..715a5d6 100644
--- a/webtools/templates/thermometer.xhtml
+++ b/webtools/templates/thermometer.xhtml
@@ -66,7 +66,7 @@
          </tr>
          <py:for each="pkg in blend_data">
          <tr class='${pkg.debianstatus}'>
-           <td><strong>${pkg.source}</strong> (<span py:choose="pkg.is_in_debian"><span py:when="1"><a href='http://packages.qa.debian.org/${pkg.source}'>PTS</a>, </span><span py:otherwise=""><span py:if="pkg.wnpp != ''"><a href="http://bugs.debian.org/${pkg.wnpp}">WNPP</a>, </span></span></span><span py:if="pkg.vcs_browser != ''"><a href="${pkg.vcs_browser}">VCS</a>, </span><a href='${pkg.homepage}'>UP</a>)</td>
+           <td><strong>${pkg.source}</strong> (<span py:choose="pkg.is_in_debian"><span py:when="1"><a href='https://packages.qa.debian.org/${pkg.source}'>PTS</a>, </span><span py:otherwise=""><span py:if="pkg.wnpp != ''"><a href="https://bugs.debian.org/${pkg.wnpp}">WNPP</a>, </span></span></span><span py:if="pkg.vcs_browser != ''"><a href="${pkg.vcs_browser}">VCS</a>, </span><a href='${pkg.homepage}'>UP</a>)</td>
            <td>${pkg.stable}</td><td>${pkg.testing}</td><td>${pkg.unstable}</td><td>${pkg.stable_bpo}</td><td>${pkg.experimental}</td><td>${pkg.NEW}</td><td>${pkg.UNRELEASED}</td><td class='${pkg.upstreamstatus}'>${pkg.upstream}</td><td class='none'><py:for each="task in pkg.tasks"><a href="../tasks/${task}">${task}</a> </py:for></td>
          </tr>
          </py:for>
diff --git a/webtools/templates/uthermometer.xhtml b/webtools/templates/uthermometer.xhtml
index 1c8f430..407a6d8 100644
--- a/webtools/templates/uthermometer.xhtml
+++ b/webtools/templates/uthermometer.xhtml
@@ -66,7 +66,7 @@
          </tr>
          <py:for each="pkg in blend_data">
          <tr class='${pkg.ubuntustatus}'>
-           <td><strong>${pkg.source}</strong> (<span py:choose="pkg.is_in_debian"><span py:when="1"><a href='http://packages.qa.debian.org/${pkg.source}'>PTS</a>, </span><span py:otherwise=""><span py:if="pkg.wnpp != ''"><a href="http://bugs.debian.org/${pkg.wnpp}">WNPP</a>, </span></span></span><span py:if="pkg.vcs_browser != ''"><a href="${pkg.vcs_browser}">VCS</a>, </span><a href='${pkg.homepage}'>UP</a>)</td>
+           <td><strong>${pkg.source}</strong> (<span py:choose="pkg.is_in_debian"><span py:when="1"><a href='https://packages.qa.debian.org/${pkg.source}'>PTS</a>, </span><span py:otherwise=""><span py:if="pkg.wnpp != ''"><a href="https://bugs.debian.org/${pkg.wnpp}">WNPP</a>, </span></span></span><span py:if="pkg.vcs_browser != ''"><a href="${pkg.vcs_browser}">VCS</a>, </span><a href='${pkg.homepage}'>UP</a>)</td>
            <td>${pkg.stable}</td><td>${pkg.testing}</td><td>${pkg.unstable}</td><td>${pkg.stable_bpo}</td><td>${pkg.ubuntuprev2}</td><td>${pkg.ubuntuprev1}</td><td>${pkg.latestubuntu}</td><td class='${pkg.upstreamstatus}'>${pkg.upstream}</td><td class='none'><py:for each="task in pkg.tasks"><a href="../tasks/${task}">${task}</a> </py:for></td>
          </tr>
          </py:for>
diff --git a/webtools/thermometer.py b/webtools/thermometer.py
index 3808866..5d11250 100755
--- a/webtools/thermometer.py
+++ b/webtools/thermometer.py
@@ -398,7 +398,7 @@ def main():
     data['idxsummary']        = _("""A %sDebian Pure Blend%s is a Debian internal project which assembles
 a set of packages that might help users to solve certain tasks of their work.  The list on
 the right shows the tasks of %s.""") \
-        % ('<a href="http://blends.alioth.debian.org/blends/">', '</a>', data['projectname'])
+        % ('<a href="https://blends.alioth.debian.org/blends/">', '</a>', data['projectname'])
     data['idxsummary']        = Markup(data['idxsummary'])
 
     for key in ('homepage', 'projecturl', 'projectname', 'logourl', 'ubuntuhome', 'projectubuntu'):
diff --git a/webtools/webconf/debian-accessibility.conf b/webtools/webconf/debian-accessibility.conf
index 765a7ec..eced0de 100644
--- a/webtools/webconf/debian-accessibility.conf
+++ b/webtools/webconf/debian-accessibility.conf
@@ -1,8 +1,8 @@
 Blend:       debian-accessibility
 ProjectName: Debian Accessibility
-ProjectUrl:  http://www.debian.org/devel/debian-accessibility
-Homepage:    http://www.debian.org/devel/debian-accessibility
-AliothUrl:   http://alioth.debian.org/projects/accessibility
+ProjectUrl:  https://www.debian.org/devel/debian-accessibility
+Homepage:    https://www.debian.org/devel/debian-accessibility
+AliothUrl:   https://alioth.debian.org/projects/accessibility
 ProjectList: debian-accessibility at lists.debian.org
 OutputDir:   /srv/blends.debian.org/www/accessibility
 DataDir:     /srv/blends.debian.org/data/accessibility
diff --git a/webtools/webconf/debian-astro.conf b/webtools/webconf/debian-astro.conf
index f2fdb19..0ad0d71 100644
--- a/webtools/webconf/debian-astro.conf
+++ b/webtools/webconf/debian-astro.conf
@@ -1,6 +1,6 @@
 Blend:       debian-astro
 ProjectName: Debian Astro
-ProjectUrl:  http://blends.debian.org/astro/
+ProjectUrl:  https://blends.debian.org/astro/
 Homepage:    https://wiki.debian.org/DebianAstro
 AliothUrl:   https://alioth.debian.org/projects/debian-astro/
 ProjectList: debian-astro at lists.debian.org
diff --git a/webtools/webconf/debian-edu.conf b/webtools/webconf/debian-edu.conf
index 5c2e769..4eade3a 100644
--- a/webtools/webconf/debian-edu.conf
+++ b/webtools/webconf/debian-edu.conf
@@ -1,10 +1,10 @@
 Blend:       debian-edu
 ProjectName: Debian Edu
-ProjectUrl:  http://debian-edu.alioth.debian.org/
-Homepage:    http://wiki.debian.org/DebianEdu
-AliothUrl:   http://alioth.debian.org/projects/debian-edu
+ProjectUrl:  https://debian-edu.alioth.debian.org/
+Homepage:    https://wiki.debian.org/DebianEdu
+AliothUrl:   https://alioth.debian.org/projects/debian-edu
 ProjectList: debian-edu at lists.debian.org
-LogoUrl:     http://blends.alioth.debian.org/img/slx-tux.png
+LogoUrl:     https://blends.alioth.debian.org/img/slx-tux.png
 OutputDir:   /srv/blends.debian.org/www/edu
 DataDir:     /srv/blends.debian.org/data/edu
 #VcsDir:      svn://anonscm.debian.org/svn/debian-edu/trunk/src/debian-edu
diff --git a/webtools/webconf/debian-ezgo.conf b/webtools/webconf/debian-ezgo.conf
index d2f41e1..3866324 100644
--- a/webtools/webconf/debian-ezgo.conf
+++ b/webtools/webconf/debian-ezgo.conf
@@ -1,8 +1,8 @@
 Blend:       debian-ezgo
 ProjectName: Debian EzGo
-ProjectUrl:  http://blends.alioth.debian.org/ezgo
-Homepage:    http://ossacc.moe.edu.tw/uploads/datafile/ezgo7_linux/index.html
-AliothUrl:   http://debian-ezgo.alioth.debian.org/
+ProjectUrl:  https://blends.alioth.debian.org/ezgo
+Homepage:    https://ossacc.moe.edu.tw/uploads/datafile/ezgo7_linux/index.html
+AliothUrl:   https://debian-ezgo.alioth.debian.org/
 ProjectList: ajqlee at debian.org
 OutputDir:   /srv/blends.debian.org/www/ezgo
 DataDir:     /srv/blends.debian.org/data/ezgo
diff --git a/webtools/webconf/debian-games.conf b/webtools/webconf/debian-games.conf
index a9a8509..c76b480 100644
--- a/webtools/webconf/debian-games.conf
+++ b/webtools/webconf/debian-games.conf
@@ -1,7 +1,7 @@
 Blend:       debian-games
 ProjectName: Debian Games
 ProjectUrl:  https://wiki.debian.org/Games
-Homepage:    http://wiki.debian.org/Games
+Homepage:    https://wiki.debian.org/Games
 AliothUrl:
 ProjectList: debian-devel-games at lists.debian.org
 OutputDir:   /srv/blends.debian.org/www/games
diff --git a/webtools/webconf/debian-gis.conf b/webtools/webconf/debian-gis.conf
index d2de86b..dd47e51 100644
--- a/webtools/webconf/debian-gis.conf
+++ b/webtools/webconf/debian-gis.conf
@@ -1,10 +1,10 @@
 Blend:       debian-gis
 ProjectName: Debian GIS
-ProjectUrl:  http://pkg-grass.alioth.debian.org/
-Homepage:    http://wiki.debian.org/DebianGis
-AliothUrl:   http://alioth.debian.org/projects/pkg-grass
+ProjectUrl:  https://pkg-grass.alioth.debian.org/
+Homepage:    https://wiki.debian.org/DebianGis
+AliothUrl:   https://alioth.debian.org/projects/pkg-grass
 ProjectList: pkg-grass-devel at lists.alioth.debian.org
-LogoUrl:     http://blends.alioth.debian.org/img/debiangis_mollweide.png
+LogoUrl:     https://blends.alioth.debian.org/img/debiangis_mollweide.png
 OutputDir:   /srv/blends.debian.org/www/gis
 DataDir:     /srv/blends.debian.org/data/gis
 X-Old-VcsDir:      /svn/pkg-grass/packages/debian-gis
diff --git a/webtools/webconf/debian-hamradio.conf b/webtools/webconf/debian-hamradio.conf
index 195b975..73a1fa0 100644
--- a/webtools/webconf/debian-hamradio.conf
+++ b/webtools/webconf/debian-hamradio.conf
@@ -1,10 +1,10 @@
 Blend:       debian-hamradio
 ProjectName: Debian Hamradio
-ProjectUrl:  http://blends.debian.org/hamradio/
-Homepage:    http://blends.debian.org/hamradio/
-AliothUrl:   http://alioth.debian.org/projects/pkg-hamradio/
+ProjectUrl:  https://blends.debian.org/hamradio/
+Homepage:    https://blends.debian.org/hamradio/
+AliothUrl:   https://alioth.debian.org/projects/pkg-hamradio/
 ProjectList: debian-hams at lists.debian.org
-LogoUrl:     http://pkg-hamradio.alioth.debian.org/logo.png
+LogoUrl:     https://pkg-hamradio.alioth.debian.org/logo.png
 OutputDir:   /srv/blends.debian.org/www/hamradio
 DataDir:     /srv/blends.debian.org/data/hamradio
 VcsDir:      git://anonscm.debian.org/blends/projects/hamradio.git
diff --git a/webtools/webconf/debian-imaging.conf b/webtools/webconf/debian-imaging.conf
index 50d1e41..0c1009f 100644
--- a/webtools/webconf/debian-imaging.conf
+++ b/webtools/webconf/debian-imaging.conf
@@ -1,8 +1,8 @@
 Blend:       debian-imaging
 ProjectName: Debian Imaging
-ProjectUrl:  http://blends.alioth.debian.org/imaging
-Homepage:    http://blends.alioth.debian.org/imaging
-AliothUrl:   http://blends.alioth.debian.org/imaging
+ProjectUrl:  https://blends.alioth.debian.org/imaging
+Homepage:    https://blends.alioth.debian.org/imaging
+AliothUrl:   https://blends.alioth.debian.org/imaging
 ProjectList: tille at debian.org
 OutputDir:   /srv/blends.debian.org/www/imaging
 DataDir:     /srv/blends.debian.org/data/debian-imaging
diff --git a/webtools/webconf/debian-junior.conf b/webtools/webconf/debian-junior.conf
index 8d51f2a..6452247 100644
--- a/webtools/webconf/debian-junior.conf
+++ b/webtools/webconf/debian-junior.conf
@@ -1,8 +1,8 @@
 Blend:       debian-junior
 ProjectName: Debian Junior
-ProjectUrl:  http://wiki.debian.org/Teams/DebianJr
-Homepage:    http://www.debian.org/devel/debian-jr
-AliothUrl:   http://blends.alioth.debian.org/projects/debian-jr
+ProjectUrl:  https://wiki.debian.org/Teams/DebianJr
+Homepage:    https://www.debian.org/devel/debian-jr
+AliothUrl:   https://blends.alioth.debian.org/projects/debian-jr
 ProjectList: debian-junior at lists.debian.org
 OutputDir:   /srv/blends.debian.org/www/junior
 DataDir:     /srv/blends.debian.org/data/junior
diff --git a/webtools/webconf/debian-lex.conf b/webtools/webconf/debian-lex.conf
index fc016a4..9a4483f 100644
--- a/webtools/webconf/debian-lex.conf
+++ b/webtools/webconf/debian-lex.conf
@@ -1,8 +1,8 @@
 Blend:       debian-lex
 ProjectName: Debian Lex
-ProjectUrl:  http://alioth.debian.org/projects/debian-lex
-Homepage:    http://www.debian.org/devel/debian-lex/
-AliothUrl:   http://blends.alioth.debian.org/lex
+ProjectUrl:  https://alioth.debian.org/projects/debian-lex
+Homepage:    https://www.debian.org/devel/debian-lex/
+AliothUrl:   https://blends.alioth.debian.org/lex
 ProjectList: debian-lex at lists.debian.org
 OutputDir:   /srv/blends.debian.org/www/lex
 DataDir:     /srv/blends.debian.org/data/lex
diff --git a/webtools/webconf/debian-med.conf b/webtools/webconf/debian-med.conf
index d364b55..9b3c4d5 100644
--- a/webtools/webconf/debian-med.conf
+++ b/webtools/webconf/debian-med.conf
@@ -1,16 +1,16 @@
 Blend:       debian-med
 ProjectName: Debian Med
-ProjectUrl:  http://debian-med.alioth.debian.org/
-Homepage:    http://www.debian.org/devel/debian-med
-AliothUrl:   http://alioth.debian.org/projects/debian-med
+ProjectUrl:  https://debian-med.alioth.debian.org/
+Homepage:    https://www.debian.org/devel/debian-med
+AliothUrl:   https://alioth.debian.org/projects/debian-med
 ProjectList: debian-med at lists.debian.org
-LogoUrl:     http://debian-med.alioth.debian.org/img/debian-med.png
-Ignore:      alternative Logo: http://people.debian.org/~tille/debian-med/logos/med-06.jpg
+LogoUrl:     https://debian-med.alioth.debian.org/img/debian-med.png
+Ignore:      alternative Logo: https://people.debian.org/~tille/debian-med/logos/med-06.jpg
 OutputDir:   /srv/blends.debian.org/www/med
 DataDir:     /srv/blends.debian.org/data/med
 VcsDir:      git://anonscm.debian.org/blends/projects/med.git
 CSS:         ../inc/style.css
-Advertising: _('Help us to see Debian used by medical practitioners and biomedical researchers! Join us on the <a href=\"http://alioth.debian.org/projects/debian-med\">Alioth page</a>.')
+Advertising: _('Help us to see Debian used by medical practitioners and biomedical researchers! Join us on the <a href=\"https://alioth.debian.org/projects/debian-med\">Alioth page</a>.')
 PkgList:     debian-med-packaging at lists.alioth.debian.org
 DehsMail:    tille at debian.org
 Distribution: Debian
diff --git a/webtools/webconf/debian-multimedia.conf b/webtools/webconf/debian-multimedia.conf
index 3597cf0..99692a3 100644
--- a/webtools/webconf/debian-multimedia.conf
+++ b/webtools/webconf/debian-multimedia.conf
@@ -1,8 +1,8 @@
 Blend:       debian-multimedia
 ProjectName: Debian Multimedia
-ProjectUrl:  http://blends.alioth.debian.org/multimedia
-Homepage:    http://blends.alioth.debian.org/multimedia
-AliothUrl:   http://blends.alioth.debian.org/multimedia
+ProjectUrl:  https://blends.alioth.debian.org/multimedia
+Homepage:    https://blends.alioth.debian.org/multimedia
+AliothUrl:   https://blends.alioth.debian.org/multimedia
 ProjectList: pkg-multimedia-maintainers at lists.alioth.debian.org
 OutputDir:   /srv/blends.debian.org/www/multimedia
 DataDir:     /srv/blends.debian.org/data/multimedia-blends
diff --git a/webtools/webconf/debian-pan.conf b/webtools/webconf/debian-pan.conf
index 96d8b8f..acf9b2f 100644
--- a/webtools/webconf/debian-pan.conf
+++ b/webtools/webconf/debian-pan.conf
@@ -1,8 +1,8 @@
 Blend:       debian-pan
 ProjectName: PAN Blend
-ProjectUrl:  http://wiki.debian.org/SynchrotronRadiationSoftware
-Homepage:    http://wiki.debian.org/SynchrotronRadiationSoftware
-AliothUrl:   http://alioth.debian.org/projects/debian-science
+ProjectUrl:  https://wiki.debian.org/SynchrotronRadiationSoftware
+Homepage:    https://wiki.debian.org/SynchrotronRadiationSoftware
+AliothUrl:   https://alioth.debian.org/projects/debian-science
 ProjectList: debian-science at lists.debian.org
 OutputDir:   /srv/blends.debian.org/www/pan
 DataDir:     /srv/blends.debian.org/data/pan
diff --git a/webtools/webconf/debian-sanctuary.conf b/webtools/webconf/debian-sanctuary.conf
index 0d3588b..d79dcc0 100644
--- a/webtools/webconf/debian-sanctuary.conf
+++ b/webtools/webconf/debian-sanctuary.conf
@@ -1,10 +1,10 @@
 Blend:       debian-sanctuary
 ProjectName: Debian Sanctuary
-ProjectUrl:  http://blends.debian.org/sanctuary/
+ProjectUrl:  https://blends.debian.org/sanctuary/
 Homepage:    https://wiki.debian.org/DebianSanctuary
-AliothUrl:   http://www.example.com/
+AliothUrl:   https://www.example.com/
 ProjectList: nolistyet at example.com
-LogoUrl:     http://placekitten.com/g/150/150
+LogoUrl:     https://placekitten.com/g/150/150
 OutputDir:   /srv/blends.debian.org/www/sanctuary
 DataDir:     /srv/blends.debian.org/data/sanctuary
 VcsDir:      git://anonscm.debian.org/blends/projects/sanctuary.git
diff --git a/webtools/webconf/debian-science.conf b/webtools/webconf/debian-science.conf
index 67e873e..0bf8b4b 100644
--- a/webtools/webconf/debian-science.conf
+++ b/webtools/webconf/debian-science.conf
@@ -1,8 +1,8 @@
 Blend:       debian-science
 ProjectName: Debian Science
-ProjectUrl:  http://wiki.debian.org/DebianScience
-Homepage:    http://wiki.debian.org/DebianScience
-AliothUrl:   http://alioth.debian.org/projects/debian-science
+ProjectUrl:  https://wiki.debian.org/DebianScience
+Homepage:    https://wiki.debian.org/DebianScience
+AliothUrl:   https://alioth.debian.org/projects/debian-science
 ProjectList: debian-science at lists.debian.org
 OutputDir:   /srv/blends.debian.org/www/science
 DataDir:     /srv/blends.debian.org/data/science
diff --git a/webtools/webconf/debichem.conf b/webtools/webconf/debichem.conf
index f06bd93..a8a0e0d 100644
--- a/webtools/webconf/debichem.conf
+++ b/webtools/webconf/debichem.conf
@@ -1,8 +1,8 @@
 Blend:       debichem
 ProjectName: DebiChem
-ProjectUrl:  http://alioth.debian.org/projects/debichem
-Homepage:    http://debichem.alioth.debian.org/
-AliothUrl:   http://alioth.debian.org/projects/debichem
+ProjectUrl:  https://alioth.debian.org/projects/debichem
+Homepage:    https://debichem.alioth.debian.org/
+AliothUrl:   https://alioth.debian.org/projects/debichem
 ProjectList: debichem-devel at lists.alioth.debian.org
 OutputDir:   /srv/blends.debian.org/www/debichem
 DataDir:     /srv/blends.debian.org/data/debichem
diff --git a/webtools/webconf/fun.conf b/webtools/webconf/fun.conf
index 11ed0d4..bc19c66 100644
--- a/webtools/webconf/fun.conf
+++ b/webtools/webconf/fun.conf
@@ -1,13 +1,13 @@
 Blend:       fun
 ProjectName: Debian Fun
-ProjectUrl:  http://blends.debian.net/fun
-Homepage:    http://blends.debian.net/fun
-AliothUrl:   http://alioth.debian.org/projects/blends
+ProjectUrl:  https://blends.debian.net/fun
+Homepage:    https://blends.debian.net/fun
+AliothUrl:   https://alioth.debian.org/projects/blends
 ProjectList: none at lists.debian.org
 OutputDir:   /srv/blends.debian.org/www/fun
 DataDir:     /srv/blends.debian.org/data/fun
 VcsDir:      git://git.debian.org/git/blends/projects/fun.git
 CSS:         ../inc/style.css
 PkgList:     tillea at gmail.com
-LogoUrl:     http://fam-tille.de/island/winter/0211/baden.gif
+LogoUrl:     https://fam-tille.de/island/winter/0211/baden.gif
 Distribution: test
diff --git a/webtools/webconf/openstudio.conf b/webtools/webconf/openstudio.conf
index 198890e..0723d14 100644
--- a/webtools/webconf/openstudio.conf
+++ b/webtools/webconf/openstudio.conf
@@ -6,7 +6,7 @@ AliothUrl:   https://github.com/johnsen/meta-blends
 ProjectList: rosea.grammostola at gmail.com
 OutputDir:   /srv/blends.debian.org/www/meta-blends
 DataDir:     /srv/blends.debian.org/data/meta-blends
-VcsDir:      http://github.com/johnsen/meta-blends.git
+VcsDir:      https://github.com/johnsen/meta-blends.git
 CSS:         ../inc/style.css
 PkgList:     rosea.grammostola at gmail.com
 Distribution: Openstudio

-- 
Static and dynamic websites for Debian Pure Blends



More information about the Blends-commit mailing list