Blame templates/html/htmljsmenumembersdata.tpl

Packit 1c1d7e
{# all members #}
Packit 1c1d7e
{% with list=page.all section='' text=tr.all %}
Packit 1c1d7e
  {% include 'htmljsmenuletterdata.tpl' %}
Packit 1c1d7e
{% endwith %}
Packit 1c1d7e
{# functions #}
Packit 1c1d7e
{% if page.functions %}
Packit 1c1d7e
  {% with list=page.functions section='_func' text=tr.functions %}
Packit 1c1d7e
    ,{% include 'htmljsmenuletterdata.tpl' %}
Packit 1c1d7e
  {% endwith %}
Packit 1c1d7e
{% endif %}
Packit 1c1d7e
{# variables #}
Packit 1c1d7e
{% if page.variables %}
Packit 1c1d7e
  {% with list=page.variables section='_vars' text=tr.variables %}
Packit 1c1d7e
    ,{% include 'htmljsmenuletterdata.tpl' %}
Packit 1c1d7e
  {% endwith %}
Packit 1c1d7e
{% endif %}
Packit 1c1d7e
{# typedefs #}
Packit 1c1d7e
{% if page.typedefs %}
Packit 1c1d7e
  {% with list=page.typedefs section='_type' text=tr.typedefs %}
Packit 1c1d7e
    ,{% include 'htmljsmenuletterdata.tpl' %}
Packit 1c1d7e
  {% endwith %}
Packit 1c1d7e
{% endif %}
Packit 1c1d7e
{# enums #}
Packit 1c1d7e
{% if page.enums %}
Packit 1c1d7e
  {% with list=page.enums section='_enum' text=tr.enums %}
Packit 1c1d7e
    ,{% include 'htmljsmenuletterdata.tpl' %}
Packit 1c1d7e
  {% endwith %}
Packit 1c1d7e
{% endif %}
Packit 1c1d7e
{# enumValues #}
Packit 1c1d7e
{% if page.enumValues %}
Packit 1c1d7e
  {% with list=page.enumValues section='_eval' text=tr.enumValues %}
Packit 1c1d7e
    ,{% include 'htmljsmenuletterdata.tpl' %}
Packit 1c1d7e
  {% endwith %}
Packit 1c1d7e
{% endif %}
Packit 1c1d7e
{# macros #}
Packit 1c1d7e
{% if page.macros %}
Packit 1c1d7e
  {% with list=page.macros section='_defs' text=tr.macros %}
Packit 1c1d7e
    ,{% include 'htmljsmenuletterdata.tpl' %}
Packit 1c1d7e
  {% endwith %}
Packit 1c1d7e
{% endif %}
Packit 1c1d7e
{# properties #}
Packit 1c1d7e
{% if page.properties %}
Packit 1c1d7e
  {% with list=page.properties section='_prop' text=tr.properties %}
Packit 1c1d7e
    ,{% include 'htmljsmenuletterdata.tpl' %}
Packit 1c1d7e
  {% endwith %}
Packit 1c1d7e
{% endif %}
Packit 1c1d7e
{# events #}
Packit 1c1d7e
{% if page.events %}
Packit 1c1d7e
  {% with list=page.events section='_evnt' text=tr.events %}
Packit 1c1d7e
    ,{% include 'htmljsmenuletterdata.tpl' %}
Packit 1c1d7e
  {% endwith %}
Packit 1c1d7e
{% endif %}
Packit 1c1d7e
{# related #}
Packit 1c1d7e
{% if page.related %}
Packit 1c1d7e
  {% with list=page.related section='_rela' text=tr.related %}
Packit 1c1d7e
    ,{% include 'htmljsmenuletterdata.tpl' %}
Packit 1c1d7e
  {% endwith %}
Packit 1c1d7e
{% endif %}