Updated git submodules
[docs.git] / docs / conf.py
index 0dfb669b4c0ce3102fe48043a6ede09e293474cb..36bd20d73bdb1f5e239537e086fd630c66fcc0a0 100644 (file)
@@ -34,13 +34,13 @@ extensions = []
 
 # Disable javasphinx generation until we have a solution to long build
 # times. readthedocs timesout after 902 seconds.
-javasphinx_available = False
-try:
-#      import javasphinx
-#      javasphinx_available = True
-#      extensions.append('javasphinx')
-except ImportError, e:
-#      pass
+javasphinx_available = False
+try:
+    import javasphinx
+    javasphinx_available = True
+    extensions.append('javasphinx')
+except ImportError, e:
+    pass
 
 # Add any paths that contain templates here, relative to this directory.
 templates_path = ['_templates']
@@ -148,7 +148,7 @@ html_logo = '_static/odl_small.png'
 # The name of an image file (relative to this directory) to use as a favicon of
 # the docs.  This file should be a Windows icon file (.ico) being 16x16 or 32x32
 # pixels large.
-#html_favicon = None
+html_favicon = 'favicon.ico'
 
 # Add any paths that contain custom static files (such as style sheets) here,
 # relative to this directory. They are copied after the builtin static files,
@@ -311,13 +311,16 @@ linkcheck_ignore = [
     'https://git.opendaylight.org/gerrit/#/admin/projects/releng/builder',
 ]
 
-# Build integration stuff
-import subprocess
+import platform
+if platform.system() != 'Windows':
 
-subprocess.call(["./build-integration-robot-libdoc.sh"])
+    # Build integration stuff
+    import subprocess
+
+    subprocess.call(["./build-integration-robot-libdoc.sh"])
+
+    # Disable javasphinx generation until we have a solution to long build
+    # times. readthedocs timesout after 902 seconds.
+    if javasphinx_available:
+        subprocess.call(["./generate-javaapidoc.sh"])
 
-# Disable javasphinx generation until we have a solution to long build
-# times. readthedocs timesout after 902 seconds.
-subprocess.call(["rm","-rf","javadoc"])
-# if javasphinx_available:
-#     subprocess.call(["./generate-javaapidoc.sh"])