Davide Pesavento | b310efb | 2019-04-11 22:10:24 -0400 | [diff] [blame] | 1 | # Configuration file for the Sphinx documentation builder. |
Alexander Afanasyev | 7c6aeb0 | 2014-04-10 19:59:19 -0700 | [diff] [blame] | 2 | # |
Davide Pesavento | b310efb | 2019-04-11 22:10:24 -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 | fa33f8d | 2020-09-19 18:48:42 -0400 | [diff] [blame] | 5 | # https://www.sphinx-doc.org/en/master/usage/configuration.html |
Alexander Afanasyev | 7c6aeb0 | 2014-04-10 19:59:19 -0700 | [diff] [blame] | 6 | |
Davide Pesavento | b310efb | 2019-04-11 22:10:24 -0400 | [diff] [blame] | 7 | # -- Path setup -------------------------------------------------------------- |
Alexander Afanasyev | 7c6aeb0 | 2014-04-10 19:59:19 -0700 | [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 | b310efb | 2019-04-11 22:10:24 -0400 | [diff] [blame] | 12 | # |
Davide Pesavento | ab7300b | 2020-04-09 00:51:41 -0400 | [diff] [blame] | 13 | # import os |
Davide Pesavento | b310efb | 2019-04-11 22:10:24 -0400 | [diff] [blame] | 14 | import sys |
| 15 | # sys.path.insert(0, os.path.abspath('.')) |
Alexander Afanasyev | 7c6aeb0 | 2014-04-10 19:59:19 -0700 | [diff] [blame] | 16 | |
Davide Pesavento | b310efb | 2019-04-11 22:10:24 -0400 | [diff] [blame] | 17 | |
| 18 | # -- Project information ----------------------------------------------------- |
| 19 | |
| 20 | project = u'ndn-cxx: NDN C++ library with eXperimental eXtensions' |
Davide Pesavento | ab7300b | 2020-04-09 00:51:41 -0400 | [diff] [blame] | 21 | copyright = u'Copyright © 2013-2020 Regents of the University of California.' |
Davide Pesavento | b310efb | 2019-04-11 22:10:24 -0400 | [diff] [blame] | 22 | author = u'Named Data Networking Project' |
| 23 | |
Davide Pesavento | 933a567 | 2020-07-03 22:32:43 -0400 | [diff] [blame] | 24 | # The short X.Y version. |
Davide Pesavento | b310efb | 2019-04-11 22:10:24 -0400 | [diff] [blame] | 25 | #version = '' |
| 26 | |
Davide Pesavento | 933a567 | 2020-07-03 22:32:43 -0400 | [diff] [blame] | 27 | # The full version, including alpha/beta/rc tags. |
Davide Pesavento | b310efb | 2019-04-11 22:10:24 -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 --------------------------------------------------- |
Alexander Afanasyev | 7c6aeb0 | 2014-04-10 19:59:19 -0700 | [diff] [blame] | 38 | |
| 39 | # If your documentation needs a minimal Sphinx version, state it here. |
Davide Pesavento | b310efb | 2019-04-11 22:10:24 -0400 | [diff] [blame] | 40 | # |
Davide Pesavento | 933a567 | 2020-07-03 22:32:43 -0400 | [diff] [blame] | 41 | needs_sphinx = '1.3' |
Alexander Afanasyev | 7c6aeb0 | 2014-04-10 19:59:19 -0700 | [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 | b310efb | 2019-04-11 22:10:24 -0400 | [diff] [blame] | 47 | 'sphinx.ext.extlinks', |
Alexander Afanasyev | 7c6aeb0 | 2014-04-10 19:59:19 -0700 | [diff] [blame] | 48 | 'sphinx.ext.todo', |
| 49 | ] |
| 50 | |
Alexander Afanasyev | 9b0e114 | 2014-05-08 00:17:34 -0700 | [diff] [blame] | 51 | def addExtensionIfExists(extension): |
| 52 | try: |
| 53 | __import__(extension) |
| 54 | extensions.append(extension) |
Alexander Afanasyev | fff47d6 | 2014-05-11 19:24:46 -0700 | [diff] [blame] | 55 | except ImportError: |
Davide Pesavento | b310efb | 2019-04-11 22:10:24 -0400 | [diff] [blame] | 56 | sys.stderr.write("Extension '%s' not found. " |
Alexander Afanasyev | 9b0e114 | 2014-05-08 00:17:34 -0700 | [diff] [blame] | 57 | "Some documentation may not build correctly.\n" % extension) |
Alexander Afanasyev | 9b0e114 | 2014-05-08 00:17:34 -0700 | [diff] [blame] | 58 | |
Davide Pesavento | d776a93 | 2020-03-20 18:42:36 -0400 | [diff] [blame] | 59 | addExtensionIfExists('sphinxcontrib.doxylink') |
Alexander Afanasyev | 9b0e114 | 2014-05-08 00:17:34 -0700 | [diff] [blame] | 60 | |
Alexander Afanasyev | 7c6aeb0 | 2014-04-10 19:59:19 -0700 | [diff] [blame] | 61 | # The master toctree document. |
| 62 | master_doc = 'index' |
| 63 | |
Davide Pesavento | b310efb | 2019-04-11 22:10:24 -0400 | [diff] [blame] | 64 | # Add any paths that contain templates here, relative to this directory. |
| 65 | templates_path = ['_templates'] |
Alexander Afanasyev | 7c6aeb0 | 2014-04-10 19:59:19 -0700 | [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 | b310efb | 2019-04-11 22:10:24 -0400 | [diff] [blame] | 69 | # This pattern also affects html_static_path and html_extra_path. |
Alexander Afanasyev | 7c6aeb0 | 2014-04-10 19:59:19 -0700 | [diff] [blame] | 70 | exclude_patterns = [] |
| 71 | |
Alexander Afanasyev | 7c6aeb0 | 2014-04-10 19:59:19 -0700 | [diff] [blame] | 72 | |
Davide Pesavento | b310efb | 2019-04-11 22:10:24 -0400 | [diff] [blame] | 73 | # -- Options for HTML output ------------------------------------------------- |
Alexander Afanasyev | 7c6aeb0 | 2014-04-10 19:59:19 -0700 | [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 | b310efb | 2019-04-11 22:10:24 -0400 | [diff] [blame] | 77 | # |
Alexander Afanasyev | 7c6aeb0 | 2014-04-10 19:59:19 -0700 | [diff] [blame] | 78 | html_theme = 'named_data_theme' |
| 79 | |
Alexander Afanasyev | 7c6aeb0 | 2014-04-10 19:59:19 -0700 | [diff] [blame] | 80 | # Add any paths that contain custom themes here, relative to this directory. |
Davide Pesavento | b310efb | 2019-04-11 22:10:24 -0400 | [diff] [blame] | 81 | html_theme_path = ['.'] |
Alexander Afanasyev | 7c6aeb0 | 2014-04-10 19:59:19 -0700 | [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". |
| 86 | html_static_path = ['_static'] |
| 87 | |
Davide Pesavento | fa33f8d | 2020-09-19 18:48:42 -0400 | [diff] [blame] | 88 | html_copy_source = False |
| 89 | html_show_sourcelink = False |
| 90 | |
Davide Pesavento | 933a567 | 2020-07-03 22:32:43 -0400 | [diff] [blame] | 91 | # Disable syntax highlighting of code blocks by default. |
| 92 | highlight_language = 'none' |
| 93 | |
Alexander Afanasyev | 7c6aeb0 | 2014-04-10 19:59:19 -0700 | [diff] [blame] | 94 | |
Davide Pesavento | b310efb | 2019-04-11 22:10:24 -0400 | [diff] [blame] | 95 | # -- Options for LaTeX output ------------------------------------------------ |
Alexander Afanasyev | 7c6aeb0 | 2014-04-10 19:59:19 -0700 | [diff] [blame] | 96 | |
| 97 | latex_elements = { |
Davide Pesavento | b310efb | 2019-04-11 22:10:24 -0400 | [diff] [blame] | 98 | # The paper size ('letterpaper' or 'a4paper'). |
| 99 | # |
| 100 | # 'papersize': 'letterpaper', |
Alexander Afanasyev | 7c6aeb0 | 2014-04-10 19:59:19 -0700 | [diff] [blame] | 101 | |
Davide Pesavento | b310efb | 2019-04-11 22:10:24 -0400 | [diff] [blame] | 102 | # The font size ('10pt', '11pt' or '12pt'). |
| 103 | # |
| 104 | # 'pointsize': '10pt', |
Alexander Afanasyev | 7c6aeb0 | 2014-04-10 19:59:19 -0700 | [diff] [blame] | 105 | |
Davide Pesavento | b310efb | 2019-04-11 22:10:24 -0400 | [diff] [blame] | 106 | # Additional stuff for the LaTeX preamble. |
| 107 | # |
| 108 | # 'preamble': '', |
| 109 | |
| 110 | # Latex figure (float) alignment |
| 111 | # |
| 112 | # 'figure_align': 'htbp', |
Alexander Afanasyev | 7c6aeb0 | 2014-04-10 19:59:19 -0700 | [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 | b310efb | 2019-04-11 22:10:24 -0400 | [diff] [blame] | 119 | ('index', 'ndn-cxx-docs.tex', u'NDN C++ library with eXperimental eXtensions', |
| 120 | author, 'manual'), |
Alexander Afanasyev | 7c6aeb0 | 2014-04-10 19:59:19 -0700 | [diff] [blame] | 121 | ] |
| 122 | |
Alexander Afanasyev | 7c6aeb0 | 2014-04-10 19:59:19 -0700 | [diff] [blame] | 123 | |
Davide Pesavento | b310efb | 2019-04-11 22:10:24 -0400 | [diff] [blame] | 124 | # -- Options for manual page output ------------------------------------------ |
Alexander Afanasyev | 7c6aeb0 | 2014-04-10 19:59:19 -0700 | [diff] [blame] | 125 | |
| 126 | # One entry per manual page. List of tuples |
| 127 | # (source start file, name, description, authors, manual section). |
| 128 | man_pages = [ |
Davide Pesavento | b310efb | 2019-04-11 22:10:24 -0400 | [diff] [blame] | 129 | ('manpages/ndnsec', 'ndnsec', 'NDN security toolkit', None, 1), |
| 130 | ('manpages/ndnsec-cert-dump', 'ndnsec-cert-dump', 'export an NDN certificate', None, 1), |
| 131 | ('manpages/ndnsec-cert-gen', 'ndnsec-cert-gen', 'create an NDN certificate for an identity', None, 1), |
| 132 | ('manpages/ndnsec-cert-install', 'ndnsec-cert-install', 'import an NDN certificate from a file', None, 1), |
| 133 | ('manpages/ndnsec-delete', 'ndnsec-delete', 'delete an NDN identity, key, or certificate', None, 1), |
| 134 | ('manpages/ndnsec-export', 'ndnsec-export', 'export an NDN certificate and its private key to a file', None, 1), |
| 135 | ('manpages/ndnsec-get-default', 'ndnsec-get-default', 'show the default NDN identity, key, and certificate for the current user', None, 1), |
| 136 | ('manpages/ndnsec-import', 'ndnsec-import', 'import an NDN certificate and its private key from a file', None, 1), |
| 137 | ('manpages/ndnsec-key-gen', 'ndnsec-key-gen', 'generate an NDN key for an identity', None, 1), |
| 138 | ('manpages/ndnsec-list', 'ndnsec-list', 'list all known NDN identities, keys, and certificates', None, 1), |
| 139 | ('manpages/ndnsec-set-default', 'ndnsec-set-default', 'change the default NDN identity, key, or certificate for the current user', None, 1), |
| 140 | ('manpages/ndnsec-sign-req', 'ndnsec-sign-req', 'generate an NDN certificate signing request', None, 1), |
| 141 | ('manpages/ndnsec-unlock-tpm', 'ndnsec-unlock-tpm', 'unlock the TPM', None, 1), |
Davide Pesavento | ab7300b | 2020-04-09 00:51:41 -0400 | [diff] [blame] | 142 | ('manpages/ndn-client.conf', 'ndn-client.conf', 'configuration file for NDN applications', None, 5), |
Davide Pesavento | b310efb | 2019-04-11 22:10:24 -0400 | [diff] [blame] | 143 | ('manpages/ndn-log', 'ndn-log', 'ndn-cxx logging', None, 7), |
Alexander Afanasyev | 7c6aeb0 | 2014-04-10 19:59:19 -0700 | [diff] [blame] | 144 | ] |
| 145 | |
Alexander Afanasyev | 7c6aeb0 | 2014-04-10 19:59:19 -0700 | [diff] [blame] | 146 | # If true, show URL addresses after external links. |
Davide Pesavento | b310efb | 2019-04-11 22:10:24 -0400 | [diff] [blame] | 147 | #man_show_urls = True |
Alexander Afanasyev | 9b0e114 | 2014-05-08 00:17:34 -0700 | [diff] [blame] | 148 | |
| 149 | |
Davide Pesavento | b310efb | 2019-04-11 22:10:24 -0400 | [diff] [blame] | 150 | # -- Custom options ---------------------------------------------------------- |
Alexander Afanasyev | 9b0e114 | 2014-05-08 00:17:34 -0700 | [diff] [blame] | 151 | |
| 152 | doxylink = { |
Davide Pesavento | b310efb | 2019-04-11 22:10:24 -0400 | [diff] [blame] | 153 | 'ndn-cxx': ('ndn-cxx.tag', 'doxygen/'), |
| 154 | } |
| 155 | |
| 156 | extlinks = { |
| 157 | 'issue': ('https://redmine.named-data.net/issues/%s', 'issue #'), |
Alexander Afanasyev | 9b0e114 | 2014-05-08 00:17:34 -0700 | [diff] [blame] | 158 | } |