blob: 1cf79b245e0b496080cacd1277b3ddd48b5d417d [file] [log] [blame]
Alexander Afanasyev6e64ac92018-06-14 17:25:38 -04001# -*- coding: utf-8 -*-
2#
Davide Pesaventoec61b742020-04-18 01:00:12 -04003# 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
8
9# -- Path setup --------------------------------------------------------------
Alexander Afanasyev6e64ac92018-06-14 17:25:38 -040010
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.
Davide Pesaventoec61b742020-04-18 01:00:12 -040014#
15# import os
16import sys
17# sys.path.insert(0, os.path.abspath('.'))
Alexander Afanasyev6e64ac92018-06-14 17:25:38 -040018
Davide Pesaventoec61b742020-04-18 01:00:12 -040019
20# -- Project information -----------------------------------------------------
21
22project = u'NAC: Name-based Access Control library'
23copyright = u'Copyright © 2014-2020 Regents of the University of California.'
24author = 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.
36today_fmt = '%Y-%m-%d'
37
38
39# -- General configuration ---------------------------------------------------
Alexander Afanasyev6e64ac92018-06-14 17:25:38 -040040
41# If your documentation needs a minimal Sphinx version, state it here.
Davide Pesaventoec61b742020-04-18 01:00:12 -040042#
43needs_sphinx = '1.1'
Alexander Afanasyev6e64ac92018-06-14 17:25:38 -040044
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.
48extensions = [
Davide Pesaventoec61b742020-04-18 01:00:12 -040049 'sphinx.ext.extlinks',
Alexander Afanasyev6e64ac92018-06-14 17:25:38 -040050 'sphinx.ext.todo',
Alexander Afanasyev6e64ac92018-06-14 17:25:38 -040051]
52
53def addExtensionIfExists(extension):
54 try:
55 __import__(extension)
56 extensions.append(extension)
57 except ImportError:
Davide Pesaventoec61b742020-04-18 01:00:12 -040058 sys.stderr.write("Extension '%s' not found. "
Alexander Afanasyev6e64ac92018-06-14 17:25:38 -040059 "Some documentation may not build correctly.\n" % extension)
Alexander Afanasyev6e64ac92018-06-14 17:25:38 -040060
Davide Pesaventoec61b742020-04-18 01:00:12 -040061addExtensionIfExists('sphinxcontrib.doxylink')
Alexander Afanasyev6e64ac92018-06-14 17:25:38 -040062
63# The master toctree document.
64master_doc = 'index'
65
Davide Pesaventoec61b742020-04-18 01:00:12 -040066# Add any paths that contain templates here, relative to this directory.
67templates_path = ['_templates']
Alexander Afanasyev6e64ac92018-06-14 17:25:38 -040068
69# List of patterns, relative to source directory, that match files and
70# directories to ignore when looking for source files.
Davide Pesaventoec61b742020-04-18 01:00:12 -040071# This pattern also affects html_static_path and html_extra_path.
Alexander Afanasyev6e64ac92018-06-14 17:25:38 -040072exclude_patterns = []
73
Alexander Afanasyev6e64ac92018-06-14 17:25:38 -040074
Davide Pesaventoec61b742020-04-18 01:00:12 -040075# -- Options for HTML output -------------------------------------------------
Alexander Afanasyev6e64ac92018-06-14 17:25:38 -040076
77# The theme to use for HTML and HTML Help pages. See the documentation for
78# a list of builtin themes.
Davide Pesaventoec61b742020-04-18 01:00:12 -040079#
Alexander Afanasyev6e64ac92018-06-14 17:25:38 -040080html_theme = 'named_data_theme'
81
Alexander Afanasyev6e64ac92018-06-14 17:25:38 -040082# Add any paths that contain custom themes here, relative to this directory.
Davide Pesaventoec61b742020-04-18 01:00:12 -040083html_theme_path = ['.']
Alexander Afanasyev6e64ac92018-06-14 17:25:38 -040084
85# Add any paths that contain custom static files (such as style sheets) here,
86# relative to this directory. They are copied after the builtin static files,
87# so a file named "default.css" will overwrite the builtin "default.css".
88html_static_path = ['_static']
89
Alexander Afanasyev6e64ac92018-06-14 17:25:38 -040090
Davide Pesaventoec61b742020-04-18 01:00:12 -040091# -- Options for LaTeX output ------------------------------------------------
Alexander Afanasyev6e64ac92018-06-14 17:25:38 -040092
93latex_elements = {
Davide Pesaventoec61b742020-04-18 01:00:12 -040094 # The paper size ('letterpaper' or 'a4paper').
95 #
96 # 'papersize': 'letterpaper',
Alexander Afanasyev6e64ac92018-06-14 17:25:38 -040097
Davide Pesaventoec61b742020-04-18 01:00:12 -040098 # The font size ('10pt', '11pt' or '12pt').
99 #
100 # 'pointsize': '10pt',
Alexander Afanasyev6e64ac92018-06-14 17:25:38 -0400101
Davide Pesaventoec61b742020-04-18 01:00:12 -0400102 # Additional stuff for the LaTeX preamble.
103 #
104 # 'preamble': '',
105
106 # Latex figure (float) alignment
107 #
108 # 'figure_align': 'htbp',
Alexander Afanasyev6e64ac92018-06-14 17:25:38 -0400109}
110
111# Grouping the document tree into LaTeX files. List of tuples
112# (source start file, target name, title,
113# author, documentclass [howto, manual, or own class]).
114latex_documents = [
Davide Pesaventoec61b742020-04-18 01:00:12 -0400115 ('index', 'nac-docs.tex', u'NAC: Name-based Access Control library',
116 author, 'manual'),
Alexander Afanasyev6e64ac92018-06-14 17:25:38 -0400117]
118
Alexander Afanasyev6e64ac92018-06-14 17:25:38 -0400119
Davide Pesaventoec61b742020-04-18 01:00:12 -0400120# -- Options for manual page output ------------------------------------------
Alexander Afanasyev6e64ac92018-06-14 17:25:38 -0400121
122# One entry per manual page. List of tuples
123# (source start file, name, description, authors, manual section).
124man_pages = [
125]
126
127# If true, show URL addresses after external links.
Davide Pesaventoec61b742020-04-18 01:00:12 -0400128#man_show_urls = True
Alexander Afanasyev6e64ac92018-06-14 17:25:38 -0400129
130
Davide Pesaventoec61b742020-04-18 01:00:12 -0400131# -- Custom options ----------------------------------------------------------
Alexander Afanasyev6e64ac92018-06-14 17:25:38 -0400132
133doxylink = {
Davide Pesaventoec61b742020-04-18 01:00:12 -0400134 'nac': ('nac.tag', 'doxygen/'),
Alexander Afanasyev6e64ac92018-06-14 17:25:38 -0400135}
136
Davide Pesaventoec61b742020-04-18 01:00:12 -0400137extlinks = {
138 'issue': ('https://redmine.named-data.net/issues/%s', 'issue #'),
139}