From 48f0a6f5812dbaf3072737867a55609443237758 Mon Sep 17 00:00:00 2001 From: blsaws Date: Thu, 3 Dec 2015 09:55:10 -0800 Subject: Restore conf.py JIRA: COPPER-1 Change-Id: I7d899f6f5ed7ce977da5a9efe9a9404776d199bc Signed-off-by: blsaws --- docs/design/conf.py | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 docs/design/conf.py (limited to 'docs') diff --git a/docs/design/conf.py b/docs/design/conf.py new file mode 100644 index 0000000..6c5794c --- /dev/null +++ b/docs/design/conf.py @@ -0,0 +1,30 @@ +import datetime +import sys +import os + +try: + __import__('imp').find_module('sphinx.ext.numfig') + extensions = ['sphinx.ext.numfig'] +except ImportError: + # 'pip install sphinx_numfig' + extensions = ['sphinx_numfig'] + +# numfig: +number_figures = True +figure_caption_prefix = "Fig." + +source_suffix = '.rst' +master_doc = 'index' +pygments_style = 'sphinx' +html_use_index = False +html_theme = 'sphinx_rtd_theme' + +pdf_documents = [('index', u'OPNFV', u'OPNFV Copper Project', u'OPNFV')] +pdf_fit_mode = "shrink" +pdf_stylesheets = ['sphinx','kerning','a4'] +#latex_domain_indices = False +#latex_use_modindex = False + +latex_elements = { + 'printindex': '', +} -- cgit 1.2.3-korg