mirror of https://github.com/searxng/searxng.git
Update bing image engine with new image json format
This commit is contained in:
parent
442772a6c5
commit
73ec2ba74e
|
@ -88,9 +88,7 @@ def response(resp):
|
||||||
|
|
||||||
url = json_data.get('purl')
|
url = json_data.get('purl')
|
||||||
img_src = json_data.get('murl')
|
img_src = json_data.get('murl')
|
||||||
|
thumbnail = json_data.get('turl')
|
||||||
thumb_json_data = loads(_quote_keys_regex.sub(r'\1"\2": \3', link.attrib.get('mad')))
|
|
||||||
thumbnail = thumb_json_data.get('turl')
|
|
||||||
|
|
||||||
# append result
|
# append result
|
||||||
results.append({'template': 'images.html',
|
results.append({'template': 'images.html',
|
||||||
|
|
|
@ -52,7 +52,7 @@ class TestBingImagesEngine(SearxTestCase):
|
||||||
<li>
|
<li>
|
||||||
<div>
|
<div>
|
||||||
<div class="imgpt">
|
<div class="imgpt">
|
||||||
<a m='{"purl":"page_url","murl":"img_url"}' mad='{"turl":"thumb_url"}'>
|
<a m='{"purl":"page_url","murl":"img_url","turl":"thumb_url"}'>
|
||||||
<img src="" alt="alt text" />
|
<img src="" alt="alt text" />
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
|
@ -60,7 +60,7 @@ class TestBingImagesEngine(SearxTestCase):
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
<div class="imgpt">
|
<div class="imgpt">
|
||||||
<a m='{"purl":"page_url2","murl":"img_url2"}' mad='{"turl":"thumb_url2"}'>
|
<a m='{"purl":"page_url2","murl":"img_url2","turl":"thumb_url2"}'>
|
||||||
<img src="" alt="alt text 2" />
|
<img src="" alt="alt text 2" />
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
|
@ -71,7 +71,7 @@ class TestBingImagesEngine(SearxTestCase):
|
||||||
<li>
|
<li>
|
||||||
<div>
|
<div>
|
||||||
<div class="imgpt">
|
<div class="imgpt">
|
||||||
<a m='{"purl":"page_url3","murl":"img_url3"}' mad='{"turl":"thumb_url3"}'>
|
<a m='{"purl":"page_url3","murl":"img_url3","turl":"thumb_url3"}'>
|
||||||
<img src="" alt="alt text 3" />
|
<img src="" alt="alt text 3" />
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in New Issue