Skip to content

Commit 59bfe15

Browse files
committed
Fix linkcheck
1 parent 0a90172 commit 59bfe15

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

docs/conf.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,8 @@ def setup(app):
151151
inheritance_graph_attrs = {"rankdir": "TB"}
152152

153153
# Ignore localhost links for periodic check that links in docs are valid
154-
linkcheck_ignore = [r"http://localhost:\d+/"]
154+
# Also ignore EPICS links as ANL blocks machine user agents
155+
linkcheck_ignore = [r"http://localhost:\d+/", "https://epics.anl.gov/"]
155156

156157
# Set copy-button to ignore python and bash prompts
157158
# https://sphinx-copybutton.readthedocs.io/en/latest/use.html#using-regexp-prompt-identifiers

docs/tutorials/intro.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,8 @@ Environment Variables
6565
A number of environment variables affect the operation of channel access. These
6666
can be set using the `os.environ` dictionary -- but note that these need to be
6767
set *before* loading the `aioca` module. The following are documented in the
68-
`EPICS channel access developers manual
69-
<http://www.aps.anl.gov/epics/EpicsDocumentation/AppDevManuals/ChannelAccess/cadoc_4.htm>`_.
68+
`EPICS Channel Access Reference Manual
69+
<https://epics.anl.gov/base/R3-14/12-docs/CAref.html>`_.
7070

7171

7272
``EPICS_CA_MAX_ARRAY_BYTES``

0 commit comments

Comments
 (0)