diff --git a/docs/index.rst b/docs/index.rst index 06b9ebd5..64b505bb 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -54,8 +54,8 @@ Dependency Injector --- Dependency injection framework for Python :target: https://travis-ci.org/ets-labs/python-dependency-injector :alt: Build Status -.. image:: http://readthedocs.org/projects/python-dependency-injector/badge/?version=latest - :target: http://python-dependency-injector.ets-labs.org/ +.. image:: https://readthedocs.org/projects/python-dependency-injector/badge/?version=latest + :target: https://python-dependency-injector.ets-labs.org/ :alt: Docs Status .. image:: https://coveralls.io/repos/github/ets-labs/python-dependency-injector/badge.svg?branch=master diff --git a/docs/main/changelog.rst b/docs/main/changelog.rst index 1e392737..9a988da1 100644 --- a/docs/main/changelog.rst +++ b/docs/main/changelog.rst @@ -1191,4 +1191,4 @@ Previous versions .. disqus:: -.. _Semantic versioning: http://semver.org/ +.. _Semantic versioning: https://semver.org/ diff --git a/docs/tutorials/aiohttp.rst b/docs/tutorials/aiohttp.rst index f6bd083f..9b505c18 100644 --- a/docs/tutorials/aiohttp.rst +++ b/docs/tutorials/aiohttp.rst @@ -304,7 +304,7 @@ and put next into it: class GiphyClient: - API_URL = 'http://api.giphy.com/v1' + API_URL = 'https://api.giphy.com/v1' def __init__(self, api_key, timeout): self._api_key = api_key diff --git a/docs/tutorials/asyncio-daemon.rst b/docs/tutorials/asyncio-daemon.rst index a279771d..bb5413e5 100644 --- a/docs/tutorials/asyncio-daemon.rst +++ b/docs/tutorials/asyncio-daemon.rst @@ -738,14 +738,14 @@ You should see: Our daemon can monitor `http://example.com `_ availability. -Let's add a monitor for the `http://httpbin.org `_. +Let's add a monitor for the `https://httpbin.org `_. Httpbin.org monitor ------------------- -Adding of a monitor for the `httpbin.org`_ will be much easier because we have all the -components ready. We just need to create a new provider in the container and update the -configuration. +Adding of a monitor for the `https://httpbin.org `_ will be much +easier because we have all the components ready. We just need to create a new provider +in the container and update the configuration. Edit ``containers.py``: diff --git a/docs/tutorials/cli.rst b/docs/tutorials/cli.rst index eba7531a..d488cd9c 100644 --- a/docs/tutorials/cli.rst +++ b/docs/tutorials/cli.rst @@ -46,7 +46,7 @@ How does Movie Lister work? Movie Lister is a naive example from Martin Fowler's article about the dependency injection and inversion of control: - http://www.martinfowler.com/articles/injection.html + https://www.martinfowler.com/articles/injection.html Here is a class diagram of the Movie Lister application: