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