summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Backlund <tmb@mageia.org>2022-08-21 23:10:06 +0300
committerThomas Backlund <tmb@mageia.org>2022-08-21 23:10:06 +0300
commit234df905b2fb7e81cf17c70f346692c00ff9e186 (patch)
treef276dc8cab0c4b6eec3c919031bd1ddc2947cb67
parent4c52e84af1cc6a4b47fd703e0271d4fcf153a489 (diff)
downloadpkgsubmit-234df905b2fb7e81cf17c70f346692c00ff9e186.tar
pkgsubmit-234df905b2fb7e81cf17c70f346692c00ff9e186.tar.gz
pkgsubmit-234df905b2fb7e81cf17c70f346692c00ff9e186.tar.bz2
pkgsubmit-234df905b2fb7e81cf17c70f346692c00ff9e186.tar.xz
pkgsubmit-234df905b2fb7e81cf17c70f346692c00ff9e186.zip
use https links
-rw-r--r--conf.php4
-rw-r--r--unmaintained.php2
2 files changed, 3 insertions, 3 deletions
diff --git a/conf.php b/conf.php
index d3c624c..000eb7d 100644
--- a/conf.php
+++ b/conf.php
@@ -37,10 +37,10 @@ $title = 'Build system status';
$robots = 'index,nofollow,nosnippet,noarchive';
/** */
-$g_root_url = 'http://pkgsubmit.mageia.org/';
+$g_root_url = 'https://pkgsubmit.mageia.org/';
/** URL to view a package svn revision. %d is replaced by the revision */
-$package_commit_url = 'http://svnweb.mageia.org/packages?view=revision&revision=%d';
+$package_commit_url = 'https://svnweb.mageia.org/packages?view=revision&revision=%d';
/** name of the theme */
$theme_name = 'mageia';
diff --git a/unmaintained.php b/unmaintained.php
index 2e7d73a..365c08b 100644
--- a/unmaintained.php
+++ b/unmaintained.php
@@ -41,7 +41,7 @@ $s .= '<ul class="groups">';
$s .= array_reduce($groups, function ($res, $el) {
return $res . '<li>' . implode(', ', array_map(function ($ela) {
- $spec_url = sprintf('http://svnweb.mageia.org/packages/cauldron/%s/current/SPECS/%s.spec?view=markup', $ela, $ela);
+ $spec_url = sprintf('https://svnweb.mageia.org/packages/cauldron/%s/current/SPECS/%s.spec?view=markup', $ela, $ela);
return sprintf('<a href="%s">%s</a>', $spec_url, $ela);
}, $el)) . '</li>';
});