OSDN Git Service

【更新内容】
[ring-lang-081/ring.git] / docs / ja-jp / source / conf.py
1 # -*- coding: utf-8 -*-
2 #
3 # Ring documentation build configuration file, created by
4 # sphinx-quickstart on Sun May 03 10:07:42 2015.
5 #
6 # This file is execfile()d with the current directory set to its
7 # containing dir.
8 #
9 # Note that not all possible configuration values are present in this
10 # autogenerated file.
11 #
12 # All configuration values have a default; values that are commented out
13 # serve to show the default.
14
15 import sys
16 import os
17 import shlex
18
19 # If extensions (or modules to document with autodoc) are in another directory,
20 # add these directories to sys.path here. If the directory is relative to the
21 # documentation root, use os.path.abspath to make it absolute, like shown here.
22 #sys.path.insert(0, os.path.abspath('.'))
23
24 # -- General configuration ------------------------------------------------
25
26 # If your documentation needs a minimal Sphinx version, state it here.
27 #needs_sphinx = '1.0'
28
29 # Add any Sphinx extension module names here, as strings. They can be
30 # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
31 # ones.
32 extensions = [
33     'sphinx.ext.autodoc',
34 #    'sphinx.ext.intersphinx',
35     'sphinx.ext.todo',
36     'sphinx.ext.coverage',
37 #    'sphinx.ext.mathjax',
38     'sphinx.ext.ifconfig',
39     'sphinx.ext.viewcode'
40 ]
41
42 # Add any paths that contain templates here, relative to this directory.
43 templates_path = ['_templates']
44
45 # The suffix(es) of source filenames.
46 # You can specify multiple suffix as a list of string:
47 # source_suffix = ['.rst', '.md']
48 source_suffix = '.txt'
49
50 # The encoding of source files.
51 #source_encoding = 'utf-8-sig'
52
53 # The master toctree document.
54 master_doc = 'index'
55
56 # General information about the project.
57 project = u'Ring'
58 copyright = u'2016-2020, Ring Team'
59 author = u'Ring Team'
60
61 # The version info for the project you're documenting, acts as replacement for
62 # |version| and |release|, also used in various other places throughout the
63 # built documents.
64 #
65 # The short X.Y version.
66 version = '1.12'
67 # The full version, including alpha/beta/rc tags.
68 release = '1.12'
69
70 # The language for content autogenerated by Sphinx. Refer to documentation
71 # for a list of supported languages.
72 #
73 # This is also used if you do content translation via gettext catalogs.
74 # Usually you set "language" from the command line for these cases.
75 language = 'ja'
76
77 # There are two options for replacing |today|: either, you set today to some
78 # non-false value, then it is used:
79 #today = ''
80 # Else, today_fmt is used as the format for a strftime call.
81 #today_fmt = '%B %d, %Y'
82
83 # List of patterns, relative to source directory, that match files and
84 # directories to ignore when looking for source files.
85 exclude_patterns = []
86
87 # The reST default role (used for this markup: `text`) to use for all
88 # documents.
89 #default_role = None
90
91 # If true, '()' will be appended to :func: etc. cross-reference text.
92 #add_function_parentheses = True
93
94 # If true, the current module name will be prepended to all description
95 # unit titles (such as .. function::).
96 #add_module_names = True
97
98 # If true, sectionauthor and moduleauthor directives will be shown in the
99 # output. They are ignored by default.
100 #show_authors = False
101
102 # The name of the Pygments (syntax highlighting) style to use.
103 pygments_style = 'sphinx'
104
105 # A list of ignored prefixes for module index sorting.
106 #modindex_common_prefix = []
107
108 # If true, keep warnings as "system message" paragraphs in the built documents.
109 #keep_warnings = False
110
111 # If true, `todo` and `todoList` produce output, else they produce nothing.
112 todo_include_todos = True
113
114
115 # -- Options for HTML output ----------------------------------------------
116
117 # The theme to use for HTML and HTML Help pages.  See the documentation for
118 # a list of builtin themes.
119 #html_theme = 'alabaster'
120
121 html_theme = "classic"
122 html_theme_options = {
123     "rightsidebar": "true",
124     "relbarbgcolor": "black"
125 #    "nosidebar": "true"
126 }
127
128 #html_theme = "sphinx_rtd_theme"
129
130 # Theme options are theme-specific and customize the look and feel of a theme
131 # further.  For a list of options available for each theme, see the
132 # documentation.
133 #html_theme_options = {}
134
135 # Add any paths that contain custom themes here, relative to this directory.
136 #html_theme_path = []
137
138 # The name for this set of Sphinx documents.  If None, it defaults to
139 # "<project> v<release> 取扱説明書".
140 html_title = u"プログラミング言語 Ring 1.12 取扱説明書"
141
142 # A shorter title for the navigation bar.  Default is the same as html_title.
143 #html_short_title = None
144
145 # The name of an image file (relative to this directory) to place at the top
146 # of the sidebar.
147 #html_logo = None
148
149 # The name of an image file (within the static path) to use as favicon of the
150 # docs.  This file should be a Windows icon file (.ico) being 16x16 or 32x32
151 # pixels large.
152 #html_favicon = None
153
154 # Add any paths that contain custom static files (such as style sheets) here,
155 # relative to this directory. They are copied after the builtin static files,
156 # so a file named "default.css" will overwrite the builtin "default.css".
157 html_static_path = ['_static']
158
159 # Add any extra paths that contain custom files (such as robots.txt or
160 # .htaccess) here, relative to this directory. These files are copied
161 # directly to the root of the documentation.
162 #html_extra_path = []
163
164 # If not '', a 'Last updated on:' timestamp is inserted at every page bottom,
165 # using the given strftime format.
166 #html_last_updated_fmt = '%b %d, %Y'
167
168 # If true, SmartyPants will be used to convert quotes and dashes to
169 # typographically correct entities.
170 #html_use_smartypants = True
171
172 # Custom sidebar templates, maps document names to template names.
173 #html_sidebars = {}
174
175 # Additional templates that should be rendered to pages, maps page names to
176 # template names.
177 #html_additional_pages = {}
178
179 # If false, no module index is generated.
180 #html_domain_indices = True
181
182 # If false, no index is generated.
183 #html_use_index = True
184
185 # If true, the index is split into individual pages for each letter.
186 #html_split_index = False
187
188 # If true, links to the reST sources are added to the pages.
189 #html_show_sourcelink = True
190
191 # If true, "Created using Sphinx" is shown in the HTML footer. Default is True.
192 #html_show_sphinx = True
193
194 # If true, "(C) Copyright ..." is shown in the HTML footer. Default is True.
195 #html_show_copyright = True
196
197 # If true, an OpenSearch description file will be output, and all pages will
198 # contain a <link> tag referring to it.  The value of this option must be the
199 # base URL from which the finished HTML is served.
200 #html_use_opensearch = ''
201
202 # This is the file name suffix for HTML files (e.g. ".xhtml").
203 #html_file_suffix = None
204
205 # Language to be used for generating the HTML full-text search index.
206 # Sphinx supports the following languages:
207 #   'da', 'de', 'en', 'es', 'fi', 'fr', 'hu', 'it', 'ja'
208 #   'nl', 'no', 'pt', 'ro', 'ru', 'sv', 'tr'
209 html_search_language = 'ja'
210
211 # A dictionary with options for the search language support, empty by default.
212 # Now only 'ja' uses this config value
213 html_search_options = {'type': 'default'}
214
215 # The name of a javascript file (relative to the configuration directory) that
216 # implements a search results scorer. If empty, the default will be used.
217 #html_search_scorer = 'scorer.js'
218
219 # Output file base name for HTML help builder.
220 htmlhelp_basename = 'Ringdoc'
221
222 # -- Options for LaTeX output ---------------------------------------------
223
224 latex_elements = {
225         'classoptions': ',oneside,openany',
226         'babel': '\\usepackage[english]{babel}',
227         'pointsize': '18pt'
228 # The paper size ('letterpaper' or 'a4paper').
229 #'papersize': 'letterpaper',
230
231 # The font size ('10pt', '11pt' or '12pt').
232 #'pointsize': '10pt',
233
234 # Additional stuff for the LaTeX preamble.
235 #'preamble': '',
236
237 # Latex figure (float) alignment
238 #'figure_align': 'htbp',
239 }
240
241 # Grouping the document tree into LaTeX files. List of tuples
242 # (source start file, target name, title,
243 #  author, documentclass [howto, manual, or own class]).
244 latex_documents = [
245   (master_doc, 'Ring.tex', u'Ring 取扱説明書',
246    u'Ring Team', 'manual'),
247 ]
248
249 # The name of an image file (relative to this directory) to place at the top of
250 # the title page.
251 #latex_logo = None
252
253 # For "manual" documents, if this is true, then toplevel headings are parts,
254 # not chapters.
255 #latex_use_parts = False
256
257 # If true, show page references after internal links.
258 #latex_show_pagerefs = False
259
260 # If true, show URL addresses after external links.
261 #latex_show_urls = False
262
263 # Documents to append as an appendix to all manuals.
264 #latex_appendices = []
265
266 # If false, no module index is generated.
267 #latex_domain_indices = True
268
269
270 # -- Options for manual page output ---------------------------------------
271
272 # One entry per manual page. List of tuples
273 # (source start file, name, description, authors, manual section).
274 man_pages = [
275     (master_doc, 'ring', u'Ring 取扱説明書',
276      [author], 1)
277 ]
278
279 # If true, show URL addresses after external links.
280 #man_show_urls = False
281
282
283 # -- Options for Texinfo output -------------------------------------------
284
285 # Grouping the document tree into Texinfo files. List of tuples
286 # (source start file, target name, title, author,
287 #  dir menu entry, description, category)
288 texinfo_documents = [
289   (master_doc, 'Ring', u'Ring 取扱説明書',
290    author, 'Ring', 'One line description of project.',
291    'Miscellaneous'),
292 ]
293
294 # Documents to append as an appendix to all manuals.
295 #texinfo_appendices = []
296
297 # If false, no module index is generated.
298 #texinfo_domain_indices = True
299
300 # How to display URL addresses: 'footnote', 'no', or 'inline'.
301 #texinfo_show_urls = 'footnote'
302
303 # If true, do not generate a @detailmenu in the "Top" node's menu.
304 #texinfo_no_detailmenu = False
305
306
307 # -- Options for Epub output ----------------------------------------------
308
309 # Bibliographic Dublin Core info.
310 epub_title = html_title
311 epub_author = author
312 epub_publisher = author
313 epub_copyright = copyright
314
315 # The basename for the epub file. It defaults to the project name.
316 #epub_basename = project
317
318 # The HTML theme for the epub output. Since the default themes are not optimized
319 # for small screen space, using the same theme for HTML and epub output is
320 # usually not wise. This defaults to 'epub', a theme designed to save visual
321 # space.
322 epub_theme = 'epub'
323
324
325 epub_theme_options = {
326     "relbar1": "true",
327     "footer": "false"
328 }
329
330
331 # The language of the text. It defaults to the language option
332 # or 'en' if the language is not set.
333 epub_language = 'ja'
334
335 # The scheme of the identifier. Typical schemes are ISBN or URL.
336 #epub_scheme = ''
337
338 # The unique identifier of the text. This can be a ISBN number
339 # or the project homepage.
340 #epub_identifier = ''
341
342 # A unique identification for the text.
343 #epub_uid = ''
344
345 # A tuple containing the cover image and cover page html template filenames.
346 epub_cover = ('_static/cover.png', '')
347
348 # A sequence of (type, uri, title) tuples for the guide element of content.opf.
349 #epub_guide = ()
350
351 # HTML files that should be inserted before the pages created by sphinx.
352 # The format is a list of tuples containing the path and title.
353 #epub_pre_files = []
354
355 # HTML files shat should be inserted after the pages created by sphinx.
356 # The format is a list of tuples containing the path and title.
357 #epub_post_files = []
358
359 # A list of files that should not be packed into the epub file.
360 epub_exclude_files = ['search.html']
361
362 # The depth of the table of contents in toc.ncx.
363 epub_tocdepth = 3
364
365 # Allow duplicate toc entries.
366 #epub_tocdup = True
367
368 # Choose between 'default' and 'includehidden'.
369 #epub_tocscope = 'default'
370
371 # Fix unsupported image types using the Pillow.
372 #epub_fix_images = False
373
374 # Scale large images.
375 #epub_max_image_width = 0
376
377 # How to display URL addresses: 'footnote', 'no', or 'inline'.
378 #epub_show_urls = 'inline'
379
380 # If false, no index is generated.
381 epub_use_index = True
382
383
384 # Example configuration for intersphinx: refer to the Python standard library.
385 intersphinx_mapping = {'https://docs.python.org/': None}