Davide Pesavento | 133067f | 2020-04-02 22:08:27 -0400 | [diff] [blame] | 1 | # Configuration file for the Sphinx documentation builder. |
Ashlesh Gawande | 0b2897e | 2018-06-20 14:40:47 -0500 | [diff] [blame] | 2 | # |
Davide Pesavento | 133067f | 2020-04-02 22:08:27 -0400 | [diff] [blame] | 3 | # This file only contains a selection of the most common options. For a full |
| 4 | # list see the documentation: |
Davide Pesavento | 5118959 | 2021-10-02 22:34:34 -0400 | [diff] [blame^] | 5 | # https://www.sphinx-doc.org/en/master/usage/configuration.html |
Ashlesh Gawande | 0b2897e | 2018-06-20 14:40:47 -0500 | [diff] [blame] | 6 | |
Davide Pesavento | 133067f | 2020-04-02 22:08:27 -0400 | [diff] [blame] | 7 | # -- Path setup -------------------------------------------------------------- |
Ashlesh Gawande | 0b2897e | 2018-06-20 14:40:47 -0500 | [diff] [blame] | 8 | |
| 9 | # If extensions (or modules to document with autodoc) are in another directory, |
| 10 | # add these directories to sys.path here. If the directory is relative to the |
| 11 | # documentation root, use os.path.abspath to make it absolute, like shown here. |
Davide Pesavento | 133067f | 2020-04-02 22:08:27 -0400 | [diff] [blame] | 12 | # |
| 13 | # import os |
| 14 | import sys |
| 15 | # sys.path.insert(0, os.path.abspath('.')) |
Ashlesh Gawande | 0b2897e | 2018-06-20 14:40:47 -0500 | [diff] [blame] | 16 | |
Davide Pesavento | 133067f | 2020-04-02 22:08:27 -0400 | [diff] [blame] | 17 | |
| 18 | # -- Project information ----------------------------------------------------- |
| 19 | |
| 20 | project = u'PSync: Full/Partial Synchronization Protocol for NDN' |
Davide Pesavento | 5118959 | 2021-10-02 22:34:34 -0400 | [diff] [blame^] | 21 | copyright = u'Copyright © 2018-2021 Named Data Networking Project.' |
Davide Pesavento | 133067f | 2020-04-02 22:08:27 -0400 | [diff] [blame] | 22 | author = u'Named Data Networking Project' |
| 23 | |
Davide Pesavento | 5118959 | 2021-10-02 22:34:34 -0400 | [diff] [blame^] | 24 | # The short X.Y version. |
Davide Pesavento | 133067f | 2020-04-02 22:08:27 -0400 | [diff] [blame] | 25 | #version = '' |
| 26 | |
Davide Pesavento | 5118959 | 2021-10-02 22:34:34 -0400 | [diff] [blame^] | 27 | # The full version, including alpha/beta/rc tags. |
Davide Pesavento | 133067f | 2020-04-02 22:08:27 -0400 | [diff] [blame] | 28 | #release = '' |
| 29 | |
| 30 | # There are two options for replacing |today|: either, you set today to some |
| 31 | # non-false value, then it is used: |
| 32 | #today = '' |
| 33 | # Else, today_fmt is used as the format for a strftime call. |
| 34 | today_fmt = '%Y-%m-%d' |
| 35 | |
| 36 | |
| 37 | # -- General configuration --------------------------------------------------- |
Ashlesh Gawande | 0b2897e | 2018-06-20 14:40:47 -0500 | [diff] [blame] | 38 | |
| 39 | # If your documentation needs a minimal Sphinx version, state it here. |
Davide Pesavento | 133067f | 2020-04-02 22:08:27 -0400 | [diff] [blame] | 40 | # |
Davide Pesavento | 5118959 | 2021-10-02 22:34:34 -0400 | [diff] [blame^] | 41 | needs_sphinx = '1.3' |
Ashlesh Gawande | 0b2897e | 2018-06-20 14:40:47 -0500 | [diff] [blame] | 42 | |
| 43 | # Add any Sphinx extension module names here, as strings. They can be |
| 44 | # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom |
| 45 | # ones. |
| 46 | extensions = [ |
Davide Pesavento | 133067f | 2020-04-02 22:08:27 -0400 | [diff] [blame] | 47 | 'sphinx.ext.extlinks', |
Ashlesh Gawande | 0b2897e | 2018-06-20 14:40:47 -0500 | [diff] [blame] | 48 | 'sphinx.ext.todo', |
| 49 | ] |
| 50 | |
| 51 | def addExtensionIfExists(extension): |
| 52 | try: |
| 53 | __import__(extension) |
| 54 | extensions.append(extension) |
| 55 | except ImportError: |
Davide Pesavento | 133067f | 2020-04-02 22:08:27 -0400 | [diff] [blame] | 56 | sys.stderr.write("Extension '%s' not found. " |
Ashlesh Gawande | 0b2897e | 2018-06-20 14:40:47 -0500 | [diff] [blame] | 57 | "Some documentation may not build correctly.\n" % extension) |
Ashlesh Gawande | 0b2897e | 2018-06-20 14:40:47 -0500 | [diff] [blame] | 58 | |
Davide Pesavento | 133067f | 2020-04-02 22:08:27 -0400 | [diff] [blame] | 59 | addExtensionIfExists('sphinxcontrib.doxylink') |
Ashlesh Gawande | 0b2897e | 2018-06-20 14:40:47 -0500 | [diff] [blame] | 60 | |
| 61 | # The master toctree document. |
| 62 | master_doc = 'index' |
| 63 | |
Davide Pesavento | 133067f | 2020-04-02 22:08:27 -0400 | [diff] [blame] | 64 | # Add any paths that contain templates here, relative to this directory. |
| 65 | templates_path = ['_templates'] |
Ashlesh Gawande | 0b2897e | 2018-06-20 14:40:47 -0500 | [diff] [blame] | 66 | |
| 67 | # List of patterns, relative to source directory, that match files and |
| 68 | # directories to ignore when looking for source files. |
Davide Pesavento | 133067f | 2020-04-02 22:08:27 -0400 | [diff] [blame] | 69 | # This pattern also affects html_static_path and html_extra_path. |
Ashlesh Gawande | 0b2897e | 2018-06-20 14:40:47 -0500 | [diff] [blame] | 70 | exclude_patterns = [] |
| 71 | |
Ashlesh Gawande | 0b2897e | 2018-06-20 14:40:47 -0500 | [diff] [blame] | 72 | |
Davide Pesavento | 133067f | 2020-04-02 22:08:27 -0400 | [diff] [blame] | 73 | # -- Options for HTML output ------------------------------------------------- |
Ashlesh Gawande | 0b2897e | 2018-06-20 14:40:47 -0500 | [diff] [blame] | 74 | |
| 75 | # The theme to use for HTML and HTML Help pages. See the documentation for |
| 76 | # a list of builtin themes. |
Davide Pesavento | 133067f | 2020-04-02 22:08:27 -0400 | [diff] [blame] | 77 | # |
Ashlesh Gawande | 0b2897e | 2018-06-20 14:40:47 -0500 | [diff] [blame] | 78 | html_theme = 'named_data_theme' |
| 79 | |
Ashlesh Gawande | 0b2897e | 2018-06-20 14:40:47 -0500 | [diff] [blame] | 80 | # Add any paths that contain custom themes here, relative to this directory. |
Davide Pesavento | 133067f | 2020-04-02 22:08:27 -0400 | [diff] [blame] | 81 | html_theme_path = ['.'] |
Ashlesh Gawande | 0b2897e | 2018-06-20 14:40:47 -0500 | [diff] [blame] | 82 | |
| 83 | # Add any paths that contain custom static files (such as style sheets) here, |
| 84 | # relative to this directory. They are copied after the builtin static files, |
| 85 | # so a file named "default.css" will overwrite the builtin "default.css". |
Ashlesh Gawande | 465d149 | 2019-01-10 15:12:01 -0600 | [diff] [blame] | 86 | html_static_path = ['_static'] |
Ashlesh Gawande | 0b2897e | 2018-06-20 14:40:47 -0500 | [diff] [blame] | 87 | |
Davide Pesavento | 5118959 | 2021-10-02 22:34:34 -0400 | [diff] [blame^] | 88 | html_copy_source = False |
| 89 | html_show_sourcelink = False |
| 90 | |
| 91 | # Disable syntax highlighting of code blocks by default. |
| 92 | highlight_language = 'none' |
| 93 | |
Ashlesh Gawande | 0b2897e | 2018-06-20 14:40:47 -0500 | [diff] [blame] | 94 | |
Davide Pesavento | 133067f | 2020-04-02 22:08:27 -0400 | [diff] [blame] | 95 | # -- Options for LaTeX output ------------------------------------------------ |
Ashlesh Gawande | 0b2897e | 2018-06-20 14:40:47 -0500 | [diff] [blame] | 96 | |
| 97 | latex_elements = { |
Davide Pesavento | 133067f | 2020-04-02 22:08:27 -0400 | [diff] [blame] | 98 | # The paper size ('letterpaper' or 'a4paper'). |
| 99 | # |
| 100 | # 'papersize': 'letterpaper', |
Ashlesh Gawande | 0b2897e | 2018-06-20 14:40:47 -0500 | [diff] [blame] | 101 | |
Davide Pesavento | 133067f | 2020-04-02 22:08:27 -0400 | [diff] [blame] | 102 | # The font size ('10pt', '11pt' or '12pt'). |
| 103 | # |
| 104 | # 'pointsize': '10pt', |
Ashlesh Gawande | 0b2897e | 2018-06-20 14:40:47 -0500 | [diff] [blame] | 105 | |
Davide Pesavento | 133067f | 2020-04-02 22:08:27 -0400 | [diff] [blame] | 106 | # Additional stuff for the LaTeX preamble. |
| 107 | # |
| 108 | # 'preamble': '', |
| 109 | |
| 110 | # Latex figure (float) alignment |
| 111 | # |
| 112 | # 'figure_align': 'htbp', |
Ashlesh Gawande | 0b2897e | 2018-06-20 14:40:47 -0500 | [diff] [blame] | 113 | } |
| 114 | |
| 115 | # Grouping the document tree into LaTeX files. List of tuples |
| 116 | # (source start file, target name, title, |
| 117 | # author, documentclass [howto, manual, or own class]). |
| 118 | latex_documents = [ |
Davide Pesavento | 133067f | 2020-04-02 22:08:27 -0400 | [diff] [blame] | 119 | ('index', 'PSync-docs.tex', u'Full/Partial Synchronization Protocol for NDN', |
| 120 | author, 'manual'), |
Ashlesh Gawande | 0b2897e | 2018-06-20 14:40:47 -0500 | [diff] [blame] | 121 | ] |
| 122 | |
Ashlesh Gawande | 0b2897e | 2018-06-20 14:40:47 -0500 | [diff] [blame] | 123 | |
Davide Pesavento | 133067f | 2020-04-02 22:08:27 -0400 | [diff] [blame] | 124 | # -- Options for manual page output ------------------------------------------ |
Ashlesh Gawande | 0b2897e | 2018-06-20 14:40:47 -0500 | [diff] [blame] | 125 | |
| 126 | # One entry per manual page. List of tuples |
| 127 | # (source start file, name, description, authors, manual section). |
| 128 | man_pages = [ |
| 129 | ] |
| 130 | |
Ashlesh Gawande | 0b2897e | 2018-06-20 14:40:47 -0500 | [diff] [blame] | 131 | # If true, show URL addresses after external links. |
Davide Pesavento | 133067f | 2020-04-02 22:08:27 -0400 | [diff] [blame] | 132 | #man_show_urls = True |
Ashlesh Gawande | 0b2897e | 2018-06-20 14:40:47 -0500 | [diff] [blame] | 133 | |
| 134 | |
Davide Pesavento | 133067f | 2020-04-02 22:08:27 -0400 | [diff] [blame] | 135 | # -- Custom options ---------------------------------------------------------- |
Ashlesh Gawande | 0b2897e | 2018-06-20 14:40:47 -0500 | [diff] [blame] | 136 | |
| 137 | doxylink = { |
Davide Pesavento | 133067f | 2020-04-02 22:08:27 -0400 | [diff] [blame] | 138 | 'PSync': ('PSync.tag', 'doxygen/'), |
Ashlesh Gawande | 0b2897e | 2018-06-20 14:40:47 -0500 | [diff] [blame] | 139 | } |
| 140 | |
Davide Pesavento | 133067f | 2020-04-02 22:08:27 -0400 | [diff] [blame] | 141 | extlinks = { |
| 142 | 'issue': ('https://redmine.named-data.net/issues/%s', 'issue #'), |
| 143 | } |