forked from 0x2620/pandora
space
This commit is contained in:
parent
65fc082b1b
commit
476fa9f0a3
1 changed files with 2 additions and 2 deletions
|
@ -59,11 +59,11 @@ def redirect_url(request, url):
|
|||
if settings.CONFIG['site'].get('sendReferrer', False):
|
||||
return redirect(url)
|
||||
else:
|
||||
return HttpResponse('<script>document.location.href=%s;</script>'%json.dumps(url))
|
||||
return HttpResponse('<script>document.location.href=%s;</script>' % json.dumps(url))
|
||||
|
||||
def opensearch_xml(request):
|
||||
osd = ET.Element('OpenSearchDescription')
|
||||
osd.attrib['xmlns']="http://a9.com/-/spec/opensearch/1.1/"
|
||||
osd.attrib['xmlns'] = "http://a9.com/-/spec/opensearch/1.1/"
|
||||
e = ET.SubElement(osd, 'ShortName')
|
||||
e.text = settings.SITENAME
|
||||
e = ET.SubElement(osd, 'Description')
|
||||
|
|
Loading…
Reference in a new issue