Skip to content

Commit 0719f71

Browse files
committed
DOC http->https where both work and have same content
1 parent cb8b826 commit 0719f71

33 files changed

+143
-143
lines changed

doc/source/_templates/indexsidebar.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<h3>Quick links</h3>
22

33
<ul>
4-
<li><a href="http://pypi.python.org/pypi/nibabel">Nibabel pypi</a></li>
5-
<li><a href="http://github.com/nipy/nibabel">Git repository</a></li>
4+
<li><a href="https://pypi.python.org/pypi/nibabel">Nibabel pypi</a></li>
5+
<li><a href="https://github.com/nipy/nibabel">Git repository</a></li>
66
<li><a href="http://mail.scipy.org/pipermail/nipy-devel">Mailing list archive</a></li>
77
</ul>
88

doc/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@
252252

253253

254254
# Example configuration for intersphinx: refer to the Python standard library.
255-
intersphinx_mapping = {'http://docs.python.org/': None}
255+
intersphinx_mapping = {'https://docs.python.org/': None}
256256

257257
# Config of plot_directive
258258
plot_include_source = True

doc/source/devel/data_pkg_design.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -288,7 +288,7 @@ There is an example nipy data package ``nipy-examplepkg`` in the
288288
``examples`` directory of the NIPY repository.
289289

290290
The machinery for creating and maintaining data packages is available at
291-
http://github.com/nipy/data-packaging.
291+
https://github.com/nipy/data-packaging.
292292

293293
See the ``README.txt`` file there for more information.
294294

doc/source/devel/data_pkg_discuss.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,7 @@ Issues
275275
******
276276

277277
From a brief scan of the `debian package management documentation
278-
<http://www.debian.org/doc/manuals/debian-reference/ch02.en.html>`_.
278+
<https://www.debian.org/doc/manuals/debian-reference/ch02.en.html>`_.
279279

280280
Dependency management
281281
=====================
@@ -292,7 +292,7 @@ Authentication and validation
292292
For dependency and validation, see the `Debian secure apt`_ page. One related
293293
proposal would be:
294294

295-
.. _Debian secure apt: http://wiki.debian.org/SecureApt
295+
.. _Debian secure apt: https://wiki.debian.org/SecureApt
296296

297297
* Each package instantiation would carry a table of checksums for the files
298298
within. Someone using this instantiation would check the checksums to confirm

doc/source/devel/make_release.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -180,14 +180,14 @@ Release checklist
180180

181181
* Force builds of the win32 and amd64 binaries from the buildbot. Go to pages:
182182

183-
* http://nipy.bic.berkeley.edu/builders/nibabel-bdist32-27
184-
* http://nipy.bic.berkeley.edu/builders/nibabel-bdist32-34
185-
* http://nipy.bic.berkeley.edu/builders/nibabel-bdist64-27
183+
* https://nipy.bic.berkeley.edu/builders/nibabel-bdist32-27
184+
* https://nipy.bic.berkeley.edu/builders/nibabel-bdist32-34
185+
* https://nipy.bic.berkeley.edu/builders/nibabel-bdist64-27
186186

187187
For each of these, enter the revision number (e.g. "2.0.0") in the field
188188
"Revision to build". Then get the built binaries in:
189189

190-
* http://nipy.bic.berkeley.edu/nibabel-dist
190+
* https://nipy.bic.berkeley.edu/nibabel-dist
191191

192192
and upload them to pypi with the admin files interface.
193193

doc/source/dicom/dcm2nii_algorithms.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ by Chris Rorden, in Delphi (object orientated pascal). It's part of
99
Chris' popular mricron_ collection of programs. The source appears to
1010
be best found on the `mricron NITRC site`_. It's BSD_ licensed.
1111

12-
.. _mricron NITRC site: http://www.nitrc.org/projects/mricron
12+
.. _mricron NITRC site: https://www.nitrc.org/projects/mricron
1313

1414
These are working notes looking at Chris' algorithms for working with
1515
DICOM.

doc/source/dicom/dicom_info.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ Here is a selected list of other tools and relevant resources:
3737
headers, and has been tested with Philips, GE and Siemens data. It's
3838
not clear whether it yet supports the :ref:`dicom-mosaic`. BSD_ style
3939
license.
40-
* The famous Philips cookbook: http://www.archive.org/details/DicomCookbook
40+
* The famous Philips cookbook: https://www.archive.org/details/DicomCookbook
4141
* http://dicom.online.fr/fr/dicomlinks.htm
4242

4343
===============

doc/source/gitwash/development_workflow.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ Ask for your changes to be reviewed or merged
150150
When you are ready to ask for someone to review your code and consider a merge:
151151

152152
#. Go to the URL of your forked repo, say
153-
``http://github.com/your-user-name/nibabel``.
153+
``https://github.com/your-user-name/nibabel``.
154154
#. Use the 'Switch Branches' dropdown menu near the top left of the page to
155155
select the branch with your changes:
156156

@@ -183,7 +183,7 @@ Delete a branch on github
183183
git push origin :my-unwanted-branch
184184

185185
(Note the colon ``:`` before ``test-branch``. See also:
186-
http://github.com/guides/remove-a-remote-branch
186+
https://github.com/guides/remove-a-remote-branch
187187

188188
Several people sharing a single repository
189189
------------------------------------------
@@ -195,7 +195,7 @@ share it via github.
195195
First fork nibabel into your account, as from :ref:`forking`.
196196

197197
Then, go to your forked repository github page, say
198-
``http://github.com/your-user-name/nibabel``
198+
``https://github.com/your-user-name/nibabel``
199199

200200
Click on the 'Admin' button, and add anyone else to the repo as a
201201
collaborator:

doc/source/gitwash/git_links.inc

Lines changed: 26 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -9,52 +9,52 @@
99
nipy, NIPY, Nipy, etc...
1010
1111
.. git stuff
12-
.. _git: http://git-scm.com/
13-
.. _github: http://github.com
14-
.. _github help: http://help.github.com
12+
.. _git: https://git-scm.com/
13+
.. _github: https://github.com
14+
.. _github help: https://help.github.com
1515
.. _msysgit: http://code.google.com/p/msysgit/downloads/list
16-
.. _git-osx-installer: http://code.google.com/p/git-osx-installer/downloads/list
16+
.. _git-osx-installer: https://code.google.com/p/git-osx-installer/downloads/list
1717
.. _subversion: http://subversion.tigris.org/
18-
.. _git cheat sheet: http://github.com/guides/git-cheat-sheet
19-
.. _pro git book: http://progit.org/
20-
.. _git svn crash course: http://git-scm.com/course/svn.html
18+
.. _git cheat sheet: https://github.com/guides/git-cheat-sheet
19+
.. _pro git book: https://progit.org/
20+
.. _git svn crash course: https://git-scm.com/course/svn.html
2121
.. _learn.github: http://learn.github.com/
22-
.. _network graph visualizer: http://github.com/blog/39-say-hello-to-the-network-graph-visualizer
23-
.. _git user manual: http://www.kernel.org/pub/software/scm/git/docs/user-manual.html
24-
.. _git tutorial: http://www.kernel.org/pub/software/scm/git/docs/gittutorial.html
22+
.. _network graph visualizer: https://github.com/blog/39-say-hello-to-the-network-graph-visualizer
23+
.. _git user manual: https://www.kernel.org/pub/software/scm/git/docs/user-manual.html
24+
.. _git tutorial: https://www.kernel.org/pub/software/scm/git/docs/gittutorial.html
2525
.. _git community book: http://book.git-scm.com/
2626
.. _git ready: http://www.gitready.com/
2727
.. _git casts: http://www.gitcasts.com/
2828
.. _Fernando's git page: http://www.fperez.org/py4science/git.html
2929
.. _git magic: http://www-cs-students.stanford.edu/~blynn/gitmagic/index.html
3030
.. _git concepts: http://www.eecs.harvard.edu/~cduan/technical/git/
31-
.. _git clone: http://www.kernel.org/pub/software/scm/git/docs/git-clone.html
32-
.. _git checkout: http://www.kernel.org/pub/software/scm/git/docs/git-checkout.html
33-
.. _git commit: http://www.kernel.org/pub/software/scm/git/docs/git-commit.html
34-
.. _git push: http://www.kernel.org/pub/software/scm/git/docs/git-push.html
35-
.. _git pull: http://www.kernel.org/pub/software/scm/git/docs/git-pull.html
36-
.. _git add: http://www.kernel.org/pub/software/scm/git/docs/git-add.html
37-
.. _git status: http://www.kernel.org/pub/software/scm/git/docs/git-status.html
38-
.. _git diff: http://www.kernel.org/pub/software/scm/git/docs/git-diff.html
39-
.. _git log: http://www.kernel.org/pub/software/scm/git/docs/git-log.html
40-
.. _git branch: http://www.kernel.org/pub/software/scm/git/docs/git-branch.html
41-
.. _git remote: http://www.kernel.org/pub/software/scm/git/docs/git-remote.html
42-
.. _git rebase: http://www.kernel.org/pub/software/scm/git/docs/git-rebase.html
43-
.. _git config: http://www.kernel.org/pub/software/scm/git/docs/git-config.html
31+
.. _git clone: https://www.kernel.org/pub/software/scm/git/docs/git-clone.html
32+
.. _git checkout: https://www.kernel.org/pub/software/scm/git/docs/git-checkout.html
33+
.. _git commit: https://www.kernel.org/pub/software/scm/git/docs/git-commit.html
34+
.. _git push: https://www.kernel.org/pub/software/scm/git/docs/git-push.html
35+
.. _git pull: https://www.kernel.org/pub/software/scm/git/docs/git-pull.html
36+
.. _git add: https://www.kernel.org/pub/software/scm/git/docs/git-add.html
37+
.. _git status: https://www.kernel.org/pub/software/scm/git/docs/git-status.html
38+
.. _git diff: https://www.kernel.org/pub/software/scm/git/docs/git-diff.html
39+
.. _git log: https://www.kernel.org/pub/software/scm/git/docs/git-log.html
40+
.. _git branch: https://www.kernel.org/pub/software/scm/git/docs/git-branch.html
41+
.. _git remote: https://www.kernel.org/pub/software/scm/git/docs/git-remote.html
42+
.. _git rebase: https://www.kernel.org/pub/software/scm/git/docs/git-rebase.html
43+
.. _git config: https://www.kernel.org/pub/software/scm/git/docs/git-config.html
4444
.. _why the -a flag?: http://www.gitready.com/beginner/2009/01/18/the-staging-area.html
4545
.. _git staging area: http://www.gitready.com/beginner/2009/01/18/the-staging-area.html
4646
.. _tangled working copy problem: http://tomayko.com/writings/the-thing-about-git
4747
.. _git management: http://kerneltrap.org/Linux/Git_Management
48-
.. _linux git workflow: http://www.mail-archive.com/[email protected]/msg39091.html
48+
.. _linux git workflow: https://www.mail-archive.com/[email protected]/msg39091.html
4949
.. _git parable: http://tom.preston-werner.com/2009/05/19/the-git-parable.html
5050
.. _git foundation: http://matthew-brett.github.com/pydagogue/foundation.html
5151
.. _deleting master on github: http://matthew-brett.github.com/pydagogue/gh_delete_master.html
5252
.. _rebase without tears: http://matthew-brett.github.com/pydagogue/rebase_without_tears.html
53-
.. _resolving a merge: http://www.kernel.org/pub/software/scm/git/docs/user-manual.html#resolving-a-merge
53+
.. _resolving a merge: https://www.kernel.org/pub/software/scm/git/docs/user-manual.html#resolving-a-merge
5454
.. _ipython git workflow: http://mail.scipy.org/pipermail/ipython-dev/2010-October/006746.html
5555

5656
.. other stuff
57-
.. _python: http://www.python.org
57+
.. _python: https://www.python.org
5858

5959
.. |emdash| unicode:: U+02014
6060

doc/source/gitwash/known_projects.inc

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,40 +2,40 @@
22

33
.. PROJECTNAME placeholders
44
.. _PROJECTNAME: http://neuroimaging.scipy.org
5-
.. _`PROJECTNAME github`: http://github.com/nipy
5+
.. _`PROJECTNAME github`: https://github.com/nipy
66
.. _`PROJECTNAME mailing list`: http://projects.scipy.org/mailman/listinfo/nipy-devel
77

88
.. numpy
99
.. _numpy: hhttp://numpy.scipy.org
10-
.. _`numpy github`: http://github.com/numpy/numpy
10+
.. _`numpy github`: https://github.com/numpy/numpy
1111
.. _`numpy mailing list`: http://mail.scipy.org/mailman/listinfo/numpy-discussion
1212

1313
.. scipy
1414
.. _scipy: http://www.scipy.org
15-
.. _`scipy github`: http://github.com/scipy/scipy
15+
.. _`scipy github`: https://github.com/scipy/scipy
1616
.. _`scipy mailing list`: http://mail.scipy.org/mailman/listinfo/scipy-dev
1717

1818
.. nipy
1919
.. _nipy: http://nipy.org/nipy
20-
.. _`nipy github`: http://github.com/nipy/nipy
20+
.. _`nipy github`: https://github.com/nipy/nipy
2121
.. _`nipy mailing list`: http://mail.scipy.org/mailman/listinfo/nipy-devel
2222

2323
.. ipython
2424
.. _ipython: http://ipython.scipy.org
25-
.. _`ipython github`: http://github.com/ipython/ipython
25+
.. _`ipython github`: https://github.com/ipython/ipython
2626
.. _`ipython mailing list`: http://mail.scipy.org/mailman/listinfo/IPython-dev
2727

2828
.. dipy
2929
.. _dipy: http://nipy.org/dipy
30-
.. _`dipy github`: http://github.com/Garyfallidis/dipy
30+
.. _`dipy github`: https://github.com/Garyfallidis/dipy
3131
.. _`dipy mailing list`: http://mail.scipy.org/mailman/listinfo/nipy-devel
3232

3333
.. nibabel
3434
.. _nibabel: http://nipy.org/nibabel
35-
.. _`nibabel github`: http://github.com/nipy/nibabel
35+
.. _`nibabel github`: https://github.com/nipy/nibabel
3636
.. _`nibabel mailing list`: http://mail.scipy.org/mailman/listinfo/nipy-devel
3737

3838
.. marsbar
3939
.. _marsbar: http://marsbar.sourceforge.net
40-
.. _`marsbar github`: http://github.com/matthew-brett/marsbar
40+
.. _`marsbar github`: https://github.com/matthew-brett/marsbar
4141
.. _`MarsBaR mailing list`: https://lists.sourceforge.net/lists/listinfo/marsbar-users

0 commit comments

Comments
 (0)