From a87fab8774329b08c6e513f07f8e6ba8c9385ab4 Mon Sep 17 00:00:00 2001 From: OzzieIsaacs Date: Tue, 14 Mar 2017 19:48:17 +0100 Subject: [PATCH] - Smaller cover picturees on small devices - filename for download with underscore --- cps/templates/detail.html | 2 +- cps/web.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/cps/templates/detail.html b/cps/templates/detail.html index ce7e179a..4a3ae2b1 100644 --- a/cps/templates/detail.html +++ b/cps/templates/detail.html @@ -2,7 +2,7 @@ {% block body %}
-
+
{% if entry.has_cover %} diff --git a/cps/web.py b/cps/web.py index 539d9984..6cb53981 100755 --- a/cps/web.py +++ b/cps/web.py @@ -700,7 +700,7 @@ def get_opds_download_link(book_id, format): helper.update_download(book_id, int(current_user.id)) file_name = book.title if len(book.authors) > 0: - file_name = book.authors[0].name + '-' + file_name + file_name = book.authors[0].name + '_' + file_name file_name = helper.get_valid_filename(file_name) response = make_response(send_from_directory(os.path.join(config.config_calibre_dir, book.path), data.name + "." + format)) response.headers["Content-Disposition"] = "attachment; filename*=UTF-8''%s.%s" % (quote(file_name.encode('utf8')), format) @@ -1324,7 +1324,7 @@ def get_download_link(book_id, format): helper.update_download(book_id, int(current_user.id)) file_name = book.title if len(book.authors) > 0: - file_name = book.authors[0].name + '-' + file_name + file_name = book.authors[0].name + '_' + file_name file_name = helper.get_valid_filename(file_name) response = make_response( send_from_directory(os.path.join(config.config_calibre_dir, book.path), data.name + "." + format))