conf.py 8.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290
  1. #!/usr/bin/env python3
  2. # -*- coding: utf-8 -*-
  3. #
  4. # JupyterLab documentation build configuration file, created by
  5. # sphinx-quickstart on Thu Jan 4 15:10:23 2018.
  6. #
  7. # This file is execfile()d with the current directory set to its
  8. # containing dir.
  9. #
  10. # Note that not all possible configuration values are present in this
  11. # autogenerated file.
  12. #
  13. # All configuration values have a default; values that are commented out
  14. # serve to show the default.
  15. # If extensions (or modules to document with autodoc) are in another directory,
  16. # add these directories to sys.path here. If the directory is relative to the
  17. # documentation root, use os.path.abspath to make it absolute, like shown here.
  18. #
  19. # import os
  20. # import sys
  21. # sys.path.insert(0, os.path.abspath('.'))
  22. import os
  23. import os.path as osp
  24. import shutil
  25. from subprocess import check_call
  26. HERE = osp.abspath(osp.dirname(__file__))
  27. # -- General configuration ------------------------------------------------
  28. # If your documentation needs a minimal Sphinx version, state it here.
  29. #
  30. # needs_sphinx = '1.0'
  31. # Add any Sphinx extension module names here, as strings. They can be
  32. # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
  33. # ones.
  34. extensions = [
  35. 'myst_parser',
  36. 'sphinx.ext.intersphinx',
  37. 'sphinx.ext.mathjax',
  38. 'sphinx_copybutton'
  39. ]
  40. myst_enable_extensions = ["html_image"]
  41. # Add any paths that contain templates here, relative to this directory.
  42. templates_path = ['_templates']
  43. # The file extensions of source files.
  44. # Sphinx considers the files with this suffix as sources.
  45. # The value can be a dictionary mapping file extensions to file types.
  46. source_suffix = {
  47. '.rst': 'restructuredtext',
  48. '.md': 'markdown'
  49. }
  50. # The master toctree document.
  51. master_doc = 'index'
  52. # General information about the project.
  53. project = 'JupyterLab'
  54. copyright = '2018, Project Jupyter'
  55. author = 'Project Jupyter'
  56. # The version info for the project you're documenting, acts as replacement for
  57. # |version| and |release|, also used in various other places throughout the
  58. # built documents.
  59. _version_py = osp.join(HERE, '..', '..', 'jupyterlab', '_version.py')
  60. version_ns = {}
  61. with open(_version_py, mode='r') as version_file:
  62. exec(version_file.read(), version_ns)
  63. # The short X.Y version.
  64. version = '%i.%i' % version_ns['version_info'][:2]
  65. # The full version, including alpha/beta/rc tags.
  66. release = version_ns['__version__']
  67. # The language for content autogenerated by Sphinx. Refer to documentation
  68. # for a list of supported languages.
  69. #
  70. # This is also used if you do content translation via gettext catalogs.
  71. # Usually you set "language" from the command line for these cases.
  72. language = None
  73. # List of patterns, relative to source directory, that match files and
  74. # directories to ignore when looking for source files.
  75. # This patterns also effect to html_static_path and html_extra_path
  76. exclude_patterns = []
  77. # If true, `todo` and `todoList` produce output, else they produce nothing.
  78. todo_include_todos = False
  79. # build js docs and stage them to the build directory
  80. def build_api_docs(out_dir):
  81. """build js api docs"""
  82. docs = osp.join(HERE, os.pardir)
  83. root = osp.join(docs, os.pardir)
  84. docs_api = osp.join(docs, "api")
  85. api_index = osp.join(docs_api, "index.html")
  86. # is this an okay way to specify jlpm
  87. # without installing jupyterlab first?
  88. jlpm = ["node", osp.join(root, "jupyterlab", "staging", "yarn.js")]
  89. if osp.exists(api_index):
  90. # avoid rebuilding docs because it takes forever
  91. # `make clean` to force a rebuild
  92. print(f"already have {api_index}")
  93. else:
  94. print("Building jupyterlab API docs")
  95. check_call(jlpm, cwd=root)
  96. check_call(jlpm + ["build:packages"], cwd=root)
  97. check_call(jlpm + ["docs"], cwd=root)
  98. dest_dir = osp.join(out_dir, "api")
  99. print(f"Copying {docs_api} -> {dest_dir}")
  100. if osp.exists(dest_dir):
  101. shutil.rmtree(dest_dir)
  102. shutil.copytree(docs_api, dest_dir)
  103. # Copy frontend files for snippet inclusion
  104. FILES_LIST = [ # File paths should be relative to jupyterlab root folder
  105. 'packages/settingregistry/src/plugin-schema.json'
  106. ]
  107. SNIPPETS_FOLDER = 'snippets'
  108. def copy_code_files(temp_folder):
  109. """Copy files in the temp_folder"""
  110. docs = osp.join(HERE, os.pardir)
  111. root = osp.join(docs, os.pardir)
  112. for file in FILES_LIST:
  113. target = osp.join(temp_folder, file)
  114. if not osp.exists(osp.dirname(target)):
  115. os.makedirs(osp.dirname(target), exist_ok=True)
  116. shutil.copyfile(osp.join(root, file), target)
  117. # -- Options for HTML output ----------------------------------------------
  118. # The theme to use for HTML and HTML Help pages. See the documentation for
  119. # a list of builtin themes.
  120. #
  121. import sphinx_rtd_theme
  122. html_theme = "sphinx_rtd_theme"
  123. html_theme_path = [sphinx_rtd_theme.get_html_theme_path()]
  124. # Theme options are theme-specific and customize the look and feel of a theme
  125. # further. For a list of options available for each theme, see the
  126. # documentation.
  127. #
  128. # html_theme_options = {}
  129. # Add any paths that contain custom static files (such as style sheets) here,
  130. # relative to this directory. They are copied after the builtin static files,
  131. # so a file named "default.css" will overwrite the builtin "default.css".
  132. html_static_path = ['_static']
  133. # Custom sidebar templates, must be a dictionary that maps document names
  134. # to template names.
  135. #
  136. # This is required for the alabaster theme
  137. # refs: http://alabaster.readthedocs.io/en/latest/installation.html#sidebars
  138. html_sidebars = {
  139. '**': [
  140. 'about.html',
  141. 'navigation.html',
  142. 'relations.html', # needs 'show_related': True theme option to display
  143. 'searchbox.html',
  144. 'donate.html',
  145. ]
  146. }
  147. # Output for github to be used in links
  148. html_context = {
  149. "display_github": True, # Integrate GitHub
  150. "github_user": "jupyterlab", # Username
  151. "github_repo": "jupyterlab", # Repo name
  152. "github_version": "3.2.x", # Version
  153. "conf_py_path": "/docs/source/", # Path in the checkout to the docs root
  154. }
  155. # -- Options for HTMLHelp output ------------------------------------------
  156. # Output file base name for HTML help builder.
  157. htmlhelp_basename = 'JupyterLabdoc'
  158. # -- Options for LaTeX output ---------------------------------------------
  159. latex_elements = {
  160. # The paper size ('letterpaper' or 'a4paper').
  161. #
  162. # 'papersize': 'letterpaper',
  163. # The font size ('10pt', '11pt' or '12pt').
  164. #
  165. # 'pointsize': '10pt',
  166. # Additional stuff for the LaTeX preamble.
  167. #
  168. # 'preamble': '',
  169. # Latex figure (float) alignment
  170. #
  171. # 'figure_align': 'htbp',
  172. }
  173. # Grouping the document tree into LaTeX files. List of tuples
  174. # (source start file, target name, title,
  175. # author, documentclass [howto, manual, or own class]).
  176. latex_documents = [
  177. (master_doc, 'JupyterLab.tex', 'JupyterLab Documentation',
  178. 'Project Jupyter', 'manual'),
  179. ]
  180. # -- Options for manual page output ---------------------------------------
  181. # One entry per manual page. List of tuples
  182. # (source start file, name, description, authors, manual section).
  183. man_pages = [
  184. (master_doc, 'jupyterlab', 'JupyterLab Documentation',
  185. [author], 1)
  186. ]
  187. # -- Options for Texinfo output -------------------------------------------
  188. # Grouping the document tree into Texinfo files. List of tuples
  189. # (source start file, target name, title, author,
  190. # dir menu entry, description, category)
  191. texinfo_documents = [
  192. (master_doc, 'JupyterLab', 'JupyterLab Documentation',
  193. author, 'JupyterLab', 'One line description of project.',
  194. 'Miscellaneous'),
  195. ]
  196. # -- Options for Epub output ----------------------------------------------
  197. # Bibliographic Dublin Core info.
  198. epub_title = project
  199. epub_author = author
  200. epub_publisher = author
  201. epub_copyright = copyright
  202. # The unique identifier of the text. This can be a ISBN number
  203. # or the project homepage.
  204. #
  205. # epub_identifier = ''
  206. # A unique identification for the text.
  207. #
  208. # epub_uid = ''
  209. # A list of files that should not be packed into the epub file.
  210. epub_exclude_files = ['search.html']
  211. # Example configuration for intersphinx: refer to the Python standard library.
  212. intersphinx_mapping = {'https://docs.python.org/': None}
  213. def setup(app):
  214. dest = osp.join(HERE, 'getting_started/changelog.md')
  215. shutil.copy(osp.join(HERE, '..', '..', 'CHANGELOG.md'), dest)
  216. app.add_css_file('css/custom.css') # may also be an URL
  217. build_api_docs(app.outdir)
  218. copy_code_files(osp.join(app.srcdir, SNIPPETS_FOLDER))
  219. def clean_code_files(app, exception):
  220. """Remove temporary folder."""
  221. try:
  222. shutil.rmtree(osp.join(app.srcdir, SNIPPETS_FOLDER))
  223. except Exception as e:
  224. print(f"Fail to remove temporary snippet folder: {e}")
  225. app.connect('build-finished', clean_code_files)