19fba83f36
* Use the proper list (deprecated_opts, not new_opts) * Sort the elements Change-Id: I2f16ee72ed389b801590db70708db1bd4d59f88d
53 lines
1.3 KiB
Django/Jinja
53 lines
1.3 KiB
Django/Jinja
New, updated, and deprecated options in {{ release }} for {{ codename }}
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~{{ '~' * release|length }}~~~~~{{ '~' * codename|length }}
|
|
|
|
..
|
|
Warning: Do not edit this file. It is automatically generated and your
|
|
changes will be overwritten. The tool to do so lives in the
|
|
openstack-doc-tools repository.
|
|
|
|
{% if new_opts %}
|
|
.. list-table:: New options
|
|
:header-rows: 1
|
|
:class: config-ref-table
|
|
|
|
* - Option = default value
|
|
- (Type) Help string
|
|
{% for cells in new_opts %}
|
|
* - ``{{ cells[0] }}``
|
|
- ``{{ cells[1] }}``
|
|
{% endfor %}
|
|
{% endif %}
|
|
|
|
{% if new_defaults %}
|
|
.. list-table:: New default values
|
|
:header-rows: 1
|
|
:class: config-ref-table
|
|
|
|
* - Option
|
|
- Previous default value
|
|
- New default value
|
|
{% for cells in new_defaults %}
|
|
* - ``{{ cells[0] }}``
|
|
- ``{{ cells[1] }}``
|
|
- ``{{ cells[2]|default(' ', true) }}``
|
|
{% endfor %}
|
|
{% endif %}
|
|
|
|
{% if deprecated_opts %}
|
|
.. list-table:: Deprecated options
|
|
:header-rows: 1
|
|
:class: config-ref-table
|
|
|
|
* - Deprecated option
|
|
- New Option
|
|
{% for cells in deprecated_opts %}
|
|
* - ``{{ cells[0] }}``
|
|
- ``{{ cells[1] }}``
|
|
{% endfor %}
|
|
{% endif %}
|
|
|
|
{% if not new_opts and not new_defaults and not deprecated_opts %}
|
|
There are no new, updated, and deprecated options in {{ release }} for {{ codename }}.
|
|
{% endif %}
|