From 6cc5a8e01e1e4ece4681f24533501bf1ca6abef8 Mon Sep 17 00:00:00 2001 From: lrdossan Date: Mon, 24 Jun 2024 17:12:26 +0200 Subject: [PATCH] added deprecation template for expert apps --- caimira/apps/templates/about.html.j2 | 2 +- caimira/apps/templates/base/index.html.j2 | 4 ++-- caimira/apps/templates/base/layout.html.j2 | 4 ++-- caimira/apps/templates/expert-app.html.j2 | 18 ++++++++++++++++++ 4 files changed, 23 insertions(+), 5 deletions(-) create mode 100644 caimira/apps/templates/expert-app.html.j2 diff --git a/caimira/apps/templates/about.html.j2 b/caimira/apps/templates/about.html.j2 index 28140cc1..c503c1bb 100644 --- a/caimira/apps/templates/about.html.j2 +++ b/caimira/apps/templates/about.html.j2 @@ -15,7 +15,7 @@ CAiMIRA stands for CERN Airborne Model for Indoor Risk Assessment, previously kn Since then, the model has evolved and now is capable of simulating the short-range component. CAiMIRA comes with different applications that allow more or less flexibility in the input parameters: The mathematical and physical model simulate the airborne spread of SARS-CoV-2 virus in a finite volume, assuming a homogenous mixture and a two-stage exhaled jet model, and estimates the risk of COVID-19 airborne transmission therein. The results DO NOT include other known modes of SARS-CoV-2 transmission. Hence, the output from this model is only valid when the other recommended public health & safety instructions are observed, such as good hand hygiene and other barrier measures.
diff --git a/caimira/apps/templates/base/index.html.j2 b/caimira/apps/templates/base/index.html.j2 index 65f19037..d7c432a3 100644 --- a/caimira/apps/templates/base/index.html.j2 +++ b/caimira/apps/templates/base/index.html.j2 @@ -32,7 +32,7 @@

- +

@@ -46,7 +46,7 @@

Applications

-
CAiMIRA is composed of two applications, the Calculator and the Expert App.
+
CAiMIRA is composed of two applications, the Calculator and the Expert App.

About

diff --git a/caimira/apps/templates/base/layout.html.j2 b/caimira/apps/templates/base/layout.html.j2 index 5ea37537..e64664bd 100644 --- a/caimira/apps/templates/base/layout.html.j2 +++ b/caimira/apps/templates/base/layout.html.j2 @@ -45,8 +45,8 @@
diff --git a/caimira/apps/templates/expert-app.html.j2 b/caimira/apps/templates/expert-app.html.j2 new file mode 100644 index 00000000..5b779440 --- /dev/null +++ b/caimira/apps/templates/expert-app.html.j2 @@ -0,0 +1,18 @@ +{% extends "base/layout.html.j2" %} + +{% block main %} + +
+ +

CAiMIRA Expert Apps were deprecated in version 5.16.0


+ +With the latest feature implementations in the core CAiMIRA engine, the ExpertApplication and CO2Application apps are no longer actively maintained. +For legacy purposes, the source code is still available in the GitLab repository. +

+For any query, please let us know by sending an email to CAiMIRA-dev@cern.ch. +

+ + +
+ +{% endblock main %} \ No newline at end of file