From 8c652f72fc1323b811b5cde53604f0a71334efa2 Mon Sep 17 00:00:00 2001 From: Ebrahim Byagowi Date: Wed, 19 Feb 2020 16:32:44 +0330 Subject: [PATCH] Minor, switch to https links where possible --- src/gen-tag-table.py | 2 +- src/hb-ot-cff1-table.hh | 2 +- src/hb-ot-shape-complex-arabic.cc | 2 +- src/hb-unicode-emoji-table.hh | 4 ++-- test/api/hb-test.h | 8 ++++---- test/shaping/hb_test_tools.py | 2 +- 6 files changed, 10 insertions(+), 10 deletions(-) diff --git a/src/gen-tag-table.py b/src/gen-tag-table.py index c1267c6b0..f2ede064a 100755 --- a/src/gen-tag-table.py +++ b/src/gen-tag-table.py @@ -56,7 +56,7 @@ def expect (condition, message=None): raise AssertionError 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 = { 'aar': 'aa', 'abk': 'ab', diff --git a/src/hb-ot-cff1-table.hh b/src/hb-ot-cff1-table.hh index 55f3f798c..e35b44f2f 100644 --- a/src/hb-ot-cff1-table.hh +++ b/src/hb-ot-cff1-table.hh @@ -40,7 +40,7 @@ namespace 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',' ') diff --git a/src/hb-ot-shape-complex-arabic.cc b/src/hb-ot-shape-complex-arabic.cc index 231c31125..481b06204 100644 --- a/src/hb-ot-shape-complex-arabic.cc +++ b/src/hb-ot-shape-complex-arabic.cc @@ -604,7 +604,7 @@ postprocess_glyphs_arabic (const hb_ot_shape_plan_t *plan, HB_BUFFER_DEALLOCATE_VAR (buffer, arabic_shaping_action); } -/* http://www.unicode.org/reports/tr53/ */ +/* https://www.unicode.org/reports/tr53/ */ static hb_codepoint_t modifier_combining_marks[] = diff --git a/src/hb-unicode-emoji-table.hh b/src/hb-unicode-emoji-table.hh index 1ff79c977..c56a4f333 100644 --- a/src/hb-unicode-emoji-table.hh +++ b/src/hb-unicode-emoji-table.hh @@ -10,12 +10,12 @@ * # Date: 2019-01-15, 12:10:05 GMT * # © 2019 Unicode®, Inc. * # 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 * # 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 diff --git a/test/api/hb-test.h b/test/api/hb-test.h index b866e442a..c5eb87086 100644 --- a/test/api/hb-test.h +++ b/test/api/hb-test.h @@ -104,25 +104,25 @@ hb_test_bug (const char *uri_base, unsigned int number) static inline void 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 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 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 hb_test_bug_redhat (unsigned int number) { - hb_test_bug ("http://bugzilla.redhat.com/", number); + hb_test_bug ("https://bugzilla.redhat.com/", number); } diff --git a/test/shaping/hb_test_tools.py b/test/shaping/hb_test_tools.py index 2a3cc9120..b9c153c05 100644 --- a/test/shaping/hb_test_tools.py +++ b/test/shaping/hb_test_tools.py @@ -202,7 +202,7 @@ class Stats: Self is Stats for sample. Returns larger absolute value if sample is highly 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 ()