summaryrefslogtreecommitdiff
path: root/conf.py
diff options
context:
space:
mode:
Diffstat (limited to 'conf.py')
-rw-r--r--conf.py22
1 files changed, 17 insertions, 5 deletions
diff --git a/conf.py b/conf.py
index 4010d57b..64ce8c47 100644
--- a/conf.py
+++ b/conf.py
@@ -57,6 +57,7 @@ extensions = [
'sphinx.ext.imgmath',
'httpdomain.httpdomain',
'recommonmark',
+ 'sphinx.ext.graphviz',
]
# Add any paths that contain templates here, relative to this directory.
@@ -76,16 +77,16 @@ master_doc = 'index'
# General information about the project.
project = u'GNU Taler'
-copyright = u'2014, 2015, 2016 Florian Dold, Benedikt Muller, Sree Harsha Totakura, Christian Grothoff, Marcello Stanisci (GPLv3+ or GFDL 1.3+)'
+copyright = u'2014-2020 Taler Systems SA (GPLv3+ or GFDL 1.3+)'
# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
# built documents.
#
# The short X.Y version.
-version = '0.6pre1'
+version = '0.8pre0'
# The full version, including alpha/beta/rc tags.
-release = '0.6.0pre1'
+release = '0.8.0pre0'
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
@@ -228,6 +229,8 @@ latex_elements = {
# (source start file, target name, title,
# author, documentclass [howto, manual, or own class]).
latex_documents = [
+ ('taler-auditor-manual', 'taler-auditor-manual.tex',
+ 'GNU Taler Auditor Manual', 'GNU Taler team', 'manual'),
('taler-exchange-manual', 'taler-exchange-manual.tex',
'GNU Taler Exchange Manual', 'GNU Taler team', 'manual'),
('taler-merchant-manual', 'taler-merchant-manual.tex',
@@ -238,7 +241,7 @@ latex_documents = [
'GNU Taler team', 'manual'),
('taler-backoffice-manual', 'taler-backoffice-manual.tex',
'GNU Taler Back Office Manual', 'GNU Taler team', 'manual'),
- ('onboarding', 'onboarding.tex', 'GNU Taler Developer Onboarding Manual',
+ ('developers-manual', 'developers-manual.tex', 'GNU Taler Developer Onboarding Manual',
'GNU Taler team', 'manual'),
]
@@ -313,6 +316,9 @@ man_pages = [
("manpages/taler-merchant-httpd.1", "taler-merchant-httpd",
"run Taler merchant backend (with RESTful API)", "GNU Taler contributors",
1),
+ ("manpages/taler-merchant-setup-reserve.1", "taler-merchant-setup-reserve",
+ "setup reserve for tipping at a Taler merchant backend", "GNU Taler contributors",
+ 1),
("manpages/taler.conf.5", "taler.conf", "Taler configuration file",
"GNU Taler contributors", 5),
]
@@ -326,6 +332,8 @@ man_pages = [
# (source start file, target name, title, author,
# dir menu entry, description, category)
texinfo_documents = [
+ ("taler-auditor-manual", "taler-auditor", "Taler Auditor Manual",
+ "GNU Taler team", "MENU ENTRY", "DESCRIPTION", "CATEGORY"),
("taler-exchange-manual", "taler-exchange", "Taler Exchange Manual",
"GNU Taler team", "MENU ENTRY", "DESCRIPTION", "CATEGORY"),
("taler-merchant-manual", "taler-merchant", "Taler Merchant Manual",
@@ -335,7 +343,7 @@ texinfo_documents = [
"DESCRIPTION", "CATEGORY"),
("taler-bank-manual", "taler-bank", "Taler Bank Manual", "GNU Taler team",
"MENU ENTRY", "DESCRIPTION", "CATEGORY"),
- ("onboarding", "onboarding", "Taler Onboarding Manual", "GNU Taler team",
+ ("developers-manual", "developers-manual", "Taler Developer Onboarding Manual", "GNU Taler team",
"MENU ENTRY", "DESCRIPTION", "CATEGORY"),
]
@@ -350,3 +358,7 @@ texinfo_documents = [
# If true, do not generate a @detailmenu in the "Top" node's menu.
#texinfo_no_detailmenu = False
+
+# The output format for Graphviz when building HTML files.
+# This must be either 'png' or 'svg'; the default is 'png'.
+graphviz_output_format = 'svg'