From 7de07e8991ca4d0c0388d14d12d3ec0e36546250 Mon Sep 17 00:00:00 2001 From: Fomafix Date: Sun, 9 Oct 2016 19:48:14 +0200 Subject: [PATCH] Update weblinks in comments from HTTP to HTTPS Use HTTPS instead of HTTP where the HTTP link is a redirect to the HTTPS link. Change-Id: I06d9e043730accc4ae71b927e0f8229f0fc3b340 --- includes/content/WikiTextStructure.php | 2 +- languages/Language.php | 12 ++++++------ languages/classes/LanguageIu.php | 2 +- languages/classes/LanguageRu.php | 2 +- languages/classes/LanguageShi.php | 2 +- languages/classes/LanguageTr.php | 2 +- languages/messages/MessagesKn.php | 4 ++-- languages/messages/MessagesNn.php | 4 ++-- resources/src/mediawiki/mediawiki.experiments.js | 4 ++-- tests/phpunit/includes/XmlSelectTest.php | 2 +- tests/phpunit/includes/parser/PreprocessorTest.php | 8 ++++---- tests/phpunit/languages/classes/LanguageTrTest.php | 4 ++-- 12 files changed, 24 insertions(+), 24 deletions(-) diff --git a/includes/content/WikiTextStructure.php b/includes/content/WikiTextStructure.php index fe12ff735e..f4a6dc6a94 100644 --- a/includes/content/WikiTextStructure.php +++ b/includes/content/WikiTextStructure.php @@ -77,7 +77,7 @@ class WikiTextStructure { $heading = $heading[ 'line' ]; // Some wikis wrap the brackets in a span: - // http://en.wikipedia.org/wiki/MediaWiki:Cite_reference_link + // https://en.wikipedia.org/wiki/MediaWiki:Cite_reference_link $heading = preg_replace( '/<\/?span>/', '', $heading ); // Normalize [] so the following regexp would work. $heading = preg_replace( [ '/[/', '/]/' ], [ '[', ']' ], $heading ); diff --git a/languages/Language.php b/languages/Language.php index 3e28759234..7354155e51 100644 --- a/languages/Language.php +++ b/languages/Language.php @@ -291,7 +291,7 @@ class Language { # Since these are limited, this is safe even later changes to the registry -- # the only oddity is that it might change the type of the tag, and thus # the results from the capturing groups. - # http://www.iana.org/assignments/language-subtag-registry + # https://www.iana.org/assignments/language-subtag-registry $grandfathered = "en{$s}GB{$s}oed" . "|i{$s}(?:ami|bnn|default|enochian|hak|klingon|lux|mingo|navajo|pwn|tao|tay|tsu)" @@ -1623,7 +1623,7 @@ class Language { * * Based on a PHP-Nuke block by Sharjeel which is released under GNU/GPL license * - * @see http://phpnuke.org/modules.php?name=News&file=article&sid=8234&mode=thread&order=0&thold=0 + * @see https://phpnuke.org/modules.php?name=News&file=article&sid=8234&mode=thread&order=0&thold=0 * * @param string $ts * @@ -1852,9 +1852,9 @@ class Language { * Algorithm to convert Gregorian dates to Thai solar dates, * Minguo dates or Minguo dates. * - * Link: http://en.wikipedia.org/wiki/Thai_solar_calendar - * http://en.wikipedia.org/wiki/Minguo_calendar - * http://en.wikipedia.org/wiki/Japanese_era_name + * Link: https://en.wikipedia.org/wiki/Thai_solar_calendar + * https://en.wikipedia.org/wiki/Minguo_calendar + * https://en.wikipedia.org/wiki/Japanese_era_name * * @param string $ts 14-character timestamp * @param string $cName Calender name @@ -2593,7 +2593,7 @@ class Language { public function iconv( $in, $out, $string ) { # Even with //IGNORE iconv can whine about illegal characters in # *input* string. We just ignore those too. - # REF: http://bugs.php.net/bug.php?id=37166 + # REF: https://bugs.php.net/bug.php?id=37166 # REF: https://phabricator.wikimedia.org/T18885 MediaWiki\suppressWarnings(); $text = iconv( $in, $out . '//IGNORE', $string ); diff --git a/languages/classes/LanguageIu.php b/languages/classes/LanguageIu.php index 4003bdd5a2..a2288d09f4 100644 --- a/languages/classes/LanguageIu.php +++ b/languages/classes/LanguageIu.php @@ -28,7 +28,7 @@ * * * Based on: - * - http://commons.wikimedia.org/wiki/Image:Inuktitut.png + * - https://commons.wikimedia.org/wiki/Image:Inuktitut.png * - LanguageSr.php * * @ingroup Language diff --git a/languages/classes/LanguageRu.php b/languages/classes/LanguageRu.php index 60384a85e3..c2560a468b 100644 --- a/languages/classes/LanguageRu.php +++ b/languages/classes/LanguageRu.php @@ -70,7 +70,7 @@ class LanguageRu extends Language { /** * Four-digit number should be without group commas (spaces) - * See manual of style at http://ru.wikipedia.org/wiki/Википедия:Оформление_статей + * See manual of style at https://ru.wikipedia.org/wiki/Википедия:Оформление_статей * So "1 234 567", "12 345" but "1234" * * @param string $_ diff --git a/languages/classes/LanguageShi.php b/languages/classes/LanguageShi.php index 61aba70c55..0de396d390 100644 --- a/languages/classes/LanguageShi.php +++ b/languages/classes/LanguageShi.php @@ -28,7 +28,7 @@ * * * Based on: - * - http://en.wikipedia.org/wiki/Shilha_language + * - https://en.wikipedia.org/wiki/Shilha_language * - LanguageSr.php * * @ingroup Language diff --git a/languages/classes/LanguageTr.php b/languages/classes/LanguageTr.php index c94734149e..42ee44d8bc 100644 --- a/languages/classes/LanguageTr.php +++ b/languages/classes/LanguageTr.php @@ -27,7 +27,7 @@ * Turkish has two different i, one with a dot and another without a dot. They * are totally different letters in this language, so we have to override the * ucfirst and lcfirst methods. - * See http://en.wikipedia.org/wiki/Dotted_and_dotless_I + * See https://en.wikipedia.org/wiki/Dotted_and_dotless_I * and @bug 28040 * @ingroup Language */ diff --git a/languages/messages/MessagesKn.php b/languages/messages/MessagesKn.php index 108f777171..5d846ead40 100644 --- a/languages/messages/MessagesKn.php +++ b/languages/messages/MessagesKn.php @@ -7,11 +7,11 @@ * @file * * @author Akoppad - * @author Ashwath Mattur http://en.wikipedia.org/wiki/User:Ashwatham + * @author Ashwath Mattur https://en.wikipedia.org/wiki/User:Ashwatham * @author Dimension10 * @author Dipin * @author HPN - * @author Hari Prasad Nadig http://en.wikipedia.org/wiki/User:Hpnadig + * @author Hari Prasad Nadig https://en.wikipedia.org/wiki/User:Hpnadig * @author Kaganer * @author Ktkaushik * @author M G Harish diff --git a/languages/messages/MessagesNn.php b/languages/messages/MessagesNn.php index b8ae8d7d44..5ceafd19ab 100644 --- a/languages/messages/MessagesNn.php +++ b/languages/messages/MessagesNn.php @@ -38,8 +38,8 @@ * @license http://www.gnu.org/copyleft/fdl.html GNU Free Documentation License * @license http://www.gnu.org/copyleft/gpl.html GNU General Public License * - * @see http://meta.wikimedia.org/w/index.php?title=LanguageNn.php&action=history - * @see http://nn.wikipedia.org/w/index.php?title=Brukar:Dittaeva/LanguageNn.php&action=history + * @see https://meta.wikimedia.org/w/index.php?title=LanguageNn.php&action=history + * @see https://nn.wikipedia.org/w/index.php?title=Brukar:Dittaeva/LanguageNn.php&action=history */ $datePreferences = [ diff --git a/resources/src/mediawiki/mediawiki.experiments.js b/resources/src/mediawiki/mediawiki.experiments.js index ad1069feda..49ff4115b5 100644 --- a/resources/src/mediawiki/mediawiki.experiments.js +++ b/resources/src/mediawiki/mediawiki.experiments.js @@ -7,14 +7,14 @@ /** * An implementation of Jenkins' one-at-a-time hash. * - * @see http://en.wikipedia.org/wiki/Jenkins_hash_function + * @see https://en.wikipedia.org/wiki/Jenkins_hash_function * * @param {string} string String to hash * @return {number} The hash as a 32-bit unsigned integer * @ignore * * @author Ori Livneh - * @see http://jsbin.com/kejewi/4/watch?js,console + * @see https://jsbin.com/kejewi/4/watch?js,console */ function hashString( string ) { var hash = 0, diff --git a/tests/phpunit/includes/XmlSelectTest.php b/tests/phpunit/includes/XmlSelectTest.php index f80f5124a0..52e20bdb99 100644 --- a/tests/phpunit/includes/XmlSelectTest.php +++ b/tests/phpunit/includes/XmlSelectTest.php @@ -50,7 +50,7 @@ class XmlSelectTest extends MediaWikiTestCase { /** * Values are set following a 3-bit Gray code where two successive * values differ by only one value. - * See http://en.wikipedia.org/wiki/Gray_code + * See https://en.wikipedia.org/wiki/Gray_code */ # $name $id $default [ false, false, false, '' ], diff --git a/tests/phpunit/includes/parser/PreprocessorTest.php b/tests/phpunit/includes/parser/PreprocessorTest.php index 6710b1929b..c491e6b829 100644 --- a/tests/phpunit/includes/parser/PreprocessorTest.php +++ b/tests/phpunit/includes/parser/PreprocessorTest.php @@ -210,10 +210,10 @@ class PreprocessorTest extends MediaWikiTestCase { public static function provideFiles() { // @codingStandardsIgnoreStart Ignore Generic.Files.LineLength.TooLong return self::addClassArg( [ - [ "QuoteQuran" ], # http://en.wikipedia.org/w/index.php?title=Template:QuoteQuran/sandbox&oldid=237348988 GFDL + CC BY-SA by Striver - [ "Factorial" ], # http://en.wikipedia.org/w/index.php?title=Template:Factorial&oldid=98548758 GFDL + CC BY-SA by Polonium - [ "All_system_messages" ], # http://tl.wiktionary.org/w/index.php?title=Suleras:All_system_messages&oldid=2765 GPL text generated by MediaWiki - [ "Fundraising" ], # http://tl.wiktionary.org/w/index.php?title=MediaWiki:Sitenotice&oldid=5716 GFDL + CC BY-SA, copied there by Sky Harbor. + [ "QuoteQuran" ], # https://en.wikipedia.org/w/index.php?title=Template:QuoteQuran/sandbox&oldid=237348988 GFDL + CC BY-SA by Striver + [ "Factorial" ], # https://en.wikipedia.org/w/index.php?title=Template:Factorial&oldid=98548758 GFDL + CC BY-SA by Polonium + [ "All_system_messages" ], # https://tl.wiktionary.org/w/index.php?title=Suleras:All_system_messages&oldid=2765 GPL text generated by MediaWiki + [ "Fundraising" ], # https://tl.wiktionary.org/w/index.php?title=MediaWiki:Sitenotice&oldid=5716 GFDL + CC BY-SA, copied there by Sky Harbor. [ "NestedTemplates" ], # bug 27936 ] ); // @codingStandardsIgnoreEnd diff --git a/tests/phpunit/languages/classes/LanguageTrTest.php b/tests/phpunit/languages/classes/LanguageTrTest.php index 206e608047..9a1823b1cd 100644 --- a/tests/phpunit/languages/classes/LanguageTrTest.php +++ b/tests/phpunit/languages/classes/LanguageTrTest.php @@ -14,7 +14,7 @@ class LanguageTrTest extends LanguageClassesTestCase { * - berm * - []LuCkY[] * - Emperyan - * @see http://en.wikipedia.org/wiki/Dotted_and_dotless_I + * @see https://en.wikipedia.org/wiki/Dotted_and_dotless_I * @dataProvider provideDottedAndDotlessI * @covers Language::ucfirst * @covers Language::lcfirst @@ -49,7 +49,7 @@ class LanguageTrTest extends LanguageClassesTestCase { [ 'lcfirst', 'i', 'lower', 'i' ], # A real example taken from bug 28040 using - # http://tr.wikipedia.org/wiki/%C4%B0Phone + # https://tr.wikipedia.org/wiki/%C4%B0Phone [ 'lcfirst', 'iPhone', 'lower', 'iPhone' ], # next case is valid in Turkish but are different words if we -- 2.20.1