]> git.donarmstrong.com Git - neurodebian.git/blob - sphinx/conf.py
Enable TODO items in sphinx.
[neurodebian.git] / sphinx / conf.py
1 # -*- coding: utf-8 -*-
2 #
3 # Debian Package Repository documentation build configuration file, created by
4 # sphinx-quickstart on Sat Mar 28 17:08:58 2009.
5 #
6 # This file is execfile()d with the current directory set to its containing dir.
7 #
8 # The contents of this file are pickled, so don't put values in the namespace
9 # that aren't pickleable (module imports are okay, they're removed automatically).
10 #
11 # Note that not all possible configuration values are present in this
12 # autogenerated file.
13 #
14 # All configuration values have a default; values that are commented out
15 # serve to show the default.
16
17 import sys, os
18
19 # If your extensions are in another directory, add it here. If the directory
20 # is relative to the documentation root, use os.path.abspath to make it
21 # absolute, like shown here.
22 #sys.path.append(os.path.abspath('.'))
23
24 def artworkdir():
25     """Look into every parent dir for 'artwork' and return its relative path."""
26     level = 0
27     while True:
28         target = os.path.join(*([os.path.pardir] * level + ['artwork']))
29         if os.path.isdir(target):
30             return target
31         else:
32             level += 1
33         # if there is no way up
34         if os.path.abspath(os.path.join(*([os.path.pardir] * level))) == \
35            os.path.abspath(os.path.join(*([os.path.pardir] * (level + 1)))):
36             raise(ValueError, "Cannot find 'artwork'.")
37
38
39 # General configuration
40 # ---------------------
41
42 # Add any Sphinx extension module names here, as strings. They can be extensions
43 # coming with Sphinx (named 'sphinx.ext.*') or your custom ones.
44 #extensions = []
45 sys.path.append(os.path.abspath('.'))
46 extensions = ['sphinxext.quote',
47               'sphinx.ext.todo']
48
49 # show todo items
50 todo_include_todos = True
51
52 # Add any paths that contain templates here, relative to this directory.
53 templates_path = ['_templates']
54
55 # The suffix of source filenames.
56 source_suffix = '.rst'
57
58 # The encoding of source files.
59 #source_encoding = 'utf-8'
60
61 # The master toctree document.
62 master_doc = 'index'
63
64 # General information about the project.
65 project = u'Debian Neuroscience Package Repository'
66 copyright = u'2009-2010, NeuroDebian Team'
67
68 # The version info for the project you're documenting, acts as replacement for
69 # |version| and |release|, also used in various other places throughout the
70 # built documents.
71 #
72 # The short X.Y version.
73 version = ''
74 # The full version, including alpha/beta/rc tags.
75 release = ''
76
77 # The language for content autogenerated by Sphinx. Refer to documentation
78 # for a list of supported languages.
79 #language = None
80
81 # There are two options for replacing |today|: either, you set today to some
82 # non-false value, then it is used:
83 #today = ''
84 # Else, today_fmt is used as the format for a strftime call.
85 today_fmt = '%B %d, %Y'
86
87 # List of documents that shouldn't be included in the build.
88 #unused_docs = []
89
90 # List of directories, relative to source directory, that shouldn't be searched
91 # for source files.
92 exclude_trees = ['pkgs_addenum']
93
94 # The reST default role (used for this markup: `text`) to use for all documents.
95 #default_role = None
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 = 'sphinx'
110
111
112 # Options for HTML output
113 # -----------------------
114
115 # The style sheet to use for HTML and HTML Help pages. A file of that name
116 # must exist either in Sphinx' static/ path, or in one of the custom paths
117 # given in html_static_path.
118 html_style = 'neurodebian.css'
119
120 # The name for this set of Sphinx documents.  If None, it defaults to
121 # "<project> v<release> documentation".
122 html_title = project
123
124 # A shorter title for the navigation bar.  Default is the same as html_title.
125 #html_short_title = "Debian Neuroscience"
126
127 # The name of an image file (relative to this directory) to place at the top
128 # of the sidebar.
129 html_logo = os.path.join(artworkdir(), 'logo_tuned/fmri_w200.png')
130
131 # The name of an image file (within the static path) to use as favicon of the
132 # docs.  This file should be a Windows icon file (.ico) being 16x16 or 32x32
133 # pixels large.
134 html_favicon = 'favicon.ico'
135
136 # Add any paths that contain custom static files (such as style sheets) here,
137 # relative to this directory. They are copied after the builtin static files,
138 # so a file named "default.css" will overwrite the builtin "default.css".
139 html_static_path = ['_static']
140
141 # If not '', a 'Last updated on:' timestamp is inserted at every page bottom,
142 # using the given strftime format.
143 #html_last_updated_fmt = '%b %d, %Y'
144
145 # If true, SmartyPants will be used to convert quotes and dashes to
146 # typographically correct entities.
147 #html_use_smartypants = True
148
149 # Custom sidebar templates, maps document names to template names.
150 #html_sidebars = {}
151
152 # Additional templates that should be rendered to pages, maps page names to
153 # template names.
154 #html_additional_pages = {}
155
156 # If false, no module index is generated.
157 html_use_modindex = False
158
159 # If false, no index is generated.
160 html_use_index = False
161
162 # If true, the index is split into individual pages for each letter.
163 #html_split_index = False
164
165 # If true, the reST sources are included in the HTML build as _sources/<name>.
166 html_copy_source = False
167
168 # If true, an OpenSearch description file will be output, and all pages will
169 # contain a <link> tag referring to it.  The value of this option must be the
170 # base URL from which the finished HTML is served.
171 #html_use_opensearch = ''
172
173 # If nonempty, this is the file name suffix for HTML files (e.g. ".xhtml").
174 #html_file_suffix = ''
175
176 # Output file base name for HTML help builder.
177 htmlhelp_basename = 'debpkgrepo'
178
179
180 # Options for LaTeX output
181 # ------------------------
182
183 # The paper size ('letter' or 'a4').
184 #latex_paper_size = 'letter'
185
186 # The font size ('10pt', '11pt' or '12pt').
187 #latex_font_size = '10pt'
188
189 # Grouping the document tree into LaTeX files. List of tuples
190 # (source start file, target name, title, author, document class [howto/manual]).
191 latex_documents = [
192   ('index', 'DebianPackageRepository.tex', ur'Debian Package Repository Documentation',
193    ur'Michael Hanke', 'manual'),
194 ]
195
196 # The name of an image file (relative to this directory) to place at the top of
197 # the title page.
198 #latex_logo = None
199
200 # For "manual" documents, if this is true, then toplevel headings are parts,
201 # not chapters.
202 #latex_use_parts = False
203
204 # Additional stuff for the LaTeX preamble.
205 #latex_preamble = ''
206
207 # Documents to append as an appendix to all manuals.
208 #latex_appendices = []
209
210 # If false, no module index is generated.
211 #latex_use_modindex = True