Skip to content

Commit 7e714bd

Browse files
authored
Merge pull request pallets#2969 from codeaditya/update-links
Use https for external links wherever possible
2 parents 70b4509 + f05625e commit 7e714bd

File tree

13 files changed

+17
-17
lines changed

13 files changed

+17
-17
lines changed

.github/ISSUE_TEMPLATE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ questions about using Flask or issues not related to Flask.**
44

55
If you'd like to report a bug in Flask, fill out the template below. Provide
66
any extra information that may be useful / related to your problem.
7-
Ideally, create an [MCVE](http://stackoverflow.com/help/mcve), which helps us
7+
Ideally, create an [MCVE](https://stackoverflow.com/help/mcve), which helps us
88
understand the problem and helps check that it is not caused by something in
99
your code.
1010

CONTRIBUTING.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ Start coding
9191
- Push your commits to GitHub and `create a pull request`_.
9292
- Celebrate 🎉
9393

94-
.. _committing as you go: http://dont-be-afraid-to-commit.readthedocs.io/en/latest/git/commandlinegit.html#commit-your-changes
94+
.. _committing as you go: https://dont-be-afraid-to-commit.readthedocs.io/en/latest/git/commandlinegit.html#commit-your-changes
9595
.. _PEP8: https://pep8.org/
9696
.. _create a pull request: https://help.github.com/articles/creating-a-pull-request/
9797

@@ -142,7 +142,7 @@ Build the docs in the ``docs`` directory using Sphinx::
142142

143143
Open ``_build/html/index.html`` in your browser to view the docs.
144144

145-
Read more about `Sphinx <http://www.sphinx-doc.org>`_.
145+
Read more about `Sphinx <https://www.sphinx-doc.org>`_.
146146

147147

148148
make targets

docs/api.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ Incoming Request Data
4444
.. attribute:: url_root
4545

4646
Provides different ways to look at the current `IRI
47-
<http://tools.ietf.org/html/rfc3987>`_. Imagine your application is
47+
<https://tools.ietf.org/html/rfc3987>`_. Imagine your application is
4848
listening on the following application root::
4949

5050
http://www.example.com/myapplication

docs/config.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -571,7 +571,7 @@ your configuration files. However here a list of good recommendations:
571571
details about how to do that, head over to the
572572
:ref:`fabric-deployment` pattern.
573573

574-
.. _fabric: http://www.fabfile.org/
574+
.. _fabric: https://www.fabfile.org/
575575

576576

577577
.. _instance-folders:

docs/deploying/uwsgi.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,4 +69,4 @@ to have it in the URL root its a bit simpler::
6969
.. _nginx: https://nginx.org/
7070
.. _lighttpd: https://www.lighttpd.net/
7171
.. _cherokee: http://cherokee-project.com/
72-
.. _uwsgi: http://projects.unbit.it/uwsgi/
72+
.. _uwsgi: https://uwsgi-docs.readthedocs.io/

docs/deploying/wsgi-standalone.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ For example, to run a Flask application with 4 worker processes (``-w
2323

2424
$ gunicorn -w 4 -b 127.0.0.1:4000 myproject:app
2525

26-
.. _Gunicorn: http://gunicorn.org/
27-
.. _eventlet: http://eventlet.net/
26+
.. _Gunicorn: https://gunicorn.org/
27+
.. _eventlet: https://eventlet.net/
2828
.. _greenlet: https://greenlet.readthedocs.io/en/latest/
2929

3030
uWSGI
@@ -39,8 +39,8 @@ Running `uWSGI HTTP Router`_::
3939

4040
For a more optimized setup, see :doc:`configuring uWSGI and NGINX <uwsgi>`.
4141

42-
.. _uWSGI: http://uwsgi-docs.readthedocs.io/en/latest/
43-
.. _uWSGI HTTP Router: http://uwsgi-docs.readthedocs.io/en/latest/HTTP.html#the-uwsgi-http-https-router
42+
.. _uWSGI: https://uwsgi-docs.readthedocs.io/en/latest/
43+
.. _uWSGI HTTP Router: https://uwsgi-docs.readthedocs.io/en/latest/HTTP.html#the-uwsgi-http-https-router
4444

4545
Gevent
4646
-------

docs/htmlfaq.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ Many other features have been added, as well. A good guide to new features
186186
in HTML5 is Mark Pilgrim's soon-to-be-published book, `Dive Into HTML5`_.
187187
Not all of them are supported in browsers yet, however, so use caution.
188188

189-
.. _Dive Into HTML5: http://diveintohtml5.info/
189+
.. _Dive Into HTML5: http://diveintohtml5.info/table-of-contents.html
190190

191191
What should be used?
192192
--------------------

docs/make.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ if errorlevel 9009 (
2222
echo.may add the Sphinx directory to PATH.
2323
echo.
2424
echo.If you don't have Sphinx installed, grab it from
25-
echo.http://sphinx-doc.org/
25+
echo.https://www.sphinx-doc.org/
2626
exit /b 1
2727
)
2828

docs/patterns/celery.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ immediately.
1010
Celery is a powerful task queue that can be used for simple background tasks
1111
as well as complex multi-stage programs and schedules. This guide will show you
1212
how to configure Celery using Flask, but assumes you've already read the
13-
`First Steps with Celery <http://docs.celeryproject.org/en/latest/getting-started/first-steps-with-celery.html>`_
13+
`First Steps with Celery <https://celery.readthedocs.io/en/latest/getting-started/first-steps-with-celery.html>`_
1414
guide in the Celery documentation.
1515

1616
Install

docs/patterns/fabric.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,4 +183,4 @@ type ``fab deploy`` and see your application being deployed automatically
183183
to one or more remote servers.
184184

185185

186-
.. _Fabric: http://www.fabfile.org/
186+
.. _Fabric: https://www.fabfile.org/

docs/patterns/jquery.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Python primitives (numbers, strings, dicts and lists) look like which is
1111
widely supported and very easy to parse. It became popular a few years
1212
ago and quickly replaced XML as transport format in web applications.
1313

14-
.. _jQuery: http://jquery.com/
14+
.. _jQuery: https://jquery.com/
1515

1616
Loading jQuery
1717
--------------

docs/patterns/mongokit.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ Querying is simple as well:
103103
>>> collection.User.find_one({'name': u'admin'})
104104
<User u'admin'>
105105

106-
.. _MongoKit: http://bytebucket.org/namlook/mongokit/
106+
.. _MongoKit: https://github.com/namlook/mongokit
107107

108108

109109
PyMongo Compatibility Layer

docs/unicode.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ text. Not only these libraries, also the majority of web related Python
66
libraries that deal with text. If you don't know Unicode so far, you
77
should probably read `The Absolute Minimum Every Software Developer
88
Absolutely, Positively Must Know About Unicode and Character Sets
9-
<http://www.joelonsoftware.com/articles/Unicode.html>`_. This part of the
9+
<https://www.joelonsoftware.com/articles/Unicode.html>`_. This part of the
1010
documentation just tries to cover the very basics so that you have a
1111
pleasant experience with Unicode related things.
1212

0 commit comments

Comments
 (0)