Use https instead of http for python.org
Change-Id: I358eb52da33b7d3b719012d75418b26ee02eaec4
This commit is contained in:
parent
38207463ca
commit
5d936aef77
@ -35,7 +35,7 @@ than the default ``DEBUG`` setting).
|
||||
|
||||
For more about the logging configuration syntax, including the
|
||||
``handlers`` and ``quaname`` variables, see the
|
||||
`Python documentation <http://docs.python.org/release/2.7/library/logging.html#configuration-file-format>`__
|
||||
`Python documentation <https://docs.python.org/release/2.7/library/logging.html#configuration-file-format>`__
|
||||
on logging configuration files.
|
||||
|
||||
For an example of the ``logging.conf`` file with various defined handlers, see
|
||||
|
@ -15,7 +15,7 @@ methods:
|
||||
- Provide logging settings in a logging configuration file.
|
||||
|
||||
See `Python logging
|
||||
how-to <http://docs.python.org/howto/logging.html>`__ to learn more
|
||||
how-to <https://docs.python.org/howto/logging.html>`__ to learn more
|
||||
about logging.
|
||||
|
||||
- Provide logging setting in ``neutron.conf``.
|
||||
|
@ -35,7 +35,7 @@ If the log level is set to ``debug``, you can also specify
|
||||
``logging_debug_format_suffix`` to append extra formatting.
|
||||
For information about what variables are available for the
|
||||
formatter, see `Formatter Objects
|
||||
<http://docs.python.org/library/logging.html#formatter-objects>`_.
|
||||
<https://docs.python.org/library/logging.html#formatter-objects>`_.
|
||||
|
||||
You have two logging options for OpenStack Compute based on
|
||||
configuration settings. In ``nova.conf``, include the
|
||||
|
@ -201,11 +201,11 @@ working properly on the 64bit version.
|
||||
|
||||
#. Download and install Python 2.7 using the MSI installer from here:
|
||||
|
||||
http://www.python.org/ftp/python/2.7.3/python-2.7.3.msi
|
||||
https://www.python.org/ftp/python/2.7.3/python-2.7.3.msi
|
||||
|
||||
.. code-block:: none
|
||||
|
||||
PS C:\> $src = "http://www.python.org/ftp/python/2.7.3/python-2.7.3.msi"
|
||||
PS C:\> $src = "https://www.python.org/ftp/python/2.7.3/python-2.7.3.msi"
|
||||
PS C:\> $dest = "$env:temp\python-2.7.3.msi"
|
||||
PS C:\> Invoke-WebRequest –Uri $src –OutFile $dest
|
||||
PS C:\> Unblock-File $dest
|
||||
|
@ -168,8 +168,8 @@ For example, if your LDAP DNS password is ``$xkj432``, specify it, as follows:
|
||||
The code uses the Python ``string.Template.safe_substitute()``
|
||||
method to implement variable substitution.
|
||||
For more details on how variable substitution is resolved, see
|
||||
http://docs.python.org/2/library/string.html#template-strings
|
||||
and `PEP 292 <http://www.python.org/dev/peps/pep-0292/>`_.
|
||||
https://docs.python.org/2/library/string.html#template-strings
|
||||
and `PEP 292 <https://www.python.org/dev/peps/pep-0292/>`_.
|
||||
|
||||
Whitespace
|
||||
~~~~~~~~~~
|
||||
|
@ -6,7 +6,7 @@ You can specify a special logging configuration file in the ``keystone.conf``
|
||||
configuration file. For example, ``/etc/keystone/logging.conf``.
|
||||
|
||||
For details, see the `Python logging module documentation
|
||||
<http://docs.python.org/2/howto/logging.html#configuring-logging>`__.
|
||||
<https://docs.python.org/2/howto/logging.html#configuring-logging>`__.
|
||||
|
||||
.. remote-code-block:: ini
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user