summaryrefslogtreecommitdiff
path: root/templates/html/htmljssearchindex.tpl
diff options
context:
space:
mode:
Diffstat (limited to 'templates/html/htmljssearchindex.tpl')
-rw-r--r--templates/html/htmljssearchindex.tpl14
1 files changed, 0 insertions, 14 deletions
diff --git a/templates/html/htmljssearchindex.tpl b/templates/html/htmljssearchindex.tpl
deleted file mode 100644
index e2979fb..0000000
--- a/templates/html/htmljssearchindex.tpl
+++ /dev/null
@@ -1,14 +0,0 @@
-{# input: si symbolIndex #}
-{% set symbolCount=0 %}
-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 %}
-{% set symbolCount=symbolCount+1 %}
-{% endspaceless %}
-]]{% if not forloop.last %},{% endif %}
-{% endfor %}
-];