##// END OF EJS Templates
add sphinx prolog
Matthias BUSSONNIER -
Show More
@@ -1,228 +1,237 b''
1 # -*- coding: utf-8 -*-
1 # -*- coding: utf-8 -*-
2 #
2 #
3 # IPython documentation build configuration file.
3 # IPython documentation build configuration file.
4
4
5 # NOTE: This file has been edited manually from the auto-generated one from
5 # NOTE: This file has been edited manually from the auto-generated one from
6 # sphinx. Do NOT delete and re-generate. If any changes from sphinx are
6 # sphinx. Do NOT delete and re-generate. If any changes from sphinx are
7 # needed, generate a scratch one and merge by hand any new fields needed.
7 # needed, generate a scratch one and merge by hand any new fields needed.
8
8
9 #
9 #
10 # This file is execfile()d with the current directory set to its containing dir.
10 # This file is execfile()d with the current directory set to its containing dir.
11 #
11 #
12 # The contents of this file are pickled, so don't put values in the namespace
12 # The contents of this file are pickled, so don't put values in the namespace
13 # that aren't pickleable (module imports are okay, they're removed automatically).
13 # that aren't pickleable (module imports are okay, they're removed automatically).
14 #
14 #
15 # All configuration values have a default value; values that are commented out
15 # All configuration values have a default value; values that are commented out
16 # serve to show the default value.
16 # serve to show the default value.
17
17
18 import sys, os
18 import sys, os
19
19
20 ON_RTD = os.environ.get('READTHEDOCS', None) == 'True'
20 ON_RTD = os.environ.get('READTHEDOCS', None) == 'True'
21
21
22 if ON_RTD:
22 if ON_RTD:
23 # Mock the presence of matplotlib, which we don't have on RTD
23 # Mock the presence of matplotlib, which we don't have on RTD
24 # see
24 # see
25 # http://read-the-docs.readthedocs.org/en/latest/faq.html
25 # http://read-the-docs.readthedocs.org/en/latest/faq.html
26 tags.add('rtd')
26 tags.add('rtd')
27
27
28 # If your extensions are in another directory, add it here. If the directory
28 # If your extensions are in another directory, add it here. If the directory
29 # is relative to the documentation root, use os.path.abspath to make it
29 # is relative to the documentation root, use os.path.abspath to make it
30 # absolute, like shown here.
30 # absolute, like shown here.
31 sys.path.insert(0, os.path.abspath('../sphinxext'))
31 sys.path.insert(0, os.path.abspath('../sphinxext'))
32
32
33 # Import support for ipython console session syntax highlighting
33 # Import support for ipython console session syntax highlighting
34 # (lives IPython's sphinxext subpackage)
34 # (lives IPython's sphinxext subpackage)
35 from IPython.sphinxext import ipython_console_highlighting
35 from IPython.sphinxext import ipython_console_highlighting
36
36
37 # We load the ipython release info into a dict by explicit execution
37 # We load the ipython release info into a dict by explicit execution
38 iprelease = {}
38 iprelease = {}
39 execfile('../../IPython/core/release.py',iprelease)
39 execfile('../../IPython/core/release.py',iprelease)
40
40
41 # General configuration
41 # General configuration
42 # ---------------------
42 # ---------------------
43
43
44 # Add any Sphinx extension module names here, as strings. They can be extensions
44 # Add any Sphinx extension module names here, as strings. They can be extensions
45 # coming with Sphinx (named 'sphinx.ext.*') or your custom ones.
45 # coming with Sphinx (named 'sphinx.ext.*') or your custom ones.
46 extensions = [
46 extensions = [
47 'matplotlib.sphinxext.mathmpl',
47 'matplotlib.sphinxext.mathmpl',
48 'matplotlib.sphinxext.only_directives',
48 'matplotlib.sphinxext.only_directives',
49 'matplotlib.sphinxext.plot_directive',
49 'matplotlib.sphinxext.plot_directive',
50 'sphinx.ext.autodoc',
50 'sphinx.ext.autodoc',
51 'sphinx.ext.doctest',
51 'sphinx.ext.doctest',
52 'sphinx.ext.inheritance_diagram',
52 'sphinx.ext.inheritance_diagram',
53 'IPython.sphinxext.ipython_console_highlighting',
53 'IPython.sphinxext.ipython_console_highlighting',
54 'IPython.sphinxext.ipython_directive',
54 'IPython.sphinxext.ipython_directive',
55 'numpydoc', # to preprocess docstrings
55 'numpydoc', # to preprocess docstrings
56 'github', # for easy GitHub links
56 'github', # for easy GitHub links
57 ]
57 ]
58
58
59 if ON_RTD:
59 if ON_RTD:
60 # Remove extensions not currently supported on RTD
60 # Remove extensions not currently supported on RTD
61 extensions.remove('matplotlib.sphinxext.only_directives')
61 extensions.remove('matplotlib.sphinxext.only_directives')
62 extensions.remove('matplotlib.sphinxext.mathmpl')
62 extensions.remove('matplotlib.sphinxext.mathmpl')
63 extensions.remove('matplotlib.sphinxext.plot_directive')
63 extensions.remove('matplotlib.sphinxext.plot_directive')
64 extensions.remove('IPython.sphinxext.ipython_directive')
64 extensions.remove('IPython.sphinxext.ipython_directive')
65
65
66 # Add any paths that contain templates here, relative to this directory.
66 # Add any paths that contain templates here, relative to this directory.
67 templates_path = ['_templates']
67 templates_path = ['_templates']
68
68
69 # The suffix of source filenames.
69 # The suffix of source filenames.
70 source_suffix = '.rst'
70 source_suffix = '.rst'
71
71
72 if iprelease['_version_extra']:
73 rst_prolog = """
74 .. note::
75
76 This documentation is for a development version of IPython. There may be
77 significant differences from the latest stable release (0.13.2).
78
79 """
80
72 # The master toctree document.
81 # The master toctree document.
73 master_doc = 'index'
82 master_doc = 'index'
74
83
75 # General substitutions.
84 # General substitutions.
76 project = 'IPython'
85 project = 'IPython'
77 copyright = '2008, The IPython Development Team'
86 copyright = '2008, The IPython Development Team'
78
87
79 # ghissue config
88 # ghissue config
80 github_project_url = "https://github.com/ipython/ipython"
89 github_project_url = "https://github.com/ipython/ipython"
81
90
82 # The default replacements for |version| and |release|, also used in various
91 # The default replacements for |version| and |release|, also used in various
83 # other places throughout the built documents.
92 # other places throughout the built documents.
84 #
93 #
85 # The full version, including alpha/beta/rc tags.
94 # The full version, including alpha/beta/rc tags.
86 release = iprelease['version']
95 release = iprelease['version']
87 # The short X.Y version.
96 # The short X.Y version.
88 version = '.'.join(release.split('.',2)[:2])
97 version = '.'.join(release.split('.',2)[:2])
89
98
90
99
91 # There are two options for replacing |today|: either, you set today to some
100 # There are two options for replacing |today|: either, you set today to some
92 # non-false value, then it is used:
101 # non-false value, then it is used:
93 #today = ''
102 #today = ''
94 # Else, today_fmt is used as the format for a strftime call.
103 # Else, today_fmt is used as the format for a strftime call.
95 today_fmt = '%B %d, %Y'
104 today_fmt = '%B %d, %Y'
96
105
97 # List of documents that shouldn't be included in the build.
106 # List of documents that shouldn't be included in the build.
98 #unused_docs = []
107 #unused_docs = []
99
108
100 # List of directories, relative to source directories, that shouldn't be searched
109 # List of directories, relative to source directories, that shouldn't be searched
101 # for source files.
110 # for source files.
102 exclude_dirs = ['attic']
111 exclude_dirs = ['attic']
103
112
104 # If true, '()' will be appended to :func: etc. cross-reference text.
113 # If true, '()' will be appended to :func: etc. cross-reference text.
105 #add_function_parentheses = True
114 #add_function_parentheses = True
106
115
107 # If true, the current module name will be prepended to all description
116 # If true, the current module name will be prepended to all description
108 # unit titles (such as .. function::).
117 # unit titles (such as .. function::).
109 #add_module_names = True
118 #add_module_names = True
110
119
111 # If true, sectionauthor and moduleauthor directives will be shown in the
120 # If true, sectionauthor and moduleauthor directives will be shown in the
112 # output. They are ignored by default.
121 # output. They are ignored by default.
113 #show_authors = False
122 #show_authors = False
114
123
115 # The name of the Pygments (syntax highlighting) style to use.
124 # The name of the Pygments (syntax highlighting) style to use.
116 pygments_style = 'sphinx'
125 pygments_style = 'sphinx'
117
126
118
127
119 # Options for HTML output
128 # Options for HTML output
120 # -----------------------
129 # -----------------------
121
130
122 # The style sheet to use for HTML and HTML Help pages. A file of that name
131 # The style sheet to use for HTML and HTML Help pages. A file of that name
123 # must exist either in Sphinx' static/ path, or in one of the custom paths
132 # must exist either in Sphinx' static/ path, or in one of the custom paths
124 # given in html_static_path.
133 # given in html_static_path.
125 html_style = 'default.css'
134 html_style = 'default.css'
126
135
127 # The name for this set of Sphinx documents. If None, it defaults to
136 # The name for this set of Sphinx documents. If None, it defaults to
128 # "<project> v<release> documentation".
137 # "<project> v<release> documentation".
129 #html_title = None
138 #html_title = None
130
139
131 # The name of an image file (within the static path) to place at the top of
140 # The name of an image file (within the static path) to place at the top of
132 # the sidebar.
141 # the sidebar.
133 #html_logo = None
142 #html_logo = None
134
143
135 # Add any paths that contain custom static files (such as style sheets) here,
144 # Add any paths that contain custom static files (such as style sheets) here,
136 # relative to this directory. They are copied after the builtin static files,
145 # relative to this directory. They are copied after the builtin static files,
137 # so a file named "default.css" will overwrite the builtin "default.css".
146 # so a file named "default.css" will overwrite the builtin "default.css".
138 html_static_path = ['_static']
147 html_static_path = ['_static']
139
148
140 # If not '', a 'Last updated on:' timestamp is inserted at every page bottom,
149 # If not '', a 'Last updated on:' timestamp is inserted at every page bottom,
141 # using the given strftime format.
150 # using the given strftime format.
142 html_last_updated_fmt = '%b %d, %Y'
151 html_last_updated_fmt = '%b %d, %Y'
143
152
144 # If true, SmartyPants will be used to convert quotes and dashes to
153 # If true, SmartyPants will be used to convert quotes and dashes to
145 # typographically correct entities.
154 # typographically correct entities.
146 #html_use_smartypants = True
155 #html_use_smartypants = True
147
156
148 # Custom sidebar templates, maps document names to template names.
157 # Custom sidebar templates, maps document names to template names.
149 #html_sidebars = {}
158 #html_sidebars = {}
150
159
151 # Additional templates that should be rendered to pages, maps page names to
160 # Additional templates that should be rendered to pages, maps page names to
152 # template names.
161 # template names.
153 #html_additional_pages = {}
162 #html_additional_pages = {}
154
163
155 # If false, no module index is generated.
164 # If false, no module index is generated.
156 #html_use_modindex = True
165 #html_use_modindex = True
157
166
158 # If true, the reST sources are included in the HTML build as _sources/<name>.
167 # If true, the reST sources are included in the HTML build as _sources/<name>.
159 #html_copy_source = True
168 #html_copy_source = True
160
169
161 # If true, an OpenSearch description file will be output, and all pages will
170 # If true, an OpenSearch description file will be output, and all pages will
162 # contain a <link> tag referring to it. The value of this option must be the
171 # contain a <link> tag referring to it. The value of this option must be the
163 # base URL from which the finished HTML is served.
172 # base URL from which the finished HTML is served.
164 #html_use_opensearch = ''
173 #html_use_opensearch = ''
165
174
166 # If nonempty, this is the file name suffix for HTML files (e.g. ".xhtml").
175 # If nonempty, this is the file name suffix for HTML files (e.g. ".xhtml").
167 #html_file_suffix = ''
176 #html_file_suffix = ''
168
177
169 # Output file base name for HTML help builder.
178 # Output file base name for HTML help builder.
170 htmlhelp_basename = 'ipythondoc'
179 htmlhelp_basename = 'ipythondoc'
171
180
172
181
173 # Options for LaTeX output
182 # Options for LaTeX output
174 # ------------------------
183 # ------------------------
175
184
176 # The paper size ('letter' or 'a4').
185 # The paper size ('letter' or 'a4').
177 latex_paper_size = 'letter'
186 latex_paper_size = 'letter'
178
187
179 # The font size ('10pt', '11pt' or '12pt').
188 # The font size ('10pt', '11pt' or '12pt').
180 latex_font_size = '11pt'
189 latex_font_size = '11pt'
181
190
182 # Grouping the document tree into LaTeX files. List of tuples
191 # Grouping the document tree into LaTeX files. List of tuples
183 # (source start file, target name, title, author, document class [howto/manual]).
192 # (source start file, target name, title, author, document class [howto/manual]).
184
193
185 latex_documents = [
194 latex_documents = [
186 ('index', 'ipython.tex', 'IPython Documentation',
195 ('index', 'ipython.tex', 'IPython Documentation',
187 ur"""The IPython Development Team""", 'manual', True),
196 ur"""The IPython Development Team""", 'manual', True),
188 ('parallel/winhpc_index', 'winhpc_whitepaper.tex',
197 ('parallel/winhpc_index', 'winhpc_whitepaper.tex',
189 'Using IPython on Windows HPC Server 2008',
198 'Using IPython on Windows HPC Server 2008',
190 ur"Brian E. Granger", 'manual', True)
199 ur"Brian E. Granger", 'manual', True)
191 ]
200 ]
192
201
193 # The name of an image file (relative to this directory) to place at the top of
202 # The name of an image file (relative to this directory) to place at the top of
194 # the title page.
203 # the title page.
195 #latex_logo = None
204 #latex_logo = None
196
205
197 # For "manual" documents, if this is true, then toplevel headings are parts,
206 # For "manual" documents, if this is true, then toplevel headings are parts,
198 # not chapters.
207 # not chapters.
199 #latex_use_parts = False
208 #latex_use_parts = False
200
209
201 # Additional stuff for the LaTeX preamble.
210 # Additional stuff for the LaTeX preamble.
202 #latex_preamble = ''
211 #latex_preamble = ''
203
212
204 # Documents to append as an appendix to all manuals.
213 # Documents to append as an appendix to all manuals.
205 #latex_appendices = []
214 #latex_appendices = []
206
215
207 # If false, no module index is generated.
216 # If false, no module index is generated.
208 latex_use_modindex = True
217 latex_use_modindex = True
209
218
210
219
211 # Options for texinfo output
220 # Options for texinfo output
212 # --------------------------
221 # --------------------------
213
222
214 texinfo_documents = [
223 texinfo_documents = [
215 (master_doc, 'ipython', 'IPython Documentation',
224 (master_doc, 'ipython', 'IPython Documentation',
216 'The IPython Development Team',
225 'The IPython Development Team',
217 'IPython',
226 'IPython',
218 'IPython Documentation',
227 'IPython Documentation',
219 'Programming',
228 'Programming',
220 1),
229 1),
221 ]
230 ]
222
231
223
232
224 # Cleanup
233 # Cleanup
225 # -------
234 # -------
226 # delete release info to avoid pickling errors from sphinx
235 # delete release info to avoid pickling errors from sphinx
227
236
228 del iprelease
237 del iprelease
General Comments 0
You need to be logged in to leave comments. Login now