|
24 | 24 | # -- General configuration ------------------------------------------------
|
25 | 25 |
|
26 | 26 | # If your documentation needs a minimal Sphinx version, state it here.
|
27 |
| -#needs_sphinx = '1.0' |
| 27 | +# needs_sphinx = '1.0' |
28 | 28 |
|
29 | 29 | # Add any Sphinx extension module names here, as strings. They can be
|
30 | 30 | # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
|
|
33 | 33 | 'sphinx.ext.autodoc',
|
34 | 34 | 'sphinx.ext.mathjax',
|
35 | 35 | 'sphinx.ext.viewcode',
|
36 |
| - "sphinxcontrib.jquery" |
| 36 | + "sphinxcontrib.jquery" |
37 | 37 | ]
|
38 | 38 |
|
39 | 39 | # Add any paths that contain templates here, relative to this directory.
|
|
45 | 45 | source_suffix = '.rst'
|
46 | 46 |
|
47 | 47 | # The encoding of source files.
|
48 |
| -#source_encoding = 'utf-8-sig' |
| 48 | +# source_encoding = 'utf-8-sig' |
49 | 49 |
|
50 | 50 | # The master toctree document.
|
51 | 51 | master_doc = 'index'
|
|
60 | 60 | # built documents.
|
61 | 61 | #
|
62 | 62 | # The short X.Y version.
|
63 |
| -version = u'1.8' |
| 63 | +version = u'1.9' |
64 | 64 | # The full version, including alpha/beta/rc tags.
|
65 | 65 | release = version
|
66 | 66 |
|
|
73 | 73 |
|
74 | 74 | # There are two options for replacing |today|: either, you set today to some
|
75 | 75 | # non-false value, then it is used:
|
76 |
| -#today = '' |
| 76 | +# today = '' |
77 | 77 | # Else, today_fmt is used as the format for a strftime call.
|
78 |
| -#today_fmt = '%B %d, %Y' |
| 78 | +# today_fmt = '%B %d, %Y' |
79 | 79 |
|
80 | 80 | # List of patterns, relative to source directory, that match files and
|
81 | 81 | # directories to ignore when looking for source files.
|
82 | 82 | exclude_patterns = []
|
83 | 83 |
|
84 | 84 | # The reST default role (used for this markup: `text`) to use for all
|
85 | 85 | # documents.
|
86 |
| -#default_role = None |
| 86 | +# default_role = None |
87 | 87 |
|
88 | 88 | # If true, '()' will be appended to :func: etc. cross-reference text.
|
89 |
| -#add_function_parentheses = True |
| 89 | +# add_function_parentheses = True |
90 | 90 |
|
91 | 91 | # If true, the current module name will be prepended to all description
|
92 | 92 | # unit titles (such as .. function::).
|
93 |
| -#add_module_names = True |
| 93 | +# add_module_names = True |
94 | 94 |
|
95 | 95 | # If true, sectionauthor and moduleauthor directives will be shown in the
|
96 | 96 | # output. They are ignored by default.
|
97 |
| -#show_authors = False |
| 97 | +# show_authors = False |
98 | 98 |
|
99 | 99 | # The name of the Pygments (syntax highlighting) style to use.
|
100 | 100 | pygments_style = 'default'
|
101 | 101 |
|
102 | 102 | # A list of ignored prefixes for module index sorting.
|
103 |
| -#modindex_common_prefix = [] |
| 103 | +# modindex_common_prefix = [] |
104 | 104 |
|
105 | 105 | # If true, keep warnings as "system message" paragraphs in the built documents.
|
106 |
| -#keep_warnings = False |
| 106 | +# keep_warnings = False |
107 | 107 |
|
108 | 108 | # If true, `todo` and `todoList` produce output, else they produce nothing.
|
109 | 109 | todo_include_todos = False
|
|
128 | 128 | }
|
129 | 129 |
|
130 | 130 | # Add any paths that contain custom themes here, relative to this directory.
|
131 |
| -#html_theme_path = [] |
| 131 | +# html_theme_path = [] |
132 | 132 |
|
133 | 133 | # The name for this set of Sphinx documents. If None, it defaults to
|
134 | 134 | # "<project> v<release> documentation".
|
135 |
| -#html_title = None |
| 135 | +# html_title = None |
136 | 136 |
|
137 | 137 | # A shorter title for the navigation bar. Default is the same as html_title.
|
138 |
| -#html_short_title = None |
| 138 | +# html_short_title = None |
139 | 139 |
|
140 | 140 | # The name of an image file (relative to this directory) to place at the top
|
141 | 141 | # of the sidebar.
|
142 |
| -#html_logo = None |
| 142 | +# html_logo = None |
143 | 143 |
|
144 | 144 | # The name of an image file (relative to this directory) to use as a favicon of
|
145 | 145 | # the docs. This file should be a Windows icon file (.ico) being 16x16 or 32x32
|
146 | 146 | # pixels large.
|
147 |
| -#html_favicon = None |
| 147 | +# html_favicon = None |
148 | 148 |
|
149 | 149 | # Add any paths that contain custom static files (such as style sheets) here,
|
150 | 150 | # relative to this directory. They are copied after the builtin static files,
|
|
153 | 153 |
|
154 | 154 | html_context = {
|
155 | 155 | 'display_github': True,
|
156 |
| - 'github_user': 'pylessard', |
157 |
| - 'github_repo': 'python-can-isotp', |
158 |
| - 'github_version': 'master/doc' |
| 156 | + 'github_user': 'pylessard', |
| 157 | + 'github_repo': 'python-can-isotp', |
| 158 | + 'github_version': 'master/doc' |
159 | 159 | }
|
160 | 160 |
|
161 | 161 | # Add any extra paths that contain custom files (such as robots.txt or
|
162 | 162 | # .htaccess) here, relative to this directory. These files are copied
|
163 | 163 | # directly to the root of the documentation.
|
164 |
| -#html_extra_path = [] |
| 164 | +# html_extra_path = [] |
165 | 165 |
|
166 | 166 | # If not '', a 'Last updated on:' timestamp is inserted at every page bottom,
|
167 | 167 | # using the given strftime format.
|
168 |
| -#html_last_updated_fmt = '%b %d, %Y' |
| 168 | +# html_last_updated_fmt = '%b %d, %Y' |
169 | 169 |
|
170 | 170 | # If true, SmartyPants will be used to convert quotes and dashes to
|
171 | 171 | # typographically correct entities.
|
172 |
| -#html_use_smartypants = True |
| 172 | +# html_use_smartypants = True |
173 | 173 |
|
174 | 174 | # Custom sidebar templates, maps document names to template names.
|
175 |
| -#html_sidebars = {} |
| 175 | +# html_sidebars = {} |
176 | 176 |
|
177 | 177 | # Additional templates that should be rendered to pages, maps page names to
|
178 | 178 | # template names.
|
179 |
| -#html_additional_pages = {} |
| 179 | +# html_additional_pages = {} |
180 | 180 |
|
181 | 181 | # If false, no module index is generated.
|
182 |
| -#html_domain_indices = True |
| 182 | +# html_domain_indices = True |
183 | 183 |
|
184 | 184 | # If false, no index is generated.
|
185 |
| -#html_use_index = True |
| 185 | +# html_use_index = True |
186 | 186 |
|
187 | 187 | # If true, the index is split into individual pages for each letter.
|
188 |
| -#html_split_index = False |
| 188 | +# html_split_index = False |
189 | 189 |
|
190 | 190 | # If true, links to the reST sources are added to the pages.
|
191 |
| -#html_show_sourcelink = True |
| 191 | +# html_show_sourcelink = True |
192 | 192 |
|
193 | 193 | # If true, "Created using Sphinx" is shown in the HTML footer. Default is True.
|
194 |
| -#html_show_sphinx = True |
| 194 | +# html_show_sphinx = True |
195 | 195 |
|
196 | 196 | # If true, "(C) Copyright ..." is shown in the HTML footer. Default is True.
|
197 |
| -#html_show_copyright = True |
| 197 | +# html_show_copyright = True |
198 | 198 |
|
199 | 199 | # If true, an OpenSearch description file will be output, and all pages will
|
200 | 200 | # contain a <link> tag referring to it. The value of this option must be the
|
201 | 201 | # base URL from which the finished HTML is served.
|
202 |
| -#html_use_opensearch = '' |
| 202 | +# html_use_opensearch = '' |
203 | 203 |
|
204 | 204 | # This is the file name suffix for HTML files (e.g. ".xhtml").
|
205 |
| -#html_file_suffix = None |
| 205 | +# html_file_suffix = None |
206 | 206 |
|
207 | 207 | # Language to be used for generating the HTML full-text search index.
|
208 | 208 | # Sphinx supports the following languages:
|
209 | 209 | # 'da', 'de', 'en', 'es', 'fi', 'fr', 'hu', 'it', 'ja'
|
210 | 210 | # 'nl', 'no', 'pt', 'ro', 'ru', 'sv', 'tr'
|
211 |
| -#html_search_language = 'en' |
| 211 | +# html_search_language = 'en' |
212 | 212 |
|
213 | 213 | # A dictionary with options for the search language support, empty by default.
|
214 | 214 | # Now only 'ja' uses this config value
|
215 |
| -#html_search_options = {'type': 'default'} |
| 215 | +# html_search_options = {'type': 'default'} |
216 | 216 |
|
217 | 217 | # The name of a javascript file (relative to the configuration directory) that
|
218 | 218 | # implements a search results scorer. If empty, the default will be used.
|
219 |
| -#html_search_scorer = 'scorer.js' |
| 219 | +# html_search_scorer = 'scorer.js' |
220 | 220 |
|
221 | 221 | # Output file base name for HTML help builder.
|
222 | 222 | htmlhelp_basename = 'canisotpdoc'
|
223 | 223 |
|
224 | 224 | # -- Options for LaTeX output ---------------------------------------------
|
225 | 225 |
|
226 | 226 | latex_elements = {
|
227 |
| -# The paper size ('letterpaper' or 'a4paper'). |
228 |
| -#'papersize': 'letterpaper', |
| 227 | + # The paper size ('letterpaper' or 'a4paper'). |
| 228 | + # 'papersize': 'letterpaper', |
229 | 229 |
|
230 |
| -# The font size ('10pt', '11pt' or '12pt'). |
231 |
| -#'pointsize': '10pt', |
| 230 | + # The font size ('10pt', '11pt' or '12pt'). |
| 231 | + # 'pointsize': '10pt', |
232 | 232 |
|
233 |
| -# Additional stuff for the LaTeX preamble. |
234 |
| -#'preamble': '', |
| 233 | + # Additional stuff for the LaTeX preamble. |
| 234 | + # 'preamble': '', |
235 | 235 |
|
236 |
| -# Latex figure (float) alignment |
237 |
| -#'figure_align': 'htbp', |
| 236 | + # Latex figure (float) alignment |
| 237 | + # 'figure_align': 'htbp', |
238 | 238 | }
|
239 | 239 |
|
240 | 240 | # Grouping the document tree into LaTeX files. List of tuples
|
|
247 | 247 |
|
248 | 248 | # The name of an image file (relative to this directory) to place at the top of
|
249 | 249 | # the title page.
|
250 |
| -#latex_logo = None |
| 250 | +# latex_logo = None |
251 | 251 |
|
252 | 252 | # For "manual" documents, if this is true, then toplevel headings are parts,
|
253 | 253 | # not chapters.
|
254 |
| -#latex_use_parts = False |
| 254 | +# latex_use_parts = False |
255 | 255 |
|
256 | 256 | # If true, show page references after internal links.
|
257 |
| -#latex_show_pagerefs = False |
| 257 | +# latex_show_pagerefs = False |
258 | 258 |
|
259 | 259 | # If true, show URL addresses after external links.
|
260 |
| -#latex_show_urls = False |
| 260 | +# latex_show_urls = False |
261 | 261 |
|
262 | 262 | # Documents to append as an appendix to all manuals.
|
263 |
| -#latex_appendices = [] |
| 263 | +# latex_appendices = [] |
264 | 264 |
|
265 | 265 | # If false, no module index is generated.
|
266 |
| -#latex_domain_indices = True |
| 266 | +# latex_domain_indices = True |
267 | 267 |
|
268 | 268 |
|
269 | 269 | # -- Options for manual page output ---------------------------------------
|
|
276 | 276 | ]
|
277 | 277 |
|
278 | 278 | # If true, show URL addresses after external links.
|
279 |
| -#man_show_urls = False |
| 279 | +# man_show_urls = False |
280 | 280 |
|
281 | 281 |
|
282 | 282 | # -- Options for Texinfo output -------------------------------------------
|
|
291 | 291 | ]
|
292 | 292 |
|
293 | 293 | # Documents to append as an appendix to all manuals.
|
294 |
| -#texinfo_appendices = [] |
| 294 | +# texinfo_appendices = [] |
295 | 295 |
|
296 | 296 | # If false, no module index is generated.
|
297 |
| -#texinfo_domain_indices = True |
| 297 | +# texinfo_domain_indices = True |
298 | 298 |
|
299 | 299 | # How to display URL addresses: 'footnote', 'no', or 'inline'.
|
300 |
| -#texinfo_show_urls = 'footnote' |
| 300 | +# texinfo_show_urls = 'footnote' |
301 | 301 |
|
302 | 302 | # If true, do not generate a @detailmenu in the "Top" node's menu.
|
303 |
| -#texinfo_no_detailmenu = False |
| 303 | +# texinfo_no_detailmenu = False |
| 304 | + |
304 | 305 |
|
305 | 306 | def setup(app):
|
306 | 307 | app.add_css_file('theme_overrides.css')
|
0 commit comments