Scheduled service maintenance on November 22


On Friday, November 22, 2024, between 06:00 CET and 18:00 CET, GIN services will undergo planned maintenance. Extended service interruptions should be expected. We will try to keep downtimes to a minimum, but recommend that users avoid critical tasks, large data uploads, or DOI requests during this time.

We apologize for any inconvenience.

Browse Source

Fix current linkcheck failures

Both work in principle, but the link checker runs into an SSL error for the first,
and fails to resolve the second link pointing to an eventual build artifact.
This change ignores both types of URLs. SSL error should be retried after a bit of
time.
Adina Wagner 9 months ago
parent
commit
d4a4172ded
1 changed files with 4 additions and 0 deletions
  1. 4 0
      docs/conf.py

+ 4 - 0
docs/conf.py

@@ -180,6 +180,10 @@ linkcheck_ignore = [
     'https://twitter.com/datalad',
     # maybe a user-agent issue? github.com/sphinx-doc/sphinx//issues/10343
     'https://github.com/datalad/datalad-extension-template/generate',
+    # (temporary?) SSL certificate error
+    'https://fcon_1000.projects.nitrc.org/*',
+    # local link fails to resolve, maybe because its a build artifact?
+    '../_images/intro-v1-cover.jpg',
 ]
 
 # Add any paths that contain templates here, relative to this directory.