Browse Source

[fix] opensearch image issue - closes #507

Adam Tauber 9 years ago
parent
commit
bc81eda64b

+ 1 - 1
searx/templates/courgette/opensearch.xml

@@ -3,7 +3,7 @@
   <ShortName>{{ instance_name }}</ShortName>
   <ShortName>{{ instance_name }}</ShortName>
   <Description>a privacy-respecting, hackable metasearch engine</Description>
   <Description>a privacy-respecting, hackable metasearch engine</Description>
   <InputEncoding>UTF-8</InputEncoding>
   <InputEncoding>UTF-8</InputEncoding>
-  <Image>{{ host }}{{ url_for('static', filename='img/favicon.png') | replace("/", "", 1) }}</Image>
+  <Image>{{ urljoin(host, url_for('static', filename='img/favicon.png')) }}</Image>
   <LongName>searx metasearch</LongName>
   <LongName>searx metasearch</LongName>
   {% if opensearch_method == 'get' %}
   {% if opensearch_method == 'get' %}
     <Url type="text/html" method="get" template="{{ host }}search?q={searchTerms}"/>
     <Url type="text/html" method="get" template="{{ host }}search?q={searchTerms}"/>

+ 1 - 1
searx/templates/default/opensearch.xml

@@ -3,7 +3,7 @@
   <ShortName>{{ instance_name }}</ShortName>
   <ShortName>{{ instance_name }}</ShortName>
   <Description>a privacy-respecting, hackable metasearch engine</Description>
   <Description>a privacy-respecting, hackable metasearch engine</Description>
   <InputEncoding>UTF-8</InputEncoding>
   <InputEncoding>UTF-8</InputEncoding>
-  <Image>{{ host }}{{ url_for('static', filename='img/favicon.png') | replace("/", "", 1) }}</Image>
+  <Image>{{ urljoin(host, url_for('static', filename='img/favicon.png')) }}</Image>
   <LongName>searx metasearch</LongName>
   <LongName>searx metasearch</LongName>
   {% if opensearch_method == 'get' %}
   {% if opensearch_method == 'get' %}
     <Url type="text/html" method="get" template="{{ host }}search?q={searchTerms}"/>
     <Url type="text/html" method="get" template="{{ host }}search?q={searchTerms}"/>

+ 1 - 1
searx/templates/oscar/opensearch.xml

@@ -3,7 +3,7 @@
   <ShortName>{{ instance_name }}</ShortName>
   <ShortName>{{ instance_name }}</ShortName>
   <Description>a privacy-respecting, hackable metasearch engine</Description>
   <Description>a privacy-respecting, hackable metasearch engine</Description>
   <InputEncoding>UTF-8</InputEncoding>
   <InputEncoding>UTF-8</InputEncoding>
-  <Image>{{ host }}{{ url_for('static', filename='img/favicon.png') | replace("/", "", 1) }}</Image>
+  <Image>{{ urljoin(host, url_for('static', filename='img/favicon.png')) }}</Image>
   <LongName>searx metasearch</LongName>
   <LongName>searx metasearch</LongName>
   {% if opensearch_method == 'get' %}
   {% if opensearch_method == 'get' %}
     <Url type="text/html" method="get" template="{{ host }}search?q={searchTerms}"/>
     <Url type="text/html" method="get" template="{{ host }}search?q={searchTerms}"/>

+ 2 - 1
searx/webapp.py

@@ -749,7 +749,8 @@ def opensearch():
 
 
     ret = render('opensearch.xml',
     ret = render('opensearch.xml',
                  opensearch_method=method,
                  opensearch_method=method,
-                 host=get_base_url())
+                 host=get_base_url(),
+                 urljoin=urljoin)
 
 
     resp = Response(response=ret,
     resp = Response(response=ret,
                     status=200,
                     status=200,