Fix missing about content in refstack-ui

Refstack webpage's about section is not rendered correctly. The bug is
tracked in here:
https://tree.taiga.io/project/openstack-interop-working-group/issue/81

This patch will update documentation build process to generate html
files by changing paths to html files in about.html.

Replace deprecated options in doc/source/conf.py by the new ones:
* openstackdocs_bug_project
* openstackdocs_bug_tag

Change-Id: Id296b9cecf75bb289b0da41bec880a13694298e1
This commit is contained in:
jskunda 2023-04-10 23:47:21 +02:00 committed by Martin Kopec
parent aa239130d6
commit 9e79b3b4ae
2 changed files with 11 additions and 6 deletions

View File

@ -57,8 +57,8 @@ release = '1.0'
# openstackdocstheme options
openstackdocs_repo_name = 'openinfra/refstack'
bug_project = '878'
bug_tag = ''
openstackdocs_bug_project = '878'
openstackdocs_bug_tag = ''
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.

View File

@ -35,7 +35,7 @@
ctrl.options = {
'about' : {
'title': 'About RefStack',
'template': 'components/about/templates/README.html',
'template': 'components/about/templates/overview.html',
'order': 1
},
'uploading-your-results': {
@ -50,10 +50,15 @@
'test_result_management.html',
'order': 3
},
'vendors-and-products': {
'title': 'Vendors and Products',
'template': 'components/about/templates/vendor_product.html',
'vendors': {
'title': 'Vendors',
'template': 'components/about/templates/VendorEntity.html',
'order': 4
},
'products': {
'title': 'Products',
'template': 'components/about/templates/ProductEntity.html',
'order': 5
}
};