Commit 45ad38a3 authored by Paul Wise's avatar Paul Wise Committed by Bill Allombert
Browse files

Use https instead of http in URLs where possible.

parent c262632a
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -126,12 +126,12 @@ FINDING THE SOURCE

This package is being maintained in Subversion using Alioth.  The project summary
page is available from <URL:https://alioth.debian.org/projects/popcon/>.
The project home page is at <URL:http://popcon.alioth.debian.org/>.
The project home page is at <URL:https://popcon.alioth.debian.org/>.

REPORTING BUGS
==============

Report bugs into the Debian Bug Tracking System.  See
<URL:http://bugs.debian.org/> for instructions.  If you want to get in
<URL:https://bugs.debian.org/> for instructions.  If you want to get in
touch with the popularity contest maintainers, send an email to
popcon-developers@lists.alioth.debian.org.
+14 −14
Original line number Diff line number Diff line
@@ -63,14 +63,14 @@ sub htmlheader
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    <title> Debian Popularity Contest </title>
    <link rev="made" href="mailto:ballombe\@debian.org">
    <link href="http://www.debian.org/debian.css" rel="stylesheet" type="text/css">
    <link href="https://www.debian.org/debian.css" rel="stylesheet" type="text/css">
    <link rel="shortcut icon" href="/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" alt="Debian" width="50" height="61"></a>
          <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> <!-- end logo -->
        <p class="section"><a href="/">POPCON</a></p>
      </div> <!-- end upperheader -->
@@ -78,10 +78,10 @@ sub htmlheader
      <div id="navbar">
        <p class="hidecss"><a href="#content">Skip Quicknav</a></p>
        <ul>
          <li><a href="http://www.debian.org/intro/about">About Debian</a></li>
          <li><a href="http://www.debian.org/distrib/">Getting Debian</a></li>
          <li><a href="http://www.debian.org/support">Support</a></li>
          <li><a href="http://www.debian.org/devel/">Developers' Corner</a></li>
          <li><a href="https://www.debian.org/intro/about">About Debian</a></li>
          <li><a href="https://www.debian.org/distrib/">Getting Debian</a></li>
          <li><a href="https://www.debian.org/support">Support</a></li>
          <li><a href="https://www.debian.org/devel/">Developers' Corner</a></li>
        </ul>
      </div> <!-- end navbar -->
      <p id="breadcrumbs"><a href="http://popcon.debian.org/">Debian Popularity Contest</a>
@@ -107,16 +107,16 @@ sub popconintro
  <p> <em> The popularity contest project is an attempt to map the usage of
  Debian packages.  This site publishes the statistics gathered from report
  sent by users of the <a
  href="http://packages.debian.org/popularity-contest">popularity-contest</a>
  href="https://packages.debian.org/popularity-contest">popularity-contest</a>
  package. This package sends every week the list of packages installed and the
  access time of relevant files to the server via email. Every day the server
  anonymizes the result and publishes this survey.
  For more information, read the <a href="${docurlbase}README">README</a> and the
  <a href="${docurlbase}FAQ">FAQ</a>.
  </em>
  <p><em>To participate in this survey, install the <a href="http://packages.debian.org/popularity-contest">popularity-contest</a> package.</em> </p>
  <p><em>To participate in this survey, install the <a href="https://packages.debian.org/popularity-contest">popularity-contest</a> package.</em> </p>
  <p></p>
<form method="GET" action="http://qa.debian.org/popcon.php">Popcon statistics
<form method="GET" action="https://qa.debian.org/popcon.php">Popcon statistics
for source package <input type="text" size="30" maxlength="80" name="package">
<input type="submit" value="Go">
</form> <p>
@@ -218,12 +218,12 @@ sub htmlfooter
  print HTML <<EOH;
<div id="footer">
Made by <a href="mailto:ballombe\@debian.org">Bill Allombert</a>. Last generated on $date UTC. <br>
<a href="http://popcon.alioth.debian.org" > Popularity-contest project </a> by Avery Pennarun, Bill Allombert and Petter Reinholdtsen.
<a href="https://popcon.alioth.debian.org" > Popularity-contest project </a> by Avery Pennarun, Bill Allombert and Petter Reinholdtsen.
<br>
Debian theme by St&eacute;phane Blondon, based on
Debian template Copyright &copy; 1997-2013
<a href="http://www.spi-inc.org/">SPI</a> and others; See <a href="http://www.debian.org/license" rel="copyright">license terms</a><br>
Debian is a registered <a href="http://www.debian.org/trademark">trademark</a> of Software in the Public Interest, Inc.
<a href="http://www.spi-inc.org/">SPI</a> and others; See <a href="https://www.debian.org/license" rel="copyright">license terms</a><br>
Debian is a registered <a href="https://www.debian.org/trademark">trademark</a> of Software in the Public Interest, Inc.
</div>
</body>
</html>
@@ -302,7 +302,7 @@ sub print_pkg
  return unless (defined($pkg));
  my $size=length $pkg;
  my $pkgt=substr($pkg,0,20);
  print HTML "<a href=\"http://packages.debian.org/$pkg\">$pkgt</a> ",
  print HTML "<a href=\"https://packages.debian.org/$pkg\">$pkgt</a> ",
  ' 'x(20-$size);
}

@@ -521,7 +521,7 @@ EOF
      my ($port)=split('-',$f);
      $port="$port/";
      $port="kfreebsd-gnu/" if ($port eq "kfreebsd/");
      printf HTML "<a href=\"http://www.debian.org/ports/$port\">%-16s</a> : %-10s <a href=\"stat/sub-$f.png\">graph</a>\n",$f,$arch{$f};
      printf HTML "<a href=\"https://www.debian.org/ports/$port\">%-16s</a> : %-10s <a href=\"stat/sub-$f.png\">graph</a>\n",$f,$arch{$f};
    }
  if (defined $arch{"unknown"}) {
    printf HTML "%-16s : %-10s <a href=\"stat/sub-unknown.png\">graph</a>\n","unknown",$arch{"unknown"}