File: use-local-docs-for-intersphinx-links.patch

package info (click to toggle)
slidge-matridge 0.3.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 772 kB
  • sloc: python: 1,932; xml: 127; makefile: 16
file content (21 lines) | stat: -rw-r--r-- 795 bytes parent folder | download | duplicates (2)
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")}