File tree Expand file tree Collapse file tree 2 files changed +7
-4
lines changed
fastdds/property_policies Expand file tree Collapse file tree 2 files changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -82,14 +82,17 @@ def select_css(html_css_dir):
82
82
:param html_css_dir: The directory to save the CSS stylesheet.
83
83
:return: Returns a list of CSS files to be imported.
84
84
"""
85
+ ret = ['_static/tabs.css' ]
85
86
common_css = '_static/css/eprosima_rtd_theme.css'
86
87
local_css = '_static/css/fiware_readthedocs.css'
87
88
if download_css (html_css_dir ):
88
89
print ('Appliying common CSS style file: {}' .format (common_css ))
89
- return [ common_css ]
90
+ ret . append ( common_css )
90
91
else :
91
92
print ('Appliying local CSS style file: {}' .format (local_css ))
92
- return [local_css ]
93
+ ret .append (local_css )
94
+
95
+ return ret
93
96
94
97
95
98
def get_git_branch ():
Original file line number Diff line number Diff line change @@ -184,15 +184,15 @@ another one.
184
184
185
185
.. tabs ::
186
186
187
- .. tab :: c ++
187
+ .. tab :: C ++
188
188
189
189
.. literalinclude :: /../code/DDSCodeTester.cpp
190
190
:language: c++
191
191
:start-after: // FASTDDS_PHYSICAL_PROPERTIES
192
192
:end-before: //!--
193
193
:dedent: 8
194
194
195
- .. tab :: xml
195
+ .. tab :: XML
196
196
197
197
.. literalinclude :: /../code/XMLTester.xml
198
198
:language: xml
You can’t perform that action at this time.
0 commit comments