From 7ebe3a6f41203e9714d920383443bf03891eba7f Mon Sep 17 00:00:00 2001 From: Alexandre Flament Date: Tue, 14 Mar 2017 12:35:40 +0100 Subject: [PATCH] [mod] add category to each results, and change group criterias (template and existing image) --- searx/results.py | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/searx/results.py b/searx/results.py index b6d408e2..6abffb57 100644 --- 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]