Statistics
| Branch: | Tag: | Revision:

root / docs / source / conf.py @ 332c8d3d

History | View | Annotate | Download (8.5 kB)

1
# Copyright 2012 GRNET S.A. All rights reserved.
2
#
3
# Redistribution and use in source and binary forms, with or
4
# without modification, are permitted provided that the following
5
# conditions are met:
6
#
7
#   1. Redistributions of source code must retain the above
8
#      copyright notice, this list of conditions and the following
9
#      disclaimer.
10
#
11
#   2. Redistributions in binary form must reproduce the above
12
#      copyright notice, this list of conditions and the following
13
#      disclaimer in the documentation and/or other materials
14
#      provided with the distribution.
15
#
16
# THIS SOFTWARE IS PROVIDED BY GRNET S.A. ``AS IS'' AND ANY EXPRESS
17
# OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
18
# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
19
# PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL GRNET S.A OR
20
# CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
23
# USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
24
# AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
26
# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
27
# POSSIBILITY OF SUCH DAMAGE.
28
#
29
# The views and conclusions contained in the software and
30
# documentation are those of the authors and should not be
31
# interpreted as representing official policies, either expressed
32
# or implied, of GRNET S.A.
33

    
34

    
35
# -*- coding: utf-8 -*-
36
#
37
# snf-cloudcms documentation build configuration file, created by
38
# sphinx-quickstart on Wed Feb 22 18:07:30 2012.
39
#
40
# This file is execfile()d with the current directory set to its containing dir.
41
#
42
# Note that not all possible configuration values are present in this
43
# autogenerated file.
44
#
45
# All configuration values have a default; values that are commented out
46
# serve to show the default.
47

    
48
import sys, os
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
#sys.path.insert(0, os.path.abspath('.'))
54

    
55
# -- General configuration -----------------------------------------------------
56

    
57
# If your documentation needs a minimal Sphinx version, state it here.
58
#needs_sphinx = '1.0'
59

    
60
# Add any Sphinx extension module names here, as strings. They can be extensions
61
# coming with Sphinx (named 'sphinx.ext.*') or your custom ones.
62
extensions = ['sphinx.ext.intersphinx', 'sphinx.ext.todo', 'sphinx.ext.viewcode']
63

    
64
# Add any paths that contain templates here, relative to this directory.
65
templates_path = ['_templates']
66

    
67
# The suffix of source filenames.
68
source_suffix = '.rst'
69

    
70
# The encoding of source files.
71
#source_encoding = 'utf-8-sig'
72

    
73
# The master toctree document.
74
master_doc = 'index'
75

    
76
# General information about the project.
77
project = u'snf-cloudcms'
78
copyright = u'2012, GRNET'
79

    
80
# The version info for the project you're documenting, acts as replacement for
81
# |version| and |release|, also used in various other places throughout the
82
# built documents.
83
#
84
# The short X.Y version.
85
version = '0.1'
86
# The full version, including alpha/beta/rc tags.
87
release = '0.1'
88

    
89
# The language for content autogenerated by Sphinx. Refer to documentation
90
# for a list of supported languages.
91
#language = None
92

    
93
# There are two options for replacing |today|: either, you set today to some
94
# non-false value, then it is used:
95
#today = ''
96
# Else, today_fmt is used as the format for a strftime call.
97
#today_fmt = '%B %d, %Y'
98

    
99
# List of patterns, relative to source directory, that match files and
100
# directories to ignore when looking for source files.
101
exclude_patterns = []
102

    
103
# The reST default role (used for this markup: `text`) to use for all documents.
104
#default_role = None
105

    
106
# If true, '()' will be appended to :func: etc. cross-reference text.
107
#add_function_parentheses = True
108

    
109
# If true, the current module name will be prepended to all description
110
# unit titles (such as .. function::).
111
#add_module_names = True
112

    
113
# If true, sectionauthor and moduleauthor directives will be shown in the
114
# output. They are ignored by default.
115
#show_authors = False
116

    
117
# The name of the Pygments (syntax highlighting) style to use.
118
pygments_style = 'sphinx'
119

    
120
# A list of ignored prefixes for module index sorting.
121
#modindex_common_prefix = []
122

    
123

    
124
# -- Options for HTML output ---------------------------------------------------
125

    
126
# The theme to use for HTML and HTML Help pages.  See the documentation for
127
# a list of builtin themes.
128
html_theme = 'default'
129

    
130
# Theme options are theme-specific and customize the look and feel of a theme
131
# further.  For a list of options available for each theme, see the
132
# documentation.
133
#html_theme_options = {}
134

    
135
# Add any paths that contain custom themes here, relative to this directory.
136
#html_theme_path = []
137

    
138
# The name for this set of Sphinx documents.  If None, it defaults to
139
# "<project> v<release> documentation".
140
#html_title = None
141

    
142
# A shorter title for the navigation bar.  Default is the same as html_title.
143
#html_short_title = None
144

    
145
# The name of an image file (relative to this directory) to place at the top
146
# of the sidebar.
147
#html_logo = None
148

    
149
# The name of an image file (within the static path) to use as favicon of the
150
# docs.  This file should be a Windows icon file (.ico) being 16x16 or 32x32
151
# pixels large.
152
#html_favicon = None
153

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

    
159
# If not '', a 'Last updated on:' timestamp is inserted at every page bottom,
160
# using the given strftime format.
161
#html_last_updated_fmt = '%b %d, %Y'
162

    
163
# If true, SmartyPants will be used to convert quotes and dashes to
164
# typographically correct entities.
165
#html_use_smartypants = True
166

    
167
# Custom sidebar templates, maps document names to template names.
168
#html_sidebars = {}
169

    
170
# Additional templates that should be rendered to pages, maps page names to
171
# template names.
172
#html_additional_pages = {}
173

    
174
# If false, no module index is generated.
175
#html_domain_indices = True
176

    
177
# If false, no index is generated.
178
#html_use_index = True
179

    
180
# If true, the index is split into individual pages for each letter.
181
#html_split_index = False
182

    
183
# If true, links to the reST sources are added to the pages.
184
#html_show_sourcelink = True
185

    
186
# If true, "Created using Sphinx" is shown in the HTML footer. Default is True.
187
#html_show_sphinx = True
188

    
189
# If true, "(C) Copyright ..." is shown in the HTML footer. Default is True.
190
#html_show_copyright = True
191

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

    
197
# This is the file name suffix for HTML files (e.g. ".xhtml").
198
#html_file_suffix = None
199

    
200
# Output file base name for HTML help builder.
201
htmlhelp_basename = 'snf-cloudcmsdoc'
202

    
203

    
204
# -- Options for LaTeX output --------------------------------------------------
205

    
206
# The paper size ('letter' or 'a4').
207
#latex_paper_size = 'letter'
208

    
209
# The font size ('10pt', '11pt' or '12pt').
210
#latex_font_size = '10pt'
211

    
212
# Grouping the document tree into LaTeX files. List of tuples
213
# (source start file, target name, title, author, documentclass [howto/manual]).
214
latex_documents = [
215
  ('index', 'snf-cloudcms.tex', u'snf-cloudcms Documentation',
216
   u'GRNET', 'manual'),
217
]
218

    
219
# The name of an image file (relative to this directory) to place at the top of
220
# the title page.
221
#latex_logo = None
222

    
223
# For "manual" documents, if this is true, then toplevel headings are parts,
224
# not chapters.
225
#latex_use_parts = False
226

    
227
# If true, show page references after internal links.
228
#latex_show_pagerefs = False
229

    
230
# If true, show URL addresses after external links.
231
#latex_show_urls = False
232

    
233
# Additional stuff for the LaTeX preamble.
234
#latex_preamble = ''
235

    
236
# Documents to append as an appendix to all manuals.
237
#latex_appendices = []
238

    
239
# If false, no module index is generated.
240
#latex_domain_indices = True
241

    
242

    
243
# -- Options for manual page output --------------------------------------------
244

    
245
# One entry per manual page. List of tuples
246
# (source start file, name, description, authors, manual section).
247
man_pages = [
248
    ('index', 'snf-cloudcms', u'snf-cloudcms Documentation',
249
     [u'GRNET'], 1)
250
]
251

    
252

    
253
# Example configuration for intersphinx: refer to the Python standard library.
254
intersphinx_mapping = {'http://docs.python.org/': None}