You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
.. _@{ module }@:
|
|
|
|
|
|
|
|
@{ module }@
|
|
|
|
``````````````````````````````
|
|
|
|
|
|
|
|
{# ------------------------------------------
|
|
|
|
#
|
|
|
|
# Please note: this looks like a core dump
|
|
|
|
# but it isn't one.
|
|
|
|
#
|
|
|
|
--------------------------------------------#}
|
|
|
|
|
|
|
|
{% if version_added is defined -%}
|
|
|
|
.. versionadded:: @{ version_added }@
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
{% for desc in description -%}
|
|
|
|
@{ desc | jpfunc }@
|
|
|
|
{% endfor %}
|
|
|
|
|
|
|
|
{% if options is defined -%}
|
|
|
|
.. raw:: html
|
|
|
|
|
|
|
|
<table>
|
|
|
|
<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,v) in options.iteritems() %}
|
|
|
|
<tr>
|
|
|
|
<td>@{ k }@</td>
|
|
|
|
<td>@{ v.get('required',False) }@</td>
|
|
|
|
<td>@{ v['default'] }@</td>
|
|
|
|
<td><ul>{% for choice in v.get('choices',[]) -%}<li>@{ choice }@</li>{% endfor -%}</ul></td>
|
|
|
|
<td>{% for desc in v.description -%}@{ desc | html_ify }@{% endfor -%}</td>
|
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
|
|
</table>
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
.. raw:: html
|
|
|
|
|
|
|
|
{% for example in examples %}
|
|
|
|
{% if example['description'] %}<p>@{ example['description'] | html_ify }@</p>{% endif %}
|
|
|
|
<p><pre>
|
|
|
|
@{ example['code'] }@</pre></p>
|
|
|
|
{% endfor %}
|
|
|
|
<br/>
|
|
|
|
|
|
|
|
|