Skip to content

Commit 966a9ca

Browse files
committed
SWPROT-8953: docs: Adjust from unify to zpc
Use plantuml system (LSB) path if not overloaded Use default zpc main docs file, until relocated elsewhere, currently it is aligned to unify conventions. It is preparing the day the desired version plantuml land in most distros (see related links) The alternative would be to port the sources to widely available version. Relate-to: https://repology.org/project/plantuml/versions Signed-off-by: Philippe Coval <[email protected]>
1 parent db446d0 commit 966a9ca

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

doc/conf.py

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -72,12 +72,12 @@ class mqtt_lexer(RegexLexer):
7272
# -- Project information -----------------------------------------------------
7373
# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information
7474

75-
project = "Unify"
76-
copyright = "Copyright © 2023 Silicon Laboratories. All rights reserved."
75+
project = "Z-Wave-Protocol-Controller"
76+
copyright = "Copyright © 2025 Silicon Laboratories. All rights reserved."
7777
author = "Silicon Labs"
7878
language = "en"
7979

80-
root_doc = "doc/introduction"
80+
root_doc = "doc/protocol/zwave/zpc_introduction"
8181

8282
# -- General configuration ---------------------------------------------------
8383
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
@@ -140,9 +140,9 @@ class mqtt_lexer(RegexLexer):
140140
"tasklist",
141141
]
142142

143-
# setup plantuml plugin
144-
plantuml = "java -jar " + os.environ["PLANTUML_JAR_PATH"]
145-
143+
# setup plantuml plugin, fallback to LSB location
144+
plantuml = os.environ.get("PLANTUML_JAR_PATH", "/usr/share/plantuml/plantuml.jar")
145+
plantuml = "java -jar " + plantuml
146146

147147
# -- Options for HTML output -------------------------------------------------
148148
# https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output
@@ -151,10 +151,10 @@ class mqtt_lexer(RegexLexer):
151151
html_js_files = ["js/charenc.js", "js/crypt.js", "js/sha1.js", "js/html5-qrcode.min.js", "js/qr_code_scanner.js"]
152152
html_css_files = ["custom_styles.css"]
153153
html_logo = "doxygen/assets/silicon-labs-logo.png"
154-
html_title = "Unify Host SDK"
155-
html_baseurl = "https://siliconlabs.github.io/UnifySDK"
154+
html_title = "Z-Wave-Protocol-Controller"
155+
html_baseurl = "https://SiliconLabsSoftware.github.io/z-wave-protocol-controller"
156156

157-
releases_github_path = "SiliconLabs/UnifySDK"
157+
releases_github_path = "SiliconLabsSoftware/z-wave-protocol-controller"
158158

159159
# -- Options for figures and tables (https://www.sphinx-doc.org/en/master/usage/configuration.html)
160160
numfig = True

0 commit comments

Comments
 (0)