|
10 | 10 | # add these directories to sys.path here. If the directory is relative to the
|
11 | 11 | # documentation root, use os.path.abspath to make it absolute, like shown here.
|
12 | 12 | # sys.path.append(os.path.abspath('.'))
|
13 |
| -#sys.path.insert(0, os.path.abspath('../../..')) |
| 13 | +# sys.path.insert(0, os.path.abspath('../../..')) |
14 | 14 |
|
15 | 15 | # -- General configuration -----------------------------------------------------
|
16 | 16 |
|
17 | 17 | # If your documentation needs a minimal Sphinx version, state it here.
|
18 |
| -#needs_sphinx = '1.0' |
| 18 | +# needs_sphinx = '1.0' |
19 | 19 |
|
20 | 20 | # Add any Sphinx extension module names here, as strings. They can be extensions
|
21 | 21 | # coming with Sphinx (named 'sphinx.ext.*') or your custom ones.
|
|
28 | 28 | source_suffix = '.rst'
|
29 | 29 |
|
30 | 30 | # The encoding of source files.
|
31 |
| -#source_encoding = 'utf-8-sig' |
| 31 | +# source_encoding = 'utf-8-sig' |
32 | 32 |
|
33 | 33 | # The master toctree document.
|
34 | 34 | master_doc = 'index'
|
|
43 | 43 | sys.path.insert(0, os.path.abspath('../../..'))
|
44 | 44 | from setup import versiondata
|
45 | 45 | fullversion = versiondata.get('DEFAULT', 'version')
|
| 46 | +# sys.path.remove(os.path.abspath('../../..')) |
46 | 47 | # The short X.Y version.
|
47 | 48 | version = '.'.join(fullversion.split('.')[:2])
|
48 | 49 | # The full version, including alpha/beta/rc tags.
|
49 | 50 | release = fullversion
|
50 | 51 |
|
51 | 52 | # The language for content autogenerated by Sphinx. Refer to documentation
|
52 | 53 | # for a list of supported languages.
|
53 |
| -#language = None |
| 54 | +# language = None |
54 | 55 |
|
55 | 56 | # There are two options for replacing |today|: either, you set today to some
|
56 | 57 | # non-false value, then it is used:
|
57 |
| -#today = '' |
| 58 | +# today = '' |
58 | 59 | today_seconds = versiondata.getint('DEFAULT', 'timestamp')
|
59 | 60 | today = time.strftime('%B %d, %Y', time.localtime(today_seconds))
|
60 | 61 | year = today.split()[-1]
|
61 | 62 | # Else, today_fmt is used as the format for a strftime call.
|
62 |
| -#today_fmt = '%B %d, %Y' |
| 63 | +# today_fmt = '%B %d, %Y' |
63 | 64 | # substitute YEAR in the copyright string
|
64 | 65 | copyright = copyright.replace('%Y', year)
|
65 | 66 |
|
|
68 | 69 | exclude_patterns = []
|
69 | 70 |
|
70 | 71 | # The reST default role (used for this markup: `text`) to use for all documents.
|
71 |
| -#default_role = None |
| 72 | +# default_role = None |
72 | 73 |
|
73 | 74 | # If true, '()' will be appended to :func: etc. cross-reference text.
|
74 |
| -#add_function_parentheses = True |
| 75 | +# add_function_parentheses = True |
75 | 76 |
|
76 | 77 | # If true, the current module name will be prepended to all description
|
77 | 78 | # unit titles (such as .. function::).
|
78 |
| -#add_module_names = True |
| 79 | +# add_module_names = True |
79 | 80 |
|
80 | 81 | # If true, sectionauthor and moduleauthor directives will be shown in the
|
81 | 82 | # output. They are ignored by default.
|
82 |
| -#show_authors = False |
| 83 | +# show_authors = False |
83 | 84 |
|
84 | 85 | # The name of the Pygments (syntax highlighting) style to use.
|
85 | 86 | pygments_style = 'sphinx'
|
86 | 87 |
|
87 | 88 | # A list of ignored prefixes for module index sorting.
|
88 |
| -#modindex_common_prefix = [] |
| 89 | +# modindex_common_prefix = [] |
89 | 90 |
|
90 | 91 | # Display all warnings for missing links.
|
91 |
| -#nitpicky = True |
| 92 | +# nitpicky = True |
92 | 93 |
|
93 | 94 | # -- Options for HTML output ---------------------------------------------------
|
94 | 95 |
|
|
99 | 100 | # Theme options are theme-specific and customize the look and feel of a theme
|
100 | 101 | # further. For a list of options available for each theme, see the
|
101 | 102 | # documentation.
|
102 |
| -#html_theme_options = {} |
| 103 | +# html_theme_options = {} |
103 | 104 | html_theme_options = {'collapsiblesidebar' : 'true'}
|
104 | 105 |
|
105 | 106 | # Add any paths that contain custom themes here, relative to this directory.
|
106 |
| -#html_theme_path = [] |
| 107 | +# html_theme_path = [] |
107 | 108 |
|
108 | 109 | # The name for this set of Sphinx documents. If None, it defaults to
|
109 | 110 | # "<project> v<release> documentation".
|
110 |
| -#html_title = None |
| 111 | +# html_title = None |
111 | 112 |
|
112 | 113 | # A shorter title for the navigation bar. Default is the same as html_title.
|
113 |
| -#html_short_title = None |
| 114 | +# html_short_title = None |
114 | 115 |
|
115 | 116 | # The name of an image file (relative to this directory) to place at the top
|
116 | 117 | # of the sidebar.
|
117 |
| -#html_logo = None |
| 118 | +# html_logo = None |
118 | 119 |
|
119 | 120 | # The name of an image file (within the static path) to use as favicon of the
|
120 | 121 | # docs. This file should be a Windows icon file (.ico) being 16x16 or 32x32
|
121 | 122 | # pixels large.
|
122 |
| -#html_favicon = None |
| 123 | +# html_favicon = None |
123 | 124 |
|
124 | 125 | # Add any paths that contain custom static files (such as style sheets) here,
|
125 | 126 | # relative to this directory. They are copied after the builtin static files,
|
|
128 | 129 |
|
129 | 130 | # If not '', a 'Last updated on:' timestamp is inserted at every page bottom,
|
130 | 131 | # using the given strftime format.
|
131 |
| -#html_last_updated_fmt = '%b %d, %Y' |
| 132 | +# html_last_updated_fmt = '%b %d, %Y' |
132 | 133 |
|
133 | 134 | # If true, SmartyPants will be used to convert quotes and dashes to
|
134 | 135 | # typographically correct entities.
|
135 |
| -#html_use_smartypants = True |
| 136 | +# html_use_smartypants = True |
136 | 137 |
|
137 | 138 | # Custom sidebar templates, maps document names to template names.
|
138 |
| -#html_sidebars = {} |
| 139 | +# html_sidebars = {} |
139 | 140 |
|
140 | 141 | # Additional templates that should be rendered to pages, maps page names to
|
141 | 142 | # template names.
|
142 |
| -#html_additional_pages = {} |
| 143 | +# html_additional_pages = {} |
143 | 144 |
|
144 | 145 | # If false, no module index is generated.
|
145 |
| -#html_domain_indices = True |
| 146 | +# html_domain_indices = True |
146 | 147 |
|
147 | 148 | # If false, no index is generated.
|
148 |
| -#html_use_index = True |
| 149 | +# html_use_index = True |
149 | 150 |
|
150 | 151 | # If true, the index is split into individual pages for each letter.
|
151 | 152 | html_split_index = True
|
152 | 153 |
|
153 | 154 | # If true, links to the reST sources are added to the pages.
|
154 |
| -#html_show_sourcelink = True |
| 155 | +# html_show_sourcelink = True |
155 | 156 |
|
156 | 157 | # If true, "Created using Sphinx" is shown in the HTML footer. Default is True.
|
157 |
| -#html_show_sphinx = True |
| 158 | +# html_show_sphinx = True |
158 | 159 |
|
159 | 160 | # If true, "(C) Copyright ..." is shown in the HTML footer. Default is True.
|
160 |
| -#html_show_copyright = True |
| 161 | +# html_show_copyright = True |
161 | 162 |
|
162 | 163 | # If true, an OpenSearch description file will be output, and all pages will
|
163 | 164 | # contain a <link> tag referring to it. The value of this option must be the
|
164 | 165 | # base URL from which the finished HTML is served.
|
165 |
| -#html_use_opensearch = '' |
| 166 | +# html_use_opensearch = '' |
166 | 167 |
|
167 | 168 | # This is the file name suffix for HTML files (e.g. ".xhtml").
|
168 |
| -#html_file_suffix = None |
| 169 | +# html_file_suffix = None |
169 | 170 |
|
170 | 171 | # Output file base name for HTML help builder.
|
171 | 172 | htmlhelp_basename = 'pyobjcrystdoc'
|
|
175 | 176 |
|
176 | 177 | latex_elements = {
|
177 | 178 | # The paper size ('letterpaper' or 'a4paper').
|
178 |
| -#'papersize': 'letterpaper', |
| 179 | +# 'papersize': 'letterpaper', |
179 | 180 |
|
180 | 181 | # The font size ('10pt', '11pt' or '12pt').
|
181 |
| -#'pointsize': '10pt', |
| 182 | +# 'pointsize': '10pt', |
182 | 183 |
|
183 | 184 | # Additional stuff for the LaTeX preamble.
|
184 |
| -#'preamble': '', |
| 185 | +# 'preamble': '', |
185 | 186 | }
|
186 | 187 |
|
187 | 188 | # Grouping the document tree into LaTeX files. List of tuples
|
|
190 | 191 |
|
191 | 192 | # The name of an image file (relative to this directory) to place at the top of
|
192 | 193 | # the title page.
|
193 |
| -#latex_logo = None |
| 194 | +# latex_logo = None |
194 | 195 |
|
195 | 196 | # For "manual" documents, if this is true, then toplevel headings are parts,
|
196 | 197 | # not chapters.
|
197 |
| -#latex_use_parts = False |
| 198 | +# latex_use_parts = False |
198 | 199 |
|
199 | 200 | # If true, show page references after internal links.
|
200 |
| -#latex_show_pagerefs = False |
| 201 | +# latex_show_pagerefs = False |
201 | 202 |
|
202 | 203 | # If true, show URL addresses after external links.
|
203 |
| -#latex_show_urls = False |
| 204 | +# latex_show_urls = False |
204 | 205 |
|
205 | 206 | # Documents to append as an appendix to all manuals.
|
206 |
| -#latex_appendices = [] |
| 207 | +# latex_appendices = [] |
207 | 208 |
|
208 | 209 | # If false, no module index is generated.
|
209 |
| -#latex_domain_indices = True |
| 210 | +# latex_domain_indices = True |
0 commit comments