From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Mon, 16 Sep 2024 18:49:14 +0000 (+0200) Subject: [3.12] GH-103484: Tell linkcheck to ignore debian manpage redirects (GH-123019) ... X-Git-Tag: v3.12.7~89 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=1151dd6c73ab1fe3d9848c4e4d61f15fd640d52e;p=thirdparty%2FPython%2Fcpython.git [3.12] GH-103484: Tell linkcheck to ignore debian manpage redirects (GH-123019) (#124136) GH-103484: Tell linkcheck to ignore debian manpage redirects (GH-123019) (cherry picked from commit 1054a755a3016f95fcd24b3ad20e8ed9048b7939) Co-authored-by: Rafael Fontenelle --- diff --git a/Doc/conf.py b/Doc/conf.py index 319cdf607902..1de864c3da0f 100644 --- a/Doc/conf.py +++ b/Doc/conf.py @@ -532,6 +532,8 @@ linkcheck_allowed_redirects = { r'https://msdn.microsoft.com/.*': 'https://learn.microsoft.com/.*', r'https://docs.microsoft.com/.*': 'https://learn.microsoft.com/.*', r'https://go.microsoft.com/fwlink/\?LinkID=\d+': 'https://learn.microsoft.com/.*', + # Debian's man page redirects to its current stable version + r'https://manpages.debian.org/\w+\(\d(\w+)?\)': r'https://manpages.debian.org/\w+/[\w/\-\.]*\.\d(\w+)?\.en\.html', # Language redirects r'https://toml.io': 'https://toml.io/en/', r'https://www.redhat.com': 'https://www.redhat.com/en',