forked from pydata/pydata-sphinx-theme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path__init__.py
337 lines (267 loc) · 11.6 KB
/
__init__.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
"""
Bootstrap-based sphinx theme from the PyData community
"""
import os
from sphinx.errors import ExtensionError
from bs4 import BeautifulSoup as bs
from .bootstrap_html_translator import BootstrapHTML5Translator
__version__ = "0.5.3dev0"
def add_toctree_functions(app, pagename, templatename, context, doctree):
"""Add functions so Jinja templates can add toctree objects."""
def generate_nav_html(kind, startdepth=None, **kwargs):
"""
Return the navigation link structure in HTML. Arguments are passed
to Sphinx "toctree" function (context["toctree"] below).
We use beautifulsoup to add the right CSS classes / structure for bootstrap.
See https://www.sphinx-doc.org/en/master/templating.html#toctree.
Parameters
----------
kind : ["navbar", "sidebar", "raw"]
The kind of UI element this toctree is generated for.
startdepth : int
The level of the toctree at which to start. By default, for
the navbar uses the normal toctree (`startdepth=0`), and for
the sidebar starts from the second level (`startdepth=1`).
kwargs: passed to the Sphinx `toctree` template function.
Returns
-------
HTML string (if kind in ["navbar", "sidebar"])
or BeautifulSoup object (if kind == "raw")
"""
toc_sphinx = context["toctree"](**kwargs)
soup = bs(toc_sphinx, "html.parser")
if startdepth is None:
startdepth = 1 if kind == "sidebar" else 0
# select the "active" subset of the navigation tree for the sidebar
if startdepth > 0:
selector = " ".join(
[
"li.current.toctree-l{} ul".format(i)
for i in range(1, startdepth + 1)
]
)
subset = soup.select(selector)
if not subset:
return ""
soup = bs(str(subset[0]), "html.parser")
# pair "current" with "active" since that's what we use w/ bootstrap
for li in soup("li", {"class": "current"}):
li["class"].append("active")
# Remove navbar/sidebar links to sub-headers on the page
for li in soup.select("li"):
# Remove
if li.find("a"):
href = li.find("a")["href"]
if "#" in href and href != "#":
li.decompose()
if kind == "navbar":
# Add CSS for bootstrap
for li in soup("li"):
li["class"].append("nav-item")
li.find("a")["class"].append("nav-link")
# only select li items (not eg captions)
out = "\n".join([ii.prettify() for ii in soup.find_all("li")])
elif kind == "sidebar":
# Add bootstrap classes for first `ul` items
for ul in soup("ul", recursive=False):
ul.attrs["class"] = ul.attrs.get("class", []) + ["nav", "bd-sidenav"]
out = soup.prettify()
elif kind == "raw":
out = soup
return out
def generate_toc_html(kind="html"):
"""Return the within-page TOC links in HTML."""
if "toc" not in context:
return ""
soup = bs(context["toc"], "html.parser")
# Add toc-hN + visible classes
def add_header_level_recursive(ul, level):
if ul is None:
return
if level <= (context["theme_show_toc_level"] + 1):
ul["class"] = ul.get("class", []) + ["visible"]
for li in ul("li", recursive=False):
li["class"] = li.get("class", []) + [f"toc-h{level}"]
add_header_level_recursive(li.find("ul", recursive=False), level + 1)
add_header_level_recursive(soup.find("ul"), 1)
# Add in CSS classes for bootstrap
for ul in soup("ul"):
ul["class"] = ul.get("class", []) + ["nav", "section-nav", "flex-column"]
for li in soup("li"):
li["class"] = li.get("class", []) + ["nav-item", "toc-entry"]
if li.find("a"):
a = li.find("a")
a["class"] = a.get("class", []) + ["nav-link"]
# If we only have one h1 header, assume it's a title
h1_headers = soup.select(".toc-h1")
if len(h1_headers) == 1:
title = h1_headers[0]
# If we have no sub-headers of a title then we won't have a TOC
if not title.select(".toc-h2"):
out = ""
else:
out = title.find("ul").prettify()
# Else treat the h1 headers as sections
else:
out = soup.prettify()
# Return the toctree object
if kind == "html":
return out
else:
return soup
def get_nav_object(maxdepth=None, collapse=True, includehidden=True, **kwargs):
"""Return a list of nav links that can be accessed from Jinja.
Parameters
----------
maxdepth: int
How many layers of TocTree will be returned
collapse: bool
Whether to only include sub-pages of the currently-active page,
instead of sub-pages of all top-level pages of the site.
kwargs: key/val pairs
Passed to the `toctree` Sphinx method
"""
toc_sphinx = context["toctree"](
maxdepth=maxdepth, collapse=collapse, includehidden=includehidden, **kwargs
)
soup = bs(toc_sphinx, "html.parser")
# # If no toctree is defined (AKA a single-page site), skip this
# if toctree is None:
# return []
nav_object = soup_to_python(soup, only_pages=True)
return nav_object
def get_page_toc_object():
"""Return a list of within-page TOC links that can be accessed from Jinja."""
if "toc" not in context:
return ""
soup = bs(context["toc"], "html.parser")
try:
toc_object = soup_to_python(soup, only_pages=False)
except Exception:
return []
# If there's only one child, assume we have a single "title" as top header
# so start the TOC at the first item's children (AKA, level 2 headers)
if len(toc_object) == 1:
return toc_object[0]["children"]
else:
return toc_object
def navbar_align_class():
"""Return the class that aligns the navbar based on config."""
align = context.get("theme_navbar_align", "content")
align_options = {
"content": ("col-lg-9", "mr-auto"),
"left": ("", "mr-auto"),
"right": ("", "ml-auto"),
}
if align not in align_options:
raise ValueError(
(
"Theme optione navbar_align must be one of"
f"{align_options.keys()}, got: {align}"
)
)
return align_options[align]
context["generate_nav_html"] = generate_nav_html
context["generate_toc_html"] = generate_toc_html
context["get_nav_object"] = get_nav_object
context["get_page_toc_object"] = get_page_toc_object
context["navbar_align_class"] = navbar_align_class
def soup_to_python(soup, only_pages=False):
"""
Convert the toctree html structure to python objects which can be used in Jinja.
Parameters
----------
soup : BeautifulSoup object for the toctree
only_pages : bool
Only include items for full pages in the output dictionary. Exclude
anchor links (TOC items with a URL that starts with #)
Returns
-------
nav : list of dicts
The toctree, converted into a dictionary with key/values that work
within Jinja.
"""
# toctree has this structure (caption only for toctree, not toc)
# <p class="caption">...</span></p>
# <ul>
# <li class="toctree-l1"><a href="..">..</a></li>
# <li class="toctree-l1"><a href="..">..</a></li>
# ...
def extract_level_recursive(ul, navs_list):
for li in ul.find_all("li", recursive=False):
ref = li.a
url = ref["href"]
title = "".join(map(str, ref.contents))
active = "current" in li.get("class", [])
# If we've got an anchor link, skip it if we wish
if only_pages and "#" in url and url != "#":
continue
# Converting the docutils attributes into jinja-friendly objects
nav = {}
nav["title"] = title
nav["url"] = url
nav["active"] = active
navs_list.append(nav)
# Recursively convert children as well
nav["children"] = []
ul = li.find("ul", recursive=False)
if ul:
extract_level_recursive(ul, nav["children"])
navs = []
for ul in soup.find_all("ul", recursive=False):
extract_level_recursive(ul, navs)
return navs
# -----------------------------------------------------------------------------
def setup_edit_url(app, pagename, templatename, context, doctree):
"""Add a function that jinja can access for returning the edit URL of a page."""
def get_edit_url():
"""Return a URL for an "edit this page" link."""
required_values = ["github_user", "github_repo", "github_version"]
for val in required_values:
if not context.get(val):
raise ExtensionError(
"Missing required value for `edit this page` button. "
"Add %s to your `html_context` configuration" % val
)
# Enable optional custom github url for self-hosted github instances
github_url = "https://github.com"
if context.get("github_url"):
github_url = context["github_url"]
github_user = context["github_user"]
github_repo = context["github_repo"]
github_version = context["github_version"]
file_name = f"{pagename}{context['page_source_suffix']}"
# Make sure that doc_path has a path separator only if it exists (to avoid //)
doc_path = context.get("doc_path", "")
if doc_path and not doc_path.endswith("/"):
doc_path = f"{doc_path}/"
# Build the URL for "edit this button"
url_edit = (
f"{github_url}/{github_user}/{github_repo}"
f"/edit/{github_version}/{doc_path}{file_name}"
)
return url_edit
context["get_edit_url"] = get_edit_url
# Ensure that the max TOC level is an integer
context["theme_show_toc_level"] = int(context.get("theme_show_toc_level", 1))
# -----------------------------------------------------------------------------
def get_html_theme_path():
"""Return list of HTML theme paths."""
theme_path = os.path.abspath(os.path.dirname(__file__))
return [theme_path]
def setup(app):
theme_path = get_html_theme_path()[0]
app.add_html_theme("pydata_sphinx_theme", theme_path)
app.set_translator("html", BootstrapHTML5Translator)
# Read the Docs uses ``readthedocs`` as the name of the build, and also
# uses a special "dirhtml" builder so we need to replace these both with
# our custom HTML builder
app.set_translator("readthedocs", BootstrapHTML5Translator, override=True)
app.set_translator("readthedocsdirhtml", BootstrapHTML5Translator, override=True)
app.connect("html-page-context", setup_edit_url)
app.connect("html-page-context", add_toctree_functions)
# Update templates for sidebar
pkgdir = os.path.abspath(os.path.dirname(__file__))
path_templates = os.path.join(pkgdir, "_templates")
app.config.templates_path.append(path_templates)
return {"parallel_read_safe": True, "parallel_write_safe": True}