Davide Pesavento | 786a7f2 | 2019-04-14 17:18:14 -0400 | [diff] [blame] | 1 | # -*- coding: utf-8 -*- |
| 2 | # |
| 3 | # Configuration file for the Sphinx documentation builder. |
| 4 | # |
| 5 | # This file only contains a selection of the most common options. For a full |
| 6 | # list see the documentation: |
| 7 | # http://www.sphinx-doc.org/en/master/config |
Junxiao Shi | 2219a05 | 2015-05-28 02:53:48 -0700 | [diff] [blame] | 8 | |
Davide Pesavento | 786a7f2 | 2019-04-14 17:18:14 -0400 | [diff] [blame] | 9 | # -- Path setup -------------------------------------------------------------- |
| 10 | |
| 11 | # If extensions (or modules to document with autodoc) are in another directory, |
| 12 | # add these directories to sys.path here. If the directory is relative to the |
| 13 | # documentation root, use os.path.abspath to make it absolute, like shown here. |
| 14 | # |
| 15 | # import os |
| 16 | # import sys |
| 17 | # sys.path.insert(0, os.path.abspath('.')) |
| 18 | |
| 19 | |
| 20 | # -- Project information ----------------------------------------------------- |
| 21 | |
| 22 | project = u'NDN Essential Tools' |
Davide Pesavento | a1a9d70 | 2020-03-29 00:58:15 -0400 | [diff] [blame] | 23 | copyright = u'Copyright © 2014-2020 Named Data Networking Project.' |
Davide Pesavento | 786a7f2 | 2019-04-14 17:18:14 -0400 | [diff] [blame] | 24 | author = u'Named Data Networking Project' |
| 25 | |
| 26 | # The short X.Y version |
| 27 | #version = '' |
| 28 | |
| 29 | # The full version, including alpha/beta/rc tags |
| 30 | #release = '' |
| 31 | |
| 32 | # There are two options for replacing |today|: either, you set today to some |
| 33 | # non-false value, then it is used: |
| 34 | #today = '' |
| 35 | # Else, today_fmt is used as the format for a strftime call. |
| 36 | today_fmt = '%Y-%m-%d' |
| 37 | |
| 38 | |
| 39 | # -- General configuration --------------------------------------------------- |
| 40 | |
| 41 | # If your documentation needs a minimal Sphinx version, state it here. |
| 42 | # |
| 43 | needs_sphinx = '1.1' |
| 44 | |
| 45 | # Add any Sphinx extension module names here, as strings. They can be |
| 46 | # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom |
| 47 | # ones. |
| 48 | extensions = [ |
| 49 | ] |
| 50 | |
| 51 | # The master toctree document. |
Alexander Afanasyev | d230073 | 2016-05-04 16:45:14 -0700 | [diff] [blame] | 52 | master_doc = 'index' |
| 53 | |
Davide Pesavento | 786a7f2 | 2019-04-14 17:18:14 -0400 | [diff] [blame] | 54 | |
| 55 | # -- Options for manual page output ------------------------------------------ |
Junxiao Shi | 2219a05 | 2015-05-28 02:53:48 -0700 | [diff] [blame] | 56 | |
| 57 | # One entry per manual page. List of tuples |
| 58 | # (source start file, name, description, authors, manual section). |
| 59 | man_pages = [ |
Davide Pesavento | a1a9d70 | 2020-03-29 00:58:15 -0400 | [diff] [blame] | 60 | ('ndnpeek', 'ndnpeek', 'simple consumer to send one Interest and receive one Data', [], 1), |
| 61 | ('ndnpoke', 'ndnpoke', 'simple producer to publish one Data', [], 1), |
| 62 | ('ndnping', 'ndnping', 'reachability testing client', [], 1), |
| 63 | ('ndnpingserver', 'ndnpingserver', 'reachability testing server', [], 1), |
| 64 | ('ndnputchunks', 'ndnputchunks', 'producer program with content segmentation', [], 1), |
| 65 | ('ndndump', 'ndndump', 'traffic analysis tool', [], 8), |
| 66 | ('ndn-dissect', 'ndn-dissect', 'NDN packet format inspector', [], 1), |
Junxiao Shi | 2219a05 | 2015-05-28 02:53:48 -0700 | [diff] [blame] | 67 | ] |
Davide Pesavento | 786a7f2 | 2019-04-14 17:18:14 -0400 | [diff] [blame] | 68 | |
| 69 | # If true, show URL addresses after external links. |
| 70 | #man_show_urls = True |