Migrate various docs links to https (#2180)

Also fixed a few outdated links
This commit is contained in:
Jeff Widman 2017-02-11 01:43:11 -08:00 committed by Markus Unterwaditzer
parent 5efb163237
commit bb0e755c80
22 changed files with 43 additions and 43 deletions

View file

@ -85,7 +85,7 @@ def format_datetime(timestamp):
def gravatar_url(email, size=80):
"""Return the gravatar image for the given email address."""
return 'http://www.gravatar.com/avatar/%s?d=identicon&s=%d' % \
return 'https://www.gravatar.com/avatar/%s?d=identicon&s=%d' % \
(md5(email.strip().lower().encode('utf-8')).hexdigest(), size)