commit: 7ebe3a6f41203e9714d920383443bf03891eba7f
parent: 87f673336fcfd27ce417d95a6099d5110998a05b
Author: Alexandre Flament <alex@al-f.net>
Date: Tue, 14 Mar 2017 12:35:40 +0100
[mod] add category to each results, and change group criterias (template and existing image)
Diffstat:
1 file changed, 6 insertions(+), 3 deletions(-)
diff --git a/searx/results.py b/searx/results.py
@@ -250,9 +250,12 @@ class ResultContainer(object):
for i, res in enumerate(results):
# FIXME : handle more than one category per engine
- category = engines[res['engine']].categories[0] + ':' + ''\
- if 'template' not in res\
- else res['template']
+ res['category'] = engines[res['engine']].categories[0]
+
+ # FIXME : handle more than one category per engine
+ category = engines[res['engine']].categories[0]\
+ + ':' + res.get('template', '')\
+ + ':' + ('img_src' if 'img_src' in res or 'thumbnail' in res else '')
current = None if category not in categoryPositions\
else categoryPositions[category]