Browse Source

[mod] add category to each results, and change group criterias (template and existing image)

Alexandre Flament 8 years ago
parent
commit
7ebe3a6f41
1 changed files with 6 additions and 3 deletions
  1. 6 3
      searx/results.py

+ 6 - 3
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]