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

This commit is contained in:
Alexandre Flament 2017-03-14 12:35:40 +01:00 committed by Adam Tauber
parent 87f673336f
commit 7ebe3a6f41
1 changed files with 6 additions and 3 deletions

View File

@ -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]