Tweak downloads page update instructions
[docs.git] / docs / conf.py
index c773e4620af44bf92a251082dcea8b5608ed9fc9..ab41171a2ec96b130744888a40b1f80c652b2c24 100755 (executable)
 from docs_conf.conf import *
 
 # Append to intersphinx_mapping
+intersphinx_mapping['odl-integration-test'] = ('http://docs.opendaylight.org/projects/integration-test/en/latest/', None)
+intersphinx_mapping['odl-integration-distribution'] = ('http://docs.opendaylight.org/projects/integration-distribution/en/latest/', None)
+intersphinx_mapping['odl-integration-packaging'] = ('http://docs.opendaylight.org/projects/integration-packaging/en/latest/', None)
 intersphinx_mapping['odl-releng-builder'] = ('http://docs.opendaylight.org/projects/releng-builder/en/latest/', None)
 
+# Projects that have stable/branches
+intersphinx_mapping['coe'] = ('http://docs.opendaylight.org/projects/coe/en/latest/', None)
+intersphinx_mapping['genius'] = ('http://docs.opendaylight.org/projects/genius/en/latest/', None)
+intersphinx_mapping['netvirt'] = ('http://docs.opendaylight.org/projects/netvirt/en/latest/', None)
+intersphinx_mapping['openflowplugin'] = ('http://docs.opendaylight.org/projects/openflowplugin/en/latest/', None)
+
+# OpenDaylight Documentation Releases
+intersphinx_mapping['odl-oxygen'] = ('http://docs.opendaylight.org/en/stable-oxygen/', None)
+intersphinx_mapping['odl-nitrogen'] = ('http://docs.opendaylight.org/en/stable-nitrogen/', None)
+intersphinx_mapping['odl-carbon'] = ('http://docs.opendaylight.org/en/stable-carbon/', None)
+
 linkcheck_ignore = [
     # Ignore jenkins because it's often slow to respond.
     'https://jenkins.opendaylight.org/releng',
     'https://jenkins.opendaylight.org/sandbox',
-    'http://\$CONTROL_HOST:8181/dlux/index.html',
     # The '#' in the path makes sphinx think it's an anchor
     'https://git.opendaylight.org/gerrit/#/admin/projects/releng/builder',
 ]
@@ -27,11 +40,6 @@ linkcheck_ignore = [
 nitpicky = True
 release = version
 
-import platform
-if platform.system() != 'Windows':
-
-    # Build integration stuff
-    import subprocess
-
-    subprocess.call(["./generate-milestone-status.sh"])
-    subprocess.call(["./build-integration-robot-libdoc.sh"])
+html_context = {
+    'version_status': 'supported',
+}