File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -82,15 +82,15 @@ def select_css(html_css_dir):
8282 :param html_css_dir: The directory to save the CSS stylesheet.
8383 :return: Returns a list of CSS files to be imported.
8484 """
85- ret = [ '_static/tabs.css' ]
86- common_css = '_static/ css/eprosima_rtd_theme.css'
87- local_css = '_static/ css/fiware_readthedocs.css'
85+ ret = ''
86+ common_css = 'css/eprosima_rtd_theme.css'
87+ local_css = 'css/fiware_readthedocs.css'
8888 if download_css (html_css_dir ):
8989 print ('Applying common CSS style file: {}' .format (common_css ))
90- ret . append ( common_css )
90+ ret = common_css
9191 else :
9292 print ('Applying local CSS style file: {}' .format (local_css ))
93- ret . append ( local_css )
93+ ret = local_css
9494
9595 return ret
9696
@@ -515,10 +515,7 @@ def configure_doxyfile(
515515# so a file named "default.css" will overwrite the builtin "default.css".
516516html_static_path = ['_static' ]
517517
518- html_context = {
519- 'css_files' : select_css (script_path ),
520- }
521-
518+ html_style = select_css (script_path )
522519
523520# Add any extra paths that contain custom files (such as robots.txt or
524521# .htaccess) here, relative to this directory. These files are copied
You can’t perform that action at this time.
0 commit comments