Skip to content

Commit 2714c39

Browse files
jhlegarretadzenanz
authored andcommitted
ENH: Use https instead of http when https works
https is more tamper-resistant and more private so we use it instead of http when it is available. Following InsightSoftwareConsortium/ITK@9cd0f20 Bump the ITK commit hash so that the above changes are accepted by the ITK style checker.
1 parent c4e5747 commit 2714c39

11 files changed

+14
-14
lines changed

.github/workflows/build-test-package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Build, test, package
33
on: [push,pull_request]
44

55
env:
6-
itk-git-tag: "801370c025c7d296783481779a41c6d559c992c5"
6+
itk-git-tag: "d6acfd26bfcdec606d605beb1301bddfb17c05a6"
77
itk-wheel-tag: "v5.3rc04"
88

99
jobs:

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ ITKModuleTemplate
1010
Overview
1111
--------
1212

13-
This is a module for the [Insight Toolkit (ITK)](http://itk.org) for
13+
This is a module for the [Insight Toolkit (ITK)](https://itk.org) for
1414
segmentation and registration. It is designed to work with the ITK
1515
modular system.
1616

@@ -88,7 +88,7 @@ associated repository, then add
8888
Remote Module
8989
-------------
9090

91-
After an [Insight Journal](http://www.insight-journal.org/) article has
91+
After an [Insight Journal](https://www.insight-journal.org/) article has
9292
been submitted, the module can be included in ITK as a [remote
9393
module](https://itk.org/ITKSoftwareGuide/html/Book1/ITKSoftwareGuide-Book1ch9.html#x55-1640009.7).
9494
Add a file in "ITK/Modules/Remote" called "YourModule.remote.cmake", for
@@ -97,7 +97,7 @@ followlowing contents:
9797

9898
itk_fetch_module(MyModule
9999
"A description of the a module."
100-
GIT_REPOSITORY http://github.com/myuser/ITKMyModule.git
100+
GIT_REPOSITORY https://github.com/myuser/ITKMyModule.git
101101
GIT_TAG abcdef012345
102102
)
103103

{{cookiecutter.project_name}}/.clang-format

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
## See: https://clang.llvm.org/docs/ClangFormatStyleOptions.html for details of each option
55
##
66
## The clang-format binaries can be downloaded as part of the clang binary distributions
7-
## from http://releases.llvm.org/download.html
7+
## from https://releases.llvm.org/download.html
88
##
99
## Use the script Utilities/Maintenance/clang-format.bash to faciliate
1010
## maintaining a consistent code style.

{{cookiecutter.project_name}}/.editorconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# http://EditorConfig.org
1+
# https://EditorConfig.org
22

33
# top-most EditorConfig file
44
root = true

{{cookiecutter.project_name}}/.github/workflows/build-test-package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Build, test, package
33
on: [push,pull_request]
44

55
env:
6-
itk-git-tag: "801370c025c7d296783481779a41c6d559c992c5"
6+
itk-git-tag: "d6acfd26bfcdec606d605beb1301bddfb17c05a6"
77
itk-wheel-tag: "v5.3rc04"
88

99
jobs:

{{cookiecutter.project_name}}/include/itkMinimalStandardRandomVariateGenerator.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* you may not use this file except in compliance with the License.
77
* You may obtain a copy of the License at
88
*
9-
* http://www.apache.org/licenses/LICENSE-2.0.txt
9+
* https://www.apache.org/licenses/LICENSE-2.0.txt
1010
*
1111
* Unless required by applicable law or agreed to in writing, software
1212
* distributed under the License is distributed on an "AS IS" BASIS,
@@ -40,7 +40,7 @@ namespace Statistics
4040
* where \f$a\f$ is the Multiplier \f$c\f$ is the Increment and \f$m\f$ is
4141
* the Modulus.
4242
*
43-
* http://en.wikipedia.com/wiki/Linear_congruential_generator
43+
* https://en.wikipedia.com/wiki/Linear_congruential_generator
4444
*
4545
* The random numbers generated have a period \f$m\f$.
4646
*

{{cookiecutter.project_name}}/include/itk{{cookiecutter.filter_name}}.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* you may not use this file except in compliance with the License.
77
* You may obtain a copy of the License at
88
*
9-
* http://www.apache.org/licenses/LICENSE-2.0.txt
9+
* https://www.apache.org/licenses/LICENSE-2.0.txt
1010
*
1111
* Unless required by applicable law or agreed to in writing, software
1212
* distributed under the License is distributed on an "AS IS" BASIS,

{{cookiecutter.project_name}}/include/itk{{cookiecutter.filter_name}}.hxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* you may not use this file except in compliance with the License.
77
* You may obtain a copy of the License at
88
*
9-
* http://www.apache.org/licenses/LICENSE-2.0.txt
9+
* https://www.apache.org/licenses/LICENSE-2.0.txt
1010
*
1111
* Unless required by applicable law or agreed to in writing, software
1212
* distributed under the License is distributed on an "AS IS" BASIS,

{{cookiecutter.project_name}}/src/itkMinimalStandardRandomVariateGenerator.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* you may not use this file except in compliance with the License.
77
* You may obtain a copy of the License at
88
*
9-
* http://www.apache.org/licenses/LICENSE-2.0.txt
9+
* https://www.apache.org/licenses/LICENSE-2.0.txt
1010
*
1111
* Unless required by applicable law or agreed to in writing, software
1212
* distributed under the License is distributed on an "AS IS" BASIS,

{{cookiecutter.project_name}}/test/itkMinimalStandardRandomVariateGeneratorTest.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* you may not use this file except in compliance with the License.
77
* You may obtain a copy of the License at
88
*
9-
* http://www.apache.org/licenses/LICENSE-2.0.txt
9+
* https://www.apache.org/licenses/LICENSE-2.0.txt
1010
*
1111
* Unless required by applicable law or agreed to in writing, software
1212
* distributed under the License is distributed on an "AS IS" BASIS,

0 commit comments

Comments
 (0)