-
-
Notifications
You must be signed in to change notification settings - Fork 1k
/
conf.py
389 lines (329 loc) · 11.5 KB
/
conf.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
# Copyright © Michal Čihař <michal@weblate.org>
#
# SPDX-License-Identifier: GPL-3.0-or-later
# Configuration file for the Sphinx documentation builder.
#
# This file only contains a selection of the most common options. For a full
# list see the documentation:
# https://www.sphinx-doc.org/en/master/usage/configuration.html
# -- Path setup --------------------------------------------------------------
# If extensions (or modules to document with autodoc) are in another directory,
# add these directories to sys.path here. If the directory is relative to the
# documentation root, use os.path.abspath to make it absolute, like shown here.
#
import os
import sys
from pathlib import Path
from matplotlib import font_manager
# -- Path setup --------------------------------------------------------------
file_dir = Path(__file__).parent.resolve()
weblate_dir = file_dir.parent
# Our extension
sys.path.append(str(file_dir / "_ext"))
# Weblate code
sys.path.append(str(weblate_dir))
def setup(app) -> None:
# Used in Sphinx docs, needed for intersphinx links to it
app.add_object_type(
"confval",
"confval",
objname="configuration value",
indextemplate="pair: %s; configuration value",
)
font_dirs = [
str(weblate_dir / font_dir)
for font_dir in (
"weblate/static/vendor/font-source/TTF/",
"weblate/static/vendor/font-kurinto/",
)
]
font_files = font_manager.findSystemFonts(fontpaths=font_dirs)
for font_file in font_files:
font_manager.fontManager.addfont(font_file)
# -- Project information -----------------------------------------------------
project = "Weblate"
project_copyright = "Michal Čihař"
author = "Michal Čihař"
# The full version, including alpha/beta/rc tags
release = "5.8.2"
# -- General configuration ---------------------------------------------------
# Add any Sphinx extension module names here, as strings. They can be
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
# ones.
extensions = [
"djangodocs",
"sphinxcontrib.httpdomain",
"sphinx.ext.autodoc",
"sphinx.ext.graphviz",
"sphinx.ext.intersphinx",
"sphinx-jsonschema",
"sphinx_copybutton",
"sphinxext.opengraph",
]
# Add any paths that contain templates here, relative to this directory.
templates_path = ["_templates"]
# List of patterns, relative to source directory, that match files and
# directories to ignore when looking for source files.
# This pattern also affects html_static_path and html_extra_path.
exclude_patterns = [
"_build",
"Thumbs.db",
".DS_Store",
"admin/install/steps/*.rst",
"devel/reporting-example.rst",
]
ogp_social_cards = {
"image": "../weblate/static/logo-1024.png",
"line_color": "#144d3f",
"site_url": "docs.weblate.org",
"font": ["Source Sans 3", "Kurinto Sans"],
}
ogp_custom_meta_tags = [
'<meta property="fb:app_id" content="741121112629028" />',
'<meta property="fb:page_id" content="371217713079025" />',
'<meta name="twitter:site" content="@WeblateOrg" />',
]
# -- Options for HTML output -------------------------------------------------
# The theme to use for HTML and HTML Help pages. See the documentation for
# a list of builtin themes.
#
# html_theme = "sphinx_rtd_theme"
html_theme = "furo"
# Define the canonical URL if you are using a custom domain on Read the Docs
html_baseurl = os.environ.get("READTHEDOCS_CANONICAL_URL", "")
# Tell Jinja2 templates the build is running on Read the Docs
if os.environ.get("READTHEDOCS", "") == "True":
if "html_context" not in globals():
html_context = {}
html_context["READTHEDOCS"] = True
# Add any paths that contain custom static files (such as style sheets) here,
# relative to this directory. They are copied after the builtin static files,
# so a file named "default.css" will overwrite the builtin "default.css".
html_static_path = ["../weblate/static/"]
html_logo = "../weblate/static/logo-128.png"
html_theme_options = {
"source_repository": "https://github.com/WeblateOrg/weblate/",
"source_branch": "main",
"source_directory": "docs/",
"dark_css_variables": {
"font-stack": '"Source Sans 3", sans-serif',
"font-stack--monospace": '"Source Code Pro", monospace',
"color-brand-primary": "#1fa385",
"color-brand-content": "#1fa385",
},
"light_css_variables": {
"font-stack": '"Source Sans 3", sans-serif',
"font-stack--monospace": '"Source Code Pro", monospace',
"color-brand-primary": "#1fa385",
"color-brand-content": "#1fa385",
},
}
html_css_files = [
"https://s.weblate.org/cdn/font-source/source-sans-3.css",
"https://s.weblate.org/cdn/font-source/source-code-pro.css",
]
# -- Options for HTMLHelp output ---------------------------------------------
# Output file base name for HTML help builder.
htmlhelp_basename = "Weblatedoc"
# -- Options for LaTeX output ------------------------------------------------
PREAMBLE = r"""
\pagestyle{fancy}
\setcounter{tocdepth}{1}
\usepackage{hyperref}
"""
latex_elements = {
# The paper size ('letterpaper' or 'a4paper').
"papersize": "a4paper",
# The font size ('10pt', '11pt' or '12pt').
# 'pointsize': '10pt',
# Additional stuff for the LaTeX preamble.
"preamble": PREAMBLE,
# Avoid opening chapter only on even pages
"extraclassoptions": "openany",
# Latex figure (float) alignment
# 'figure_align': 'htbp',
}
# Grouping the document tree into LaTeX files. List of tuples
# (source start file, target name, title,
# author, documentclass [howto, manual, or own class]).
latex_documents = [
("latexindex", "Weblate.tex", "The Weblate Manual", author, "manual")
]
# Include logo on title page
latex_logo = "../weblate/static/logo-1024.png"
# Use xelatex engine for better unicode support
latex_engine = "xelatex"
# Disable using xindy as it does not work on readthedocs.org
latex_use_xindy = False
# -- Options for manual page output ------------------------------------------
# One entry per manual page. List of tuples
# (source start file, name, description, authors, manual section).
man_pages = [("wlc", "wlc", "Weblate Client Documentation", [author], 1)]
# -- Options for Texinfo output ----------------------------------------------
# Grouping the document tree into Texinfo files. List of tuples
# (source start file, target name, title, author,
# dir menu entry, description, category)
texinfo_documents = [
(
"index",
"Weblate",
project,
author,
"Weblate",
"One line description of project.",
"Miscellaneous",
)
]
# -- Options for Epub output -------------------------------------------------
# Bibliographic Dublin Core info.
epub_title = project
epub_author = author
epub_publisher = author
epub_copyright = project_copyright
# The unique identifier of the text. This can be a ISBN number
# or the project homepage.
#
# epub_identifier = ''
# A unique identification for the text.
#
# epub_uid = ''
# A list of files that should not be packed into the epub file.
epub_exclude_files = ["search.html"]
graphviz_output_format = "svg"
# Use localized Python docs on Read the Docs build
rtd_lang = os.environ.get("READTHEDOCS_LANGUAGE")
python_doc_url = "https://docs.python.org/3/"
if rtd_lang == "pt_BR":
python_doc_url = "https://docs.python.org/pt-br/3/"
elif rtd_lang in {"es", "fr", "ja", "ko", "tr"}:
python_doc_url = f"https://docs.python.org/{rtd_lang}/3/"
elif rtd_lang == "zh_CN":
python_doc_url = "https://docs.python.org/zh-cn/3/"
elif rtd_lang == "zh_TW":
python_doc_url = "https://docs.python.org/zh-tw/3/"
django_doc_url = "https://docs.djangoproject.com/en/stable/"
if rtd_lang in {"el", "es", "fr", "id", "ja", "ko", "pl"}:
django_doc_url = f"https://docs.djangoproject.com/{rtd_lang}/stable/"
elif rtd_lang == "pt_BR":
django_doc_url = "https://docs.djangoproject.com/pt-br/stable/"
elif rtd_lang == "zh_CN":
django_doc_url = "https://docs.djangoproject.com/zh-hans/stable/"
sphinx_doc_url = "https://www.sphinx-doc.org/en/master/"
if rtd_lang in {
"ar",
"ca",
"de",
"ru",
"es",
"fr",
"it",
"ja",
"ko",
"pl",
"pt_BR",
"sr",
"zh_CN",
"zh_TW",
}:
sphinx_doc_url = f"https://www.sphinx-doc.org/{rtd_lang}/master/"
# Configuration for intersphinx
intersphinx_mapping = {
"python": (python_doc_url, None),
"django": (django_doc_url, f"{django_doc_url}_objects/"),
"psa": ("https://python-social-auth.readthedocs.io/en/latest/", None),
"tt": (
"http://docs.translatehouse.org/projects/translate-toolkit/en/latest/",
None,
),
"amagama": ("https://docs.translatehouse.org/projects/amagama/en/latest/", None),
"virtaal": ("http://docs.translatehouse.org/projects/virtaal/en/latest/", None),
"ldap": ("https://django-auth-ldap.readthedocs.io/en/latest/", None),
"celery": ("https://docs.celeryq.dev/en/stable/", None),
"sphinx": (sphinx_doc_url, None),
"rtd": ("https://docs.readthedocs.io/en/latest/", None),
"venv": ("https://virtualenv.pypa.io/en/stable/", None),
"borg": ("https://borgbackup.readthedocs.io/en/stable/", None),
"pip": ("https://pip.pypa.io/en/stable/", None),
"compressor": ("https://django-compressor.readthedocs.io/en/stable/", None),
}
intersphinx_disabled_reftypes = ["*"]
# Ignore missing targets for the http:obj <type>, it's how we declare the types
# for input/output fields in the API docs.
nitpick_ignore = [
("http:obj", "array"),
("http:obj", "boolean"),
("http:obj", "int"),
("http:obj", "float"),
("http:obj", "object"),
("http:obj", "string"),
("http:obj", "timestamp"),
("http:obj", "file"),
]
# Number of retries and timeout for linkcheck
linkcheck_retries = 10
linkcheck_timeout = 10
linkcheck_ignore = [
# Local URL to Weblate
"http://127.0.0.1:8080/",
# Requires a valid token
"https://api.deepl.com/v2/translate",
# Requires authentication
"https://gitlab.com/profile/applications",
# Anchors are used to specify channel name here
"https://web.libera.chat/#",
# Site is unreliable
"https://docwiki.embarcadero.com/",
# Example URL
"https://my-instance.openai.azure.com",
# 403 for linkcheck
"https://docs.github.com/",
"https://translate.yandex.com/",
# These are PDF and fails with Unicode decode error
"http://ftp.pwg.org/",
# Access to our service has been temporarily blocked
"https://yandex.com/dev/translate/",
# 403
"https://openai.com/",
"https://platform.openai.com/api-keys",
"https://platform.openai.com/docs/models",
"https://translate.systran.net/en/account",
# Seems unstable
"https://pagure.io/",
"https://azure.microsoft.com/en-us/products/ai-services/ai-translator",
]
# HTTP docs
http_index_ignore_prefixes = ["/api/"]
http_strict_mode = True
# Autodocs
autodoc_mock_imports = [
"django",
"celery",
"sentry_sdk",
"crispy_forms",
"weblate.utils.errors",
"weblate.trans.discovery",
"weblate.checks.models",
"weblate.trans.forms",
"weblate.addons.forms",
"weblate.trans.tasks",
"dateutil",
"filelock",
"redis_lock",
"django_redis",
"lxml",
"translate",
"siphashc",
"git",
"PIL",
"borg",
"appconf",
"weblate.addons.models",
"weblate.trans.models",
"weblate.lang.models",
"weblate.vcs.git",
"weblate.utils.files",
"weblate.utils.validators",
]
# Create single gettext PO file for while documentation,
# instead of having one file per chapter.
gettext_compact = "docs"