Website on https

This commit is contained in:
Daniele Varrazzo 2019-12-31 13:09:13 +01:00
parent 501b0412f6
commit c3c24cd67b
7 changed files with 14 additions and 14 deletions

View File

@ -1,4 +1,4 @@
Installation instructions are included in the docs. Installation instructions are included in the docs.
Please check the 'doc/src/install.rst' file or online at Please check the 'doc/src/install.rst' file or online at
<http://www.psycopg.org/docs/install.html>. <https://www.psycopg.org/docs/install.html>.

View File

@ -23,12 +23,12 @@ Documentation
Documentation is included in the ``doc`` directory and is `available online`__. Documentation is included in the ``doc`` directory and is `available online`__.
.. __: http://www.psycopg.org/docs/ .. __: https://www.psycopg.org/docs/
For any other resource (source code repository, bug tracker, mailing list) For any other resource (source code repository, bug tracker, mailing list)
please check the `project homepage`__. please check the `project homepage`__.
.. __: http://psycopg.org/ .. __: https://psycopg.org/
Installation Installation
@ -58,8 +58,8 @@ production it is advised to use the package built from sources.
.. _PyPI: https://pypi.org/project/psycopg2/ .. _PyPI: https://pypi.org/project/psycopg2/
.. _psycopg2-binary: https://pypi.org/project/psycopg2-binary/ .. _psycopg2-binary: https://pypi.org/project/psycopg2-binary/
.. _install: http://www.psycopg.org/docs/install.html#install-from-source .. _install: https://www.psycopg.org/docs/install.html#install-from-source
.. _faq: http://www.psycopg.org/docs/faq.html#faq-compile .. _faq: https://www.psycopg.org/docs/faq.html#faq-compile
:Linux/OSX: |travis| :Linux/OSX: |travis|
:Windows: |appveyor| :Windows: |appveyor|

View File

@ -6,7 +6,7 @@ introspection, so you will need the same prerequisites_. The only extra
prerequisite is virtualenv_: the packages needed to build the docs will be prerequisite is virtualenv_: the packages needed to build the docs will be
installed when building the env. installed when building the env.
.. _prerequisites: http://www.psycopg.org/docs/install.html#install-from-source .. _prerequisites: https://www.psycopg.org/docs/install.html#install-from-source
.. _virtualenv: https://virtualenv.pypa.io/en/latest/ .. _virtualenv: https://virtualenv.pypa.io/en/latest/
Build the env once with:: Build the env once with::

View File

@ -292,7 +292,7 @@ How do I interrupt a long-running query in an interactive shell?
can handle a :kbd:`Ctrl-C` correctly. For previous versions, you can use can handle a :kbd:`Ctrl-C` correctly. For previous versions, you can use
`this implementation`__. `this implementation`__.
.. __: http://www.psycopg.org/articles/2014/07/20/cancelling-postgresql-statements-python/ .. __: https://www.psycopg.org/articles/2014/07/20/cancelling-postgresql-statements-python/
.. code-block:: pycon .. code-block:: pycon

View File

@ -23,7 +23,7 @@ extended and customized thanks to a flexible :ref:`objects adaptation system
Psycopg 2 is both Unicode and Python 3 friendly. Psycopg 2 is both Unicode and Python 3 friendly.
.. _Psycopg: http://psycopg.org/ .. _Psycopg: https://psycopg.org/
.. _PostgreSQL: https://www.postgresql.org/ .. _PostgreSQL: https://www.postgresql.org/
.. _Python: https://www.python.org/ .. _Python: https://www.python.org/
.. _libpq: https://www.postgresql.org/docs/current/static/libpq.html .. _libpq: https://www.postgresql.org/docs/current/static/libpq.html

View File

@ -6,7 +6,7 @@ provide new-style classes for connection and cursor objects and other sweet
candies. Like the original, psycopg 2 was written with the aim of being very candies. Like the original, psycopg 2 was written with the aim of being very
small and fast, and stable as a rock. small and fast, and stable as a rock.
Homepage: http://psycopg.org/ Homepage: https://psycopg.org/
.. _PostgreSQL: https://www.postgresql.org/ .. _PostgreSQL: https://www.postgresql.org/
.. _Python: https://www.python.org/ .. _Python: https://www.python.org/

View File

@ -104,7 +104,7 @@ If you prefer to avoid building psycopg2 from source, please install the PyPI
'psycopg2-binary' package instead. 'psycopg2-binary' package instead.
For further information please check the 'doc/src/install.rst' file (also at For further information please check the 'doc/src/install.rst' file (also at
<http://www.psycopg.org/docs/install.html>). <https://www.psycopg.org/docs/install.html>).
""") """)
sys.exit(1) sys.exit(1)
@ -303,7 +303,7 @@ If you want to install psycopg2 from source, please install the packages
required for the build and try again. required for the build and try again.
For further information please check the 'doc/src/install.rst' file (also at For further information please check the 'doc/src/install.rst' file (also at
<http://www.psycopg.org/docs/install.html>). <https://www.psycopg.org/docs/install.html>).
""") """)
raise raise
@ -594,7 +594,7 @@ setup(name="psycopg2",
author_email="fog@initd.org", author_email="fog@initd.org",
maintainer="Daniele Varrazzo", maintainer="Daniele Varrazzo",
maintainer_email="daniele.varrazzo@gmail.org", maintainer_email="daniele.varrazzo@gmail.org",
url="http://psycopg.org/", url="https://psycopg.org/",
license="LGPL with exceptions", license="LGPL with exceptions",
platforms=["any"], platforms=["any"],
python_requires='>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*', python_requires='>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*',
@ -607,8 +607,8 @@ setup(name="psycopg2",
cmdclass={'build_ext': psycopg_build_ext}, cmdclass={'build_ext': psycopg_build_ext},
ext_modules=ext, ext_modules=ext,
project_urls={ project_urls={
'Homepage': 'http://psycopg.org/', 'Homepage': 'https://psycopg.org/',
'Documentation': 'http://www.psycopg.org/docs/', 'Documentation': 'https://www.psycopg.org/docs/',
'Code': 'https://github.com/psycopg/psycopg2', 'Code': 'https://github.com/psycopg/psycopg2',
'Issue Tracker': 'https://github.com/psycopg/psycopg2/issues', 'Issue Tracker': 'https://github.com/psycopg/psycopg2/issues',
'Download': 'https://pypi.org/project/psycopg2/', 'Download': 'https://pypi.org/project/psycopg2/',