From 867547a965390645a3054d87579c1147dd7051f7 Mon Sep 17 00:00:00 2001
From: thomaswoehlke <thomas.woehlke@gmail.com>
Date: Sat, 23 Jan 2021 18:56:27 +0100
Subject: [PATCH] ### 0.0.12 Release * Issue #52 download vaccination timeline
 data file * Issue #53 import vaccination timeline data file into db * Issue
 #54 /vaccination/imported * Issue #55 /vaccination/tasks * Issue #56
 /vaccination/info

---
 app.py                                       | 2 +-
 etc/deploy_db_to_r.sh                        | 3 ---
 templates/vaccination/vaccination_tasks.html | 6 +++---
 3 files changed, 4 insertions(+), 7 deletions(-)
 delete mode 100755 etc/deploy_db_to_r.sh

diff --git a/app.py b/app.py
index 888cc52a..18460692 100644
--- a/app.py
+++ b/app.py
@@ -412,7 +412,7 @@ def url_vaccination_tasks():
 
 @app.route('/vaccination/update/initial')
 def url_vaccination_update_data():
-    vaccination_service.download()
+    vaccination_service.run_download()
     vaccination_update_initial_task.apply_async()
     flash("vaccination_service.run_update started")
     return redirect(url_for('url_vaccination_tasks'))
diff --git a/etc/deploy_db_to_r.sh b/etc/deploy_db_to_r.sh
deleted file mode 100755
index 3f21ac17..00000000
--- a/etc/deploy_db_to_r.sh
+++ /dev/null
@@ -1,3 +0,0 @@
-#!/usr/bin/env bash
-
-cp -av data/cov19.db ../covid19r/data/
\ No newline at end of file
diff --git a/templates/vaccination/vaccination_tasks.html b/templates/vaccination/vaccination_tasks.html
index 803d3458..d3a2a59e 100644
--- a/templates/vaccination/vaccination_tasks.html
+++ b/templates/vaccination/vaccination_tasks.html
@@ -10,11 +10,11 @@
 
 {% block main_container %}
     <div class="btn-group" role="group" aria-label="Views">
-        <a class="btn btn-secondary btn-lg" href="/vaccination/region/all" role="button">RKI :: Region :: All</a>
+        <a class="btn btn-secondary btn-lg" href="/vaccination/region/all" role="button">Vaccination :: Region :: All</a>
     </div>
     <div class="btn-group" role="group" aria-label="Views">
-        <a class="btn btn-primary btn-lg" href="/vaccination/update/initial" role="button">RKI :: update :: initial</a>
-        <a class="btn btn-secondary btn-lg" href="/vaccination/update/short" role="button">RKI :: update :: short</a>
+        <a class="btn btn-primary btn-lg" href="/vaccination/update/initial" role="button">Vaccination :: update :: initial</a>
+        <a class="btn btn-secondary btn-lg" href="/vaccination/update/short" role="button">Vaccination :: update :: short</a>
     </div>
 {% endblock %}
 
-- 
GitLab