-
Notifications
You must be signed in to change notification settings - Fork 1
/
conf.py
465 lines (370 loc) · 13.1 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
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
import os
import re
import subprocess
import sys
from datetime import datetime
sys.path.insert(0, os.path.abspath("exts"))
tags: set
try:
import pygments_anyscript
except ImportError:
raise ImportError("Please install pygments_anyscript to get AnyScript highlighting")
def tagged_commit():
"""Check if we are on a tagged commit"""
try:
output = subprocess.check_output(
["git", "describe", "--tags", "--exact-match", "HEAD"],
text=True,
stderr=subprocess.DEVNULL,
)
except subprocess.CalledProcessError:
return False
return output.strip()
if tags.has("offline"):
# offline build. e.g. for ams
pass
if not tagged_commit() and not tags.has("offline"):
tags.add("draft")
# `todo` and `todoList` produce output, else they produce nothing.
todo_include_todos = tags.has("draft")
# -- General configuration ------------------------------------------------
# If your documentation needs a minimal Sphinx version, state it here.
#
# needs_sphinx = '1.0'
# Add any Sphinx extension module names here, as strings. They can be
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
# ones.
extensions = [
"sphinx.ext.todo",
"sphinx.ext.mathjax",
"sphinx.ext.githubpages",
# 3rd party extensions
# 'sphinxcontrib.fulltoc',
"IPython.sphinxext.ipython_console_highlighting",
"sphinx.ext.intersphinx",
# 'sphinx.ext.autosectionlabel'
"myst_parser",
"sphinxext.opengraph",
"sphinx_design",
"sphinx_copybutton",
"sphinx_togglebutton",
"sphinxcontrib.youtube",
"sphinx_simplepdf",
]
myst_enable_extensions = [
"colon_fence",
"deflist",
"dollarmath",
"fieldlist",
"amsmath",
"substitution",
"linkify",
"html_image",
]
numfig = True
numfig_format = {
"figure": "Fig. %s",
"table": "Table %s",
"code-block": "Code example %s:",
"section": "Section %s",
}
# Add any paths that contain templates here, relative to this directory.
templates_path = ["_templates"]
# The suffix(es) of source filenames.
# You can specify multiple suffix as a list of string:
#
source_suffix = [".rst", ".md"]
# source_suffix = ".rst"
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
#
# This is also used if you do content translation via gettext catalogs.
# Usually you set "language" from the command line for these cases.
language = "en"
locale_dirs = ["locale/"]
gettext_compact = False
# List of patterns, relative to source directory, that match files and
# directories to ignore when looking for source files.
# This patterns also effect to html_static_path and html_extra_path
exclude_patterns = [
"_build",
"README.rst",
"Thumbs.db",
".DS_Store",
".github",
"README.md",
"galleries/*",
".pixi",
"EXLCLUDED_*",
".pytest_cache",
]
if not tags.has("future_tutorials"):
exclude_patterns.append("Tutorials_future.md")
exclude_patterns.append("Introduction_to_mechanics/*")
# The name of the Pygments (syntax highlighting) style to use.
highlight_language = "AnyScriptDoc"
pygments_style = "AnyScript"
current_year = os.environ.get("YEAR", datetime.now().year)
ams_version = os.environ.get("AMS_VERSION", "8.0.3")
if not re.match(r"^\d\.\d\.\d", ams_version):
raise ValueError("Wrong format for AMS version, environment variable")
ams_version_short = ams_version.rpartition(".")[0]
ams_version_x = ams_version_short + ".x"
ammr_version = os.environ.get("AMMR_VERSION", "3.0.3")
if not re.match(r"^\d\.\d\.\d", ammr_version):
raise ValueError("Wrong format for AMMR version, environment variable")
ammr_version_short = ammr_version.rpartition(".")[0]
rst_epilog = f"""
.. |AMS| replace:: AnyBody Modeling System™
.. |AMS_VERSION_X| replace:: {ams_version_x}
.. |AMS_VERSION| replace:: {ams_version}
.. |AMS_VERSION_SHORT| replace:: {ams_version_short}
.. |AMMR_VERSION_SHORT| replace:: {ammr_version_short}
.. |AMMR_VERSION| replace:: {ammr_version}
.. |CURRENT_YEAR| replace:: {current_year}
.. role:: python(code)
:language: python
"""
caution_old_tutorial = """
:::{admonition} **Old tutorial:**
:class: caution margin
This tutorial has not yet been updated to ver. 7 of the AnyBody Modeling System. Some concepts may have changed.
:::
"""
myst_substitutions = {
"AMS": "AnyBody Modeling System™",
"AMS_VERSION_X": ams_version_x,
"AMS_VERSION": ams_version_x,
"AMS_VERSION_SHORT": ams_version_short,
"AMMR_VERSION_SHORT": ams_version_short,
"AMMR_VERSION": ammr_version,
"CURRENT_YEAR": current_year,
"caution_old_tutorial": caution_old_tutorial,
}
no_index = r"""
.. meta::
:name=robots content=noindex: \
"""
myst_html_meta = {}
if tags.has("draft"):
rst_epilog = rst_epilog + no_index
myst_html_meta["robots"] = "noindex"
# General information about the project.
project = "AnyBody Tutorials"
copyright = f"{current_year}, AnyBody Technology"
author = "AnyBody Technology"
github_doc_root = "https://github.com/AnyBody/tutorials/tree/master"
# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
# built documents.
#
# The short X.Y version.
version = ams_version_short
# The full version, including alpha/beta/rc tags.
release = "Dev"
if current_tag := tagged_commit():
if current_tag.startswith("tutorials-"):
release = current_tag.split("-", 1)[1]
# -- Options for HTML output ----------------------------------------------
# The theme to use for HTML and HTML Help pages. See the documentation for
# a list of builtin themes.
#
html_title = "%s v%s" % (project, release)
# Theme options are theme-specific and customize the look and feel of a theme
# further. For a list of options available for each theme, see the
# documentation.
#
# html_theme = "redcloud"
# html_theme_options = {
# 'roottarget': index_doc,
# 'max_width': '1100px',
# 'minimal_width': '700px',
# 'borderless_decor': True,
# 'lighter_header_decor': False,
# 'sidebarwidth': "3.8in",
# 'fontcssurl': 'https://fonts.googleapis.com/css?family=Noticia+Text|Open+Sans|Droid+Sans+Mono',
# 'relbarbgcolor': '#999999',
# 'footerbgcolor': '#953337',
# 'sidebarlinkcolor': '#953337',
# 'headtextcolor': '#953337',
# 'headlinkcolor': '#953337',
# }
html_theme = "sphinx_book_theme"
pydata_html_theme_options = {
# "external_links": [
# {
# "url": "https://anyscript.org/ammr/",
# "name": "AMMR Documentation",
# },
# ],
"github_url": "https://github.com/anybody/tutorials/",
# "logo": {
# "text": "PyData Theme",
# "image_dark": "logo-dark.svg",
# },
"use_edit_page_button": True,
"show_toc_level": 2,
"show_nav_level": 1,
# "search_bar_position": "navbar", # TODO: Deprecated - remove in future version
# "navbar_align": "left", # [left, content, right] For testing that the navbar items align properly
# "navbar_start": ["navbar-logo"],
# "navbar_center": ["navbar-nav", "navbar-version"], # Just for testing
"navbar_end": ["theme-switcher", "navbar-icon-links"],
# "left_sidebar_end": ["custom-template.html", "sidebar-ethical-ads.html"],
# "footer_items": ["copyright", "sphinx-version", ""]
}
# html_sidebars = {
# "index": [], # Remove sidebars on landing page to save space
# }
myst_heading_anchors = 2
html_context = {
"github_user": "anybody",
"github_repo": "tutorials",
"github_version": "master",
"doc_path": ".",
}
html_theme_options = {
# "logo_only": True,
"repository_url": "https://github.com/anybody/tutorials",
"use_repository_button": False,
# "extra_navbar": 'Tutorials by <a href="https://anybodytech.com">AnyBody Technology</a>',
"home_page_in_toc": False,
"show_navbar_depth": 1,
"use_download_button": False,
"use_edit_page_button": True,
"use_issues_button": True,
"search_bar_text": "",
"pygment_light_style": "AnyScript",
"pygment_dark_style": "stata-dark",
}
# The name of an image file (relative to this directory) to place at the top
# of the sidebar.
html_logo = "_static/AnyBodyTutorials2.svg"
# The name of an image file (within the static path) to use as favicon of the
# docs. This file should be a Windows icon file (.ico) being 16x16 or 32x32
# pixels large.
html_favicon = "_static/favicon.ico"
# html_js_files = [
# 'js/custom.js',
# ]
# 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 = ["_static"]
html_css_files = [("custom.css", {"priority": 1000})]
html_copy_source = False
html_copy_source = False
# Custom sidebar templates, maps document names to template names.
# html_sidebars = {'**': ['searchbox.html', 'globaltoc.html']}
pydata_html_sidebars = {
"**": [
"search-field",
"back_to_manual.html",
"sidebar-nav-bs",
"sidebar-ethical-ads",
]
}
html_sidebars = {
"**": [
"navbar-logo.html",
"search-field.html",
"back_to_manual.html",
"sbt-sidebar-nav.html",
]
}
if not tags.has("offline"):
html_sidebars["**"].remove("back_to_manual.html")
# -- Options for HTMLHelp output ------------------------------------------
# Output file base name for HTML help builder.
htmlhelp_basename = project
# -- Options for LaTeX output ---------------------------------------------
latex_elements = {
# The paper size ('letterpaper' or 'a4paper').
#
# 'papersize': 'letterpaper',
# The font size ('10pt', '11pt' or '12pt').
#
# 'pointsize': '10pt',
# Additional stuff for the LaTeX preamble.
#
# 'preamble': '',
# 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 = [
(
"index",
"AnyBodyTutorials.tex",
"AnyBody Tutorials Documentation",
"AnyBody Tehcnology",
"manual",
)
]
# -- Options for manual page output ---------------------------------------
# One entry per manual page. List of tuples
# (source start file, name, description, authors, manual section).
man_pages = [
("index", "anybodytutorials", "AnyBody Tutorials 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",
"AnyBodyTutorials",
"AnyBody Tutorials Documentation",
author,
"AnyBodyTutorials",
"One line description of project.",
"Miscellaneous",
)
]
intersphinx_mapping = {
"python": ("https://docs.python.org/3.7", None),
"numpy": ("https://numpy.org/doc/stable", None),
"scipy": ("https://docs.scipy.org/doc/scipy/", None),
"matplotlib": ("https://matplotlib.org/stable", None),
}
if tags.has("offline"):
# Todo find a way to get intersphinx working for offline builds
intersphinx_mapping["ammr"] = (
"../../AMMR/Documentation/",
("../.inv/ammr.inv", "https://anyscript.org/ammr/objects.inv"),
)
else:
if tags.has("draft"):
intersphinx_mapping["ammr"] = ("https://anyscript.org/ammr/beta/", None)
else:
intersphinx_mapping["ammr"] = ("https://anyscript.org/ammr/", None)
# -- Options for OpenGraph Ext. ----------------------------------------------
# settings to control how the OpenGraph extension generates meta tags
ogp_site_url = "https://anyscript.org/"
ogp_site_name = "AnyScript Tutorials"
ogp_image = "https://anyscript.org/tutorials/_static/anybody_tutorials_logo.png"
ogp_use_first_image = True # if not found defaults to 'ogp_image'
user_agent = "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36"
linkcheck_ignore = [
r".*linkcheck_ignore",
"https://doi.org/10.1115/1.4037100", # asme.org prevents the linkcheck
"https://doi.org/10.1115/1.4052115", # asme.org prevents the linkcheck
"https://dx.doi.org/10.1115/1.4001678", # asme.org prevents the linkcheck
"https://dx.doi.org/10.1115/1.4029258", # asme.org prevents the linkcheck
"https://doi.org/10.1080/10255840802459412", # tandfonline sometimes blocks linkcheck
"https://doi.org/10.1080/23335432.2014.993706", # tandfonline sometimes blocks linkcheck
"https://anyscript.org/tutorials/dev/", # The dev sides can sometimes be missing.
]
linkcheck_allowed_redirects = {
"https://doi.org.*": ".*",
"https://dx.doi.org.*": ".*",
r"https://www\.sphinx-doc\.org/": r"https://www\.sphinx-doc\.org/en/master/",
r"https://www\.anybodytech\.com/anybody\.html\?fwd=.*": ".*",
r"https://www\.youtube.com/.*": r"https://consent\.youtube.com/.*",
}
def setup(app):
...