[feat] recoll: paged json support

This commit is contained in:
Hermógenes Oliveira 2021-02-07 10:05:35 -03:00
parent 1e35c3ccce
commit 514faa9162
1 changed files with 2 additions and 0 deletions

View File

@ -18,6 +18,7 @@ about = {
}
# engine dependent config
paging = True
time_range_support = True
# parameters from settings.yml
@ -53,6 +54,7 @@ def request(query, params):
search_url = base_url + 'json?{query}&highlight=0'
params['url'] = search_url.format(query=urlencode({
'query': query,
'page': params['pageno'],
'after': search_after,
'dir': search_dir}))