[enh] https support @ opensearch.xml

This commit is contained in:
asciimoo 2013-10-30 16:30:55 +01:00
parent c4ae39c15e
commit d1e8c2365e
1 changed files with 4 additions and 1 deletions

View File

@ -115,10 +115,13 @@ def stats():
def opensearch():
global opensearch_xml
method = 'post'
scheme = 'http'
# chrome/chromium only supports HTTP GET....
if request.headers.get('User-Agent', '').lower().find('webkit') >= 0:
method = 'get'
ret = opensearch_xml.format(method=method, host=url_for('index', _external=True))
if request.headers.get('Host', '').find('https://'):
scheme = 'https'
ret = opensearch_xml.format(method=method, host=url_for('index', _external=True, _scheme=scheme))
resp = Response(response=ret,
status=200,
mimetype="application/xml")