summaryrefslogtreecommitdiffstats
path: root/templates/html/htmljssearchindex.tpl
blob: c9634347f63f19b14c9a5e2beb1c9fa066bf279c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{# input: si symbolIndex #}
var searchData =
[
{% for group in si.symbolGroups %}  ['{{ group.id }}_{{ symbolCount }}',['{{ group.name }}',{% spaceless %}{% for sym in group.symbols %}['{{ 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|escape }}']
{% if not forloop.last %},{% endif %}
{% endfor %}
{% update symbolCount=symbolCount+1 %}
{% endspaceless %}
]]{% if not forloop.last %},{% endif %}
{% endfor %}
];