Generate PDF documentation

This commit adds a new tox target to build PDF documentation.
It's a part of community goal, see storyboard for more
information.

Change-Id: I58b1fb537c3758bba5a57d3cf7ce4cf10625bd89
Story: 2006076
Task: 34817
This commit is contained in:
whoami-rajat 2019-09-17 13:21:43 +05:30
parent 595b317701
commit c0e9f0308e
3 changed files with 35 additions and 5 deletions

View File

@ -2,8 +2,15 @@
Team and repository tags Team and repository tags
======================== ========================
.. image:: https://governance.openstack.org/tc/badges/python-congressclient.svg .. only::html
:target: https://governance.openstack.org/tc/reference/tags/index.html
.. image:: https://governance.openstack.org/tc/badges/python-congressclient.svg
:target: https://governance.openstack.org/tc/reference/tags/index.html
.. only::latex
.. image:: python-congressclient.svg
.. Change things from this point on .. Change things from this point on

View File

@ -83,14 +83,27 @@ htmlhelp_basename = '%sdoc' % project
# A list of ignored prefixes for module index sorting. # A list of ignored prefixes for module index sorting.
modindex_common_prefix = ['congressclient.'] modindex_common_prefix = ['congressclient.']
# Disable usage of xindy https://bugzilla.redhat.com/show_bug.cgi?id=1643664
latex_use_xindy = False
latex_domain_indices = False
latex_elements = {
'makeindex': '',
'printindex': '',
'preamble': r'\setcounter{tocdepth}{3}',
}
# Grouping the document tree into LaTeX files. List of tuples # Grouping the document tree into LaTeX files. List of tuples
# (source start file, target name, title, author, documentclass # (source start file, target name, title, author, documentclass
# [howto/manual]). # [howto/manual]).
# NOTE: Specify toctree_only=True for a better document structure of
# the generated PDF file.
latex_documents = [ latex_documents = [
('index', ('index',
'%s.tex' % project, 'doc-%s.tex' % project,
u'%s Documentation' % project, u'Congress Client Documentation',
u'OpenStack Foundation', 'manual'), u'OpenStack Foundation', 'manual', True),
] ]
# Example configuration for intersphinx: refer to the Python standard library. # Example configuration for intersphinx: refer to the Python standard library.

10
tox.ini
View File

@ -32,6 +32,16 @@ basepython = python3
deps = -r{toxinidir}/doc/requirements.txt deps = -r{toxinidir}/doc/requirements.txt
commands = sphinx-build -W -b html doc/source doc/build/html commands = sphinx-build -W -b html doc/source doc/build/html
[testenv:pdf-docs]
basepython = python3
envdir = {toxworkdir}/docs
deps = {[testenv:docs]deps}
whitelist_externals =
make
commands =
sphinx-build -W -b latex doc/source doc/build/pdf
make -C doc/build/pdf
[testenv:releasenotes] [testenv:releasenotes]
basepython = python3 basepython = python3
deps = {[testenv:docs]deps} deps = {[testenv:docs]deps}