conf.py 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348
  1. # -*- coding: utf-8 -*-
  2. #
  3. # FusionPBX Docs documentation build configuration file, created by
  4. # sphinx-quickstart on Tue Oct 21 23:18:47 2014.
  5. #
  6. # This file is execfile()d with the current directory set to its
  7. # containing dir.
  8. #
  9. # Note that not all possible configuration values are present in this
  10. # autogenerated file.
  11. #
  12. # All configuration values have a default; values that are commented out
  13. # serve to show the default.
  14. import sys
  15. import os
  16. # If extensions (or modules to document with autodoc) are in another directory,
  17. # add these directories to sys.path here. If the directory is relative to the
  18. # documentation root, use os.path.abspath to make it absolute, like shown here.
  19. #sys.path.insert(0, os.path.abspath('.'))
  20. # -- General configuration ------------------------------------------------
  21. # If your documentation needs a minimal Sphinx version, state it here.
  22. #needs_sphinx = '1.0'
  23. # Add any Sphinx extension module names here, as strings. They can be
  24. # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
  25. # ones.
  26. extensions = [
  27. 'sphinx.ext.autodoc', 'myst_parser', 'sphinx.ext.mathjax', 'sphinx.ext.todo',
  28. ]
  29. # Enable MyST extensions
  30. myst_enable_extensions = [
  31. "colon_fence",
  32. "replacements",
  33. "smartquotes",
  34. "substitution",
  35. "tasklist",
  36. "deflist",
  37. "dollarmath",
  38. "html_image",
  39. "attrs_block",
  40. ]
  41. html_context = {
  42. "display_github": True, # Add this line to enable GitHub link
  43. "github_user": "fusionpbx", # Replace with your GitHub username
  44. "github_repo": "fusionpbx-docs", # Replace with your repository name
  45. "github_version": "master", # 'main' or 'master', or the branch you want to link to
  46. "conf_py_path": "/source/", # Path to your conf.py file from the repo root
  47. }
  48. html_show_sourcelink = True
  49. [extensions]
  50. todo_include_todos=True
  51. # Add any paths that contain templates here, relative to this directory.
  52. templates_path = ['_templates']
  53. # The suffix of source filenames.
  54. source_suffix = ['.rst', '.md']
  55. # The encoding of source files.
  56. #source_encoding = 'utf-8-sig'
  57. # The master toctree document.
  58. master_doc = 'index'
  59. #from pygments.style import Style
  60. #from pygments.token import Keyword, Name, Comment, String, Error, \
  61. # Number, Operator, Generic
  62. #class YourStyle(Style):
  63. # default_style = ""
  64. # styles = {
  65. # Comment: 'italic #888',
  66. # Keyword: 'bold #006',
  67. # Name: '#f00',
  68. # Name.Function: '#0f0',
  69. # Name.Class: 'bold #0f0',
  70. # String: 'bg:#eee #111'
  71. # }
  72. # BEGIN MONKEY-PATCH
  73. from pygments.style import Style
  74. from pygments.token import Text, Other, Comment, Whitespace, Keyword
  75. class MyFancyStyle(Style):
  76. background_color = "#1e1e27"
  77. default_style = ""
  78. styles = {
  79. Text: "#cfbfad",
  80. Other: "#cfbfad",
  81. Keyword: "#5e8adf",
  82. Whitespace: "#434357",
  83. Comment: "#cd8b00",
  84. Comment.Preproc: "#409090",
  85. Comment.PreprocFile: "bg:#404040 #ffcd8b",
  86. Comment.Special: "#808bed",
  87. # ... snip (just more colors, you get the idea) ...
  88. }
  89. def pygments_monkeypatch_style(mod_name, cls):
  90. import sys
  91. import pygments.styles
  92. cls_name = cls.__name__
  93. mod = type(__import__("os"))(mod_name)
  94. setattr(mod, cls_name, cls)
  95. setattr(pygments.styles, mod_name, mod)
  96. sys.modules["pygments.styles." + mod_name] = mod
  97. from pygments.styles import STYLE_MAP
  98. STYLE_MAP[mod_name] = mod_name + "::" + cls_name
  99. #pygments_monkeypatch_style("my_fancy_style", MyFancyStyle)
  100. #pygments_style = "my_fancy_style"
  101. # END MONKEY-PATCH
  102. # General information about the project.
  103. project = u'FusionPBX Docs'
  104. copyright = u'2008-2022, Mark J Crane'
  105. # The version info for the project you're documenting, acts as replacement for
  106. # |version| and |release|, also used in various other places throughout the
  107. # built documents.
  108. #
  109. # The short X.Y version.
  110. version = '5.0'
  111. # The full version, including alpha/beta/rc tags.
  112. #release = '2018'
  113. # The language for content autogenerated by Sphinx. Refer to documentation
  114. # for a list of supported languages.
  115. #language = None
  116. # There are two options for replacing |today|: either, you set today to some
  117. # non-false value, then it is used:
  118. #today = ''
  119. # Else, today_fmt is used as the format for a strftime call.
  120. #today_fmt = '%B %d, %Y'
  121. # List of patterns, relative to source directory, that match files and
  122. # directories to ignore when looking for source files.
  123. exclude_patterns = ['_build']
  124. # The reST default role (used for this markup: `text`) to use for all
  125. # documents.
  126. #default_role = None
  127. # If true, '()' will be appended to :func: etc. cross-reference text.
  128. #add_function_parentheses = True
  129. # If true, the current module name will be prepended to all description
  130. # unit titles (such as .. function::).
  131. #add_module_names = True
  132. # If true, sectionauthor and moduleauthor directives will be shown in the
  133. # output. They are ignored by default.
  134. #show_authors = False
  135. # The name of the Pygments (syntax highlighting) style to use.
  136. #pygments_style = 'sphinx'
  137. # A list of ignored prefixes for module index sorting.
  138. #modindex_common_prefix = []
  139. # If true, keep warnings as "system message" paragraphs in the built documents.
  140. #keep_warnings = False
  141. # -- Options for HTML output ----------------------------------------------
  142. # The theme to use for HTML and HTML Help pages. See the documentation for
  143. # a list of builtin themes.
  144. html_theme = 'sphinx_rtd_theme'
  145. # Theme options are theme-specific and customize the look and feel of a theme
  146. # further. For a list of options available for each theme, see the
  147. # documentation.
  148. #html_theme_options = {}
  149. # Add any paths that contain custom themes here, relative to this directory.
  150. html_theme_path = ["_themes", ]
  151. # The name for this set of Sphinx documents. If None, it defaults to
  152. # "<project> v<release> documentation".
  153. #html_title = None
  154. # A shorter title for the navigation bar. Default is the same as html_title.
  155. #html_short_title = None
  156. # The name of an image file (relative to this directory) to place at the top
  157. # of the sidebar.
  158. #html_logo = "_static/images/logo.png"
  159. # The name of an image file (within the static path) to use as favicon of the
  160. # docs. This file should be a Windows icon file (.ico) being 16x16 or 32x32
  161. # pixels large.
  162. #html_favicon = None
  163. html_favicon = "_static/images/favicon.ico"
  164. # Add any paths that contain custom static files (such as style sheets) here,
  165. # relative to this directory. They are copied after the builtin static files,
  166. # so a file named "default.css" will overwrite the builtin "default.css".
  167. html_static_path = ['_static']
  168. # Add any extra paths that contain custom files (such as robots.txt or
  169. # .htaccess) here, relative to this directory. These files are copied
  170. # directly to the root of the documentation.
  171. #html_extra_path = []
  172. # If not '', a 'Last updated on:' timestamp is inserted at every page bottom,
  173. # using the given strftime format.
  174. html_last_updated_fmt = '%b %d, %Y'
  175. # If true, SmartyPants will be used to convert quotes and dashes to
  176. # typographically correct entities.
  177. #html_use_smartypants = True
  178. # Custom sidebar templates, maps document names to template names.
  179. #html_sidebars = {}
  180. # Additional templates that should be rendered to pages, maps page names to
  181. # template names.
  182. #html_additional_pages = {}
  183. # If false, no module index is generated.
  184. #html_domain_indices = True
  185. # If false, no index is generated.
  186. #html_use_index = True
  187. # If true, the index is split into individual pages for each letter.
  188. #html_split_index = False
  189. # If true, links to the reST sources are added to the pages.
  190. #html_show_sourcelink = True
  191. # If true, "Created using Sphinx" is shown in the HTML footer. Default is True.
  192. #html_show_sphinx = True
  193. # If true, "(C) Copyright ..." is shown in the HTML footer. Default is True.
  194. #html_show_copyright = True
  195. # If true, an OpenSearch description file will be output, and all pages will
  196. # contain a <link> tag referring to it. The value of this option must be the
  197. # base URL from which the finished HTML is served.
  198. #html_use_opensearch = ''
  199. # This is the file name suffix for HTML files (e.g. ".xhtml").
  200. #html_file_suffix = None
  201. # Output file base name for HTML help builder.
  202. htmlhelp_basename = 'FusionPBX0doc'
  203. # -- Options for LaTeX output ---------------------------------------------
  204. latex_elements = {
  205. # The paper size ('letterpaper' or 'a4paper').
  206. 'papersize': 'letterpaper',
  207. # The font size ('10pt', '11pt' or '12pt').
  208. #'pointsize': '10pt',
  209. # Additional stuff for the LaTeX preamble.
  210. #'preamble': '',
  211. }
  212. # Grouping the document tree into LaTeX files. List of tuples
  213. # (source start file, target name, title,
  214. # author, documentclass [howto, manual, or own class]).
  215. latex_documents = [
  216. ('index', 'FusionPBXDocs.tex', u'FusionPBX Documentation',
  217. u'Mark J Crane', 'manual'),
  218. ]
  219. # The name of an image file (relative to this directory) to place at the top of
  220. # the title page.
  221. #latex_logo = None
  222. # For "manual" documents, if this is true, then toplevel headings are parts,
  223. # not chapters.
  224. #latex_use_parts = False
  225. # If true, show page references after internal links.
  226. #latex_show_pagerefs = False
  227. # If true, show URL addresses after external links.
  228. #latex_show_urls = False
  229. # Documents to append as an appendix to all manuals.
  230. #latex_appendices = []
  231. # If false, no module index is generated.
  232. #latex_domain_indices = True
  233. # -- Options for manual page output ---------------------------------------
  234. # One entry per manual page. List of tuples
  235. # (source start file, name, description, authors, manual section).
  236. man_pages = [
  237. ('index', 'fusionpbxdocs', u'FusionPBX Documentation',
  238. [u'Mark J Crane'], 1)
  239. ]
  240. # If true, show URL addresses after external links.
  241. #man_show_urls = False
  242. # -- Options for Texinfo output -------------------------------------------
  243. # Grouping the document tree into Texinfo files. List of tuples
  244. # (source start file, target name, title, author,
  245. # dir menu entry, description, category)
  246. texinfo_documents = [
  247. ('index', 'FusionPBXDocs', u'FusionPBX Documentation',
  248. u'Mark J Crane', 'FusionPBXDocs', 'One line description of project.',
  249. 'Miscellaneous'),
  250. ]
  251. # Documents to append as an appendix to all manuals.
  252. #texinfo_appendices = []
  253. # If false, no module index is generated.
  254. #texinfo_domain_indices = True
  255. # How to display URL addresses: 'footnote', 'no', or 'inline'.
  256. #texinfo_show_urls = 'footnote'
  257. # If true, do not generate a @detailmenu in the "Top" node's menu.
  258. #texinfo_no_detailmenu = False
  259. # Markdown support
  260. from recommonmark.parser import CommonMarkParser
  261. source_parsers = {
  262. '.md': CommonMarkParser,
  263. }
  264. source_suffix = ['.rst', '.md']