Fixes in docs/conf.py to comply with synnefo
authorDimitris Aragiorgis <dimara@grnet.gr>
Tue, 18 Feb 2014 15:06:53 +0000 (17:06 +0200)
committerDimitris Aragiorgis <dimara@grnet.gr>
Tue, 18 Feb 2014 15:13:00 +0000 (17:13 +0200)
Signed-off-by: Dimitris Aragiorgis <dimara@grnet.gr>

docs/conf.py

index 87e2b15..33fd74d 100644 (file)
@@ -25,7 +25,7 @@ import sys, os
 
 # Add any Sphinx extension module names here, as strings. They can be extensions
 # coming with Sphinx (named 'sphinx.ext.*') or your custom ones.
-extensions = []
+extensions = ['sphinx.ext.autodoc', 'sphinx.ext.doctest', 'sphinx.ext.intersphinx', 'sphinx.ext.todo', 'sphinx.ext.coverage', 'sphinx.ext.pngmath', 'sphinx.ext.ifconfig', 'sphinx.ext.viewcode']
 
 # Add any paths that contain templates here, relative to this directory.
 templates_path = ['_templates']
@@ -41,7 +41,7 @@ master_doc = 'index'
 
 # General information about the project.
 project = u'nfdhcpd'
-copyright = u'2014, Dimitris Aragiorgis'
+copyright = u'2010-2013, GRNET S.A. All rights reserved'
 
 # The version info for the project you're documenting, acts as replacement for
 # |version| and |release|, also used in various other places throughout the
@@ -50,7 +50,7 @@ copyright = u'2014, Dimitris Aragiorgis'
 # The short X.Y version.
 version = '0.12'
 # The full version, including alpha/beta/rc tags.
-release = '0.12.0'
+release = '0.12.2'
 
 # The language for content autogenerated by Sphinx. Refer to documentation
 # for a list of supported languages.
@@ -96,7 +96,27 @@ html_theme = 'default'
 # 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
 # documentation.
-#html_theme_options = {}
+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'
+}
 
 # Add any paths that contain custom themes here, relative to this directory.
 #html_theme_path = []
@@ -184,7 +204,7 @@ latex_elements = {
 # (source start file, target name, title, author, documentclass [howto/manual]).
 latex_documents = [
   ('index', 'nfdhcpd.tex', u'nfdhcpd Documentation',
-   u'Dimitris Aragiorgis', 'manual'),
+   u'Synnefo Development', 'manual'),
 ]
 
 # The name of an image file (relative to this directory) to place at the top of
@@ -214,7 +234,7 @@ latex_documents = [
 # (source start file, name, description, authors, manual section).
 man_pages = [
     ('index', 'nfdhcpd', u'nfdhcpd Documentation',
-     [u'Dimitris Aragiorgis'], 1)
+     [u'Synnefo Development'], 1)
 ]
 
 # If true, show URL addresses after external links.
@@ -228,7 +248,7 @@ man_pages = [
 #  dir menu entry, description, category)
 texinfo_documents = [
   ('index', 'nfdhcpd', u'nfdhcpd Documentation',
-   u'Dimitris Aragiorgis', 'nfdhcpd', 'One line description of project.',
+   u'Synnefo Development', 'nfdhpcd', 'One line description of project.',
    'Miscellaneous'),
 ]
 
@@ -240,3 +260,10 @@ texinfo_documents = [
 
 # How to display URL addresses: 'footnote', 'no', or 'inline'.
 #texinfo_show_urls = 'footnote'
+
+# If true, do not generate a @detailmenu in the "Top" node's menu.
+#texinfo_no_detailmenu = False
+
+
+# Example configuration for intersphinx: refer to the Python standard library.
+intersphinx_mapping = {'http://docs.python.org/': None}