summaryrefslogtreecommitdiffstats
path: root/python/fatcat_web/routes.py
diff options
context:
space:
mode:
authorMartin Czygan <martin@archive.org>2019-11-15 22:51:20 +0000
committerMartin Czygan <martin@archive.org>2019-11-15 22:51:20 +0000
commita8d352ff76226bafeecebde6aaaad5d98dc3102a (patch)
tree9e5cbd44dad2f309c316119e5971acf240919ca1 /python/fatcat_web/routes.py
parenta6bcbac233e27652913668ca63c102e4d071d437 (diff)
parent0e4d65c773f586cc5cdafe8049e344a26688f710 (diff)
downloadfatcat-a8d352ff76226bafeecebde6aaaad5d98dc3102a.tar.gz
fatcat-a8d352ff76226bafeecebde6aaaad5d98dc3102a.zip
Merge branch 'martin-search-results-pagination' into 'master'
Add basic pagination to search results See merge request webgroup/fatcat!4
Diffstat (limited to 'python/fatcat_web/routes.py')
-rw-r--r--python/fatcat_web/routes.py9
1 files changed, 7 insertions, 2 deletions
diff --git a/python/fatcat_web/routes.py b/python/fatcat_web/routes.py
index 79b594e3..a41f388d 100644
--- a/python/fatcat_web/routes.py
+++ b/python/fatcat_web/routes.py
@@ -673,9 +673,12 @@ def release_search():
if container_id and query:
query += ' container_id:"{}"'.format(container_id)
+ offset = request.args.get('offset', '0')
+ offset = max(0, int(offset)) if offset.isnumeric() else 0
+
if 'q' in request.args.keys():
# always do files for HTML
- found = do_release_search(query, fulltext_only=fulltext_only)
+ found = do_release_search(query, fulltext_only=fulltext_only, offset=offset)
return render_template('release_search.html', found=found, query=query, fulltext_only=fulltext_only)
else:
return render_template('release_search.html', query=query, fulltext_only=fulltext_only)
@@ -684,10 +687,12 @@ def release_search():
def container_search():
query = request.args.get('q')
+ offset = request.args.get('offset', '0')
+ offset = max(0, int(offset)) if offset.isnumeric() else 0
if 'q' in request.args.keys():
# always do files for HTML
- found = do_container_search(query)
+ found = do_container_search(query, offset=offset)
return render_template('container_search.html', found=found, query=query)
else:
return render_template('container_search.html', query=query)