summaryrefslogtreecommitdiffstats
path: root/templates/html/htmljssearchindex.tpl
blob: b23e19e4bbd21ac78f79596297951c5bf51ce41f (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|e }}']
{% if not forloop.last %},{% endif %}
{% endfor %}
{% update symbolCount=symbolCount+1 %}
{% endspaceless %}
]]{% if not forloop.last %},{% endif %}
{% endfor %}
];