|
@@ -120,8 +120,10 @@ def index():
|
120
|
120
|
search.paging = True
|
121
|
121
|
if search.request_data.get('format', 'html') == 'html':
|
122
|
122
|
if 'content' in result:
|
123
|
|
- result['content'] = highlight_content(result['content'], search.query)
|
124
|
|
- result['title'] = highlight_content(result['title'], search.query)
|
|
123
|
+ result['content'] = highlight_content(result['content'],
|
|
124
|
+ search.query.encode('utf-8')) # noqa
|
|
125
|
+ result['title'] = highlight_content(result['title'],
|
|
126
|
+ search.query.encode('utf-8'))
|
125
|
127
|
else:
|
126
|
128
|
if 'content' in result:
|
127
|
129
|
result['content'] = html_to_text(result['content']).strip()
|
|
@@ -139,7 +141,8 @@ def index():
|
139
|
141
|
result['favicon'] = engine
|
140
|
142
|
|
141
|
143
|
if search.request_data.get('format') == 'json':
|
142
|
|
- return Response(json.dumps({'query': search.query, 'results': search.results}),
|
|
144
|
+ return Response(json.dumps({'query': search.query,
|
|
145
|
+ 'results': search.results}),
|
143
|
146
|
mimetype='application/json')
|
144
|
147
|
elif search.request_data.get('format') == 'csv':
|
145
|
148
|
csv = UnicodeWriter(cStringIO.StringIO())
|
|
@@ -151,8 +154,8 @@ def index():
|
151
|
154
|
csv.writerow([row.get(key, '') for key in keys])
|
152
|
155
|
csv.stream.seek(0)
|
153
|
156
|
response = Response(csv.stream.read(), mimetype='application/csv')
|
154
|
|
- content_disp = 'attachment;Filename=searx_-_{0}.csv'.format(search.query)
|
155
|
|
- response.headers.add('Content-Disposition', content_disp)
|
|
157
|
+ cont_disp = 'attachment;Filename=searx_-_{0}.csv'.format(search.query)
|
|
158
|
+ response.headers.add('Content-Disposition', cont_disp)
|
156
|
159
|
return response
|
157
|
160
|
elif search.request_data.get('format') == 'rss':
|
158
|
161
|
response_rss = render(
|