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
|
#!/usr/bin/env python3
# Copyright (c) Jupyter Development Team.
# Distributed under the terms of the Modified BSD License.
#
# JupyterLab documentation build configuration file, created by
# sphinx-quickstart on Thu Jan 4 15:10:23 2018.
#
# This file is execfile()d with the current directory set to its
# containing dir.
#
# Note that not all possible configuration values are present in this
# autogenerated file.
#
# All configuration values have a default; values that are commented out
# serve to show the default.
# 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
# sys.path.insert(0, os.path.abspath('.'))
import json
import os
import shutil
import time
from collections import ChainMap
from functools import partial
from pathlib import Path
from subprocess import check_call
from typing import List
HERE = Path(__file__).parent.resolve()
# -- 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 = [
"myst_parser",
"sphinx.ext.intersphinx",
"sphinx.ext.mathjax",
"sphinx_copybutton",
]
myst_enable_extensions = ["html_image"]
myst_heading_anchors = 3
# Add any paths that contain templates here, relative to this directory.
templates_path = ["_templates"]
# The file extensions of source files.
# Sphinx considers the files with this suffix as sources.
# The value can be a dictionary mapping file extensions to file types.
source_suffix = {".rst": "restructuredtext", ".md": "markdown"}
# The master toctree document.
master_doc = "index"
# General information about the project.
project = "JupyterLab"
copyright = f"2018-{time.localtime().tm_year}, Project Jupyter" # noqa
author = "Project Jupyter"
# 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.
_version_py = HERE.parent.parent / "jupyterlab" / "_version.py"
version_ns = {}
exec(_version_py.read_text(), version_ns) # noqa
# The short X.Y version.
version = "{0:d}.{1:d}".format(*version_ns["version_info"]) # noqa
# The full version, including alpha/beta/rc tags.
release = version_ns["__version__"]
# 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.
language = "en" # Must be set from the command line to generate various languages
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 = []
# If true, `todo` and `todoList` produce output, else they produce nothing.
todo_include_todos = False
# build js docs and stage them to the build directory
def build_api_docs(out_dir: Path):
"""build js api docs"""
docs = HERE.parent
root = docs.parent
docs_api = docs / "source" / "api"
api_index = docs_api / "index.html"
# is this an okay way to specify jlpm
# without installing jupyterlab first?
jlpm = ["node", str(root / "jupyterlab" / "staging" / "yarn.js")]
if api_index.exists():
# avoid rebuilding docs because it takes forever
# `make clean` to force a rebuild
pass
else:
check_call(jlpm, cwd=str(root)) # noqa S603
check_call([*jlpm, "build:packages"], cwd=str(root)) # noqa S603
check_call([*jlpm, "docs"], cwd=str(root)) # noqa S603
dest_dir = out_dir / "api"
if dest_dir.exists():
shutil.rmtree(str(dest_dir))
shutil.copytree(str(docs_api), str(dest_dir))
# Copy frontend files for snippet inclusion
FILES_LIST = [ # File paths should be relative to jupyterlab root folder
"packages/settingregistry/src/plugin-schema.json"
]
SNIPPETS_FOLDER = "snippets"
def copy_code_files(temp_folder: Path):
"""Copy files in the temp_folder"""
docs = HERE.parent
root = docs.parent
for file in FILES_LIST:
target = temp_folder / file
if not target.parent.exists():
target.parent.mkdir(parents=True, exist_ok=True)
shutil.copyfile(str(root / file), str(target))
# Split plugin schema to ease documentation maintenance
if file == "packages/settingregistry/src/plugin-schema.json":
schema = json.loads(Path(target).read_text())
partial_schema = ChainMap(schema.get("definitions", {}), schema.get("properties", {}))
for key in partial_schema:
fragment = target.parent / f"{key}.json"
with fragment.open("w") as f:
json.dump({key: partial_schema[key]}, f, indent=2)
IMAGES_FOLDER = "images"
AUTOMATED_SCREENSHOTS_FOLDER = "galata/test/documentation"
def copy_automated_screenshots(temp_folder: Path) -> List[Path]:
"""Copy PlayWright automated screenshots in documentation folder.
Args:
temp_folder: Target directory in which to copy the file
Returns:
List of copied files
"""
docs = HERE.parent
root = docs.parent
src = root / AUTOMATED_SCREENSHOTS_FOLDER
copied_files = []
for img in src.rglob("*.png"):
target = temp_folder / (img.name.replace("-documentation-linux", ""))
shutil.copyfile(str(img), str(target))
copied_files.append(target)
return copied_files
COMMANDS_LIST_PATH = "commands.test.ts-snapshots/commandsList-documentation-linux.json"
COMMANDS_LIST_DOC = "user/commands_list.md"
PLUGINS_LIST_PATH = "plugins.test.ts-snapshots/plugins-documentation-linux.json"
PLUGINS_LIST_DOC = "extension/plugins_list.rst"
TOKENS_LIST_PATH = "plugins.test.ts-snapshots/tokens-documentation-linux.json"
TOKENS_LIST_DOC = "extension/tokens_list.rst"
def document_commands_list(temp_folder: Path) -> None:
"""Generate the command list documentation page from application extraction."""
list_path = HERE.parent.parent / AUTOMATED_SCREENSHOTS_FOLDER / COMMANDS_LIST_PATH
commands_list = json.loads(list_path.read_text())
template = """| Command id | Label | Shortcuts |
| ---------- | ----- | --------- |
"""
for command in sorted(commands_list, key=lambda c: c["id"]):
for key in ("id", "label", "caption"):
if key not in command:
command[key] = ""
else:
command[key] = command[key].replace("\n", " ")
shortcuts = command.get("shortcuts", [])
command["shortcuts"] = (
"<kbd>" + "</kbd>, <kbd>".join(shortcuts) + "</kbd>" if len(shortcuts) else ""
)
template += "| `{id}` | {label} | {shortcuts} |\n".format(**command)
(temp_folder / COMMANDS_LIST_DOC).write_text(template)
def document_plugins_tokens_list(list_path: Path, output_path: Path) -> None:
"""Generate the plugins list documentation page from application extraction."""
items = json.loads(list_path.read_text())
template = ""
for _name, _description in items.items():
template += f"- ``{_name}``: {_description}\n"
output_path.write_text(template)
# -- 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 = "pydata_sphinx_theme"
html_logo = "_static/logo-rectangle.svg"
html_favicon = "_static/logo-icon.png"
# 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_options = {
"icon_links": [
{
"name": "jupyter.org",
"url": "https://jupyter.org",
"icon": "_static/jupyter_logo.svg",
"type": "local",
},
{
"name": "GitHub",
"url": "https://github.com/jupyterlab/jupyterlab",
"icon": "fab fa-github-square",
},
{
"name": "Discourse",
"url": "https://discourse.jupyter.org/c/jupyterlab/17",
"icon": "fab fa-discourse",
},
{
"name": "Gitter",
"url": "https://gitter.im/jupyterlab/jupyterlab",
"icon": "fab fa-gitter",
},
],
"logo": {
"image_light": "_static/logo-rectangle.svg",
"image_dark": "_static/logo-rectangle-dark.svg",
"alt_text": "JupyterLab",
},
"use_edit_page_button": True,
"navbar_align": "left",
"navbar_start": ["navbar-logo", "version-switcher"],
"navigation_with_keys": False,
"footer_start": ["copyright.html"],
"switcher": {
# Trick to get the documentation version switcher to always points to the latest version without being corrected by the integrity check;
# otherwise older versions won't list newer versions
"json_url": "/".join(
("https://jupyterlab.readthedocs.io/en", "latest", "_static/switcher.json")
),
"version_match": os.environ.get("READTHEDOCS_VERSION", "latest"),
},
}
# 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"]
# Custom sidebar templates, must be a dictionary that maps document names
# to template names.
#
# This is required for the alabaster theme
# refs: http://alabaster.readthedocs.io/en/latest/installation.html#sidebars
html_sidebars = {
"index": [], # Home page has no sidebar so there's more room for content
"**": ["sidebar-nav-bs.html"],
}
# Output for github to be used in links
html_context = {
"github_user": "jupyterlab", # Username
"github_repo": "jupyterlab", # Repo name
"github_version": "4.0.x", # Version
"doc_path": "docs/source/", # Path in the checkout to the docs root
}
# -- Options for HTMLHelp output ------------------------------------------
# Output file base name for HTML help builder.
htmlhelp_basename = "JupyterLabdoc"
# -- 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 = [
(
master_doc,
"JupyterLab.tex",
"JupyterLab Documentation",
"Project Jupyter",
"manual",
),
]
# -- Options for manual page output ---------------------------------------
# One entry per manual page. List of tuples
# (source start file, name, description, authors, manual section).
man_pages = [(master_doc, "jupyterlab", "JupyterLab 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 = [
(
master_doc,
"JupyterLab",
"JupyterLab Documentation",
author,
"JupyterLab",
"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 = 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"]
# Example configuration for intersphinx: refer to the Python standard library.
intersphinx_mapping = {"python": ("https://docs.python.org/3", None)}
def setup(app):
dest = HERE / "getting_started/changelog.md"
shutil.copy(str(HERE.parent.parent / "CHANGELOG.md"), str(dest))
app.add_css_file("css/custom.css") # may also be an URL
# Skip we are dealing with internationalization
outdir = Path(app.outdir)
if outdir.name != "gettext":
build_api_docs(outdir)
copy_code_files(Path(app.srcdir) / SNIPPETS_FOLDER)
tmp_files = copy_automated_screenshots(Path(app.srcdir) / IMAGES_FOLDER)
def clean_code_files(tmp_files, app, exception):
"""Remove temporary folder."""
try:
shutil.rmtree(str(Path(app.srcdir) / SNIPPETS_FOLDER))
except Exception: # noqa S110
pass
for f in tmp_files:
f.unlink()
src_dir = Path(app.srcdir)
document_commands_list(src_dir)
document_plugins_tokens_list(
HERE.parent.parent / AUTOMATED_SCREENSHOTS_FOLDER / PLUGINS_LIST_PATH,
src_dir / PLUGINS_LIST_DOC,
)
document_plugins_tokens_list(
HERE.parent.parent / AUTOMATED_SCREENSHOTS_FOLDER / TOKENS_LIST_PATH,
src_dir / TOKENS_LIST_DOC,
)
app.connect("build-finished", partial(clean_code_files, tmp_files))
|