mirror of
https://github.com/searxng/searxng.git
synced 2025-07-31 00:52:22 +02:00
add engine's name in infobox's header
This commit is contained in:
parent
574e99c4de
commit
c9c39b3e79
2 changed files with 8 additions and 0 deletions
|
@ -60,6 +60,8 @@ def merge_two_infoboxes(infobox1, infobox2):
|
|||
if weight2 > weight1:
|
||||
infobox1['engine'] = infobox2['engine']
|
||||
|
||||
infobox1['engines'] |= infobox2['engines']
|
||||
|
||||
if 'urls' in infobox2:
|
||||
urls1 = infobox1.get('urls', None)
|
||||
if urls1 is None:
|
||||
|
@ -189,6 +191,7 @@ class ResultContainer(object):
|
|||
def _merge_infobox(self, infobox):
|
||||
add_infobox = True
|
||||
infobox_id = infobox.get('id', None)
|
||||
infobox['engines'] = set([infobox['engine']])
|
||||
if infobox_id is not None:
|
||||
parsed_url_infobox_id = urlparse(infobox_id)
|
||||
for existingIndex in self.infoboxes:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue