Davide Pesavento | 786a7f2 | 2019-04-14 17:18:14 -0400 | [diff] [blame] | 1 | # Configuration file for the Sphinx documentation builder. |
| 2 | # |
Davide Pesavento | bd3642f | 2022-08-12 18:19:31 -0400 | [diff] [blame] | 3 | # For the full list of built-in configuration values, see the documentation: |
Davide Pesavento | a420e97 | 2021-02-25 00:56:25 -0500 | [diff] [blame] | 4 | # https://www.sphinx-doc.org/en/master/usage/configuration.html |
Junxiao Shi | 2219a05 | 2015-05-28 02:53:48 -0700 | [diff] [blame] | 5 | |
Davide Pesavento | 786a7f2 | 2019-04-14 17:18:14 -0400 | [diff] [blame] | 6 | # -- Project information ----------------------------------------------------- |
Davide Pesavento | bd3642f | 2022-08-12 18:19:31 -0400 | [diff] [blame] | 7 | # https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information |
Davide Pesavento | 786a7f2 | 2019-04-14 17:18:14 -0400 | [diff] [blame] | 8 | |
Davide Pesavento | bd3642f | 2022-08-12 18:19:31 -0400 | [diff] [blame] | 9 | project = 'NDN Essential Tools' |
Davide Pesavento | cc02c36 | 2024-04-21 16:45:05 -0400 | [diff] [blame] | 10 | copyright = 'Copyright © 2014-2024 Named Data Networking Project.' |
Davide Pesavento | bd3642f | 2022-08-12 18:19:31 -0400 | [diff] [blame] | 11 | author = 'Named Data Networking Project' |
Davide Pesavento | 786a7f2 | 2019-04-14 17:18:14 -0400 | [diff] [blame] | 12 | |
Davide Pesavento | a420e97 | 2021-02-25 00:56:25 -0500 | [diff] [blame] | 13 | # The short X.Y version. |
Davide Pesavento | 786a7f2 | 2019-04-14 17:18:14 -0400 | [diff] [blame] | 14 | #version = '' |
| 15 | |
Davide Pesavento | a420e97 | 2021-02-25 00:56:25 -0500 | [diff] [blame] | 16 | # The full version, including alpha/beta/rc tags. |
Davide Pesavento | 786a7f2 | 2019-04-14 17:18:14 -0400 | [diff] [blame] | 17 | #release = '' |
| 18 | |
| 19 | # There are two options for replacing |today|: either, you set today to some |
| 20 | # non-false value, then it is used: |
| 21 | #today = '' |
| 22 | # Else, today_fmt is used as the format for a strftime call. |
| 23 | today_fmt = '%Y-%m-%d' |
| 24 | |
| 25 | |
| 26 | # -- General configuration --------------------------------------------------- |
Davide Pesavento | bd3642f | 2022-08-12 18:19:31 -0400 | [diff] [blame] | 27 | # https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration |
Davide Pesavento | 786a7f2 | 2019-04-14 17:18:14 -0400 | [diff] [blame] | 28 | |
Davide Pesavento | bd3642f | 2022-08-12 18:19:31 -0400 | [diff] [blame] | 29 | needs_sphinx = '4.0' |
Davide Pesavento | 6b430e9 | 2022-09-18 18:16:02 -0400 | [diff] [blame] | 30 | extensions = [] |
Davide Pesavento | 786a7f2 | 2019-04-14 17:18:14 -0400 | [diff] [blame] | 31 | |
Davide Pesavento | a420e97 | 2021-02-25 00:56:25 -0500 | [diff] [blame] | 32 | templates_path = ['_templates'] |
Davide Pesavento | 3d7b033 | 2022-10-05 15:30:02 -0400 | [diff] [blame] | 33 | exclude_patterns = ['Thumbs.db', '.DS_Store'] |
Davide Pesavento | a420e97 | 2021-02-25 00:56:25 -0500 | [diff] [blame] | 34 | |
Davide Pesavento | 786a7f2 | 2019-04-14 17:18:14 -0400 | [diff] [blame] | 35 | |
| 36 | # -- Options for manual page output ------------------------------------------ |
Davide Pesavento | bd3642f | 2022-08-12 18:19:31 -0400 | [diff] [blame] | 37 | # https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-manual-page-output |
Junxiao Shi | 2219a05 | 2015-05-28 02:53:48 -0700 | [diff] [blame] | 38 | |
| 39 | # One entry per manual page. List of tuples |
| 40 | # (source start file, name, description, authors, manual section). |
| 41 | man_pages = [ |
Davide Pesavento | a1a9d70 | 2020-03-29 00:58:15 -0400 | [diff] [blame] | 42 | ('ndnpeek', 'ndnpeek', 'simple consumer to send one Interest and receive one Data', [], 1), |
| 43 | ('ndnpoke', 'ndnpoke', 'simple producer to publish one Data', [], 1), |
| 44 | ('ndnping', 'ndnping', 'reachability testing client', [], 1), |
| 45 | ('ndnpingserver', 'ndnpingserver', 'reachability testing server', [], 1), |
| 46 | ('ndnputchunks', 'ndnputchunks', 'producer program with content segmentation', [], 1), |
| 47 | ('ndndump', 'ndndump', 'traffic analysis tool', [], 8), |
| 48 | ('ndn-dissect', 'ndn-dissect', 'NDN packet format inspector', [], 1), |
Junxiao Shi | 2219a05 | 2015-05-28 02:53:48 -0700 | [diff] [blame] | 49 | ] |