Statistics
| Branch: | Tag: | Revision:

root / doc / source / conf.py @ 1c9bea54

History | View | Annotate | Download (6.1 kB)

1 1c9bea54 Leonidas Poulopoulos
# -*- coding: utf-8 -*-
2 1c9bea54 Leonidas Poulopoulos
#
3 1c9bea54 Leonidas Poulopoulos
# fod documentation build configuration file, created by
4 1c9bea54 Leonidas Poulopoulos
# sphinx-quickstart on Wed Oct 16 17:20:20 2013.
5 1c9bea54 Leonidas Poulopoulos
#
6 1c9bea54 Leonidas Poulopoulos
# This file is execfile()d with the current directory set to its containing dir.
7 1c9bea54 Leonidas Poulopoulos
#
8 1c9bea54 Leonidas Poulopoulos
# Note that not all possible configuration values are present in this
9 1c9bea54 Leonidas Poulopoulos
# autogenerated file.
10 1c9bea54 Leonidas Poulopoulos
#
11 1c9bea54 Leonidas Poulopoulos
# All configuration values have a default; values that are commented out
12 1c9bea54 Leonidas Poulopoulos
# serve to show the default.
13 1c9bea54 Leonidas Poulopoulos
14 1c9bea54 Leonidas Poulopoulos
import sys, os
15 1c9bea54 Leonidas Poulopoulos
16 1c9bea54 Leonidas Poulopoulos
# If extensions (or modules to document with autodoc) are in another directory,
17 1c9bea54 Leonidas Poulopoulos
# add these directories to sys.path here. If the directory is relative to the
18 1c9bea54 Leonidas Poulopoulos
# documentation root, use os.path.abspath to make it absolute, like shown here.
19 1c9bea54 Leonidas Poulopoulos
#sys.path.append(os.path.abspath('.'))
20 1c9bea54 Leonidas Poulopoulos
21 1c9bea54 Leonidas Poulopoulos
# -- General configuration -----------------------------------------------------
22 1c9bea54 Leonidas Poulopoulos
23 1c9bea54 Leonidas Poulopoulos
# Add any Sphinx extension module names here, as strings. They can be extensions
24 1c9bea54 Leonidas Poulopoulos
# coming with Sphinx (named 'sphinx.ext.*') or your custom ones.
25 1c9bea54 Leonidas Poulopoulos
extensions = []
26 1c9bea54 Leonidas Poulopoulos
27 1c9bea54 Leonidas Poulopoulos
# Add any paths that contain templates here, relative to this directory.
28 1c9bea54 Leonidas Poulopoulos
templates_path = ['_templates']
29 1c9bea54 Leonidas Poulopoulos
30 1c9bea54 Leonidas Poulopoulos
# The suffix of source filenames.
31 1c9bea54 Leonidas Poulopoulos
source_suffix = '.rst'
32 1c9bea54 Leonidas Poulopoulos
33 1c9bea54 Leonidas Poulopoulos
# The encoding of source files.
34 1c9bea54 Leonidas Poulopoulos
#source_encoding = 'utf-8'
35 1c9bea54 Leonidas Poulopoulos
36 1c9bea54 Leonidas Poulopoulos
# The master toctree document.
37 1c9bea54 Leonidas Poulopoulos
master_doc = 'index'
38 1c9bea54 Leonidas Poulopoulos
39 1c9bea54 Leonidas Poulopoulos
# General information about the project.
40 1c9bea54 Leonidas Poulopoulos
project = u'fod'
41 1c9bea54 Leonidas Poulopoulos
copyright = u'2014, GRNET NOC, GRNET S.A'
42 1c9bea54 Leonidas Poulopoulos
43 1c9bea54 Leonidas Poulopoulos
# The version info for the project you're documenting, acts as replacement for
44 1c9bea54 Leonidas Poulopoulos
# |version| and |release|, also used in various other places throughout the
45 1c9bea54 Leonidas Poulopoulos
# built documents.
46 1c9bea54 Leonidas Poulopoulos
#
47 1c9bea54 Leonidas Poulopoulos
# The short X.Y version.
48 1c9bea54 Leonidas Poulopoulos
version = '1.1.1'
49 1c9bea54 Leonidas Poulopoulos
# The full version, including alpha/beta/rc tags.
50 1c9bea54 Leonidas Poulopoulos
release = '1.1.1'
51 1c9bea54 Leonidas Poulopoulos
52 1c9bea54 Leonidas Poulopoulos
# The language for content autogenerated by Sphinx. Refer to documentation
53 1c9bea54 Leonidas Poulopoulos
# for a list of supported languages.
54 1c9bea54 Leonidas Poulopoulos
#language = None
55 1c9bea54 Leonidas Poulopoulos
56 1c9bea54 Leonidas Poulopoulos
# There are two options for replacing |today|: either, you set today to some
57 1c9bea54 Leonidas Poulopoulos
# non-false value, then it is used:
58 1c9bea54 Leonidas Poulopoulos
#today = ''
59 1c9bea54 Leonidas Poulopoulos
# Else, today_fmt is used as the format for a strftime call.
60 1c9bea54 Leonidas Poulopoulos
#today_fmt = '%B %d, %Y'
61 1c9bea54 Leonidas Poulopoulos
62 1c9bea54 Leonidas Poulopoulos
# List of documents that shouldn't be included in the build.
63 1c9bea54 Leonidas Poulopoulos
#unused_docs = []
64 1c9bea54 Leonidas Poulopoulos
65 1c9bea54 Leonidas Poulopoulos
# List of directories, relative to source directory, that shouldn't be searched
66 1c9bea54 Leonidas Poulopoulos
# for source files.
67 1c9bea54 Leonidas Poulopoulos
exclude_trees = []
68 1c9bea54 Leonidas Poulopoulos
69 1c9bea54 Leonidas Poulopoulos
# The reST default role (used for this markup: `text`) to use for all documents.
70 1c9bea54 Leonidas Poulopoulos
#default_role = None
71 1c9bea54 Leonidas Poulopoulos
72 1c9bea54 Leonidas Poulopoulos
# If true, '()' will be appended to :func: etc. cross-reference text.
73 1c9bea54 Leonidas Poulopoulos
#add_function_parentheses = True
74 1c9bea54 Leonidas Poulopoulos
75 1c9bea54 Leonidas Poulopoulos
# If true, the current module name will be prepended to all description
76 1c9bea54 Leonidas Poulopoulos
# unit titles (such as .. function::).
77 1c9bea54 Leonidas Poulopoulos
#add_module_names = True
78 1c9bea54 Leonidas Poulopoulos
79 1c9bea54 Leonidas Poulopoulos
# If true, sectionauthor and moduleauthor directives will be shown in the
80 1c9bea54 Leonidas Poulopoulos
# output. They are ignored by default.
81 1c9bea54 Leonidas Poulopoulos
#show_authors = False
82 1c9bea54 Leonidas Poulopoulos
83 1c9bea54 Leonidas Poulopoulos
# The name of the Pygments (syntax highlighting) style to use.
84 1c9bea54 Leonidas Poulopoulos
pygments_style = 'sphinx'
85 1c9bea54 Leonidas Poulopoulos
86 1c9bea54 Leonidas Poulopoulos
# A list of ignored prefixes for module index sorting.
87 1c9bea54 Leonidas Poulopoulos
#modindex_common_prefix = []
88 1c9bea54 Leonidas Poulopoulos
89 1c9bea54 Leonidas Poulopoulos
90 1c9bea54 Leonidas Poulopoulos
# -- Options for HTML output ---------------------------------------------------
91 1c9bea54 Leonidas Poulopoulos
92 1c9bea54 Leonidas Poulopoulos
# The theme to use for HTML and HTML Help pages.  Major themes that come with
93 1c9bea54 Leonidas Poulopoulos
# Sphinx are currently 'default' and 'sphinxdoc'.
94 1c9bea54 Leonidas Poulopoulos
html_theme = 'default'
95 1c9bea54 Leonidas Poulopoulos
96 1c9bea54 Leonidas Poulopoulos
# Theme options are theme-specific and customize the look and feel of a theme
97 1c9bea54 Leonidas Poulopoulos
# further.  For a list of options available for each theme, see the
98 1c9bea54 Leonidas Poulopoulos
# documentation.
99 1c9bea54 Leonidas Poulopoulos
#html_theme_options = {}
100 1c9bea54 Leonidas Poulopoulos
101 1c9bea54 Leonidas Poulopoulos
# Add any paths that contain custom themes here, relative to this directory.
102 1c9bea54 Leonidas Poulopoulos
#html_theme_path = []
103 1c9bea54 Leonidas Poulopoulos
104 1c9bea54 Leonidas Poulopoulos
# The name for this set of Sphinx documents.  If None, it defaults to
105 1c9bea54 Leonidas Poulopoulos
# "<project> v<release> documentation".
106 1c9bea54 Leonidas Poulopoulos
#html_title = None
107 1c9bea54 Leonidas Poulopoulos
108 1c9bea54 Leonidas Poulopoulos
# A shorter title for the navigation bar.  Default is the same as html_title.
109 1c9bea54 Leonidas Poulopoulos
#html_short_title = None
110 1c9bea54 Leonidas Poulopoulos
111 1c9bea54 Leonidas Poulopoulos
# The name of an image file (relative to this directory) to place at the top
112 1c9bea54 Leonidas Poulopoulos
# of the sidebar.
113 1c9bea54 Leonidas Poulopoulos
#html_logo = None
114 1c9bea54 Leonidas Poulopoulos
115 1c9bea54 Leonidas Poulopoulos
# The name of an image file (within the static path) to use as favicon of the
116 1c9bea54 Leonidas Poulopoulos
# docs.  This file should be a Windows icon file (.ico) being 16x16 or 32x32
117 1c9bea54 Leonidas Poulopoulos
# pixels large.
118 1c9bea54 Leonidas Poulopoulos
#html_favicon = None
119 1c9bea54 Leonidas Poulopoulos
120 1c9bea54 Leonidas Poulopoulos
# Add any paths that contain custom static files (such as style sheets) here,
121 1c9bea54 Leonidas Poulopoulos
# relative to this directory. They are copied after the builtin static files,
122 1c9bea54 Leonidas Poulopoulos
# so a file named "default.css" will overwrite the builtin "default.css".
123 1c9bea54 Leonidas Poulopoulos
#html_static_path = ['_static']
124 1c9bea54 Leonidas Poulopoulos
125 1c9bea54 Leonidas Poulopoulos
# If not '', a 'Last updated on:' timestamp is inserted at every page bottom,
126 1c9bea54 Leonidas Poulopoulos
# using the given strftime format.
127 1c9bea54 Leonidas Poulopoulos
#html_last_updated_fmt = '%b %d, %Y'
128 1c9bea54 Leonidas Poulopoulos
129 1c9bea54 Leonidas Poulopoulos
# If true, SmartyPants will be used to convert quotes and dashes to
130 1c9bea54 Leonidas Poulopoulos
# typographically correct entities.
131 1c9bea54 Leonidas Poulopoulos
#html_use_smartypants = True
132 1c9bea54 Leonidas Poulopoulos
133 1c9bea54 Leonidas Poulopoulos
# Custom sidebar templates, maps document names to template names.
134 1c9bea54 Leonidas Poulopoulos
#html_sidebars = {}
135 1c9bea54 Leonidas Poulopoulos
136 1c9bea54 Leonidas Poulopoulos
# Additional templates that should be rendered to pages, maps page names to
137 1c9bea54 Leonidas Poulopoulos
# template names.
138 1c9bea54 Leonidas Poulopoulos
#html_additional_pages = {}
139 1c9bea54 Leonidas Poulopoulos
140 1c9bea54 Leonidas Poulopoulos
# If false, no module index is generated.
141 1c9bea54 Leonidas Poulopoulos
#html_use_modindex = True
142 1c9bea54 Leonidas Poulopoulos
143 1c9bea54 Leonidas Poulopoulos
# If false, no index is generated.
144 1c9bea54 Leonidas Poulopoulos
#html_use_index = True
145 1c9bea54 Leonidas Poulopoulos
146 1c9bea54 Leonidas Poulopoulos
# If true, the index is split into individual pages for each letter.
147 1c9bea54 Leonidas Poulopoulos
#html_split_index = False
148 1c9bea54 Leonidas Poulopoulos
149 1c9bea54 Leonidas Poulopoulos
# If true, links to the reST sources are added to the pages.
150 1c9bea54 Leonidas Poulopoulos
#html_show_sourcelink = True
151 1c9bea54 Leonidas Poulopoulos
152 1c9bea54 Leonidas Poulopoulos
# If true, an OpenSearch description file will be output, and all pages will
153 1c9bea54 Leonidas Poulopoulos
# contain a <link> tag referring to it.  The value of this option must be the
154 1c9bea54 Leonidas Poulopoulos
# base URL from which the finished HTML is served.
155 1c9bea54 Leonidas Poulopoulos
#html_use_opensearch = ''
156 1c9bea54 Leonidas Poulopoulos
157 1c9bea54 Leonidas Poulopoulos
# If nonempty, this is the file name suffix for HTML files (e.g. ".xhtml").
158 1c9bea54 Leonidas Poulopoulos
#html_file_suffix = ''
159 1c9bea54 Leonidas Poulopoulos
160 1c9bea54 Leonidas Poulopoulos
# Output file base name for HTML help builder.
161 1c9bea54 Leonidas Poulopoulos
htmlhelp_basename = 'foddoc'
162 1c9bea54 Leonidas Poulopoulos
163 1c9bea54 Leonidas Poulopoulos
164 1c9bea54 Leonidas Poulopoulos
# -- Options for LaTeX output --------------------------------------------------
165 1c9bea54 Leonidas Poulopoulos
166 1c9bea54 Leonidas Poulopoulos
# The paper size ('letter' or 'a4').
167 1c9bea54 Leonidas Poulopoulos
#latex_paper_size = 'letter'
168 1c9bea54 Leonidas Poulopoulos
169 1c9bea54 Leonidas Poulopoulos
# The font size ('10pt', '11pt' or '12pt').
170 1c9bea54 Leonidas Poulopoulos
#latex_font_size = '10pt'
171 1c9bea54 Leonidas Poulopoulos
172 1c9bea54 Leonidas Poulopoulos
# Grouping the document tree into LaTeX files. List of tuples
173 1c9bea54 Leonidas Poulopoulos
# (source start file, target name, title, author, documentclass [howto/manual]).
174 1c9bea54 Leonidas Poulopoulos
latex_documents = [
175 1c9bea54 Leonidas Poulopoulos
  ('index', 'fod.tex', u'fod Documentation',
176 1c9bea54 Leonidas Poulopoulos
   u'Leonidas Poulopoulos', 'manual'),
177 1c9bea54 Leonidas Poulopoulos
]
178 1c9bea54 Leonidas Poulopoulos
179 1c9bea54 Leonidas Poulopoulos
# The name of an image file (relative to this directory) to place at the top of
180 1c9bea54 Leonidas Poulopoulos
# the title page.
181 1c9bea54 Leonidas Poulopoulos
#latex_logo = None
182 1c9bea54 Leonidas Poulopoulos
183 1c9bea54 Leonidas Poulopoulos
# For "manual" documents, if this is true, then toplevel headings are parts,
184 1c9bea54 Leonidas Poulopoulos
# not chapters.
185 1c9bea54 Leonidas Poulopoulos
#latex_use_parts = False
186 1c9bea54 Leonidas Poulopoulos
187 1c9bea54 Leonidas Poulopoulos
# Additional stuff for the LaTeX preamble.
188 1c9bea54 Leonidas Poulopoulos
#latex_preamble = ''
189 1c9bea54 Leonidas Poulopoulos
190 1c9bea54 Leonidas Poulopoulos
# Documents to append as an appendix to all manuals.
191 1c9bea54 Leonidas Poulopoulos
#latex_appendices = []
192 1c9bea54 Leonidas Poulopoulos
193 1c9bea54 Leonidas Poulopoulos
# If false, no module index is generated.
194 1c9bea54 Leonidas Poulopoulos
#latex_use_modindex = True