Salome HOME
Updated copyright comment
[modules/hexablock.git] / doc / conf.py.in
index 22c4fe1937ce0f386cd724732949f4709d9e128f..41ebf5ed5326c9c337c5e54176a3bec0d83715c8 100644 (file)
@@ -12,6 +12,7 @@
 # serve to show the default.
 
 import sys, os
+import sphinx
 
 # If your extensions are in another directory, add it here. If the directory
 # is relative to the documentation root, use os.path.abspath to make it
@@ -25,6 +26,12 @@ sys.path.append(os.path.abspath('.'))
 # Add any Sphinx extension module names here, as strings. They can be extensions
 # coming with Sphinx (named 'sphinx.ext.*') or your custom ones.
 extensions = ['sphinx.ext.autodoc', 'sphinx.ext.doctest']
+try:
+  import sphinx_rtd_theme
+  extensions += ['sphinx_rtd_theme']
+  use_rtd_theme = True
+except:
+  use_rtd_theme = False
 
 # extensions = ['matplotlib.sphinxext.mathmpl',
 #              'matplotlib.sphinxext.only_directives',
@@ -49,14 +56,14 @@ master_doc = 'index'
 
 # General information about the project.
 project = u'HexaBlock'
-copyright = u'2009-2014  CEA/DEN, EDF R&D'
+copyright = u'2009-2024  CEA, EDF'
 
 # 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 = '@SHORT_VERSION@'
+version = '@SALOMEHEXABLOCK_VERSION@'
 # The full version, including alpha/beta/rc tags.
 release = '@SALOMEHEXABLOCK_VERSION@'
 
@@ -103,10 +110,24 @@ pygments_style = 'sphinx'
 # Options for HTML output
 # -----------------------
 
+# The theme to use for HTML and HTML Help pages.  Major themes that come with
+# Sphinx are currently 'default' and 'sphinxdoc'.
+if use_rtd_theme:
+  html_theme = 'sphinx_rtd_theme'
+else:
+  html_theme = 'default' if sphinx.version_info[:2] < (1,3) else 'classic'
+
+themes_options = {}
+themes_options['classic'] = {
+  'body_max_width':'none',
+  'body_min_width':0,
+}
+html_theme_options = themes_options.get(html_theme, {})
+
 # The style sheet to use for HTML and HTML Help pages. A file of that name
 # must exist either in Sphinx' static/ path, or in one of the custom paths
 # given in html_static_path.
-html_style = 'default.css'
+#html_style = 'default.css'
 
 # The name for this set of Sphinx documents.  If None, it defaults to
 # "<project> v<release> documentation".
@@ -180,8 +201,8 @@ htmlhelp_basename = 'HexaBlockdoc'
 # Grouping the document tree into LaTeX files. List of tuples
 # (source start file, target name, title, author, document class [howto/manual]).
 latex_documents = [
-  ('index', 'HexaBlock.tex', ur'HexaBlock Documentation',
-   ur'CS', 'manual'),
+  ('index', 'HexaBlock.tex', 'HexaBlock Documentation',
+   'CS', 'manual'),
 ]
 
 # The name of an image file (relative to this directory) to place at the top of