diff options
author | Brad King <brad.king@kitware.com> | 2023-11-06 17:52:15 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2023-11-06 17:53:35 (GMT) |
commit | d865d5bce1b95103e02a64473187ba3b0283a161 (patch) | |
tree | 8bfa6179f0c59dae56775959ef9e352e736b2af5 /Utilities/Sphinx | |
parent | dea37a4e7df2d433c90d78a5df303f94eeda9e0f (diff) | |
download | CMake-d865d5bce1b95103e02a64473187ba3b0283a161.zip CMake-d865d5bce1b95103e02a64473187ba3b0283a161.tar.gz CMake-d865d5bce1b95103e02a64473187ba3b0283a161.tar.bz2 |
ci: Do not linkcheck www.intel.com URLs
They fail with a 403 Client Error, perhaps due to our once-per-day
request being classified as scraping.
Diffstat (limited to 'Utilities/Sphinx')
-rw-r--r-- | Utilities/Sphinx/conf.py.in | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Utilities/Sphinx/conf.py.in b/Utilities/Sphinx/conf.py.in index b8d8474..0d9ad91 100644 --- a/Utilities/Sphinx/conf.py.in +++ b/Utilities/Sphinx/conf.py.in @@ -88,7 +88,11 @@ html_favicon = '@conf_path@/static/cmake-favicon.ico' # qthelp_namespace = "org.cmake" # qthelp_qch_name = "CMake.qch" -linkcheck_ignore = [r'about:|https://gitlab.kitware.com/cmake/community/-/wikis/doc/cpack'] +linkcheck_ignore = [ + r'about:', + r'https://gitlab\.kitware\.com/cmake/community/-/wikis/doc/cpack', + r'https://www.intel.com/', +] linkcheck_allowed_redirects = { r'https://cdash\.org': r'https://www\.cdash\.org/', |