:ini:`M_EXPAND_INNER_TYPES` Whether to expand inner types (e.g. a class
inside a class) in the symbol tree. If not
set, ``NO`` is used.
-:ini:`M_SHOW_DOXYGEN_VERSION` Show Doxygen version in the footer. If not
- set, ``YES`` is used; useful to disable for
- output verification.
=================================== =======================================
Note that namespace, directory and page lists are always fully expanded as
'M_FILE_TREE_EXPAND_LEVELS': ['1'],
'M_EXPAND_INNER_TYPES': ['NO'],
'M_THEME_COLOR': ['#22272e'],
- 'M_PAGE_FINE_PRINT': ['[default]'],
- 'M_SHOW_DOXYGEN_VERSION': ['YES']
+ 'M_PAGE_FINE_PRINT': ['[default]']
}
def parse_value(var):
if i in config: state.doxyfile[i] = int(' '.join(config[i]))
# Boolean values that we want
- for i in ['M_EXPAND_INNER_TYPES',
- 'M_SHOW_DOXYGEN_VERSION']:
+ for i in ['M_EXPAND_INNER_TYPES']:
if i in config: state.doxyfile[i] = ' '.join(config[i]) == 'YES'
# List values that we want. Drop empty lines.
<div class="m-row">
<div class="m-col-l-10 m-push-l-1">
{% if M_PAGE_FINE_PRINT == '[default]' %}
- <p>{{ PROJECT_NAME }}{% if PROJECT_BRIEF %} {{ PROJECT_BRIEF }}{% endif %}. Created by <a href="http://doxygen.org/">Doxygen</a>{% if M_SHOW_DOXYGEN_VERSION %} {{ DOXYGEN_VERSION }}{% endif %} and <a href="http://mcss.mosra.cz/">m.css</a>.</p>
+ <p>{{ PROJECT_NAME }}{% if PROJECT_BRIEF %} {{ PROJECT_BRIEF }}{% endif %}. Created by <a href="http://doxygen.org/">Doxygen</a> {{ DOXYGEN_VERSION }} and <a href="http://mcss.mosra.cz/">m.css</a>.</p>
{% else %}
{{ M_PAGE_FINE_PRINT|replace('{doxygen_version}', DOXYGEN_VERSION) }}
{% endif %}
'M_FILE_TREE_EXPAND_LEVELS': 1,
'M_PAGE_FINE_PRINT': 'this is "quotes"',
'M_PAGE_HEADER': 'this is "quotes" \'apostrophes\'',
- 'M_SHOW_DOXYGEN_VERSION': True,
'M_THEME_COLOR': '#22272e',
'OUTPUT_DIRECTORY': '',
'PROJECT_BRIEF': 'is cool',