Skip to content

Commit d531c72

Browse files
authored
Merge pull request #54 from InsightSoftwareConsortium/bump_and_format
ENH: Bump ITK and change http to https
2 parents 3dfd577 + 64137c3 commit d531c72

12 files changed

+18
-18
lines changed

.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.

.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:

LICENSE

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
Apache License
33
Version 2.0, January 2004
4-
http://www.apache.org/licenses/
4+
https://www.apache.org/licenses/
55

66
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
77

@@ -193,7 +193,7 @@
193193
you may not use this file except in compliance with the License.
194194
You may obtain a copy of the License at
195195

196-
http://www.apache.org/licenses/LICENSE-2.0
196+
https://www.apache.org/licenses/LICENSE-2.0
197197

198198
Unless required by applicable law or agreed to in writing, software
199199
distributed under the License is distributed on an "AS IS" BASIS,

README.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,13 @@ This filter generates component images from an ``itk::Image`` of, for example,
2222
``itk::Vector``, ``itk::CovariantVector``, or
2323
``itk::SymmetricSecondRankTensor``.
2424

25-
For more information, see the `Insight Journal article <http://hdl.handle.net/10380/3230>`_::
25+
For more information, see the `Insight Journal article <https://hdl.handle.net/10380/3230>`_::
2626

2727
McCormick M.
2828
An ITK Class that Splits Multi-Component Images
2929
The Insight Journal. January-December. 2010.
30-
http://hdl.handle.net/10380/3230
31-
http://www.insight-journal.org/browse/publication/774
30+
https://hdl.handle.net/10380/3230
31+
https://www.insight-journal.org/browse/publication/774
3232

3333

3434
.. image:: https://raw.githubusercontent.com/InsightSoftwareConsortium/ITKSplitComponents/master/images/ITKSplitComponentsAnimation.gif

article/InsightArticle.cls

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,11 +76,11 @@
7676

7777
% Define command to make reference to on-line Doxygen documentation
7878
\newcommand{\doxygen}[1]{
79-
\href{http://www.itk.org/Doxygen/html/classitk_1_1#1.html}{\code{itk::#1}}}
79+
\href{https://www.itk.org/Doxygen/html/classitk_1_1#1.html}{\code{itk::#1}}}
8080

8181
% Define command to make reference to on-line Doxygen documentation
8282
\newcommand{\subdoxygen}[2]{
83-
\href{http://www.itk.org/Doxygen/html/classitk_1_1#1_1_1#2.html}{\code{itk::#1::#2}}}
83+
\href{https://www.itk.org/Doxygen/html/classitk_1_1#1_1_1#2.html}{\code{itk::#1::#2}}}
8484

8585
% Define command for the standard comment introducing classes with similar functionalities
8686
\newcommand{\relatedClasses}{

article/InsightJournal.sty

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1109,11 +1109,11 @@
11091109
% Commands for adding the link reference to the URL in the Insight Journal
11101110
%
11111111
\newcommand{\urlhandle}[1]{
1112-
\url{http://hdl.handle.net/10380/#1}}
1112+
\url{https://hdl.handle.net/10380/#1}}
11131113

11141114
\newcommand{\IJhandle}[1]{
1115-
Latest version available at the \href{http://www.insight-journal.org}{Insight Journal} [\urlhandle{#1}]\\
1116-
Distributed under \href{http://creativecommons.org/licenses/by/3.0/us/}{Creative Commons Attribution License}}
1115+
Latest version available at the \href{https://www.insight-journal.org}{Insight Journal} [\urlhandle{#1}]\\
1116+
Distributed under \href{https://creativecommons.org/licenses/by/3.0/us/}{Creative Commons Attribution License}}
11171117

11181118
\newcommand{\IJhandlefooter}[1]{
11191119
\fancyfoot[CO,CE]{

article/split_components.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
% of the standard documentation for Insight. It may be found online
55
% at:
66
%
7-
% http://www.itk.org/
7+
% https://www.itk.org/
88

99
\documentclass{InsightArticle}
1010

examples/ITKSplitComponents.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
"outputs": [],
2121
"source": [
2222
"# Download image\n",
23-
"urllib.request.urlretrieve(\"http://raw.githubusercontent.com/InsightSoftwareConsortium/ITK/master/Examples/Data/VisibleWomanHeadSlice.png\", \"VisibleWomanHeadSlice.png\")"
23+
"urllib.request.urlretrieve(\"https://raw.githubusercontent.com/InsightSoftwareConsortium/ITK/master/Examples/Data/VisibleWomanHeadSlice.png\", \"VisibleWomanHeadSlice.png\")"
2424
]
2525
},
2626
{

include/itkSplitComponentsImageFilter.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,

include/itkSplitComponentsImageFilter.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,

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
'images of vectors, tensors, etc.\n'
2727
'Please refer to:\n'
2828
'M. McCormick, "An ITK Class that Splits Multi-Component Images.", '
29-
'Insight Journal, July-December 2010, http://hdl.handle.net/10380/3230',
29+
'Insight Journal, July-December 2010, https://hdl.handle.net/10380/3230',
3030
classifiers=[
3131
"License :: OSI Approved :: Apache Software License",
3232
"Programming Language :: Python",

test/itkSplitComponentsImageFilterTest.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)