Davide Pesavento | 786a7f2 | 2019-04-14 17:18:14 -0400 | [diff] [blame] | 1 | # Configuration file for the Sphinx documentation builder. |
| 2 | # |
| 3 | # This file only contains a selection of the most common options. For a full |
| 4 | # list see the documentation: |
Davide Pesavento | a420e97 | 2021-02-25 00:56:25 -0500 | [diff] [blame] | 5 | # https://www.sphinx-doc.org/en/master/usage/configuration.html |
Junxiao Shi | 2219a05 | 2015-05-28 02:53:48 -0700 | [diff] [blame] | 6 | |
Davide Pesavento | 786a7f2 | 2019-04-14 17:18:14 -0400 | [diff] [blame] | 7 | # -- Path setup -------------------------------------------------------------- |
| 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. |
| 12 | # |
| 13 | # import os |
| 14 | # import sys |
| 15 | # sys.path.insert(0, os.path.abspath('.')) |
| 16 | |
| 17 | |
| 18 | # -- Project information ----------------------------------------------------- |
| 19 | |
| 20 | project = u'NDN Essential Tools' |
Davide Pesavento | 96412a1 | 2022-03-05 13:34:23 -0500 | [diff] [blame^] | 21 | copyright = u'Copyright © 2014-2022 Named Data Networking Project.' |
Davide Pesavento | 786a7f2 | 2019-04-14 17:18:14 -0400 | [diff] [blame] | 22 | author = u'Named Data Networking Project' |
| 23 | |
Davide Pesavento | a420e97 | 2021-02-25 00:56:25 -0500 | [diff] [blame] | 24 | # The short X.Y version. |
Davide Pesavento | 786a7f2 | 2019-04-14 17:18:14 -0400 | [diff] [blame] | 25 | #version = '' |
| 26 | |
Davide Pesavento | a420e97 | 2021-02-25 00:56:25 -0500 | [diff] [blame] | 27 | # The full version, including alpha/beta/rc tags. |
Davide Pesavento | 786a7f2 | 2019-04-14 17:18:14 -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 --------------------------------------------------- |
| 38 | |
| 39 | # If your documentation needs a minimal Sphinx version, state it here. |
| 40 | # |
Davide Pesavento | a420e97 | 2021-02-25 00:56:25 -0500 | [diff] [blame] | 41 | needs_sphinx = '1.3' |
Davide Pesavento | 786a7f2 | 2019-04-14 17:18:14 -0400 | [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 = [ |
| 47 | ] |
| 48 | |
| 49 | # The master toctree document. |
Alexander Afanasyev | d230073 | 2016-05-04 16:45:14 -0700 | [diff] [blame] | 50 | master_doc = 'index' |
| 51 | |
Davide Pesavento | a420e97 | 2021-02-25 00:56:25 -0500 | [diff] [blame] | 52 | # Add any paths that contain templates here, relative to this directory. |
| 53 | templates_path = ['_templates'] |
| 54 | |
| 55 | # List of patterns, relative to source directory, that match files and |
| 56 | # directories to ignore when looking for source files. |
| 57 | # This pattern also affects html_static_path and html_extra_path. |
| 58 | exclude_patterns = ['Thumbs.db', '.DS_Store'] |
| 59 | |
Davide Pesavento | 786a7f2 | 2019-04-14 17:18:14 -0400 | [diff] [blame] | 60 | |
| 61 | # -- Options for manual page output ------------------------------------------ |
Junxiao Shi | 2219a05 | 2015-05-28 02:53:48 -0700 | [diff] [blame] | 62 | |
| 63 | # One entry per manual page. List of tuples |
| 64 | # (source start file, name, description, authors, manual section). |
| 65 | man_pages = [ |
Davide Pesavento | a1a9d70 | 2020-03-29 00:58:15 -0400 | [diff] [blame] | 66 | ('ndnpeek', 'ndnpeek', 'simple consumer to send one Interest and receive one Data', [], 1), |
| 67 | ('ndnpoke', 'ndnpoke', 'simple producer to publish one Data', [], 1), |
| 68 | ('ndnping', 'ndnping', 'reachability testing client', [], 1), |
| 69 | ('ndnpingserver', 'ndnpingserver', 'reachability testing server', [], 1), |
| 70 | ('ndnputchunks', 'ndnputchunks', 'producer program with content segmentation', [], 1), |
| 71 | ('ndndump', 'ndndump', 'traffic analysis tool', [], 8), |
| 72 | ('ndn-dissect', 'ndn-dissect', 'NDN packet format inspector', [], 1), |
Junxiao Shi | 2219a05 | 2015-05-28 02:53:48 -0700 | [diff] [blame] | 73 | ] |
Davide Pesavento | 786a7f2 | 2019-04-14 17:18:14 -0400 | [diff] [blame] | 74 | |
| 75 | # If true, show URL addresses after external links. |
| 76 | #man_show_urls = True |