X-Git-Url: https://code.grnet.gr/git/kamaki/blobdiff_plain/0520885994837a486c07704b88d9b72e30a4aed5..58743792e657a568c02452a62d4cdf8bf49b690c:/docs/conf.py diff --git a/docs/conf.py b/docs/conf.py index 58755dc..4c8af95 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -7,7 +7,7 @@ # dir. # # Note that not all possible configuration values are present in this -# autogenerated file. +# auto-generated file. # # All configuration values have a default; values that are commented out # serve to show the default. @@ -19,15 +19,14 @@ from sys import path, stderr import os -path.append('/home/saxtouri/src/objpool') try: - from objpool import http - http + from objpool.http import PooledHTTPConnection + PooledHTTPConnection except ImportError: stderr.write("`objpool` package is required to build kamaki docs.\n") - #exit() + # raise -path.append(os.path.join(os.path.abspath(os.path.dirname(__file__)), '..')) +path.insert(0, os.path.join(os.path.abspath(os.path.dirname(__file__)), '..')) # -- General configuration --------------------------------------------------- @@ -52,16 +51,16 @@ master_doc = 'index' # General information about the project. project = u'Kamaki' -copyright = u'2012, GRNet' +copyright = u'2012, GRNET' # The version info for the project you're documenting, acts as replacement for # |version| and |release|, also used in various other places throughout the # built documents. # # The short X.Y version. -version = '0.6' +version = '0.7' # The full version, including alpha/beta/rc tags. -release = '0.6.1' +release = '0.7' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. @@ -103,7 +102,30 @@ pygments_style = 'sphinx' # The theme to use for HTML and HTML Help pages. See the documentation for # a list of builtin themes. -html_theme = 'nature' +#html_theme = 'nature' +html_theme = 'default' +html_theme_options = { + 'collapsiblesidebar': 'true', + 'footerbgcolor': '#55b577', + 'footertextcolor': '#000000', + 'sidebarbgcolor': '#ffffff', + 'sidebarbtncolor': '#f2f2f2', + 'sidebartextcolor': '#000000', + 'sidebarlinkcolor': '#328e4a', + 'relbarbgcolor': '#55b577', + 'relbartextcolor': '#ffffff', + 'relbarlinkcolor': '#ffffff', + 'bgcolor': '#ffffff', + 'textcolor': '#000000', + 'headbgcolor': '#ffffff', + 'headtextcolor': '#000000', + 'headlinkcolor': '#c60f0f', + 'linkcolor': '#328e4a', + 'visitedlinkcolor': '#63409b', + 'codebgcolor': '#eeffcc', + 'codetextcolor': '#333333' +} + # Theme options are theme-specific and customize the look and feel of a theme # further. For a list of options available for each theme, see the @@ -197,7 +219,7 @@ latex_elements = { # [howto/manual]). latex_documents = [ ('index', 'Kamaki.tex', u'Kamaki Documentation', - u'GRNet', 'manual'), + u'GRNET', 'manual'), ] # The name of an image file (relative to this directory) to place at the top of @@ -240,7 +262,7 @@ man_pages = [ # dir menu entry, description, category) texinfo_documents = [ ('index', 'Kamaki', u'Kamaki Documentation', - u'GRNet', 'Kamaki', 'One line description of project.', + u'GRNET', 'Kamaki', 'One line description of project.', 'Miscellaneous'), ]