File: envvars.rst.jinja2

package info (click to toggle)
xonsh 0.13.4%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 4,024 kB
  • sloc: python: 46,350; makefile: 136; sh: 41; xml: 17
file content (57 lines) | stat: -rw-r--r-- 1,609 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
Environment Variables
=====================
The following displays information about the environment variables that
affect xonsh performance in some way. It also lists their default values, if
applicable.

{% set ns = namespace(root_index='') %}
{% set env_vars = make_envvars() %}

{% macro list_table(vars) %}
    {% for vardoc in rst.iterator_for_divmod(vars.values()) %}
{% if loop.index0 % 3 == 0 %}* {% else %}  {% endif %}- {% if vardoc %}{{ rst.to_ref_string(vardoc.info.title) }}{% endif %}

    {% endfor %}
{% endmacro %}

{#titular table#}
{% for cls, envgrp in env_vars.children.items() recursive %}
    {% if not loop.depth0 %}
        {% set ns.root_index=loop.index %}
    {% endif %}

.. list-table:: {{ rst.to_ref_string(cls.get_group_title()) }}
    :header-rows: 0

    {{ list_table(envgrp.vars)|indent(4) }}
    {% if envgrp.children %}{{ loop(envgrp.children.items()) }}{% endif %}
{% endfor %}

{#variables doc#}
{% for cls, envgrp in env_vars.children.items() recursive %}

.. _{{ rst.to_valid_id(cls.get_group_title()) }}:

{{ cls.get_group_title() }}
{{ rst.underline_title(cls.get_group_title(), loop.depth0) }}
{{ cls.get_group_description() }}

{% for key, vardoc in envgrp.vars.items() %}

.. _{{ rst.to_valid_id(vardoc.info.title) }}:

{{ vardoc.info.title }}
{{ rst.underline_title(vardoc.info.title) }}
{{ vardoc.info.docstr }}

**configurable:** {{ vardoc.info.configurable }}

**default:** {{ vardoc.info.default }}

**store_as_str:** {{ vardoc.info.store_as_str }}

-------
{% endfor %}

{% if envgrp.children %}{{ loop(envgrp.children.items()) }}{% endif %}
{% endfor %}