mirror of
				https://github.com/ansible-collections/community.general.git
				synced 2024-09-14 20:13:21 +02:00 
			
		
		
		
	
		
			
				
	
	
		
			192 lines
		
	
	
	
		
			4.6 KiB
		
	
	
	
		
			Django/Jinja
		
	
	
	
	
	
			
		
		
	
	
			192 lines
		
	
	
	
		
			4.6 KiB
		
	
	
	
		
			Django/Jinja
		
	
	
	
	
	
.. _@{ module }@:
 | 
						|
 | 
						|
{% if short_description %}
 | 
						|
{% set title = module + ' - ' + short_description|convert_symbols_to_format %}
 | 
						|
{% else %}
 | 
						|
{% set title = module %}
 | 
						|
{% endif %}
 | 
						|
{% set title_len = title|length %}
 | 
						|
 | 
						|
@{ title }@
 | 
						|
@{ '+' * title_len }@
 | 
						|
 | 
						|
{% if version_added is defined -%}
 | 
						|
.. versionadded:: @{ version_added }@
 | 
						|
{% endif %}
 | 
						|
 | 
						|
 | 
						|
.. contents::
 | 
						|
   :local:
 | 
						|
   :depth: 1
 | 
						|
 | 
						|
{# ------------------------------------------
 | 
						|
 #
 | 
						|
 # Please note: this looks like a core dump
 | 
						|
 # but it isn't one.
 | 
						|
 #
 | 
						|
 --------------------------------------------#}
 | 
						|
 | 
						|
{% if deprecated is defined -%}
 | 
						|
DEPRECATED
 | 
						|
----------
 | 
						|
 | 
						|
@{ deprecated }@
 | 
						|
{% endif %}
 | 
						|
 | 
						|
Synopsis
 | 
						|
--------
 | 
						|
 | 
						|
{% for desc in description -%}
 | 
						|
 * @{ desc | convert_symbols_to_format }@
 | 
						|
{% endfor %}
 | 
						|
 | 
						|
{% if aliases is defined -%}
 | 
						|
Aliases: @{ ','.join(aliases) }@
 | 
						|
{% endif %}
 | 
						|
 | 
						|
{% if requirements %}
 | 
						|
Requirements (on host that executes module)
 | 
						|
-------------------------------------------
 | 
						|
 | 
						|
{% for req in requirements %}
 | 
						|
  * @{ req | convert_symbols_to_format }@
 | 
						|
{% endfor %}
 | 
						|
{% endif %}
 | 
						|
 | 
						|
 | 
						|
{% if options -%}
 | 
						|
Options
 | 
						|
-------
 | 
						|
 | 
						|
.. raw:: html
 | 
						|
 | 
						|
    <table border=1 cellpadding=4>
 | 
						|
    <tr>
 | 
						|
    <th class="head">parameter</th>
 | 
						|
    <th class="head">required</th>
 | 
						|
    <th class="head">default</th>
 | 
						|
    <th class="head">choices</th>
 | 
						|
    <th class="head">comments</th>
 | 
						|
    </tr>
 | 
						|
    {% for k in option_keys %}
 | 
						|
    {% set v = options[k] %}
 | 
						|
    <tr>
 | 
						|
    <td>@{ k }@<br/><div style="font-size: small;">{% if v['version_added'] %} (added in @{v['version_added']}@){% endif %}</div></td>
 | 
						|
    <td>{% if v.get('required', False) %}yes{% else %}no{% endif %}</td>
 | 
						|
    <td>{% if v['default'] %}@{ v['default'] }@{% endif %}</td>
 | 
						|
    {% if v.get('type', 'not_bool') == 'bool' %}
 | 
						|
    <td><ul><li>yes</li><li>no</li></ul></td>
 | 
						|
    {% else %}
 | 
						|
    <td><ul>{% for choice in v.get('choices',[]) -%}<li>@{ choice }@</li>{% endfor -%}</ul></td>
 | 
						|
    {% endif %}
 | 
						|
    <td>{% for desc in v.description -%}<div>@{ desc | replace('\n', '\n    ') | html_ify }@</div>{% endfor -%} {% if 'aliases' in v and v.aliases -%}</br>
 | 
						|
        <div style="font-size: small;">aliases: @{ v.aliases|join(', ') }@<div>{%- endif %}</td></tr>
 | 
						|
    {% endfor %}
 | 
						|
    </table>
 | 
						|
    </br>
 | 
						|
 | 
						|
{% endif %}
 | 
						|
 | 
						|
 | 
						|
{% if examples or plainexamples -%}
 | 
						|
Examples
 | 
						|
--------
 | 
						|
 | 
						|
 ::
 | 
						|
 | 
						|
{% for example in examples %}
 | 
						|
{% if example['description'] %}@{ example['description'] | indent(4, True) }@{% endif %}
 | 
						|
@{ example['code'] | escape | indent(4, True) }@
 | 
						|
{% endfor %}
 | 
						|
{% if plainexamples %}@{ plainexamples | indent(4, True) }@{% endif %}
 | 
						|
{% endif %}
 | 
						|
 | 
						|
 | 
						|
{% if returndocs -%}
 | 
						|
Return Values
 | 
						|
-------------
 | 
						|
 | 
						|
Common return values are documented here :doc:`common_return_values`, the following are the fields unique to this module:
 | 
						|
 | 
						|
.. raw:: html
 | 
						|
 | 
						|
    <table border=1 cellpadding=4>
 | 
						|
    <tr>
 | 
						|
    <th class="head">name</th>
 | 
						|
    <th class="head">description</th>
 | 
						|
    <th class="head">returned</th>
 | 
						|
    <th class="head">type</th>
 | 
						|
    <th class="head">sample</th>
 | 
						|
    </tr>
 | 
						|
 | 
						|
    {% for entry in returndocs %}
 | 
						|
    <tr>
 | 
						|
        <td> @{ entry }@ </td>
 | 
						|
        <td> @{ returndocs[entry].description }@ </td>
 | 
						|
        <td align=center> @{ returndocs[entry].returned }@ </td>
 | 
						|
        <td align=center> @{ returndocs[entry].type }@ </td>
 | 
						|
        <td align=center> @{ returndocs[entry].sample}@ </td>
 | 
						|
    </tr>
 | 
						|
    {% if returndocs[entry].type == 'dictionary' %}
 | 
						|
    <tr><td>contains: </td>
 | 
						|
    <td colspan=4>
 | 
						|
        <table border=1 cellpadding=2>
 | 
						|
        <tr>
 | 
						|
        <th class="head">name</th>
 | 
						|
        <th class="head">description</th>
 | 
						|
        <th class="head">returned</th>
 | 
						|
        <th class="head">type</th>
 | 
						|
        <th class="head">sample</th>
 | 
						|
        </tr>
 | 
						|
 | 
						|
        {% for sub in returndocs[entry].contains %}
 | 
						|
        <tr>
 | 
						|
        <td> @{ sub }@ </td>
 | 
						|
        <td> @{ returndocs[entry].contains[sub].description }@ </td>
 | 
						|
        <td align=center> @{ returndocs[entry].contains[sub].returned }@ </td>
 | 
						|
        <td align=center> @{ returndocs[entry].contains[sub].type }@ </td>
 | 
						|
        <td align=center> @{ returndocs[entry].contains[sub].sample}@ </td>
 | 
						|
        </tr>
 | 
						|
        {% endfor %}
 | 
						|
 | 
						|
        </table>
 | 
						|
    </td></tr>
 | 
						|
 | 
						|
    {% endif %}
 | 
						|
    {% endfor %}
 | 
						|
 | 
						|
    </table>
 | 
						|
    </br></br>
 | 
						|
{% endif %}
 | 
						|
 | 
						|
{% if notes -%}
 | 
						|
Notes
 | 
						|
-----
 | 
						|
 | 
						|
{% for note in notes %}
 | 
						|
.. note:: @{ note | convert_symbols_to_format }@
 | 
						|
{% endfor %}
 | 
						|
{% endif %}
 | 
						|
 | 
						|
 | 
						|
{% if not deprecated %}
 | 
						|
    {% if core %}
 | 
						|
 | 
						|
This is a Core Module
 | 
						|
---------------------
 | 
						|
 | 
						|
For more information on what this means please read :doc:`modules_core`
 | 
						|
 | 
						|
    {% else %}
 | 
						|
 | 
						|
This is an Extras Module
 | 
						|
------------------------
 | 
						|
 | 
						|
For more information on what this means please read :doc:`modules_extra`
 | 
						|
 | 
						|
    {% endif %}
 | 
						|
{% endif %}
 | 
						|
 | 
						|
For help in developing on modules, should you be so inclined, please read :doc:`community`, :doc:`developing_test_pr` and :doc:`developing_modules`.
 | 
						|
 | 
						|
 |