Minor, switch to https links where possible

This commit is contained in:
Ebrahim Byagowi 2020-02-19 16:32:44 +03:30
parent bbcbcafc25
commit 8c652f72fc
6 changed files with 10 additions and 10 deletions

View File

@ -56,7 +56,7 @@ def expect (condition, message=None):
raise AssertionError raise AssertionError
raise AssertionError (message) raise AssertionError (message)
# from http://www-01.sil.org/iso639-3/iso-639-3.tab # from https://www-01.sil.org/iso639-3/iso-639-3.tab
ISO_639_3_TO_1 = { ISO_639_3_TO_1 = {
'aar': 'aa', 'aar': 'aa',
'abk': 'ab', 'abk': 'ab',

View File

@ -40,7 +40,7 @@ namespace CFF {
/* /*
* CFF -- Compact Font Format (CFF) * CFF -- Compact Font Format (CFF)
* http://www.adobe.com/content/dam/acom/en/devnet/font/pdfs/5176.CFF.pdf * https://www.adobe.com/content/dam/acom/en/devnet/font/pdfs/5176.CFF.pdf
*/ */
#define HB_OT_TAG_cff1 HB_TAG('C','F','F',' ') #define HB_OT_TAG_cff1 HB_TAG('C','F','F',' ')

View File

@ -604,7 +604,7 @@ postprocess_glyphs_arabic (const hb_ot_shape_plan_t *plan,
HB_BUFFER_DEALLOCATE_VAR (buffer, arabic_shaping_action); HB_BUFFER_DEALLOCATE_VAR (buffer, arabic_shaping_action);
} }
/* http://www.unicode.org/reports/tr53/ */ /* https://www.unicode.org/reports/tr53/ */
static hb_codepoint_t static hb_codepoint_t
modifier_combining_marks[] = modifier_combining_marks[] =

View File

@ -10,12 +10,12 @@
* # Date: 2019-01-15, 12:10:05 GMT * # Date: 2019-01-15, 12:10:05 GMT
* # © 2019 Unicode®, Inc. * # © 2019 Unicode®, Inc.
* # Unicode and the Unicode Logo are registered trademarks of Unicode, Inc. in the U.S. and other countries. * # Unicode and the Unicode Logo are registered trademarks of Unicode, Inc. in the U.S. and other countries.
* # For terms of use, see http://www.unicode.org/terms_of_use.html * # For terms of use, see https://www.unicode.org/terms_of_use.html
* # * #
* # Emoji Data for UTS #51 * # Emoji Data for UTS #51
* # Version: 12.0 * # Version: 12.0
* # * #
* # For documentation and usage, see http://www.unicode.org/reports/tr51 * # For documentation and usage, see https://www.unicode.org/reports/tr51
*/ */
#ifndef HB_UNICODE_EMOJI_TABLE_HH #ifndef HB_UNICODE_EMOJI_TABLE_HH

View File

@ -104,25 +104,25 @@ hb_test_bug (const char *uri_base, unsigned int number)
static inline void static inline void
hb_test_bug_freedesktop (unsigned int number) hb_test_bug_freedesktop (unsigned int number)
{ {
hb_test_bug ("http://bugs.freedesktop.org/", number); hb_test_bug ("https://bugs.freedesktop.org/", number);
} }
static inline void static inline void
hb_test_bug_gnome (unsigned int number) hb_test_bug_gnome (unsigned int number)
{ {
hb_test_bug ("http://bugzilla.gnome.org/", number); hb_test_bug ("https://bugzilla.gnome.org/", number);
} }
static inline void static inline void
hb_test_bug_mozilla (unsigned int number) hb_test_bug_mozilla (unsigned int number)
{ {
hb_test_bug ("http://bugzilla.mozilla.org/", number); hb_test_bug ("https://bugzilla.mozilla.org/", number);
} }
static inline void static inline void
hb_test_bug_redhat (unsigned int number) hb_test_bug_redhat (unsigned int number)
{ {
hb_test_bug ("http://bugzilla.redhat.com/", number); hb_test_bug ("https://bugzilla.redhat.com/", number);
} }

View File

@ -202,7 +202,7 @@ class Stats:
Self is Stats for sample. Self is Stats for sample.
Returns larger absolute value if sample is highly unlikely to be random. Returns larger absolute value if sample is highly unlikely to be random.
Anything outside of -3..+3 is very unlikely to be random. Anything outside of -3..+3 is very unlikely to be random.
See: http://en.wikipedia.org/wiki/Standard_score""" See: https://en.wikipedia.org/wiki/Standard_score"""
return (self.mean () - population.mean ()) / population.stddev () return (self.mean () - population.mean ()) / population.stddev ()