From b881c133c6b5f8f0be8e6fe83dc563439e76c529 Mon Sep 17 00:00:00 2001 From: Pedro Ferreira Date: Tue, 10 Nov 2020 11:24:26 +0100 Subject: [PATCH] VC/Zoom: Move everything to vc_zoom dir --- .flake8 => vc_zoom/.flake8 | 0 .gitignore => vc_zoom/.gitignore | 0 MANIFEST.in => vc_zoom/MANIFEST.in | 0 README.md => vc_zoom/README.md | 0 conftest.py => vc_zoom/conftest.py | 0 .../indico_vc_zoom}/__init__.py | 0 .../indico_vc_zoom}/api/__init__.py | 0 .../indico_vc_zoom}/api/client.py | 0 .../indico_vc_zoom}/blueprint.py | 0 {indico_vc_zoom => vc_zoom/indico_vc_zoom}/cli.py | 0 .../indico_vc_zoom}/client/index.js | 0 .../indico_vc_zoom}/controllers.py | 0 {indico_vc_zoom => vc_zoom/indico_vc_zoom}/forms.py | 0 .../indico_vc_zoom}/http_api.py | 0 .../indico_vc_zoom}/notifications.py | 0 .../indico_vc_zoom}/plugin.py | 0 .../indico_vc_zoom}/static/images/zoom_logo.png | Bin .../indico_vc_zoom}/templates/buttons.html | 0 .../indico_vc_zoom}/templates/emails/created.html | 0 .../indico_vc_zoom}/templates/emails/deleted.html | 0 .../templates/emails/notify_new_host.html | 0 .../templates/emails/notify_start_url.html | 0 .../templates/emails/remote_deleted.html | 0 .../indico_vc_zoom}/templates/event_buttons.html | 0 .../indico_vc_zoom}/templates/info_box.html | 0 .../templates/manage_event_info_box.html | 0 .../templates/management_buttons.html | 0 .../indico_vc_zoom}/templates/room_labels.html | 0 .../templates/vc_room_timetable_buttons.html | 0 .../translations/fr_FR/LC_MESSAGES/messages-js.po | 0 .../translations/fr_FR/LC_MESSAGES/messages.po | 0 {indico_vc_zoom => vc_zoom/indico_vc_zoom}/util.py | 0 pytest.ini => vc_zoom/pytest.ini | 0 setup.cfg => vc_zoom/setup.cfg | 0 setup.py => vc_zoom/setup.py | 0 {tests => vc_zoom/tests}/task_test.py | 0 .../webpack-bundles.json | 0 37 files changed, 0 insertions(+), 0 deletions(-) rename .flake8 => vc_zoom/.flake8 (100%) rename .gitignore => vc_zoom/.gitignore (100%) rename MANIFEST.in => vc_zoom/MANIFEST.in (100%) rename README.md => vc_zoom/README.md (100%) rename conftest.py => vc_zoom/conftest.py (100%) rename {indico_vc_zoom => vc_zoom/indico_vc_zoom}/__init__.py (100%) rename {indico_vc_zoom => vc_zoom/indico_vc_zoom}/api/__init__.py (100%) rename {indico_vc_zoom => vc_zoom/indico_vc_zoom}/api/client.py (100%) rename {indico_vc_zoom => vc_zoom/indico_vc_zoom}/blueprint.py (100%) rename {indico_vc_zoom => vc_zoom/indico_vc_zoom}/cli.py (100%) rename {indico_vc_zoom => vc_zoom/indico_vc_zoom}/client/index.js (100%) rename {indico_vc_zoom => vc_zoom/indico_vc_zoom}/controllers.py (100%) rename {indico_vc_zoom => vc_zoom/indico_vc_zoom}/forms.py (100%) rename {indico_vc_zoom => vc_zoom/indico_vc_zoom}/http_api.py (100%) rename {indico_vc_zoom => vc_zoom/indico_vc_zoom}/notifications.py (100%) rename {indico_vc_zoom => vc_zoom/indico_vc_zoom}/plugin.py (100%) rename {indico_vc_zoom => vc_zoom/indico_vc_zoom}/static/images/zoom_logo.png (100%) rename {indico_vc_zoom => vc_zoom/indico_vc_zoom}/templates/buttons.html (100%) rename {indico_vc_zoom => vc_zoom/indico_vc_zoom}/templates/emails/created.html (100%) rename {indico_vc_zoom => vc_zoom/indico_vc_zoom}/templates/emails/deleted.html (100%) rename {indico_vc_zoom => vc_zoom/indico_vc_zoom}/templates/emails/notify_new_host.html (100%) rename {indico_vc_zoom => vc_zoom/indico_vc_zoom}/templates/emails/notify_start_url.html (100%) rename {indico_vc_zoom => vc_zoom/indico_vc_zoom}/templates/emails/remote_deleted.html (100%) rename {indico_vc_zoom => vc_zoom/indico_vc_zoom}/templates/event_buttons.html (100%) rename {indico_vc_zoom => vc_zoom/indico_vc_zoom}/templates/info_box.html (100%) rename {indico_vc_zoom => vc_zoom/indico_vc_zoom}/templates/manage_event_info_box.html (100%) rename {indico_vc_zoom => vc_zoom/indico_vc_zoom}/templates/management_buttons.html (100%) rename {indico_vc_zoom => vc_zoom/indico_vc_zoom}/templates/room_labels.html (100%) rename {indico_vc_zoom => vc_zoom/indico_vc_zoom}/templates/vc_room_timetable_buttons.html (100%) rename {indico_vc_zoom => vc_zoom/indico_vc_zoom}/translations/fr_FR/LC_MESSAGES/messages-js.po (100%) rename {indico_vc_zoom => vc_zoom/indico_vc_zoom}/translations/fr_FR/LC_MESSAGES/messages.po (100%) rename {indico_vc_zoom => vc_zoom/indico_vc_zoom}/util.py (100%) rename pytest.ini => vc_zoom/pytest.ini (100%) rename setup.cfg => vc_zoom/setup.cfg (100%) rename setup.py => vc_zoom/setup.py (100%) rename {tests => vc_zoom/tests}/task_test.py (100%) rename webpack-bundles.json => vc_zoom/webpack-bundles.json (100%) diff --git a/.flake8 b/vc_zoom/.flake8 similarity index 100% rename from .flake8 rename to vc_zoom/.flake8 diff --git a/.gitignore b/vc_zoom/.gitignore similarity index 100% rename from .gitignore rename to vc_zoom/.gitignore diff --git a/MANIFEST.in b/vc_zoom/MANIFEST.in similarity index 100% rename from MANIFEST.in rename to vc_zoom/MANIFEST.in diff --git a/README.md b/vc_zoom/README.md similarity index 100% rename from README.md rename to vc_zoom/README.md diff --git a/conftest.py b/vc_zoom/conftest.py similarity index 100% rename from conftest.py rename to vc_zoom/conftest.py diff --git a/indico_vc_zoom/__init__.py b/vc_zoom/indico_vc_zoom/__init__.py similarity index 100% rename from indico_vc_zoom/__init__.py rename to vc_zoom/indico_vc_zoom/__init__.py diff --git a/indico_vc_zoom/api/__init__.py b/vc_zoom/indico_vc_zoom/api/__init__.py similarity index 100% rename from indico_vc_zoom/api/__init__.py rename to vc_zoom/indico_vc_zoom/api/__init__.py diff --git a/indico_vc_zoom/api/client.py b/vc_zoom/indico_vc_zoom/api/client.py similarity index 100% rename from indico_vc_zoom/api/client.py rename to vc_zoom/indico_vc_zoom/api/client.py diff --git a/indico_vc_zoom/blueprint.py b/vc_zoom/indico_vc_zoom/blueprint.py similarity index 100% rename from indico_vc_zoom/blueprint.py rename to vc_zoom/indico_vc_zoom/blueprint.py diff --git a/indico_vc_zoom/cli.py b/vc_zoom/indico_vc_zoom/cli.py similarity index 100% rename from indico_vc_zoom/cli.py rename to vc_zoom/indico_vc_zoom/cli.py diff --git a/indico_vc_zoom/client/index.js b/vc_zoom/indico_vc_zoom/client/index.js similarity index 100% rename from indico_vc_zoom/client/index.js rename to vc_zoom/indico_vc_zoom/client/index.js diff --git a/indico_vc_zoom/controllers.py b/vc_zoom/indico_vc_zoom/controllers.py similarity index 100% rename from indico_vc_zoom/controllers.py rename to vc_zoom/indico_vc_zoom/controllers.py diff --git a/indico_vc_zoom/forms.py b/vc_zoom/indico_vc_zoom/forms.py similarity index 100% rename from indico_vc_zoom/forms.py rename to vc_zoom/indico_vc_zoom/forms.py diff --git a/indico_vc_zoom/http_api.py b/vc_zoom/indico_vc_zoom/http_api.py similarity index 100% rename from indico_vc_zoom/http_api.py rename to vc_zoom/indico_vc_zoom/http_api.py diff --git a/indico_vc_zoom/notifications.py b/vc_zoom/indico_vc_zoom/notifications.py similarity index 100% rename from indico_vc_zoom/notifications.py rename to vc_zoom/indico_vc_zoom/notifications.py diff --git a/indico_vc_zoom/plugin.py b/vc_zoom/indico_vc_zoom/plugin.py similarity index 100% rename from indico_vc_zoom/plugin.py rename to vc_zoom/indico_vc_zoom/plugin.py diff --git a/indico_vc_zoom/static/images/zoom_logo.png b/vc_zoom/indico_vc_zoom/static/images/zoom_logo.png similarity index 100% rename from indico_vc_zoom/static/images/zoom_logo.png rename to vc_zoom/indico_vc_zoom/static/images/zoom_logo.png diff --git a/indico_vc_zoom/templates/buttons.html b/vc_zoom/indico_vc_zoom/templates/buttons.html similarity index 100% rename from indico_vc_zoom/templates/buttons.html rename to vc_zoom/indico_vc_zoom/templates/buttons.html diff --git a/indico_vc_zoom/templates/emails/created.html b/vc_zoom/indico_vc_zoom/templates/emails/created.html similarity index 100% rename from indico_vc_zoom/templates/emails/created.html rename to vc_zoom/indico_vc_zoom/templates/emails/created.html diff --git a/indico_vc_zoom/templates/emails/deleted.html b/vc_zoom/indico_vc_zoom/templates/emails/deleted.html similarity index 100% rename from indico_vc_zoom/templates/emails/deleted.html rename to vc_zoom/indico_vc_zoom/templates/emails/deleted.html diff --git a/indico_vc_zoom/templates/emails/notify_new_host.html b/vc_zoom/indico_vc_zoom/templates/emails/notify_new_host.html similarity index 100% rename from indico_vc_zoom/templates/emails/notify_new_host.html rename to vc_zoom/indico_vc_zoom/templates/emails/notify_new_host.html diff --git a/indico_vc_zoom/templates/emails/notify_start_url.html b/vc_zoom/indico_vc_zoom/templates/emails/notify_start_url.html similarity index 100% rename from indico_vc_zoom/templates/emails/notify_start_url.html rename to vc_zoom/indico_vc_zoom/templates/emails/notify_start_url.html diff --git a/indico_vc_zoom/templates/emails/remote_deleted.html b/vc_zoom/indico_vc_zoom/templates/emails/remote_deleted.html similarity index 100% rename from indico_vc_zoom/templates/emails/remote_deleted.html rename to vc_zoom/indico_vc_zoom/templates/emails/remote_deleted.html diff --git a/indico_vc_zoom/templates/event_buttons.html b/vc_zoom/indico_vc_zoom/templates/event_buttons.html similarity index 100% rename from indico_vc_zoom/templates/event_buttons.html rename to vc_zoom/indico_vc_zoom/templates/event_buttons.html diff --git a/indico_vc_zoom/templates/info_box.html b/vc_zoom/indico_vc_zoom/templates/info_box.html similarity index 100% rename from indico_vc_zoom/templates/info_box.html rename to vc_zoom/indico_vc_zoom/templates/info_box.html diff --git a/indico_vc_zoom/templates/manage_event_info_box.html b/vc_zoom/indico_vc_zoom/templates/manage_event_info_box.html similarity index 100% rename from indico_vc_zoom/templates/manage_event_info_box.html rename to vc_zoom/indico_vc_zoom/templates/manage_event_info_box.html diff --git a/indico_vc_zoom/templates/management_buttons.html b/vc_zoom/indico_vc_zoom/templates/management_buttons.html similarity index 100% rename from indico_vc_zoom/templates/management_buttons.html rename to vc_zoom/indico_vc_zoom/templates/management_buttons.html diff --git a/indico_vc_zoom/templates/room_labels.html b/vc_zoom/indico_vc_zoom/templates/room_labels.html similarity index 100% rename from indico_vc_zoom/templates/room_labels.html rename to vc_zoom/indico_vc_zoom/templates/room_labels.html diff --git a/indico_vc_zoom/templates/vc_room_timetable_buttons.html b/vc_zoom/indico_vc_zoom/templates/vc_room_timetable_buttons.html similarity index 100% rename from indico_vc_zoom/templates/vc_room_timetable_buttons.html rename to vc_zoom/indico_vc_zoom/templates/vc_room_timetable_buttons.html diff --git a/indico_vc_zoom/translations/fr_FR/LC_MESSAGES/messages-js.po b/vc_zoom/indico_vc_zoom/translations/fr_FR/LC_MESSAGES/messages-js.po similarity index 100% rename from indico_vc_zoom/translations/fr_FR/LC_MESSAGES/messages-js.po rename to vc_zoom/indico_vc_zoom/translations/fr_FR/LC_MESSAGES/messages-js.po diff --git a/indico_vc_zoom/translations/fr_FR/LC_MESSAGES/messages.po b/vc_zoom/indico_vc_zoom/translations/fr_FR/LC_MESSAGES/messages.po similarity index 100% rename from indico_vc_zoom/translations/fr_FR/LC_MESSAGES/messages.po rename to vc_zoom/indico_vc_zoom/translations/fr_FR/LC_MESSAGES/messages.po diff --git a/indico_vc_zoom/util.py b/vc_zoom/indico_vc_zoom/util.py similarity index 100% rename from indico_vc_zoom/util.py rename to vc_zoom/indico_vc_zoom/util.py diff --git a/pytest.ini b/vc_zoom/pytest.ini similarity index 100% rename from pytest.ini rename to vc_zoom/pytest.ini diff --git a/setup.cfg b/vc_zoom/setup.cfg similarity index 100% rename from setup.cfg rename to vc_zoom/setup.cfg diff --git a/setup.py b/vc_zoom/setup.py similarity index 100% rename from setup.py rename to vc_zoom/setup.py diff --git a/tests/task_test.py b/vc_zoom/tests/task_test.py similarity index 100% rename from tests/task_test.py rename to vc_zoom/tests/task_test.py diff --git a/webpack-bundles.json b/vc_zoom/webpack-bundles.json similarity index 100% rename from webpack-bundles.json rename to vc_zoom/webpack-bundles.json