2017-08-14 04:12:43 +02:00
|
|
|
.. _@{ slug }@:
|
|
|
|
|
2018-04-25 20:18:52 +02:00
|
|
|
{# avoids rST "isn't included in any toctree" errors for module index docs #}
|
|
|
|
:orphan:
|
|
|
|
|
2019-01-23 20:21:23 +01:00
|
|
|
**************************@{ '*' * maintainers | length }@
|
2017-08-14 04:12:43 +02:00
|
|
|
Modules Maintained by the @{ maintainers }@
|
2019-01-23 20:21:23 +01:00
|
|
|
**************************@{ '*' * maintainers | length }@
|
|
|
|
|
|
|
|
.. contents::
|
|
|
|
:local:
|
|
|
|
|
|
|
|
{% for category, data in subcategories.items() | sort %}
|
|
|
|
|
|
|
|
{% if category.lower() %}
|
|
|
|
.. _@{ category.lower() + '_' + slug.lower() + '_categories' }@:
|
|
|
|
{% else %}
|
|
|
|
.. _@{ slug.lower() + '_categories' }@:
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
@{ category.title() }@
|
|
|
|
@{ '=' * category | length }@
|
|
|
|
|
|
|
|
{% for name, info in data.items() | sort %}
|
|
|
|
|
|
|
|
{% if name.lower() %}
|
|
|
|
.. _@{ name.lower() + '_' + category + '_' + slug.lower() + '_' + plugin_type + 's' }@:
|
|
|
|
{% else %}
|
|
|
|
.. _@{ slug.lower() + '_' + category }@:
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
@{ name.title() }@
|
|
|
|
@{ '-' * name | length }@
|
|
|
|
|
|
|
|
{% for module in info['_modules'] | sort %}
|
|
|
|
* :ref:`@{ module }@_@{plugin_type}@`{% if module_info[module]['deprecated'] %} **(D)** {% endif%}
|
|
|
|
{% endfor %}
|
|
|
|
|
|
|
|
{% endfor %}
|
2017-08-14 04:12:43 +02:00
|
|
|
|
|
|
|
{% endfor %}
|
|
|
|
|
|
|
|
.. note::
|
|
|
|
- **(D)**: This marks a module as deprecated, which means a module is kept for backwards compatibility but usage is discouraged.
|
|
|
|
The module documentation details page may explain more about this rationale.
|