summaryrefslogtreecommitdiff
path: root/templates/html/htmlmembersindex.tpl
blob: 18f11340b58cc15dd25c5aee0c2993232a674427 (plain)
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{# input: page #}
{% opensubindex nav %}
{# all members #}
{% with list=page.all section='' %}
  {% indexentry nav name=tr.all file=page.fileName|append:page_postfix anchor='' isReference=False separateIndex=False addToIndex=True %}
  {% include 'htmlindexpages.tpl' %}
{% endwith %}
{# functions #}
{% if page.functions %}
  {% set page_postfix='_func' %}
  {% indexentry nav name=tr.functions file=page.fileName|append:page_postfix anchor='' isReference=False separateIndex=False addToIndex=True %}
  {% with list=page.functions section=page_postfix %}
    {% include 'htmlindexpages.tpl' %}
  {% endwith %}
{% endif %}
{# variables #}
{% if page.variables %}
  {% set page_postfix='_vars' %}
  {% indexentry nav name=tr.variables file=page.fileName|append:page_postfix anchor='' isReference=False separateIndex=False addToIndex=True %}
  {% with list=page.variables section=page_postfix %}
    {% include 'htmlindexpages.tpl' %}
  {% endwith %}
{% endif %}
{# typedefs #}
{% if page.typedefs %}
  {% set page_postfix='_type' %}
  {% indexentry nav name=tr.typedefs file=page.fileName|append:page_postfix anchor='' isReference=False separateIndex=False addToIndex=True %}
  {% with list=page.typedefs section=page_postfix %}
    {% include 'htmlindexpages.tpl' %}
  {% endwith %}
{% endif %}
{# enums #}
{% if page.enums %}
  {% set page_postfix='_enum' %}
  {% indexentry nav name=tr.enums file=page.fileName|append:page_postfix anchor='' isReference=False separateIndex=False addToIndex=True %}
  {% with list=page.enums section=page_postfix %}
    {% include 'htmlindexpages.tpl' %}
  {% endwith %}
{% endif %}
{# enumValues #}
{% if page.enumValues %}
  {% set page_postfix='_eval' %}
  {% indexentry nav name=tr.enumValues file=page.fileName|append:page_postfix anchor='' isReference=False separateIndex=False addToIndex=True %}
  {% with list=page.enumValues section=page_postfix %}
    {% include 'htmlindexpages.tpl' %}
  {% endwith %}
{% endif %}
{# macros #}
{% if page.macros %}
  {% set page_postfix='_defs' %}
  {% indexentry nav name=tr.macros file=page.fileName|append:page_postfix anchor='' isReference=False separateIndex=False addToIndex=True %}
  {% with list=page.macros section=page_postfix %}
    {% include 'htmlindexpages.tpl' %}
  {% endwith %}
{% endif %}
{# properties #}
{% if page.properties %}
  {% set page_postfix='_prop' %}
  {% indexentry nav name=tr.properties file=page.fileName|append:page_postfix anchor='' isReference=False separateIndex=False addToIndex=True %}
  {% with list=page.properties section=page_postfix %}
    {% include 'htmlindexpages.tpl' %}
  {% endwith %}
{% endif %}
{# events #}
{% if page.events %}
  {% set page_postfix='_evnt' %}
  {% indexentry nav name=tr.events file=page.fileName|append:page_postfix anchor='' isReference=False separateIndex=False addToIndex=True %}
  {% with list=page.events section=page_postfix %}
    {% include 'htmlindexpages.tpl' %}
  {% endwith %}
{% endif %}
{# related #}
{% if page.related %}
  {% set page_postfix='_rela' %}
  {% indexentry nav name=tr.related file=page.fileName|append:page_postfix anchor='' isReference=False separateIndex=False addToIndex=True %}
  {% with list=page.related section=page_postfix %}
    {% include 'htmlindexpages.tpl' %}
  {% endwith %}
{% endif %}
{% set page_postfix='' %}
{% closesubindex nav %}