Statistics
| Branch: | Tag: | Revision:

root / docs / conf.py @ 864767eb

History | View | Annotate | Download (10.6 kB)

1
# -*- coding: utf-8 -*-
2
#
3
# Copyright 2011-2013 GRNET S.A. All rights reserved.
4
#
5
# Redistribution and use in source and binary forms, with or
6
# without modification, are permitted provided that the following
7
# conditions are met:
8
#
9
#   1. Redistributions of source code must retain the above
10
#      copyright notice, this list of conditions and the following
11
#      disclaimer.
12
#
13
#   2. Redistributions in binary form must reproduce the above
14
#      copyright notice, this list of conditions and the following
15
#      disclaimer in the documentation and/or other materials
16
#      provided with the distribution.
17
#
18
# THIS SOFTWARE IS PROVIDED BY GRNET S.A. ``AS IS'' AND ANY EXPRESS
19
# OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
20
# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
21
# PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL GRNET S.A OR
22
# CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
25
# USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
26
# AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
28
# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29
# POSSIBILITY OF SUCH DAMAGE.
30
#
31
# The views and conclusions contained in the software and
32
# documentation are those of the authors and should not be
33
# interpreted as representing official policies, either expressed
34
# or implied, of GRNET S.A.
35
#
36
#
37
#
38
# Kamaki documentation build configuration file, created by
39
# sphinx-quickstart on Tue Nov 29 15:15:50 2011.
40
#
41
# This file is execfile()d with the current directory set to its containing
42
# dir.
43
#
44
# Note that not all possible configuration values are present in this
45
# auto-generated file.
46
#
47
# All configuration values have a default; values that are commented out
48
# serve to show the default.
49

    
50
# If extensions (or modules to document with autodoc) are in another directory,
51
# add these directories to sys.path here. If the directory is relative to the
52
# documentation root, use os.path.abspath to make it absolute, like shown here.
53

    
54
from sys import path, stderr
55
import os
56

    
57

    
58
SITE_PACKAGES_PATH = os.path.expanduser(
59
    '~/src/kamaki/docsenv/lib/python2.7/site-packages')
60

    
61
try:
62
    from objpool.http import PooledHTTPConnection
63
    PooledHTTPConnection
64
except ImportError:
65
    path.insert(0, SITE_PACKAGES_PATH)
66
    try:
67
        from objpool.http import PooledHTTPConnection
68
        PooledHTTPConnection
69
    except ImportError:
70
        stderr.write("`objpool` package is required to build kamaki docs.\n")
71
        exit(1)
72

    
73
# try:
74
#     from progress.bar import ShadyBar
75
#     ShadyBar
76
# except ImportError:
77
#     path.insert(0, SITE_PACKAGES_PATH)
78
#     try:
79
#         from progress.bar import ShadyBar
80
#         ShadyBar
81
#     except ImportError:
82
#         stderr.write("`progress` package is suggested to build kamaki docs.\n")
83

    
84
path.insert(0, os.path.join(os.path.abspath(os.path.dirname(__file__)), '..'))
85

    
86
# -- General configuration ---------------------------------------------------
87

    
88
# If your documentation needs a minimal Sphinx version, state it here.
89
#needs_sphinx = '1.0'
90

    
91
# Add any Sphinx extension module names here, as strings. They can be
92
#extensions coming with Sphinx (named 'sphinx.ext.*') or your custom ones.
93
extensions = ['sphinx.ext.autodoc', 'sphinx.ext.viewcode']
94

    
95
# Add any paths that contain templates here, relative to this directory.
96
templates_path = ['_templates']
97

    
98
# The suffix of source filenames.
99
source_suffix = '.rst'
100

    
101
# The encoding of source files.
102
#source_encoding = 'utf-8-sig'
103

    
104
# The master toctree document.
105
master_doc = 'index'
106

    
107
# General information about the project.
108
project = u'Kamaki'
109
copyright = u'2013, GRNET'
110

    
111
# The version info for the project you're documenting, acts as replacement for
112
# |version| and |release|, also used in various other places throughout the
113
# built documents.
114
#
115
# The short X.Y version.
116
version = '0.11'
117
# The full version, including alpha/beta/rc tags.
118
try:
119
    import kamaki
120
    release = kamaki.__version__
121
except ImportError:
122
    release = version
123

    
124
# The language for content autogenerated by Sphinx. Refer to documentation
125
# for a list of supported languages.
126
#language = None
127

    
128
# There are two options for replacing |today|: either, you set today to some
129
# non-false value, then it is used:
130
#today = ''
131
# Else, today_fmt is used as the format for a strftime call.
132
#today_fmt = '%B %d, %Y'
133

    
134
# List of patterns, relative to source directory, that match files and
135
# directories to ignore when looking for source files.
136
exclude_patterns = ['_build']
137

    
138
# The reST default role (used for this markup: `text`) to use for all
139
# documents.
140
#default_role = None
141

    
142
# If true, '()' will be appended to :func: etc. cross-reference text.
143
#add_function_parentheses = True
144

    
145
# If true, the current module name will be prepended to all description
146
# unit titles (such as .. function::).
147
#add_module_names = True
148

    
149
# If true, sectionauthor and moduleauthor directives will be shown in the
150
# output. They are ignored by default.
151
#show_authors = False
152

    
153
# The name of the Pygments (syntax highlighting) style to use.
154
pygments_style = 'sphinx'
155

    
156
# A list of ignored prefixes for module index sorting.
157
#modindex_common_prefix = []
158

    
159

    
160
# -- Options for HTML output -------------------------------------------------
161

    
162
# The theme to use for HTML and HTML Help pages.  See the documentation for
163
# a list of builtin themes.
164
#html_theme = 'nature'
165
html_theme = 'default'
166
html_theme_options = {
167
    'collapsiblesidebar': 'true',
168
    'footerbgcolor':    '#55b577',
169
    'footertextcolor':  '#000000',
170
    'sidebarbgcolor':   '#ffffff',
171
    'sidebarbtncolor':  '#f2f2f2',
172
    'sidebartextcolor': '#000000',
173
    'sidebarlinkcolor': '#328e4a',
174
    'relbarbgcolor':    '#55b577',
175
    'relbartextcolor':  '#ffffff',
176
    'relbarlinkcolor':  '#ffffff',
177
    'bgcolor':          '#ffffff',
178
    'textcolor':        '#000000',
179
    'headbgcolor':      '#ffffff',
180
    'headtextcolor':    '#000000',
181
    'headlinkcolor':    '#c60f0f',
182
    'linkcolor':        '#328e4a',
183
    'visitedlinkcolor': '#63409b',
184
    'codebgcolor':      '#eeffcc',
185
    'codetextcolor':    '#333333'
186
}
187

    
188

    
189
# Theme options are theme-specific and customize the look and feel of a theme
190
# further.  For a list of options available for each theme, see the
191
# documentation.
192
#html_theme_options = {}
193

    
194
# Add any paths that contain custom themes here, relative to this directory.
195
#html_theme_path = []
196

    
197
# The name for this set of Sphinx documents.  If None, it defaults to
198
# "<project> v<release> documentation".
199
#html_title = None
200

    
201
# A shorter title for the navigation bar.  Default is the same as html_title.
202
#html_short_title = None
203

    
204
# The name of an image file (relative to this directory) to place at the top
205
# of the sidebar.
206
#html_logo = None
207

    
208
# The name of an image file (within the static path) to use as favicon of the
209
# docs.  This file should be a Windows icon file (.ico) being 16x16 or 32x32
210
# pixels large.
211
#html_favicon = None
212

    
213
# Add any paths that contain custom static files (such as style sheets) here,
214
# relative to this directory. They are copied after the builtin static files,
215
# so a file named "default.css" will overwrite the builtin "default.css".
216
html_static_path = ['_static']
217

    
218
# If not '', a 'Last updated on:' timestamp is inserted at every page bottom,
219
# using the given strftime format.
220
#html_last_updated_fmt = '%b %d, %Y'
221

    
222
# If true, SmartyPants will be used to convert quotes and dashes to
223
# typographically correct entities.
224
#html_use_smartypants = True
225

    
226
# Custom sidebar templates, maps document names to template names.
227
#html_sidebars = {}
228

    
229
# Additional templates that should be rendered to pages, maps page names to
230
# template names.
231
#html_additional_pages = {}
232

    
233
# If false, no module index is generated.
234
#html_domain_indices = True
235

    
236
# If false, no index is generated.
237
#html_use_index = True
238

    
239
# If true, the index is split into individual pages for each letter.
240
#html_split_index = False
241

    
242
# If true, links to the reST sources are added to the pages.
243
#html_show_sourcelink = True
244

    
245
# If true, "Created using Sphinx" is shown in the HTML footer. Default is True.
246
#html_show_sphinx = True
247

    
248
# If true, "(C) Copyright ..." is shown in the HTML footer. Default is True.
249
#html_show_copyright = True
250

    
251
# If true, an OpenSearch description file will be output, and all pages will
252
# contain a <link> tag referring to it.  The value of this option must be the
253
# base URL from which the finished HTML is served.
254
#html_use_opensearch = ''
255

    
256
# This is the file name suffix for HTML files (e.g. ".xhtml").
257
#html_file_suffix = None
258

    
259
# Output file base name for HTML help builder.
260
htmlhelp_basename = 'Kamakidoc'
261

    
262

    
263
# -- Options for LaTeX output ------------------------------------------------
264

    
265
latex_elements = {
266
# The paper size ('letterpaper' or 'a4paper').
267
#'papersize': 'letterpaper',
268

    
269
# The font size ('10pt', '11pt' or '12pt').
270
#'pointsize': '10pt',
271

    
272
# Additional stuff for the LaTeX preamble.
273
#'preamble': '',
274
}
275

    
276
# Grouping the document tree into LaTeX files. List of tuples
277
# (source start file, target name, title, author, documentclass
278
# [howto/manual]).
279
latex_documents = [
280
  ('index', 'Kamaki.tex', u'Kamaki Documentation',
281
   u'GRNET', 'manual'),
282
]
283

    
284
# The name of an image file (relative to this directory) to place at the top of
285
# the title page.
286
#latex_logo = None
287

    
288
# For "manual" documents, if this is true, then toplevel headings are parts,
289
# not chapters.
290
#latex_use_parts = False
291

    
292
# If true, show page references after internal links.
293
#latex_show_pagerefs = False
294

    
295
# If true, show URL addresses after external links.
296
#latex_show_urls = False
297

    
298
# Documents to append as an appendix to all manuals.
299
#latex_appendices = []
300

    
301
# If false, no module index is generated.
302
#latex_domain_indices = True
303

    
304

    
305
# -- Options for manual page output ------------------------------------------
306

    
307
# One entry per manual page. List of tuples
308
# (source start file, name, description, authors, manual section).
309
man_pages = [
310
    ('man/kamaki', 'kamaki', 'Command-line tool for managing clouds', '', 1),
311
]
312

    
313
# If true, show URL addresses after external links.
314
#man_show_urls = False
315

    
316

    
317
# -- Options for Texinfo output ----------------------------------------------
318

    
319
# Grouping the document tree into Texinfo files. List of tuples
320
# (source start file, target name, title, author,
321
#  dir menu entry, description, category)
322
texinfo_documents = [
323
  ('index', 'Kamaki', u'Kamaki Documentation',
324
   u'GRNET', 'Kamaki', 'One line description of project.',
325
   'Miscellaneous'),
326
]
327

    
328
# Documents to append as an appendix to all manuals.
329
#texinfo_appendices = []
330

    
331
# If false, no module index is generated.
332
#texinfo_domain_indices = True
333

    
334
# How to display URL addresses: 'footnote', 'no', or 'inline'.
335
#texinfo_show_urls = 'footnote'