1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
Description: use local docs for intersphinx links
Author: Martin <debacle@debian.org>
Origin: vendor
Last-Update: 2025-02-25
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- a/docs/source/conf.py
+++ b/docs/source/conf.py
@@ -34,9 +34,9 @@
autoapi_dirs = ["../../matridge"]
intersphinx_mapping = {
- "python": ("https://docs.python.org/3", None),
- "slixmpp": ("https://slixmpp.readthedocs.io/en/latest/", None),
- "slidge": (f"https://slidge.im/docs/slidge/{slidge_version}/", None),
+ "python": ("/usr/share/doc/python3-doc/html", None),
+ "slixmpp": ("/usr/share/doc/python-slixmpp-doc/html", None),
+ "slidge": ("/usr/share/doc/python-slidge-doc/html", None),
}
extlinks = {"xep": ("https://xmpp.org/extensions/xep-%s.html", "XEP-%s")}
|