|
9 | 9 | # Roundup documentation build configuration file, created by |
10 | 10 | # sphinx-quickstart on Tue Jan 20 17:33:20 2009. |
11 | 11 | # |
12 | | -# This file is execfile()d with the current directory set to its containing dir. |
| 12 | +# This file is execfile()d with the current directory set to its |
| 13 | +# containing dir. |
13 | 14 | # |
14 | | -# The contents of this file are pickled, so don't put values in the namespace |
15 | | -# that aren't pickleable (module imports are okay, they're removed automatically). |
| 15 | +# Note that not all possible configuration values are present in this |
| 16 | +# autogenerated file. |
16 | 17 | # |
17 | 18 | # All configuration values have a default; values that are commented out |
18 | 19 | # serve to show the default. |
19 | 20 |
|
20 | | -import sys, os |
| 21 | +import sys |
| 22 | +import os |
21 | 23 |
|
22 | 24 |
|
23 | 25 | # Read Roundup version by importing it from parent directory, |
|
35 | 37 | sys.path = SYSSAVE |
36 | 38 |
|
37 | 39 |
|
38 | | -# If your extensions are in another directory, add it here. If the directory |
39 | | -# is relative to the documentation root, use os.path.abspath to make it |
40 | | -# absolute, like shown here. |
41 | | -#sys.path.append(os.path.abspath('.')) |
| 40 | +# If extensions (or modules to document with autodoc) are in another directory, |
| 41 | +# add these directories to sys.path here. If the directory is relative to the |
| 42 | +# documentation root, use os.path.abspath to make it absolute, like shown here. |
| 43 | +#sys.path.insert(0, os.path.abspath('.')) |
42 | 44 |
|
43 | | -# General configuration |
44 | | -# --------------------- |
| 45 | +# -- General configuration ------------------------------------------------ |
45 | 46 |
|
46 | | -# Add any Sphinx extension module names here, as strings. They can be extensions |
47 | | -# coming with Sphinx (named 'sphinx.ext.*') or your custom ones. |
| 47 | +# If your documentation needs a minimal Sphinx version, state it here. |
| 48 | +#needs_sphinx = '1.0' |
| 49 | + |
| 50 | +# Add any Sphinx extension module names here, as strings. They can be |
| 51 | +# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom |
| 52 | +# ones. |
48 | 53 | #extensions = ['toctree'] |
49 | 54 |
|
50 | 55 | # Add any paths that contain templates here, relative to this directory. |
51 | 56 | templates_path = ['_templates'] |
52 | 57 |
|
53 | | -# The suffix of source filenames. |
| 58 | +# The suffix(es) of source filenames. |
| 59 | +# You can specify multiple suffix as a list of string: |
| 60 | +# source_suffix = ['.rst', '.md'] |
54 | 61 | source_suffix = '.txt' |
55 | 62 |
|
56 | 63 | # The encoding of source files. |
|
74 | 81 |
|
75 | 82 | # The language for content autogenerated by Sphinx. Refer to documentation |
76 | 83 | # for a list of supported languages. |
77 | | -#language = None |
| 84 | +# |
| 85 | +# This is also used if you do content translation via gettext catalogs. |
| 86 | +# Usually you set "language" from the command line for these cases. |
| 87 | +language = None |
78 | 88 |
|
79 | 89 | # There are two options for replacing |today|: either, you set today to some |
80 | 90 | # non-false value, then it is used: |
81 | 91 | #today = '' |
82 | 92 | # Else, today_fmt is used as the format for a strftime call. |
83 | 93 | #today_fmt = '%B %d, %Y' |
84 | 94 |
|
85 | | -# List of documents that shouldn't be included in the build. |
86 | | -#unused_docs = [] |
| 95 | +# List of patterns, relative to source directory, that match files and |
| 96 | +# directories to ignore when looking for source files. |
| 97 | +exclude_patterns = ['_build'] |
87 | 98 |
|
88 | | -# List of directories, relative to source directory, that shouldn't be searched |
89 | | -# for source files. |
90 | | -exclude_trees = ['.build'] |
91 | | - |
92 | | -# The reST default role (used for this markup: `text`) to use for all documents. |
| 99 | +# The reST default role (used for this markup: `text`) to use for all |
| 100 | +# documents. |
93 | 101 | #default_role = None |
94 | 102 |
|
95 | 103 | # If true, '()' will be appended to :func: etc. cross-reference text. |
|
106 | 114 | # The name of the Pygments (syntax highlighting) style to use. |
107 | 115 | pygments_style = 'sphinx' |
108 | 116 |
|
| 117 | +# A list of ignored prefixes for module index sorting. |
| 118 | +#modindex_common_prefix = [] |
| 119 | + |
| 120 | +# If true, keep warnings as "system message" paragraphs in the built documents. |
| 121 | +#keep_warnings = False |
109 | 122 |
|
110 | | -# Options for HTML output |
111 | | -# ----------------------- |
| 123 | +# -- Options for HTML output ---------------------------------------------- |
112 | 124 |
|
| 125 | +#-- pre Sphinx 1.3 |
113 | 126 | # The style sheet to use for HTML and HTML Help pages. A file of that name |
114 | 127 | # must exist either in Sphinx' static/ path, or in one of the custom paths |
115 | 128 | # given in html_static_path. |
116 | 129 | html_style = 'default.css' |
117 | 130 |
|
118 | | -# Add any extra paths that contain custom files (such as robots.txt or |
119 | | -# .htaccess) here, relative to this directory. These files are copied |
120 | | -# directly to the root of the documentation. |
121 | | -html_extra_path = ['html_extra'] |
| 131 | +#-- Sphinx 1.3 |
| 132 | +# The theme to use for HTML and HTML Help pages. See the documentation for |
| 133 | +# a list of builtin themes. |
| 134 | +#html_theme = 'alabaster' |
| 135 | + |
| 136 | +# Theme options are theme-specific and customize the look and feel of a theme |
| 137 | +# further. For a list of options available for each theme, see the |
| 138 | +# documentation. |
| 139 | +#html_theme_options = {} |
| 140 | + |
| 141 | +# Add any paths that contain custom themes here, relative to this directory. |
| 142 | +#html_theme_path = [] |
122 | 143 |
|
123 | 144 | # The name for this set of Sphinx documents. If None, it defaults to |
124 | 145 | # "<project> v<release> documentation". |
|
141 | 162 | # so a file named "default.css" will overwrite the builtin "default.css". |
142 | 163 | html_static_path = ['_static'] |
143 | 164 |
|
| 165 | +# Add any extra paths that contain custom files (such as robots.txt or |
| 166 | +# .htaccess) here, relative to this directory. These files are copied |
| 167 | +# directly to the root of the documentation. |
| 168 | +html_extra_path = ['html_extra'] |
| 169 | + |
144 | 170 | # If not '', a 'Last updated on:' timestamp is inserted at every page bottom, |
145 | 171 | # using the given strftime format. |
146 | 172 | html_last_updated_fmt = '%b %d, %Y' |
|
152 | 178 | # Custom sidebar templates, maps document names to template names. |
153 | 179 | #html_sidebars = {} |
154 | 180 |
|
155 | | -html_collapse_toctree = True |
156 | | - |
157 | 181 | # Additional templates that should be rendered to pages, maps page names to |
158 | 182 | # template names. |
159 | 183 | #html_additional_pages = {} |
160 | 184 |
|
161 | 185 | # If false, no module index is generated. |
162 | | -#html_use_modindex = True |
| 186 | +#html_domain_indices = True |
163 | 187 |
|
164 | 188 | # If false, no index is generated. |
165 | 189 | #html_use_index = True |
166 | 190 |
|
167 | 191 | # If true, the index is split into individual pages for each letter. |
168 | 192 | #html_split_index = False |
169 | 193 |
|
170 | | -# If true, the reST sources are included in the HTML build as _sources/<name>. |
171 | | -#html_copy_source = True |
| 194 | +# If true, links to the reST sources are added to the pages. |
| 195 | +#html_show_sourcelink = True |
| 196 | + |
| 197 | +# If true, "Created using Sphinx" is shown in the HTML footer. Default is True. |
| 198 | +#html_show_sphinx = True |
| 199 | + |
| 200 | +# If true, "(C) Copyright ..." is shown in the HTML footer. Default is True. |
| 201 | +#html_show_copyright = True |
172 | 202 |
|
173 | 203 | # If true, an OpenSearch description file will be output, and all pages will |
174 | 204 | # contain a <link> tag referring to it. The value of this option must be the |
175 | 205 | # base URL from which the finished HTML is served. |
176 | 206 | #html_use_opensearch = '' |
177 | 207 |
|
178 | | -# If nonempty, this is the file name suffix for HTML files (e.g. ".xhtml"). |
179 | | -#html_file_suffix = '' |
| 208 | +# This is the file name suffix for HTML files (e.g. ".xhtml"). |
| 209 | +#html_file_suffix = None |
180 | 210 |
|
181 | | -# Output file base name for HTML help builder. |
182 | | -htmlhelp_basename = 'Roundupdoc' |
| 211 | +# Language to be used for generating the HTML full-text search index. |
| 212 | +# Sphinx supports the following languages: |
| 213 | +# 'da', 'de', 'en', 'es', 'fi', 'fr', 'hu', 'it', 'ja' |
| 214 | +# 'nl', 'no', 'pt', 'ro', 'ru', 'sv', 'tr' |
| 215 | +#html_search_language = 'en' |
| 216 | + |
| 217 | +# A dictionary with options for the search language support, empty by default. |
| 218 | +# Now only 'ja' uses this config value |
| 219 | +#html_search_options = {'type': 'default'} |
183 | 220 |
|
| 221 | +# The name of a javascript file (relative to the configuration directory) that |
| 222 | +# implements a search results scorer. If empty, the default will be used. |
| 223 | +#html_search_scorer = 'scorer.js' |
184 | 224 |
|
185 | | -# Options for LaTeX output |
186 | | -# ------------------------ |
| 225 | +# Output file base name for HTML help builder. |
| 226 | +htmlhelp_basename = 'roundupdoc' |
187 | 227 |
|
188 | | -# The paper size ('letter' or 'a4'). |
189 | | -#latex_paper_size = 'letter' |
| 228 | +# -- Options for LaTeX output --------------------------------------------- |
| 229 | + |
| 230 | +latex_elements = { |
| 231 | +# The paper size ('letterpaper' or 'a4paper'). |
| 232 | +#'papersize': 'letterpaper', |
190 | 233 |
|
191 | 234 | # The font size ('10pt', '11pt' or '12pt'). |
192 | | -#latex_font_size = '10pt' |
| 235 | +#'pointsize': '10pt', |
| 236 | + |
| 237 | +# Additional stuff for the LaTeX preamble. |
| 238 | +#'preamble': '', |
| 239 | + |
| 240 | +# Latex figure (float) alignment |
| 241 | +#'figure_align': 'htbp', |
| 242 | +} |
193 | 243 |
|
194 | 244 | # Grouping the document tree into LaTeX files. List of tuples |
195 | | -# (source start file, target name, title, author, document class [howto/manual]). |
| 245 | +# (source start file, target name, title, |
| 246 | +# author, documentclass [howto, manual, or own class]). |
196 | 247 | latex_documents = [ |
197 | 248 | ('docs/index', 'Roundup.tex', u'Roundup Documentation', |
198 | 249 | u'Richard Jones', 'manual'), |
|
206 | 257 | # not chapters. |
207 | 258 | #latex_use_parts = False |
208 | 259 |
|
209 | | -# Additional stuff for the LaTeX preamble. |
210 | | -#latex_preamble = '' |
| 260 | +# If true, show page references after internal links. |
| 261 | +#latex_show_pagerefs = False |
| 262 | + |
| 263 | +# If true, show URL addresses after external links. |
| 264 | +#latex_show_urls = False |
211 | 265 |
|
212 | 266 | # Documents to append as an appendix to all manuals. |
213 | 267 | #latex_appendices = [] |
214 | 268 |
|
215 | 269 | # If false, no module index is generated. |
216 | | -#latex_use_modindex = True |
| 270 | +#latex_domain_indices = True |
0 commit comments