From bc1176ff30f8321ba09cd22e6c8165e5f721cfbc Mon Sep 17 00:00:00 2001 From: Arhell Date: Fri, 25 Feb 2022 00:27:07 +0200 Subject: [PATCH] update links --- .editorconfig | 2 +- CHANGELOG.md | 4 ++-- CONTRIBUTING.md | 2 +- Library/Documentation/Theme.php | 2 +- Library/Expression/Constants.php | 4 ++-- .../Arithmetical/ArithmeticalBaseOperator.php | 2 +- Library/Operators/Bitwise/BitwiseBaseOperator.php | 2 +- Library/Optimizers/FunctionCall/IsScalarOptimizer.php | 2 +- Library/Optimizers/FunctionCall/JoinOptimizer.php | 2 +- Library/Passes/LocalContextPass.php | 2 +- WINDOWS.md | 8 ++++---- ext/stub/emptytest.zep.c | 2 +- ext/stub/fannkuch.zep.c | 2 +- ext/stub/regexdna.zep.c | 2 +- ext/stub/spectralnorm.zep.c | 2 +- prototypes/gd.php | 10 +++++----- prototypes/memcache.php | 2 +- stub/emptytest.zep | 2 +- stub/regexdna.zep | 2 +- stub/spectralnorm.zep | 2 +- templates/Api/themes/zephir/static/zephir-theme.css | 2 +- tests/fixtures/lifecycle/.editorconfig | 2 +- tests/fixtures/typehints/.editorconfig | 2 +- tests/sharness/README.md | 8 ++++---- 24 files changed, 36 insertions(+), 36 deletions(-) diff --git a/.editorconfig b/.editorconfig index 3f7a94244a..197c662f97 100644 --- a/.editorconfig +++ b/.editorconfig @@ -1,4 +1,4 @@ -# EditorConfig is awesome: http://EditorConfig.org +# EditorConfig is awesome: https://EditorConfig.org # top-most EditorConfig file root = true diff --git a/CHANGELOG.md b/CHANGELOG.md index bfedb946bb..3960cc4c5e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,8 @@ # Change Log All notable changes to this project will be documented in this file. -The format based on [Keep a Changelog](http://keepachangelog.com) -and this project adheres to [Semantic Versioning](http://semver.org). +The format based on [Keep a Changelog](https://keepachangelog.com) +and this project adheres to [Semantic Versioning](https://semver.org). ## [Unreleased] ### Added diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 4360a464bb..11d5411f2c 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -82,5 +82,5 @@ Phalcon Team [team]: https://phalcon.io/en-us/team [issues]: https://github.com/zephir-lang/zephir/issues [docs]: https://docs.zephir-lang.com -[git rebase]: http://git-scm.com/book/en/Git-Branching-Rebasing +[git rebase]: https://git-scm.com/book/en/Git-Branching-Rebasing [psr-2]: https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-2-coding-style-guide.md diff --git a/Library/Documentation/Theme.php b/Library/Documentation/Theme.php index 797ecc1b21..4e6ee9c633 100644 --- a/Library/Documentation/Theme.php +++ b/Library/Documentation/Theme.php @@ -83,7 +83,7 @@ private function __namespaceTreeHelper(NamespaceHelper $ns) } /** - * from : http://stackoverflow.com/questions/2050859/copy-entire-contents-of-a-directory-to-another-using-php. + * from : https://stackoverflow.com/questions/2050859/copy-entire-contents-of-a-directory-to-another-using-php. * * @param $src * @param $dst diff --git a/Library/Expression/Constants.php b/Library/Expression/Constants.php index 1bed77c32d..3ce948fddc 100644 --- a/Library/Expression/Constants.php +++ b/Library/Expression/Constants.php @@ -38,7 +38,7 @@ class Constants /** * Reserved ENV Constants. * - * @see http://www.php.net/manual/ru/reserved.constants.php + * @see https://www.php.net/manual/ru/reserved.constants.php * * @var array */ @@ -66,7 +66,7 @@ class Constants /** * Magic constants. * - * @see http://php.net/manual/en/language.constants.predefined.php + * @see https://php.net/manual/en/language.constants.predefined.php * * @var array */ diff --git a/Library/Operators/Arithmetical/ArithmeticalBaseOperator.php b/Library/Operators/Arithmetical/ArithmeticalBaseOperator.php index f19b2b9ac9..c490503d83 100644 --- a/Library/Operators/Arithmetical/ArithmeticalBaseOperator.php +++ b/Library/Operators/Arithmetical/ArithmeticalBaseOperator.php @@ -32,7 +32,7 @@ class ArithmeticalBaseOperator extends AbstractOperator * * Probably gcc/clang will optimize them without this optimization * - * @see http://en.wikipedia.org/wiki/Constant_folding + * @see https://en.wikipedia.org/wiki/Constant_folding * * @param array $expression * @param CompilationContext $compilationContext diff --git a/Library/Operators/Bitwise/BitwiseBaseOperator.php b/Library/Operators/Bitwise/BitwiseBaseOperator.php index 957c3cf3d0..3d27040aee 100644 --- a/Library/Operators/Bitwise/BitwiseBaseOperator.php +++ b/Library/Operators/Bitwise/BitwiseBaseOperator.php @@ -29,7 +29,7 @@ class BitwiseBaseOperator extends AbstractOperator * This tries to perform arithmetical operations * Probably gcc/clang will optimize them without this optimization. * - * @see http://en.wikipedia.org/wiki/Constant_folding + * @see https://en.wikipedia.org/wiki/Constant_folding * * @param array $expression * @param CompilationContext $compilationContext diff --git a/Library/Optimizers/FunctionCall/IsScalarOptimizer.php b/Library/Optimizers/FunctionCall/IsScalarOptimizer.php index 17f570a77d..3795da2ff9 100644 --- a/Library/Optimizers/FunctionCall/IsScalarOptimizer.php +++ b/Library/Optimizers/FunctionCall/IsScalarOptimizer.php @@ -21,7 +21,7 @@ * * Optimizes calls to 'is_scalar' using internal function * - * @see http://php.net/manual/en/function.is-scalar.php + * @see https://php.net/manual/en/function.is-scalar.php */ class IsScalarOptimizer extends OptimizerAbstract { diff --git a/Library/Optimizers/FunctionCall/JoinOptimizer.php b/Library/Optimizers/FunctionCall/JoinOptimizer.php index 61c754a377..1d6354b0bd 100644 --- a/Library/Optimizers/FunctionCall/JoinOptimizer.php +++ b/Library/Optimizers/FunctionCall/JoinOptimizer.php @@ -12,7 +12,7 @@ namespace Zephir\Optimizers\FunctionCall; /** - * @see http://php.net/manual/en/function.join.php + * @see https://php.net/manual/en/function.join.php * * Optimizes calls to 'join' using ImplodeOptimizer via it is an alias */ diff --git a/Library/Passes/LocalContextPass.php b/Library/Passes/LocalContextPass.php index 46fde8523c..206c4e3d18 100644 --- a/Library/Passes/LocalContextPass.php +++ b/Library/Passes/LocalContextPass.php @@ -24,7 +24,7 @@ * mutations is relative, since assignments inside cycles/loops may perform a n-number of * mutations * - * @see http://en.wikipedia.org/wiki/Escape_analysis + * @see https://en.wikipedia.org/wiki/Escape_analysis */ class LocalContextPass { diff --git a/WINDOWS.md b/WINDOWS.md index 885b964680..1f83831283 100644 --- a/WINDOWS.md +++ b/WINDOWS.md @@ -7,24 +7,24 @@ PHP-Version requirements are marked using `[ ]` ## Software Requirements [PHP 5.5 or later] -- [Install Visual Studio 2012 Express](http://www.microsoft.com/en-US/download/details.aspx?id=34673) +- [Install Visual Studio 2012 Express](https://www.microsoft.com/en-US/download/details.aspx?id=34673) (You should start it and activate it) ## Software Requirements General -- [Install PHP (NTS)](http://windows.php.net/download/) +- [Install PHP (NTS)](https://windows.php.net/download/) - Download and extract it - Make sure it is in the PATH, as for example below: ```cmd setx path "%path%;c:\path-to-php\" ``` -- [Install PHP SDK for PHP 5.6](http://windows.php.net/downloads/php-sdk/)(Currently `php-sdk-binary-tools-20110915.zip` is the newest) +- [Install PHP SDK for PHP 5.6](https://windows.php.net/downloads/php-sdk/)(Currently `php-sdk-binary-tools-20110915.zip` is the newest) - [Install PHP SDK for PHP 7.0+](https://github.com/Microsoft/php-sdk-binary-tools/releases) ```cmd setx php_sdk "c:\path-to-php-sdk" ``` -- [Download PHP Developer Pack(NTS!):***php-devel-pack-?.?.?-Win??-VC??-x??.zip***](http://windows.php.net/downloads/releases/) +- [Download PHP Developer Pack(NTS!):***php-devel-pack-?.?.?-Win??-VC??-x??.zip***](https://windows.php.net/downloads/releases/) (or build it yourself with `--enable-debug --disable-zts` and `nmake build-devel` or just `nmake snap` by using the PHP-SDK) ```cmd setx php_devpack "c:\path-to-extracted-devpack" diff --git a/ext/stub/emptytest.zep.c b/ext/stub/emptytest.zep.c index aa846e4d90..86489b35f7 100644 --- a/ext/stub/emptytest.zep.c +++ b/ext/stub/emptytest.zep.c @@ -22,7 +22,7 @@ * Control Flow */ /** - * @link http://ru2.php.net/empty + * @link https://ru2.php.net/empty */ ZEPHIR_INIT_CLASS(Stub_EmptyTest) { diff --git a/ext/stub/fannkuch.zep.c b/ext/stub/fannkuch.zep.c index 91d53018bf..cff9afa057 100644 --- a/ext/stub/fannkuch.zep.c +++ b/ext/stub/fannkuch.zep.c @@ -23,7 +23,7 @@ * * Fannkuch Redux in Zephir * - * @see http://disciple-devel.blogspot.mx/2010/11/shootout-fannkuch-redux.html + * @see https://disciple-devel.blogspot.mx/2010/11/shootout-fannkuch-redux.html */ ZEPHIR_INIT_CLASS(Stub_Fannkuch) { diff --git a/ext/stub/regexdna.zep.c b/ext/stub/regexdna.zep.c index 8c4dba80ac..050f60ff0b 100644 --- a/ext/stub/regexdna.zep.c +++ b/ext/stub/regexdna.zep.c @@ -24,7 +24,7 @@ /** * RegexDNA * - * @see http://www.haskell.org/haskellwiki/Shootout/Regex_DNA + * @see https://www.haskell.org/haskellwiki/Shootout/Regex_DNA */ ZEPHIR_INIT_CLASS(Stub_RegexDNA) { diff --git a/ext/stub/spectralnorm.zep.c b/ext/stub/spectralnorm.zep.c index 7f7de5c42c..69fde255be 100644 --- a/ext/stub/spectralnorm.zep.c +++ b/ext/stub/spectralnorm.zep.c @@ -23,7 +23,7 @@ /** * SpectralNorm * - * @see http://mathworld.wolfram.com/SpectralNorm.html + * @see https://mathworld.wolfram.com/SpectralNorm.html */ ZEPHIR_INIT_CLASS(Stub_SpectralNorm) { diff --git a/prototypes/gd.php b/prototypes/gd.php index ec7bc0236b..058bfbdf39 100644 --- a/prototypes/gd.php +++ b/prototypes/gd.php @@ -13,7 +13,7 @@ /** * Retrieve information about the currently installed GD library. * - * @see http://www.php.net/manual/en/function.gd-info.php + * @see https://www.php.net/manual/en/function.gd-info.php * * @return array */ @@ -170,7 +170,7 @@ function imageantialias($image, $enabled) /** * Draws an arc. * - * @see http://www.php.net/manual/ru/function.imagearc.php + * @see https://www.php.net/manual/ru/function.imagearc.php * * @param resource $image * @param int $cx @@ -357,7 +357,7 @@ function imagecolordeallocate($image, $color) /** * Get the index of the specified color. * - * @see http://www.php.net/manual/ru/function.imagecolorexact.php + * @see https://www.php.net/manual/ru/function.imagecolorexact.php * * @param resource $image * @param int $red @@ -394,7 +394,7 @@ function imagecolorexactalpha($image, $red, $green, $blue, $alpha) /** * Makes the colors of the palette version of an image more closely match the true color version. * - * @see http://www.php.net/manual/ru/function.imagecolormatch.php + * @see https://www.php.net/manual/ru/function.imagecolormatch.php * * @param resource $image1 * @param resource $image2 @@ -410,7 +410,7 @@ function imagecolormatch($image1, $image2) /** * Get the index of the specified color or its closest possible alternative. * - * @see http://www.php.net/manual/ru/function.imagecolorresolve.php + * @see https://www.php.net/manual/ru/function.imagecolorresolve.php * * @param resource $image * @param int $red diff --git a/prototypes/memcache.php b/prototypes/memcache.php index 62c5c0793e..ad0dae9ea9 100644 --- a/prototypes/memcache.php +++ b/prototypes/memcache.php @@ -15,7 +15,7 @@ /** * Class Memcache. * - * @see http://se2.php.net/manual/en/class.memcache.php + * @see https://se2.php.net/manual/en/class.memcache.php */ class memcache { diff --git a/stub/emptytest.zep b/stub/emptytest.zep index 66e3daeeff..d9f7fc72a3 100644 --- a/stub/emptytest.zep +++ b/stub/emptytest.zep @@ -6,7 +6,7 @@ namespace Stub; /** - * @link http://ru2.php.net/empty + * @link https://ru2.php.net/empty */ class EmptyTest { diff --git a/stub/regexdna.zep b/stub/regexdna.zep index 342af0e1e3..893355a3a8 100644 --- a/stub/regexdna.zep +++ b/stub/regexdna.zep @@ -4,7 +4,7 @@ namespace Stub; /** * RegexDNA * - * @see http://www.haskell.org/haskellwiki/Shootout/Regex_DNA + * @see https://www.haskell.org/haskellwiki/Shootout/Regex_DNA */ class RegexDNA { diff --git a/stub/spectralnorm.zep b/stub/spectralnorm.zep index 90b482df6f..fdbc332742 100644 --- a/stub/spectralnorm.zep +++ b/stub/spectralnorm.zep @@ -4,7 +4,7 @@ namespace Stub; /** * SpectralNorm * - * @see http://mathworld.wolfram.com/SpectralNorm.html + * @see https://mathworld.wolfram.com/SpectralNorm.html */ class SpectralNorm { diff --git a/templates/Api/themes/zephir/static/zephir-theme.css b/templates/Api/themes/zephir/static/zephir-theme.css index b0dd04af66..e40281edc0 100644 --- a/templates/Api/themes/zephir/static/zephir-theme.css +++ b/templates/Api/themes/zephir/static/zephir-theme.css @@ -1,4 +1,4 @@ -/* http://meyerweb.com/eric/tools/css/reset/ +/* https://meyerweb.com/eric/tools/css/reset/ v2.0 | 20110126 License: none (public domain) */ diff --git a/tests/fixtures/lifecycle/.editorconfig b/tests/fixtures/lifecycle/.editorconfig index 059d88d4f2..5e311e5ede 100644 --- a/tests/fixtures/lifecycle/.editorconfig +++ b/tests/fixtures/lifecycle/.editorconfig @@ -1,4 +1,4 @@ -# EditorConfig is awesome: http://EditorConfig.org +# EditorConfig is awesome: https://EditorConfig.org [*.{c,h}] trim_trailing_whitespace = false diff --git a/tests/fixtures/typehints/.editorconfig b/tests/fixtures/typehints/.editorconfig index 059d88d4f2..5e311e5ede 100644 --- a/tests/fixtures/typehints/.editorconfig +++ b/tests/fixtures/typehints/.editorconfig @@ -1,4 +1,4 @@ -# EditorConfig is awesome: http://EditorConfig.org +# EditorConfig is awesome: https://EditorConfig.org [*.{c,h}] trim_trailing_whitespace = false diff --git a/tests/sharness/README.md b/tests/sharness/README.md index 13a7d7a356..0c9b7ad9fb 100644 --- a/tests/sharness/README.md +++ b/tests/sharness/README.md @@ -21,9 +21,9 @@ Here's an example of parallel testing powered by a recent version of [prove][:3: ```shell $ prove --jobs 15 ./t[0-9]*.sh -./t0003-init-errors.sh .. ok -./t0002-generate.sh ..... ok -./t0001-compile.sh ...... ok +./t0003-init-errors.sh .. ok +./t0002-generate.sh ..... ok +./t0001-compile.sh ...... ok All tests successful. Files=3, Tests=6, 30 wallclock secs ( 0.04 usr 0.01 sys + 33.47 cusr 9.56 csys = 43.08 CPU) Result: PASS @@ -55,5 +55,5 @@ $ ./t0001-compile.sh -v -i ``` [:1:]: https://github.com/mlafeldt/sharness/ -[:2:]: http://testanything.org +[:2:]: https://testanything.org [:3:]: https://linux.die.net/man/1/prove