diff options
-rw-r--r-- | .gitmodules | 5 | ||||
-rw-r--r-- | docs/_templates/my_custom_sidebar.html | 3 | ||||
-rw-r--r-- | docs/conf.py | 1 | ||||
-rw-r--r-- | docs/featureprojects.rst | 6 |
4 files changed, 14 insertions, 1 deletions
diff --git a/.gitmodules b/.gitmodules index bd560fd64..e02f4da73 100644 --- a/.gitmodules +++ b/.gitmodules @@ -223,3 +223,8 @@ url = https://gerrit.opnfv.org/gerrit/barometer branch = . shallow = true +[submodule "docs/submodules/openretriever"] + path = docs/submodules/openretriever + url = https://gerrit.opnfv.org/gerrit/openretriever + branch = . + shallow = true diff --git a/docs/_templates/my_custom_sidebar.html b/docs/_templates/my_custom_sidebar.html new file mode 100644 index 000000000..6b259bc93 --- /dev/null +++ b/docs/_templates/my_custom_sidebar.html @@ -0,0 +1,3 @@ +<ul class="globaltoc"> +{{ toctree(maxdepth=theme_globaltoc_depth|toint, collapse=False,includehidden=theme_globaltoc_includehidden|tobool) }} +</ul>
\ No newline at end of file diff --git a/docs/conf.py b/docs/conf.py index 72bc27fb5..3060d82a1 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -263,6 +263,7 @@ texinfo_documents = [ 'Miscellaneous'), ] +html_sidebars = {'**': ['my_custom_sidebar.html']} # Documents to append as an appendix to all manuals. # texinfo_appendices = [] diff --git a/docs/featureprojects.rst b/docs/featureprojects.rst index ebab13b19..d158220e7 100644 --- a/docs/featureprojects.rst +++ b/docs/featureprojects.rst @@ -96,6 +96,11 @@ ONOS ../submodules/onosfw/docs/userguide/index ../submodules/onosfw/docs/installationprocedure/index + +OpenRetriever +------------- + + OVSNFV -------- .. toctree:: @@ -150,4 +155,3 @@ SFC ../submodules/sfc/docs/userguide/index ../submodules/sfc/docs/releasenotes/index ../submodules/sfc/docs/installationprocedure/index - |