Salome HOME
bos #18858 Use sphinx_rtd_theme as theme for SALOME documentation built with Sphinx
[modules/smesh.git] / doc / salome / gui / SMESH / conf.py.in
1 # -*- coding: utf-8 -*-
2 #
3 # yacs documentation build configuration file, created by
4 # sphinx-quickstart on Fri Aug 29 09:57:25 2008.
5 #
6 # This file is execfile()d with the current directory set to its containing dir.
7 #
8 # The contents of this file are pickled, so don't put values in the namespace
9 # that aren't pickleable (module imports are okay, they're removed automatically).
10 #
11 # All configuration values have a default; values that are commented out
12 # serve to show the default.
13
14 import sys, os
15 import sphinx
16
17 # If your extensions are in another directory, add it here. If the directory
18 # is relative to the documentation root, use os.path.abspath to make it
19 # absolute, like shown here.
20 #sys.path.append(os.path.abspath('.'))
21
22 # General configuration
23 # ---------------------
24
25 # Add any Sphinx extension module names here, as strings. They can be extensions
26 # coming with Sphinx (named 'sphinx.ext.*') or your custom ones.
27 extensions = ['sphinx.ext.autodoc','sphinx.ext.autosummary']
28 try:
29   import sphinxcontrib.napoleon
30   extensions += ['sphinxcontrib.napoleon']
31 except:
32   pass
33 try:
34   import sphinx_rtd_theme
35   extensions += ['sphinx_rtd_theme']
36   use_rtd_theme = True
37 except:
38   use_rtd_theme = False
39 #add pdfbuilder to build a pdf with rst2pdf
40 #extensions = ['rst2pdf.pdfbuilder']
41
42 # Add any paths that contain templates here, relative to this directory.
43 templates_path = [os.path.join('@CMAKE_CURRENT_SOURCE_DIR@','templates')]
44
45 # The suffix of source filenames.
46 source_suffix = '.rst'
47
48 # The encoding of source files.
49 #source_encoding = 'utf-8'
50
51 # The master toctree document.
52 master_doc = 'index'
53
54 # General information about the project.
55 project = 'Mesh'
56
57 # Copyright is shown via custom footer
58 html_show_copyright = False
59
60 # The version info for the project you're documenting, acts as replacement for
61 # |version| and |release|, also used in various other places throughout the
62 # built documents.
63 #
64 # The short X.Y version.
65 version = '@SALOMESMESH_VERSION@'
66 # The full version, including alpha/beta/rc tags.
67 release = '@SALOMESMESH_VERSION@'
68
69 # The language for content autogenerated by Sphinx. Refer to documentation
70 # for a list of supported languages.
71 #language = None
72
73 # There are two options for replacing |today|: either, you set today to some
74 # non-false value, then it is used:
75 #today = ''
76 # Else, today_fmt is used as the format for a strftime call.
77 #today_fmt = '%B %d, %Y'
78
79 # List of documents that shouldn't be included in the build.
80 #unused_docs = []
81
82 # List of directories, relative to source directory, that shouldn't be searched
83 # for source files.
84 exclude_trees = ['.build','ref','images','CVS']
85
86 # A list of glob-style patterns that should be excluded when looking for source
87 # files. They are matched against the source file names relative to the
88 # source directory, using slashes as directory separators on all platforms.
89 exclude_patterns = ['**/CVS']
90
91 # The reST default role (used for this markup: `text`) to use for all documents.
92 #default_role = None
93
94 # If true, '()' will be appended to :func: etc. cross-reference text.
95 #add_function_parentheses = True
96
97 # If true, the current module name will be prepended to all description
98 # unit titles (such as .. function::).
99 #add_module_names = True
100
101 # If true, sectionauthor and moduleauthor directives will be shown in the
102 # output. They are ignored by default.
103 #show_authors = False
104
105 # The name of the Pygments (syntax highlighting) style to use.
106 pygments_style = 'sphinx'
107
108
109 # Options for HTML output
110 # -----------------------
111
112 # The theme to use for HTML and HTML Help pages.  Major themes that come with
113 # Sphinx are currently 'default' and 'sphinxdoc'.
114 if use_rtd_theme:
115   html_theme = 'sphinx_rtd_theme'
116 else:
117   html_theme = 'default' if sphinx.version_info[:2] < (1,3) else 'classic'
118
119 themes_options = {}
120 themes_options['classic'] = {
121   'body_max_width':'none',
122   'body_min_width':0,
123 }
124 html_theme_options = themes_options.get(html_theme, {})
125
126 # The name for this set of Sphinx documents.  If None, it defaults to
127 # "<project> v<release> documentation".
128 #html_title = None
129
130 # A shorter title for the navigation bar.  Default is the same as html_title.
131 #html_short_title = None
132
133 # The name of an image file (relative to this directory) to place at the top
134 # of the sidebar.
135 #html_logo = None
136
137 # The name of an image file (within the static path) to use as favicon of the
138 # docs.  This file should be a Windows icon file (.ico) being 16x16 or 32x32
139 # pixels large.
140 #html_favicon = None
141
142 # Add any paths that contain custom static files (such as style sheets) here,
143 # relative to this directory. They are copied after the builtin static files,
144 # so a file named "default.css" will overwrite the builtin "default.css".
145 html_static_path = [os.path.join('@CMAKE_CURRENT_BINARY_DIR@','static')]
146
147 # If not '', a 'Last updated on:' timestamp is inserted at every page bottom,
148 # using the given strftime format.
149 #html_last_updated_fmt = '%b %d, %Y'
150
151 # If true, SmartyPants will be used to convert quotes and dashes to
152 # typographically correct entities.
153 #html_use_smartypants = True
154
155 # Custom sidebar templates, maps document names to template names.
156 html_sidebars = { '**': ['globaltoc.html', 'relations.html', 'sourcelink.html', 'searchbox.html'],}
157
158 # Additional templates that should be rendered to pages, maps page names to
159 # template names.
160 #html_additional_pages = {}
161
162 # If false, no module index is generated.
163 html_use_modindex = True 
164
165 # If false, no index is generated.
166 html_use_index = True
167
168 # If true, the index is split into individual pages for each letter.
169 #html_split_index = False
170
171 # If true, the reST sources are included in the HTML build as _sources/<name>.
172 #html_copy_source = True
173
174 # If true, an OpenSearch description file will be output, and all pages will
175 # contain a <link> tag referring to it.  The value of this option must be the
176 # base URL from which the finished HTML is served.
177 #html_use_opensearch = ''
178
179 # If nonempty, this is the file name suffix for HTML files (e.g. ".xhtml").
180 #html_file_suffix = ''
181
182 # Output file base name for HTML help builder.
183 htmlhelp_basename = 'smeshdoc'
184
185
186 # Options for LaTeX output
187 # ------------------------
188
189 # The paper size ('letter' or 'a4').
190 #latex_paper_size = 'a4'
191
192 # The font size ('10pt', '11pt' or '12pt').
193 latex_font_size = '10pt'
194
195 # Grouping the document tree into LaTeX files. List of tuples
196 # (source start file, target name, title, author, document class [howto/manual]).
197 latex_documents = [
198   ('index', 'Smesh.tex', 'SMESH User Documentation', '', 'manual'),
199 ]
200
201 # The name of an image file (relative to this directory) to place at the top of
202 # the title page.
203 #latex_logo = None
204
205 # For "manual" documents, if this is true, then toplevel headings are parts,
206 # not chapters.
207 #latex_use_parts = False
208
209 # Additional stuff for the LaTeX preamble.
210 latex_preamble = """
211 \RecustomVerbatimEnvironment
212  {Verbatim}{Verbatim}
213  {fontsize=\scriptsize}
214 """
215
216 # Documents to append as an appendix to all manuals.
217 #latex_appendices = []
218
219 # If false, no module index is generated.
220 latex_use_modindex = True
221
222 #Options for rst2pdf output (through reportlab)
223 pdf_documents = [
224   ('index', 'Smesh.tex', 'SMESH User Documentation', '', 'manual'),
225 ]
226
227 # A comma-separated list of custom stylesheets.
228 pdf_stylesheets = ['sphinx','kerning','a4']
229
230 # Create a compressed PDF
231 # Use True/False or 1/0
232 #pdf_compressed = False
233
234 # A colon-separated list of folders to search for fonts. Example:
235 # pdf_font_path = ['/usr/share/fonts', '/usr/share/texmf-dist/fonts/']
236
237 # Language to be used for hyphenation support
238 #pdf_language = "en_US"
239
240 # Example configuration for intersphinx: refer to the Python standard library.
241 intersphinx_mapping = {'https://docs.python.org/': None}
242
243 locale_dirs = [os.path.join('@CMAKE_CURRENT_BINARY_DIR@','locale')]   # path is example but recommended.
244 gettext_compact = False     # optional