Browse Source

Merge pull request #2969 from codeaditya/update-links

Use https for external links wherever possible
master
David Lord 6 years ago committed by GitHub
parent
commit
7e714bd28b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      .github/ISSUE_TEMPLATE.md
  2. 4
      CONTRIBUTING.rst
  3. 2
      docs/api.rst
  4. 2
      docs/config.rst
  5. 2
      docs/deploying/uwsgi.rst
  6. 8
      docs/deploying/wsgi-standalone.rst
  7. 2
      docs/htmlfaq.rst
  8. 2
      docs/make.bat
  9. 2
      docs/patterns/celery.rst
  10. 2
      docs/patterns/fabric.rst
  11. 2
      docs/patterns/jquery.rst
  12. 2
      docs/patterns/mongokit.rst
  13. 2
      docs/unicode.rst

2
.github/ISSUE_TEMPLATE.md

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

4
CONTRIBUTING.rst

@ -91,7 +91,7 @@ Start coding
- Push your commits to GitHub and `create a pull request`_. - Push your commits to GitHub and `create a pull request`_.
- Celebrate 🎉 - Celebrate 🎉
.. _committing as you go: http://dont-be-afraid-to-commit.readthedocs.io/en/latest/git/commandlinegit.html#commit-your-changes .. _committing as you go: https://dont-be-afraid-to-commit.readthedocs.io/en/latest/git/commandlinegit.html#commit-your-changes
.. _PEP8: https://pep8.org/ .. _PEP8: https://pep8.org/
.. _create a pull request: https://help.github.com/articles/creating-a-pull-request/ .. _create a pull request: https://help.github.com/articles/creating-a-pull-request/
@ -142,7 +142,7 @@ Build the docs in the ``docs`` directory using Sphinx::
Open ``_build/html/index.html`` in your browser to view the docs. Open ``_build/html/index.html`` in your browser to view the docs.
Read more about `Sphinx <http://www.sphinx-doc.org>`_. Read more about `Sphinx <https://www.sphinx-doc.org>`_.
make targets make targets

2
docs/api.rst

@ -44,7 +44,7 @@ Incoming Request Data
.. attribute:: url_root .. attribute:: url_root
Provides different ways to look at the current `IRI Provides different ways to look at the current `IRI
<http://tools.ietf.org/html/rfc3987>`_. Imagine your application is <https://tools.ietf.org/html/rfc3987>`_. Imagine your application is
listening on the following application root:: listening on the following application root::
http://www.example.com/myapplication http://www.example.com/myapplication

2
docs/config.rst

@ -571,7 +571,7 @@ your configuration files. However here a list of good recommendations:
details about how to do that, head over to the details about how to do that, head over to the
:ref:`fabric-deployment` pattern. :ref:`fabric-deployment` pattern.
.. _fabric: http://www.fabfile.org/ .. _fabric: https://www.fabfile.org/
.. _instance-folders: .. _instance-folders:

2
docs/deploying/uwsgi.rst

@ -69,4 +69,4 @@ to have it in the URL root its a bit simpler::
.. _nginx: https://nginx.org/ .. _nginx: https://nginx.org/
.. _lighttpd: https://www.lighttpd.net/ .. _lighttpd: https://www.lighttpd.net/
.. _cherokee: http://cherokee-project.com/ .. _cherokee: http://cherokee-project.com/
.. _uwsgi: http://projects.unbit.it/uwsgi/ .. _uwsgi: https://uwsgi-docs.readthedocs.io/

8
docs/deploying/wsgi-standalone.rst

@ -23,8 +23,8 @@ For example, to run a Flask application with 4 worker processes (``-w
$ gunicorn -w 4 -b 127.0.0.1:4000 myproject:app $ gunicorn -w 4 -b 127.0.0.1:4000 myproject:app
.. _Gunicorn: http://gunicorn.org/ .. _Gunicorn: https://gunicorn.org/
.. _eventlet: http://eventlet.net/ .. _eventlet: https://eventlet.net/
.. _greenlet: https://greenlet.readthedocs.io/en/latest/ .. _greenlet: https://greenlet.readthedocs.io/en/latest/
uWSGI uWSGI
@ -39,8 +39,8 @@ Running `uWSGI HTTP Router`_::
For a more optimized setup, see :doc:`configuring uWSGI and NGINX <uwsgi>`. For a more optimized setup, see :doc:`configuring uWSGI and NGINX <uwsgi>`.
.. _uWSGI: http://uwsgi-docs.readthedocs.io/en/latest/ .. _uWSGI: https://uwsgi-docs.readthedocs.io/en/latest/
.. _uWSGI HTTP Router: http://uwsgi-docs.readthedocs.io/en/latest/HTTP.html#the-uwsgi-http-https-router .. _uWSGI HTTP Router: https://uwsgi-docs.readthedocs.io/en/latest/HTTP.html#the-uwsgi-http-https-router
Gevent Gevent
------- -------

2
docs/htmlfaq.rst

@ -186,7 +186,7 @@ Many other features have been added, as well. A good guide to new features
in HTML5 is Mark Pilgrim's soon-to-be-published book, `Dive Into HTML5`_. in HTML5 is Mark Pilgrim's soon-to-be-published book, `Dive Into HTML5`_.
Not all of them are supported in browsers yet, however, so use caution. Not all of them are supported in browsers yet, however, so use caution.
.. _Dive Into HTML5: http://diveintohtml5.info/ .. _Dive Into HTML5: http://diveintohtml5.info/table-of-contents.html
What should be used? What should be used?
-------------------- --------------------

2
docs/make.bat

@ -22,7 +22,7 @@ if errorlevel 9009 (
echo.may add the Sphinx directory to PATH. echo.may add the Sphinx directory to PATH.
echo. echo.
echo.If you don't have Sphinx installed, grab it from echo.If you don't have Sphinx installed, grab it from
echo.http://sphinx-doc.org/ echo.https://www.sphinx-doc.org/
exit /b 1 exit /b 1
) )

2
docs/patterns/celery.rst

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

2
docs/patterns/fabric.rst

@ -183,4 +183,4 @@ type ``fab deploy`` and see your application being deployed automatically
to one or more remote servers. to one or more remote servers.
.. _Fabric: http://www.fabfile.org/ .. _Fabric: https://www.fabfile.org/

2
docs/patterns/jquery.rst

@ -11,7 +11,7 @@ Python primitives (numbers, strings, dicts and lists) look like which is
widely supported and very easy to parse. It became popular a few years widely supported and very easy to parse. It became popular a few years
ago and quickly replaced XML as transport format in web applications. ago and quickly replaced XML as transport format in web applications.
.. _jQuery: http://jquery.com/ .. _jQuery: https://jquery.com/
Loading jQuery Loading jQuery
-------------- --------------

2
docs/patterns/mongokit.rst

@ -103,7 +103,7 @@ Querying is simple as well:
>>> collection.User.find_one({'name': u'admin'}) >>> collection.User.find_one({'name': u'admin'})
<User u'admin'> <User u'admin'>
.. _MongoKit: http://bytebucket.org/namlook/mongokit/ .. _MongoKit: https://github.com/namlook/mongokit
PyMongo Compatibility Layer PyMongo Compatibility Layer

2
docs/unicode.rst

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

Loading…
Cancel
Save