summaryrefslogtreecommitdiffstats
path: root/templates/html/htmljssearchindex.tpl
blob: a16fa4ffc3e3ad7264485882647af1e43a022052 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{# input: si symbolIndex #}
var searchData =
[
{% for group in si.symbolGroups %}['{{ group.id }}',['{{ group.name }}',
{% for sym in group.symbols %}
{% spaceless %}
['{{ sym.relPath }}{{ sym.fileName }}{{ config.HTML_FILE_EXTENSION }}{% if sym.anchor %}#{{ sym.anchor }}{% endif %}',
{% if not config.EXT_LINKS_IN_WINDOW %}1{% else %}0{% endif %},
'{{ sym.scope|nowrap }}']
{% endspaceless %}
{% if not forloop.last %},{% endif %}
{% endfor %}
]]{% if not forloop.last %},{% endif %}
{% endfor %}
];