forked from COVESA/ifex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
simple_overview.tpl
39 lines (38 loc) · 1.14 KB
/
simple_overview.tpl
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
-----------------------------------------
Header
-----------------------------------------
{% for s in item.children %}
Servicename: {{ s.name }}
-> {{ s.description }}
{% for i in s.interfaces %}
Interface: {{ i.name }}
-> {{ i.description }}
{% for x in i.commands %}
Command: {{ x.name }}
-> {{ x.description }}
{% for x in x.in_arguments %}
in: {{ x.name }} (of type {{x.type}})
{% endfor %}
{% endfor %}
{% for x in i.methods %}
Method: {{ x.name }}
-> {{ x.description }}
{% for x in x.in_arguments %}
in: {{ x.name }} (of type {{x.type}})
{% endfor %}
{% for x in x.out_arguments %}
out: {{ x.name }} (of type {{x.type}})
{% endfor %}
{% endfor %}
{% for x in i.events %}
Event: {{ x.name }}
-> {{ x.description }}
{% for x in x.in_arguments %}
in: {{ x.name }} (of type {{x.type}})
{% endfor %}
{% endfor %}
{% endfor %}
{% endfor %}
-----------------------------------------
Footer
-----------------------------------------