Use blockdiag to create the Heidi box diagrams.
[ibg.git] / conf.py
1 # -*- coding: utf-8 -*-
2 #
3 # Inform Beginner's Guide documentation build configuration file, created by
4 # sphinx-quickstart on Tue Mar 29 07:50:39 2016.
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 os
16 import sys
17 import string
18 import codecs
19
20 # If extensions (or modules to document with autodoc) are in another directory,
21 # add these directories to sys.path here. If the directory is relative to the
22 # documentation root, use os.path.abspath to make it absolute, like shown here.
23 sys.path.insert(0, ".")
24
25 from tools.transcript import TranscriptLexer
26
27 # Setup function.
28 def setup(app):
29     app.add_lexer('transcript', TranscriptLexer())
30
31 # -- General configuration ------------------------------------------------
32
33 # If your documentation needs a minimal Sphinx version, state it here.
34 #needs_sphinx = '1.0'
35
36 # Add any Sphinx extension module names here, as strings. They can be
37 # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
38 # ones.
39 extensions = [
40     'sphinx.ext.todo',
41     'tools.blockdiag',
42 ]
43
44 # Add any paths that contain templates here, relative to this directory.
45 templates_path = ['templates']
46
47 # The suffix(es) of source filenames.
48 source_suffix = ['.rst']
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 document information.
57 project = u"The Inform Beginner's Guide"
58 author = u"Roger Firth and Sonja Kesserich"
59 copyright = u'2004, ' + author
60
61 editor = "Dennis G. Jerz"
62 edition = "Third Edition: August 2004"
63 extra = "With a foreword by Graham Nelson"
64
65 licensetext = codecs.open('LICENSE', encoding='utf-8').read()
66
67 # The version info for the project you're documenting, acts as replacement
68 # for |version| and |release|, also used in various other places throughout
69 # the built documents.
70 #
71 # The short X.Y version.
72 version = '3'
73 # The full version, including alpha/beta/rc tags.
74 release = version
75
76 # The language for content autogenerated by Sphinx. Refer to documentation
77 # for a list of supported languages.
78 #
79 # This is also used if you do content translation via gettext catalogs.
80 # Usually you set "language" from the command line for these cases.
81 language = None
82
83 # There are two options for replacing |today|: either, you set today to some
84 # non-false value, then it is used:
85 #today = ''
86 # Else, today_fmt is used as the format for a strftime call.
87 #today_fmt = '%B %d, %Y'
88
89 # List of patterns, relative to source directory, that match files and
90 # directories to ignore when looking for source files.
91 exclude_patterns = ['config', 'output']
92
93 # The reST default role (used for this markup: `text`) to use for all
94 # documents.
95 default_role = "any"
96
97 # If true, '()' will be appended to :func: etc. cross-reference text.
98 #add_function_parentheses = True
99
100 # If true, the current module name will be prepended to all description
101 # unit titles (such as .. function::).
102 #add_module_names = True
103
104 # If true, sectionauthor and moduleauthor directives will be shown in the
105 # output. They are ignored by default.
106 #show_authors = False
107
108 # The name of the Pygments (syntax highlighting) style to use.
109 pygments_style = 'default'
110
111 # The default Pygments highlight language.
112 highlight_language = 'none'
113
114 # A list of ignored prefixes for module index sorting.
115 #modindex_common_prefix = []
116
117 # If true, keep warnings as "system message" paragraphs in the built documents.
118 #keep_warnings = False
119
120 # If true, `todo` and `todoList` produce output, else they produce nothing.
121 todo_include_todos = True
122
123
124 # -- Options for HTML output ----------------------------------------------
125
126 # The theme to use for HTML and HTML Help pages.  See the documentation for
127 # a list of builtin themes.
128 html_theme = 'alabaster'
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     'font_family': 'Georgia',
135     'head_font_family': 'Georgia',
136     'page_width': '1050px',
137     'show_related': True,
138 }
139
140 # Add any paths that contain custom themes here, relative to this directory.
141 #html_theme_path = []
142
143 # The name for this set of Sphinx documents.  If None, it defaults to
144 # "<project> v<release> documentation".
145 html_title = project
146
147 # A shorter title for the navigation bar.  Default is the same as html_title.
148 #html_short_title = None
149
150 # The name of an image file (relative to this directory) to place at the top
151 # of the sidebar.
152 #html_logo = None
153
154 # The name of an image file (within the static path) to use as favicon of the
155 # docs.  This file should be a Windows icon file (.ico) being 16x16 or 32x32
156 # pixels large.
157 #html_favicon = None
158
159 # Add any paths that contain custom static files (such as style sheets) here,
160 # relative to this directory. They are copied after the builtin static files,
161 # so a file named "default.css" will overwrite the builtin "default.css".
162 #html_static_path = ['static']
163
164 # Add any extra paths that contain custom files (such as robots.txt or
165 # .htaccess) here, relative to this directory. These files are copied
166 # directly to the root of the documentation.
167 #html_extra_path = []
168
169 # If not '', a 'Last updated on:' timestamp is inserted at every page bottom,
170 # using the given strftime format.
171 #html_last_updated_fmt = '%b %d, %Y'
172
173 # If true, SmartyPants will be used to convert quotes and dashes to
174 # typographically correct entities.
175 #html_use_smartypants = True
176
177 # Custom sidebar templates, maps document names to template names.
178 #html_sidebars = {}
179
180 # Additional templates that should be rendered to pages, maps page names to
181 # template names.
182 #html_additional_pages = {}
183
184 # If false, no module index is generated.
185 #html_domain_indices = True
186
187 # If false, no index is generated.
188 #html_use_index = True
189
190 # If true, the index is split into individual pages for each letter.
191 #html_split_index = False
192
193 # If true, links to the reST sources are added to the pages.
194 #html_show_sourcelink = True
195
196 # If true, "Created using Sphinx" is shown in the HTML footer. Default is True.
197 #html_show_sphinx = True
198
199 # If true, "(C) Copyright ..." is shown in the HTML footer. Default is True.
200 #html_show_copyright = True
201
202 # If true, an OpenSearch description file will be output, and all pages will
203 # contain a <link> tag referring to it.  The value of this option must be the
204 # base URL from which the finished HTML is served.
205 #html_use_opensearch = ''
206
207 # This is the file name suffix for HTML files (e.g. ".xhtml").
208 #html_file_suffix = None
209
210 # Language to be used for generating the HTML full-text search index.
211 # Sphinx supports the following languages:
212 #   'da', 'de', 'en', 'es', 'fi', 'fr', 'hu', 'it', 'ja'
213 #   'nl', 'no', 'pt', 'ro', 'ru', 'sv', 'tr'
214 #html_search_language = 'en'
215
216 # A dictionary with options for the search language support, empty by default.
217 # Now only 'ja' uses this config value
218 #html_search_options = {'type': 'default'}
219
220 # The name of a javascript file (relative to the configuration directory) that
221 # implements a search results scorer. If empty, the default will be used.
222 #html_search_scorer = 'scorer.js'
223
224 # Output file base name for HTML help builder.
225 htmlhelp_basename = 'IBG'
226
227 # -- Options for LaTeX output ---------------------------------------------
228
229 # Title page information.
230 latex_image = "harry1"
231 latex_image_title = "First Steps"
232 latex_image_info = "(watercolour and crayon on paper, 2002) Harry Firth (2000-)"
233 latex_image_path = os.path.join('images', latex_image + '.png')
234 latex_additional_files = [latex_image_path]
235
236 template = string.Template(open('config/preamble.tex').read())
237
238 latex_contents = r"""
239 \coverpage
240 \licensepage
241 \historypage
242 \contentspage
243 \newpage
244 \maintext
245 """
246
247 latex_elements = {
248     # The paper size ('letterpaper' or 'a4paper').
249     'papersize': 'a4paper',
250
251     # The font size ('10pt', '11pt' or '12pt').
252     'pointsize': '12pt',
253
254     # Additional stuff for the LaTeX preamble.
255     'preamble': template.substitute(title=project,
256                                     author=author,
257                                     image=latex_image,
258                                     imagetitle=latex_image_title,
259                                     imageinfo=latex_image_info,
260                                     editor=editor,
261                                     edition=edition,
262                                     extra=extra,
263                                     licensetext=licensetext),
264
265     'tableofcontents': latex_contents,
266
267     'fontpkg': '',
268
269     # Latex figure (float) alignment
270     #'figure_align': 'htbp',
271 }
272  
273 # Grouping the document tree into LaTeX files. List of tuples
274 # (source start file, target name, title,
275 #  author, documentclass [howto, manual, or own class]).
276 latex_documents = [
277     (master_doc, 'IBG.tex', project, author, 'howto'),
278 ]
279
280 # The name of an image file (relative to this directory) to place at the top of
281 # the title page.
282 #latex_logo = None
283
284 # For "manual" documents, if this is true, then toplevel headings are parts,
285 # not chapters.
286 #latex_use_parts = False
287
288 # If true, show page references after internal links.
289 latex_show_pagerefs = False
290
291 # If true, show URL addresses after external links.
292 #latex_show_urls = False
293
294 # Documents to append as an appendix to all manuals.
295 #latex_appendices = []
296
297 # If false, no module index is generated.
298 #latex_domain_indices = True
299
300
301 # -- Options for manual page output ---------------------------------------
302
303 # One entry per manual page. List of tuples
304 # (source start file, name, description, authors, manual section).
305 man_pages = [
306     (master_doc, 'IBG', project, [author], 1)
307 ]
308
309 # If true, show URL addresses after external links.
310 #man_show_urls = False
311
312
313 # -- Options for Texinfo output -------------------------------------------
314
315 # Grouping the document tree into Texinfo files. List of tuples
316 # (source start file, target name, title, author,
317 #  dir menu entry, description, category)
318 texinfo_documents = [
319   (master_doc, 'ibg', project,
320    author, project, 'Beginner\'s guide to Inform.',
321    'Games'),
322 ]
323
324 # Documents to append as an appendix to all manuals.
325 #texinfo_appendices = []
326
327 # If false, no module index is generated.
328 #texinfo_domain_indices = True
329
330 # How to display URL addresses: 'footnote', 'no', or 'inline'.
331 #texinfo_show_urls = 'footnote'
332
333 # If true, do not generate a @detailmenu in the "Top" node's menu.
334 #texinfo_no_detailmenu = False
335
336
337 # -- Options for block diagrams -------------------------------------------
338
339 # The paths to truetype fonts. blockdiag_fontpath option accepts both
340 # single path string and list of paths.
341 blockdiag_fontpath = []
342
343 # The path to fontmap definitions.
344 blockdiag_fontmap = ""
345
346 # Render diagrams in antialias mode or not.
347 blockdiag_antialias = True
348
349 # Render diagrams as transparency or not.
350 blockdiag_transparency = True
351
352 # The output image format at generating HTML docs ("PNG" or "SVG").
353 blockdiag_html_image_format = "SVG"
354
355 # The output image format at generating PDF docs (through LaTeX). ("PNG" or
356 # "PDF").  When a value of PDF is specified, you can get clear diagram
357 # images. In which case, reportlab library is required.
358 blockdiag_latex_image_format = "PNG"
359
360 # Enable debug mode of blockdiag.
361 blockdiag_debug = False