52537d2341
Change-Id: Ice55c665adf4c0ede819cfc7264ed13feeca14db
50 lines
1.6 KiB
Django/Jinja
50 lines
1.6 KiB
Django/Jinja
<?xml version='1.0' encoding='UTF-8'?>
|
|
<para xmlns="http://docbook.org/ns/docbook" version="5.0">
|
|
<!--
|
|
###################################################################
|
|
WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING
|
|
###################################################################
|
|
|
|
Warning: Do not edit this file. It is automatically
|
|
generated from the software project's code and your changes
|
|
will be overwritten.
|
|
|
|
The tool to generate this file lives in openstack-doc-tools
|
|
repository.
|
|
|
|
Please make any changes needed in the code, then run the
|
|
autogenerate-config-doc tool from the openstack-doc-tools
|
|
repository, or ask for help on the documentation mailing list,
|
|
IRC channel or meeting.
|
|
|
|
###################################################################
|
|
WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING
|
|
###################################################################
|
|
-->
|
|
<table rules="all" xml:id="config_table_{{ pkg }}_{{ cat }}">
|
|
<caption>Description of {{ nice_cat }} configuration options</caption>
|
|
<col width="50%"/>
|
|
<col width="50%"/>
|
|
<thead>
|
|
<tr>
|
|
<th>Configuration option = Default value</th>
|
|
<th>Description</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for group in groups %}
|
|
<tr>
|
|
<th colspan="2">[{{ group }}]</th>
|
|
</tr>
|
|
{% for item in items[loop.index0] %}
|
|
<tr>
|
|
<td><option>{{ item[0] }}</option> = <replaceable>{{ item[1] }}</replaceable></td>
|
|
<td>{{ item[2]|replace('<', '<')|replace('>', '>') }}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
</para>
|
|
|