From 513943042bbccd8f46fc45a15c442e2482321a62 Mon Sep 17 00:00:00 2001 From: Alexandre Aubin Date: Fri, 27 Oct 2023 12:56:17 +0200 Subject: [PATCH] appgenerator: rename stuff to app generator consistently --- .../YunohostAppGenerator.py => app_generator/app_generator.py} | 0 tools/{yunopackage => app_generator}/requirements.txt | 0 tools/{yunopackage => app_generator}/static/stylesheet.css | 0 tools/{yunopackage => app_generator}/templates/_common.sh.j2 | 0 tools/{yunopackage => app_generator}/templates/backup.j2 | 0 tools/{yunopackage => app_generator}/templates/change_url.j2 | 0 tools/{yunopackage => app_generator}/templates/config.j2 | 0 tools/{yunopackage => app_generator}/templates/index.html | 2 +- tools/{yunopackage => app_generator}/templates/install.j2 | 0 tools/{yunopackage => app_generator}/templates/manifest.j2 | 0 tools/{yunopackage => app_generator}/templates/remove.j2 | 0 tools/{yunopackage => app_generator}/templates/restore.j2 | 0 tools/{yunopackage => app_generator}/templates/upgrade.j2 | 0 13 files changed, 1 insertion(+), 1 deletion(-) rename tools/{yunopackage/YunohostAppGenerator.py => app_generator/app_generator.py} (100%) rename tools/{yunopackage => app_generator}/requirements.txt (100%) rename tools/{yunopackage => app_generator}/static/stylesheet.css (100%) rename tools/{yunopackage => app_generator}/templates/_common.sh.j2 (100%) rename tools/{yunopackage => app_generator}/templates/backup.j2 (100%) rename tools/{yunopackage => app_generator}/templates/change_url.j2 (100%) rename tools/{yunopackage => app_generator}/templates/config.j2 (100%) rename tools/{yunopackage => app_generator}/templates/index.html (99%) rename tools/{yunopackage => app_generator}/templates/install.j2 (100%) rename tools/{yunopackage => app_generator}/templates/manifest.j2 (100%) rename tools/{yunopackage => app_generator}/templates/remove.j2 (100%) rename tools/{yunopackage => app_generator}/templates/restore.j2 (100%) rename tools/{yunopackage => app_generator}/templates/upgrade.j2 (100%) diff --git a/tools/yunopackage/YunohostAppGenerator.py b/tools/app_generator/app_generator.py similarity index 100% rename from tools/yunopackage/YunohostAppGenerator.py rename to tools/app_generator/app_generator.py diff --git a/tools/yunopackage/requirements.txt b/tools/app_generator/requirements.txt similarity index 100% rename from tools/yunopackage/requirements.txt rename to tools/app_generator/requirements.txt diff --git a/tools/yunopackage/static/stylesheet.css b/tools/app_generator/static/stylesheet.css similarity index 100% rename from tools/yunopackage/static/stylesheet.css rename to tools/app_generator/static/stylesheet.css diff --git a/tools/yunopackage/templates/_common.sh.j2 b/tools/app_generator/templates/_common.sh.j2 similarity index 100% rename from tools/yunopackage/templates/_common.sh.j2 rename to tools/app_generator/templates/_common.sh.j2 diff --git a/tools/yunopackage/templates/backup.j2 b/tools/app_generator/templates/backup.j2 similarity index 100% rename from tools/yunopackage/templates/backup.j2 rename to tools/app_generator/templates/backup.j2 diff --git a/tools/yunopackage/templates/change_url.j2 b/tools/app_generator/templates/change_url.j2 similarity index 100% rename from tools/yunopackage/templates/change_url.j2 rename to tools/app_generator/templates/change_url.j2 diff --git a/tools/yunopackage/templates/config.j2 b/tools/app_generator/templates/config.j2 similarity index 100% rename from tools/yunopackage/templates/config.j2 rename to tools/app_generator/templates/config.j2 diff --git a/tools/yunopackage/templates/index.html b/tools/app_generator/templates/index.html similarity index 99% rename from tools/yunopackage/templates/index.html rename to tools/app_generator/templates/index.html index ac675053..c84c5f2b 100644 --- a/tools/yunopackage/templates/index.html +++ b/tools/app_generator/templates/index.html @@ -222,7 +222,7 @@ console.log(xhr.status) } - My Webpage + YunoHost app generator diff --git a/tools/yunopackage/templates/install.j2 b/tools/app_generator/templates/install.j2 similarity index 100% rename from tools/yunopackage/templates/install.j2 rename to tools/app_generator/templates/install.j2 diff --git a/tools/yunopackage/templates/manifest.j2 b/tools/app_generator/templates/manifest.j2 similarity index 100% rename from tools/yunopackage/templates/manifest.j2 rename to tools/app_generator/templates/manifest.j2 diff --git a/tools/yunopackage/templates/remove.j2 b/tools/app_generator/templates/remove.j2 similarity index 100% rename from tools/yunopackage/templates/remove.j2 rename to tools/app_generator/templates/remove.j2 diff --git a/tools/yunopackage/templates/restore.j2 b/tools/app_generator/templates/restore.j2 similarity index 100% rename from tools/yunopackage/templates/restore.j2 rename to tools/app_generator/templates/restore.j2 diff --git a/tools/yunopackage/templates/upgrade.j2 b/tools/app_generator/templates/upgrade.j2 similarity index 100% rename from tools/yunopackage/templates/upgrade.j2 rename to tools/app_generator/templates/upgrade.j2