]> git.ipfire.org Git - thirdparty/git.git/commitdiff
gitweb: refer to picon/gravatar images over the same scheme
authorAndrej E Baranov <admin@andrej-andb.ru>
Mon, 28 Jan 2013 23:41:32 +0000 (00:41 +0100)
committerJunio C Hamano <gitster@pobox.com>
Tue, 29 Jan 2013 02:58:50 +0000 (18:58 -0800)
With the current code, the images from picon and gravatar are
requested over http://, and browsers give mixed contents warning
when gitweb is served over https://.

Just drop the scheme: part from the URL, so that these external
sites are accessed over https:// in such a case.

Signed-off-by: Andrej E Baranov <admin@andrej-andb.ru>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
gitweb/gitweb.perl

index c6bafe6ead815ece2e820d303e442270749c5c4b..1309196d27e675013825cdac8afd6d7328e44b1f 100755 (executable)
@@ -2068,7 +2068,7 @@ sub picon_url {
        if (!$avatar_cache{$email}) {
                my ($user, $domain) = split('@', $email);
                $avatar_cache{$email} =
-                       "http://www.cs.indiana.edu/cgi-pub/kinzler/piconsearch.cgi/" .
+                       "//www.cs.indiana.edu/cgi-pub/kinzler/piconsearch.cgi/" .
                        "$domain/$user/" .
                        "users+domains+unknown/up/single";
        }
@@ -2083,7 +2083,7 @@ sub gravatar_url {
        my $email = lc shift;
        my $size = shift;
        $avatar_cache{$email} ||=
-               "http://www.gravatar.com/avatar/" .
+               "//www.gravatar.com/avatar/" .
                        Digest::MD5::md5_hex($email) . "?s=";
        return $avatar_cache{$email} . $size;
 }