Remove old version.
[wolnelektury.git] / src / search / templatetags / search_tags.py
diff --git a/src/search/templatetags/search_tags.py b/src/search/templatetags/search_tags.py
deleted file mode 100644 (file)
index 8d0b74b..0000000
+++ /dev/null
@@ -1,36 +0,0 @@
-# This file is part of Wolnelektury, licensed under GNU Affero GPLv3 or later.
-# Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
-#
-import re
-from django import template
-
-register = template.Library()
-
-
-@register.inclusion_tag('catalogue/book_searched.html', takes_context=True)
-def book_searched(context, result):
-    # We don't need hits which lead to sections but do not have
-    # snippets.
-    hits = [(idx, h)
-            for (idx, h) in enumerate(result.hits)
-            if result.snippets[idx] is not None or ('fragment' in h and h['themes_hit'])]
-
-    for (idx, hit) in hits:
-        # currently we generate one snipper per hit though.
-        if len(result.snippets) <= idx:
-            break
-        if result.snippets[idx] is None:
-            continue
-        snip = result.snippets[idx]
-        # fix some formattting
-        snip = re.sub(r"[ \t\n]*\n[ \t\n]*", "\n", snip)
-        snip = re.sub(r"(^[ \t\n]+|[ \t\n]+$)", "", snip)
-
-        snip = snip.replace("\n", "<br />").replace('---', '&mdash;')
-        hit['snippet'] = snip
-
-    return {
-        'request': context['request'],
-        'book': result.book,
-        'hits':  list(zip(*hits))[1] if hits else []
-    }