From 2ae96e77335608f229221ee2d992e6f88cca436e Mon Sep 17 00:00:00 2001 From: Wolfgang Walther Date: Fri, 16 Feb 2024 21:41:09 +0100 Subject: [PATCH] docs: Fix broken stackoverflow link --- docs/conf.py | 4 ++++ ...sql-user-management-using-postgres-users-and-passwords.rst | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/docs/conf.py b/docs/conf.py index 844603f91..75d3f17f6 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -297,6 +297,10 @@ def setup(app): # taken from https://github.com/sphinx-doc/sphinx/blob/82dad44e5bd3776ecb6fd8ded656bc8151d0e63d/sphinx/util/requests.py#L42 user_agent = 'Mozilla/5.0 (X11; Linux x86_64; rv:25.0) Gecko/20100101 Firefox/25.0' +# TODO: stackoverflow only returns 403 right now. We might need to come back later to check whether that's +# a permanent issue or not. +linkcheck_ignore = [r'https://stackoverflow.com/'] + # sphinx-tabs configuration sphinx_tabs_disable_tab_closing = True diff --git a/docs/how-tos/sql-user-management-using-postgres-users-and-passwords.rst b/docs/how-tos/sql-user-management-using-postgres-users-and-passwords.rst index c95399ef7..e8e3d2c0d 100644 --- a/docs/how-tos/sql-user-management-using-postgres-users-and-passwords.rst +++ b/docs/how-tos/sql-user-management-using-postgres-users-and-passwords.rst @@ -52,7 +52,7 @@ Concerning the `pgjwt extension `_, please cf. CREATE EXTENSION IF NOT EXISTS pgjwt WITH SCHEMA ext_pgjwt; -In order to be able to work with postgres' SCRAM-SHA-256 password hashes, we also need the PBKDF2 key derivation function. Luckily there is `a PL/pgSQL implementation on stackoverflow `_: +In order to be able to work with postgres' SCRAM-SHA-256 password hashes, we also need the PBKDF2 key derivation function. Luckily there is `a PL/pgSQL implementation on stackoverflow `_: .. code-block:: plpgsql