diff --git a/sys_path_hacks/lms/__init__.py b/sys_path_hacks/lms/__init__.py new file mode 100644 index 0000000000..73a2a35cee --- /dev/null +++ b/sys_path_hacks/lms/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing lms.djangoapps instead of lms.djangoapps is deprecated", stacklevel=2) + +from lms.djangoapps import * diff --git a/sys_path_hacks/lms/badges/__init__.py b/sys_path_hacks/lms/badges/__init__.py new file mode 100644 index 0000000000..a2a9364d62 --- /dev/null +++ b/sys_path_hacks/lms/badges/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing badges instead of lms.djangoapps.badges is deprecated", stacklevel=2) + +from lms.djangoapps.badges import * diff --git a/sys_path_hacks/lms/badges/admin.py b/sys_path_hacks/lms/badges/admin.py new file mode 100644 index 0000000000..353e5e6612 --- /dev/null +++ b/sys_path_hacks/lms/badges/admin.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing badges.admin instead of lms.djangoapps.badges.admin is deprecated", stacklevel=2) + +from lms.djangoapps.badges.admin import * diff --git a/sys_path_hacks/lms/badges/api/__init__.py b/sys_path_hacks/lms/badges/api/__init__.py new file mode 100644 index 0000000000..af4ed18cc9 --- /dev/null +++ b/sys_path_hacks/lms/badges/api/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing badges.api instead of lms.djangoapps.badges.api is deprecated", stacklevel=2) + +from lms.djangoapps.badges.api import * diff --git a/sys_path_hacks/lms/badges/api/serializers.py b/sys_path_hacks/lms/badges/api/serializers.py new file mode 100644 index 0000000000..06dff2b909 --- /dev/null +++ b/sys_path_hacks/lms/badges/api/serializers.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing badges.api.serializers instead of lms.djangoapps.badges.api.serializers is deprecated", stacklevel=2) + +from lms.djangoapps.badges.api.serializers import * diff --git a/sys_path_hacks/lms/badges/api/tests.py b/sys_path_hacks/lms/badges/api/tests.py new file mode 100644 index 0000000000..e1d1f98a5f --- /dev/null +++ b/sys_path_hacks/lms/badges/api/tests.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing badges.api.tests instead of lms.djangoapps.badges.api.tests is deprecated", stacklevel=2) + +from lms.djangoapps.badges.api.tests import * diff --git a/sys_path_hacks/lms/badges/api/urls.py b/sys_path_hacks/lms/badges/api/urls.py new file mode 100644 index 0000000000..e4ee15e1f9 --- /dev/null +++ b/sys_path_hacks/lms/badges/api/urls.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing badges.api.urls instead of lms.djangoapps.badges.api.urls is deprecated", stacklevel=2) + +from lms.djangoapps.badges.api.urls import * diff --git a/sys_path_hacks/lms/badges/api/views.py b/sys_path_hacks/lms/badges/api/views.py new file mode 100644 index 0000000000..88b8e43fed --- /dev/null +++ b/sys_path_hacks/lms/badges/api/views.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing badges.api.views instead of lms.djangoapps.badges.api.views is deprecated", stacklevel=2) + +from lms.djangoapps.badges.api.views import * diff --git a/sys_path_hacks/lms/badges/apps.py b/sys_path_hacks/lms/badges/apps.py new file mode 100644 index 0000000000..ac8cb86881 --- /dev/null +++ b/sys_path_hacks/lms/badges/apps.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing badges.apps instead of lms.djangoapps.badges.apps is deprecated", stacklevel=2) + +from lms.djangoapps.badges.apps import * diff --git a/sys_path_hacks/lms/badges/backends/__init__.py b/sys_path_hacks/lms/badges/backends/__init__.py new file mode 100644 index 0000000000..cf9dd53404 --- /dev/null +++ b/sys_path_hacks/lms/badges/backends/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing badges.backends instead of lms.djangoapps.badges.backends is deprecated", stacklevel=2) + +from lms.djangoapps.badges.backends import * diff --git a/sys_path_hacks/lms/badges/backends/badgr.py b/sys_path_hacks/lms/badges/backends/badgr.py new file mode 100644 index 0000000000..1a68b789ed --- /dev/null +++ b/sys_path_hacks/lms/badges/backends/badgr.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing badges.backends.badgr instead of lms.djangoapps.badges.backends.badgr is deprecated", stacklevel=2) + +from lms.djangoapps.badges.backends.badgr import * diff --git a/sys_path_hacks/lms/badges/backends/base.py b/sys_path_hacks/lms/badges/backends/base.py new file mode 100644 index 0000000000..d1169a5124 --- /dev/null +++ b/sys_path_hacks/lms/badges/backends/base.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing badges.backends.base instead of lms.djangoapps.badges.backends.base is deprecated", stacklevel=2) + +from lms.djangoapps.badges.backends.base import * diff --git a/sys_path_hacks/lms/badges/backends/tests/__init__.py b/sys_path_hacks/lms/badges/backends/tests/__init__.py new file mode 100644 index 0000000000..c49ced64b1 --- /dev/null +++ b/sys_path_hacks/lms/badges/backends/tests/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing badges.backends.tests instead of lms.djangoapps.badges.backends.tests is deprecated", stacklevel=2) + +from lms.djangoapps.badges.backends.tests import * diff --git a/sys_path_hacks/lms/badges/backends/tests/dummy_backend.py b/sys_path_hacks/lms/badges/backends/tests/dummy_backend.py new file mode 100644 index 0000000000..5b85781e22 --- /dev/null +++ b/sys_path_hacks/lms/badges/backends/tests/dummy_backend.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing badges.backends.tests.dummy_backend instead of lms.djangoapps.badges.backends.tests.dummy_backend is deprecated", stacklevel=2) + +from lms.djangoapps.badges.backends.tests.dummy_backend import * diff --git a/sys_path_hacks/lms/badges/backends/tests/test_badgr_backend.py b/sys_path_hacks/lms/badges/backends/tests/test_badgr_backend.py new file mode 100644 index 0000000000..a58a374793 --- /dev/null +++ b/sys_path_hacks/lms/badges/backends/tests/test_badgr_backend.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing badges.backends.tests.test_badgr_backend instead of lms.djangoapps.badges.backends.tests.test_badgr_backend is deprecated", stacklevel=2) + +from lms.djangoapps.badges.backends.tests.test_badgr_backend import * diff --git a/sys_path_hacks/lms/badges/events/__init__.py b/sys_path_hacks/lms/badges/events/__init__.py new file mode 100644 index 0000000000..ea4b5a9230 --- /dev/null +++ b/sys_path_hacks/lms/badges/events/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing badges.events instead of lms.djangoapps.badges.events is deprecated", stacklevel=2) + +from lms.djangoapps.badges.events import * diff --git a/sys_path_hacks/lms/badges/events/course_complete.py b/sys_path_hacks/lms/badges/events/course_complete.py new file mode 100644 index 0000000000..f83f337e45 --- /dev/null +++ b/sys_path_hacks/lms/badges/events/course_complete.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing badges.events.course_complete instead of lms.djangoapps.badges.events.course_complete is deprecated", stacklevel=2) + +from lms.djangoapps.badges.events.course_complete import * diff --git a/sys_path_hacks/lms/badges/events/course_meta.py b/sys_path_hacks/lms/badges/events/course_meta.py new file mode 100644 index 0000000000..e0341afa93 --- /dev/null +++ b/sys_path_hacks/lms/badges/events/course_meta.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing badges.events.course_meta instead of lms.djangoapps.badges.events.course_meta is deprecated", stacklevel=2) + +from lms.djangoapps.badges.events.course_meta import * diff --git a/sys_path_hacks/lms/badges/events/tests/__init__.py b/sys_path_hacks/lms/badges/events/tests/__init__.py new file mode 100644 index 0000000000..0caacbf938 --- /dev/null +++ b/sys_path_hacks/lms/badges/events/tests/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing badges.events.tests instead of lms.djangoapps.badges.events.tests is deprecated", stacklevel=2) + +from lms.djangoapps.badges.events.tests import * diff --git a/sys_path_hacks/lms/badges/events/tests/test_course_complete.py b/sys_path_hacks/lms/badges/events/tests/test_course_complete.py new file mode 100644 index 0000000000..e19b79ac38 --- /dev/null +++ b/sys_path_hacks/lms/badges/events/tests/test_course_complete.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing badges.events.tests.test_course_complete instead of lms.djangoapps.badges.events.tests.test_course_complete is deprecated", stacklevel=2) + +from lms.djangoapps.badges.events.tests.test_course_complete import * diff --git a/sys_path_hacks/lms/badges/events/tests/test_course_meta.py b/sys_path_hacks/lms/badges/events/tests/test_course_meta.py new file mode 100644 index 0000000000..b6ae1fb0f1 --- /dev/null +++ b/sys_path_hacks/lms/badges/events/tests/test_course_meta.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing badges.events.tests.test_course_meta instead of lms.djangoapps.badges.events.tests.test_course_meta is deprecated", stacklevel=2) + +from lms.djangoapps.badges.events.tests.test_course_meta import * diff --git a/sys_path_hacks/lms/badges/handlers.py b/sys_path_hacks/lms/badges/handlers.py new file mode 100644 index 0000000000..ffb89521c2 --- /dev/null +++ b/sys_path_hacks/lms/badges/handlers.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing badges.handlers instead of lms.djangoapps.badges.handlers is deprecated", stacklevel=2) + +from lms.djangoapps.badges.handlers import * diff --git a/sys_path_hacks/lms/badges/models.py b/sys_path_hacks/lms/badges/models.py new file mode 100644 index 0000000000..945261125f --- /dev/null +++ b/sys_path_hacks/lms/badges/models.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing badges.models instead of lms.djangoapps.badges.models is deprecated", stacklevel=2) + +from lms.djangoapps.badges.models import * diff --git a/sys_path_hacks/lms/badges/service.py b/sys_path_hacks/lms/badges/service.py new file mode 100644 index 0000000000..aca9bb5466 --- /dev/null +++ b/sys_path_hacks/lms/badges/service.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing badges.service instead of lms.djangoapps.badges.service is deprecated", stacklevel=2) + +from lms.djangoapps.badges.service import * diff --git a/sys_path_hacks/lms/badges/tests/__init__.py b/sys_path_hacks/lms/badges/tests/__init__.py new file mode 100644 index 0000000000..f3bd09517e --- /dev/null +++ b/sys_path_hacks/lms/badges/tests/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing badges.tests instead of lms.djangoapps.badges.tests is deprecated", stacklevel=2) + +from lms.djangoapps.badges.tests import * diff --git a/sys_path_hacks/lms/badges/tests/factories.py b/sys_path_hacks/lms/badges/tests/factories.py new file mode 100644 index 0000000000..b9637f8477 --- /dev/null +++ b/sys_path_hacks/lms/badges/tests/factories.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing badges.tests.factories instead of lms.djangoapps.badges.tests.factories is deprecated", stacklevel=2) + +from lms.djangoapps.badges.tests.factories import * diff --git a/sys_path_hacks/lms/badges/tests/test_models.py b/sys_path_hacks/lms/badges/tests/test_models.py new file mode 100644 index 0000000000..8eaa7bdff8 --- /dev/null +++ b/sys_path_hacks/lms/badges/tests/test_models.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing badges.tests.test_models instead of lms.djangoapps.badges.tests.test_models is deprecated", stacklevel=2) + +from lms.djangoapps.badges.tests.test_models import * diff --git a/sys_path_hacks/lms/badges/utils.py b/sys_path_hacks/lms/badges/utils.py new file mode 100644 index 0000000000..d71c151c4f --- /dev/null +++ b/sys_path_hacks/lms/badges/utils.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing badges.utils instead of lms.djangoapps.badges.utils is deprecated", stacklevel=2) + +from lms.djangoapps.badges.utils import * diff --git a/sys_path_hacks/lms/branding/__init__.py b/sys_path_hacks/lms/branding/__init__.py new file mode 100644 index 0000000000..cff0591071 --- /dev/null +++ b/sys_path_hacks/lms/branding/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing branding instead of lms.djangoapps.branding is deprecated", stacklevel=2) + +from lms.djangoapps.branding import * diff --git a/sys_path_hacks/lms/branding/admin.py b/sys_path_hacks/lms/branding/admin.py new file mode 100644 index 0000000000..877837fe7b --- /dev/null +++ b/sys_path_hacks/lms/branding/admin.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing branding.admin instead of lms.djangoapps.branding.admin is deprecated", stacklevel=2) + +from lms.djangoapps.branding.admin import * diff --git a/sys_path_hacks/lms/branding/api.py b/sys_path_hacks/lms/branding/api.py new file mode 100644 index 0000000000..5a029ed81f --- /dev/null +++ b/sys_path_hacks/lms/branding/api.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing branding.api instead of lms.djangoapps.branding.api is deprecated", stacklevel=2) + +from lms.djangoapps.branding.api import * diff --git a/sys_path_hacks/lms/branding/api_urls.py b/sys_path_hacks/lms/branding/api_urls.py new file mode 100644 index 0000000000..8c68095696 --- /dev/null +++ b/sys_path_hacks/lms/branding/api_urls.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing branding.api_urls instead of lms.djangoapps.branding.api_urls is deprecated", stacklevel=2) + +from lms.djangoapps.branding.api_urls import * diff --git a/sys_path_hacks/lms/branding/models.py b/sys_path_hacks/lms/branding/models.py new file mode 100644 index 0000000000..b2ee799a92 --- /dev/null +++ b/sys_path_hacks/lms/branding/models.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing branding.models instead of lms.djangoapps.branding.models is deprecated", stacklevel=2) + +from lms.djangoapps.branding.models import * diff --git a/sys_path_hacks/lms/branding/tests/__init__.py b/sys_path_hacks/lms/branding/tests/__init__.py new file mode 100644 index 0000000000..5414392a0e --- /dev/null +++ b/sys_path_hacks/lms/branding/tests/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing branding.tests instead of lms.djangoapps.branding.tests is deprecated", stacklevel=2) + +from lms.djangoapps.branding.tests import * diff --git a/sys_path_hacks/lms/branding/tests/test_api.py b/sys_path_hacks/lms/branding/tests/test_api.py new file mode 100644 index 0000000000..4c0314647f --- /dev/null +++ b/sys_path_hacks/lms/branding/tests/test_api.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing branding.tests.test_api instead of lms.djangoapps.branding.tests.test_api is deprecated", stacklevel=2) + +from lms.djangoapps.branding.tests.test_api import * diff --git a/sys_path_hacks/lms/branding/tests/test_models.py b/sys_path_hacks/lms/branding/tests/test_models.py new file mode 100644 index 0000000000..5eeb4f937e --- /dev/null +++ b/sys_path_hacks/lms/branding/tests/test_models.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing branding.tests.test_models instead of lms.djangoapps.branding.tests.test_models is deprecated", stacklevel=2) + +from lms.djangoapps.branding.tests.test_models import * diff --git a/sys_path_hacks/lms/branding/tests/test_page.py b/sys_path_hacks/lms/branding/tests/test_page.py new file mode 100644 index 0000000000..1cb682cb84 --- /dev/null +++ b/sys_path_hacks/lms/branding/tests/test_page.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing branding.tests.test_page instead of lms.djangoapps.branding.tests.test_page is deprecated", stacklevel=2) + +from lms.djangoapps.branding.tests.test_page import * diff --git a/sys_path_hacks/lms/branding/tests/test_views.py b/sys_path_hacks/lms/branding/tests/test_views.py new file mode 100644 index 0000000000..96f7c9a0d4 --- /dev/null +++ b/sys_path_hacks/lms/branding/tests/test_views.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing branding.tests.test_views instead of lms.djangoapps.branding.tests.test_views is deprecated", stacklevel=2) + +from lms.djangoapps.branding.tests.test_views import * diff --git a/sys_path_hacks/lms/branding/views.py b/sys_path_hacks/lms/branding/views.py new file mode 100644 index 0000000000..5567e5fe4c --- /dev/null +++ b/sys_path_hacks/lms/branding/views.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing branding.views instead of lms.djangoapps.branding.views is deprecated", stacklevel=2) + +from lms.djangoapps.branding.views import * diff --git a/sys_path_hacks/lms/bulk_email/__init__.py b/sys_path_hacks/lms/bulk_email/__init__.py new file mode 100644 index 0000000000..c889b85f9d --- /dev/null +++ b/sys_path_hacks/lms/bulk_email/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing bulk_email instead of lms.djangoapps.bulk_email is deprecated", stacklevel=2) + +from lms.djangoapps.bulk_email import * diff --git a/sys_path_hacks/lms/bulk_email/admin.py b/sys_path_hacks/lms/bulk_email/admin.py new file mode 100644 index 0000000000..9a352c6d30 --- /dev/null +++ b/sys_path_hacks/lms/bulk_email/admin.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing bulk_email.admin instead of lms.djangoapps.bulk_email.admin is deprecated", stacklevel=2) + +from lms.djangoapps.bulk_email.admin import * diff --git a/sys_path_hacks/lms/bulk_email/api.py b/sys_path_hacks/lms/bulk_email/api.py new file mode 100644 index 0000000000..73122c5bdd --- /dev/null +++ b/sys_path_hacks/lms/bulk_email/api.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing bulk_email.api instead of lms.djangoapps.bulk_email.api is deprecated", stacklevel=2) + +from lms.djangoapps.bulk_email.api import * diff --git a/sys_path_hacks/lms/bulk_email/apps.py b/sys_path_hacks/lms/bulk_email/apps.py new file mode 100644 index 0000000000..a0d32fb619 --- /dev/null +++ b/sys_path_hacks/lms/bulk_email/apps.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing bulk_email.apps instead of lms.djangoapps.bulk_email.apps is deprecated", stacklevel=2) + +from lms.djangoapps.bulk_email.apps import * diff --git a/sys_path_hacks/lms/bulk_email/forms.py b/sys_path_hacks/lms/bulk_email/forms.py new file mode 100644 index 0000000000..7b4e5466aa --- /dev/null +++ b/sys_path_hacks/lms/bulk_email/forms.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing bulk_email.forms instead of lms.djangoapps.bulk_email.forms is deprecated", stacklevel=2) + +from lms.djangoapps.bulk_email.forms import * diff --git a/sys_path_hacks/lms/bulk_email/models.py b/sys_path_hacks/lms/bulk_email/models.py new file mode 100644 index 0000000000..b21f5e5a39 --- /dev/null +++ b/sys_path_hacks/lms/bulk_email/models.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing bulk_email.models instead of lms.djangoapps.bulk_email.models is deprecated", stacklevel=2) + +from lms.djangoapps.bulk_email.models import * diff --git a/sys_path_hacks/lms/bulk_email/models_api.py b/sys_path_hacks/lms/bulk_email/models_api.py new file mode 100644 index 0000000000..bc9102d007 --- /dev/null +++ b/sys_path_hacks/lms/bulk_email/models_api.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing bulk_email.models_api instead of lms.djangoapps.bulk_email.models_api is deprecated", stacklevel=2) + +from lms.djangoapps.bulk_email.models_api import * diff --git a/sys_path_hacks/lms/bulk_email/policies.py b/sys_path_hacks/lms/bulk_email/policies.py new file mode 100644 index 0000000000..7faca6c703 --- /dev/null +++ b/sys_path_hacks/lms/bulk_email/policies.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing bulk_email.policies instead of lms.djangoapps.bulk_email.policies is deprecated", stacklevel=2) + +from lms.djangoapps.bulk_email.policies import * diff --git a/sys_path_hacks/lms/bulk_email/signals.py b/sys_path_hacks/lms/bulk_email/signals.py new file mode 100644 index 0000000000..38dbec68e0 --- /dev/null +++ b/sys_path_hacks/lms/bulk_email/signals.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing bulk_email.signals instead of lms.djangoapps.bulk_email.signals is deprecated", stacklevel=2) + +from lms.djangoapps.bulk_email.signals import * diff --git a/sys_path_hacks/lms/bulk_email/tasks.py b/sys_path_hacks/lms/bulk_email/tasks.py new file mode 100644 index 0000000000..c5f7363400 --- /dev/null +++ b/sys_path_hacks/lms/bulk_email/tasks.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing bulk_email.tasks instead of lms.djangoapps.bulk_email.tasks is deprecated", stacklevel=2) + +from lms.djangoapps.bulk_email.tasks import * diff --git a/sys_path_hacks/lms/bulk_email/tests/__init__.py b/sys_path_hacks/lms/bulk_email/tests/__init__.py new file mode 100644 index 0000000000..e54b822931 --- /dev/null +++ b/sys_path_hacks/lms/bulk_email/tests/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing bulk_email.tests instead of lms.djangoapps.bulk_email.tests is deprecated", stacklevel=2) + +from lms.djangoapps.bulk_email.tests import * diff --git a/sys_path_hacks/lms/bulk_email/tests/test_course_optout.py b/sys_path_hacks/lms/bulk_email/tests/test_course_optout.py new file mode 100644 index 0000000000..d8c9c1cca3 --- /dev/null +++ b/sys_path_hacks/lms/bulk_email/tests/test_course_optout.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing bulk_email.tests.test_course_optout instead of lms.djangoapps.bulk_email.tests.test_course_optout is deprecated", stacklevel=2) + +from lms.djangoapps.bulk_email.tests.test_course_optout import * diff --git a/sys_path_hacks/lms/bulk_email/tests/test_email.py b/sys_path_hacks/lms/bulk_email/tests/test_email.py new file mode 100644 index 0000000000..07e402dd8f --- /dev/null +++ b/sys_path_hacks/lms/bulk_email/tests/test_email.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing bulk_email.tests.test_email instead of lms.djangoapps.bulk_email.tests.test_email is deprecated", stacklevel=2) + +from lms.djangoapps.bulk_email.tests.test_email import * diff --git a/sys_path_hacks/lms/bulk_email/tests/test_err_handling.py b/sys_path_hacks/lms/bulk_email/tests/test_err_handling.py new file mode 100644 index 0000000000..06af1646e3 --- /dev/null +++ b/sys_path_hacks/lms/bulk_email/tests/test_err_handling.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing bulk_email.tests.test_err_handling instead of lms.djangoapps.bulk_email.tests.test_err_handling is deprecated", stacklevel=2) + +from lms.djangoapps.bulk_email.tests.test_err_handling import * diff --git a/sys_path_hacks/lms/bulk_email/tests/test_forms.py b/sys_path_hacks/lms/bulk_email/tests/test_forms.py new file mode 100644 index 0000000000..79a875fab3 --- /dev/null +++ b/sys_path_hacks/lms/bulk_email/tests/test_forms.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing bulk_email.tests.test_forms instead of lms.djangoapps.bulk_email.tests.test_forms is deprecated", stacklevel=2) + +from lms.djangoapps.bulk_email.tests.test_forms import * diff --git a/sys_path_hacks/lms/bulk_email/tests/test_models.py b/sys_path_hacks/lms/bulk_email/tests/test_models.py new file mode 100644 index 0000000000..133d6277d2 --- /dev/null +++ b/sys_path_hacks/lms/bulk_email/tests/test_models.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing bulk_email.tests.test_models instead of lms.djangoapps.bulk_email.tests.test_models is deprecated", stacklevel=2) + +from lms.djangoapps.bulk_email.tests.test_models import * diff --git a/sys_path_hacks/lms/bulk_email/tests/test_signals.py b/sys_path_hacks/lms/bulk_email/tests/test_signals.py new file mode 100644 index 0000000000..ce181175b6 --- /dev/null +++ b/sys_path_hacks/lms/bulk_email/tests/test_signals.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing bulk_email.tests.test_signals instead of lms.djangoapps.bulk_email.tests.test_signals is deprecated", stacklevel=2) + +from lms.djangoapps.bulk_email.tests.test_signals import * diff --git a/sys_path_hacks/lms/bulk_email/tests/test_tasks.py b/sys_path_hacks/lms/bulk_email/tests/test_tasks.py new file mode 100644 index 0000000000..4589e88142 --- /dev/null +++ b/sys_path_hacks/lms/bulk_email/tests/test_tasks.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing bulk_email.tests.test_tasks instead of lms.djangoapps.bulk_email.tests.test_tasks is deprecated", stacklevel=2) + +from lms.djangoapps.bulk_email.tests.test_tasks import * diff --git a/sys_path_hacks/lms/bulk_email/tests/test_views.py b/sys_path_hacks/lms/bulk_email/tests/test_views.py new file mode 100644 index 0000000000..4890df7dfa --- /dev/null +++ b/sys_path_hacks/lms/bulk_email/tests/test_views.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing bulk_email.tests.test_views instead of lms.djangoapps.bulk_email.tests.test_views is deprecated", stacklevel=2) + +from lms.djangoapps.bulk_email.tests.test_views import * diff --git a/sys_path_hacks/lms/bulk_email/urls.py b/sys_path_hacks/lms/bulk_email/urls.py new file mode 100644 index 0000000000..075d1d4f3a --- /dev/null +++ b/sys_path_hacks/lms/bulk_email/urls.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing bulk_email.urls instead of lms.djangoapps.bulk_email.urls is deprecated", stacklevel=2) + +from lms.djangoapps.bulk_email.urls import * diff --git a/sys_path_hacks/lms/bulk_email/views.py b/sys_path_hacks/lms/bulk_email/views.py new file mode 100644 index 0000000000..98f6e4a320 --- /dev/null +++ b/sys_path_hacks/lms/bulk_email/views.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing bulk_email.views instead of lms.djangoapps.bulk_email.views is deprecated", stacklevel=2) + +from lms.djangoapps.bulk_email.views import * diff --git a/sys_path_hacks/lms/bulk_enroll/__init__.py b/sys_path_hacks/lms/bulk_enroll/__init__.py new file mode 100644 index 0000000000..2518e9d3fd --- /dev/null +++ b/sys_path_hacks/lms/bulk_enroll/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing bulk_enroll instead of lms.djangoapps.bulk_enroll is deprecated", stacklevel=2) + +from lms.djangoapps.bulk_enroll import * diff --git a/sys_path_hacks/lms/bulk_enroll/serializers.py b/sys_path_hacks/lms/bulk_enroll/serializers.py new file mode 100644 index 0000000000..cccff43b57 --- /dev/null +++ b/sys_path_hacks/lms/bulk_enroll/serializers.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing bulk_enroll.serializers instead of lms.djangoapps.bulk_enroll.serializers is deprecated", stacklevel=2) + +from lms.djangoapps.bulk_enroll.serializers import * diff --git a/sys_path_hacks/lms/bulk_enroll/tests/__init__.py b/sys_path_hacks/lms/bulk_enroll/tests/__init__.py new file mode 100644 index 0000000000..8db4a60d8a --- /dev/null +++ b/sys_path_hacks/lms/bulk_enroll/tests/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing bulk_enroll.tests instead of lms.djangoapps.bulk_enroll.tests is deprecated", stacklevel=2) + +from lms.djangoapps.bulk_enroll.tests import * diff --git a/sys_path_hacks/lms/bulk_enroll/tests/test_views.py b/sys_path_hacks/lms/bulk_enroll/tests/test_views.py new file mode 100644 index 0000000000..08465db3ec --- /dev/null +++ b/sys_path_hacks/lms/bulk_enroll/tests/test_views.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing bulk_enroll.tests.test_views instead of lms.djangoapps.bulk_enroll.tests.test_views is deprecated", stacklevel=2) + +from lms.djangoapps.bulk_enroll.tests.test_views import * diff --git a/sys_path_hacks/lms/bulk_enroll/urls.py b/sys_path_hacks/lms/bulk_enroll/urls.py new file mode 100644 index 0000000000..ede9ebdf38 --- /dev/null +++ b/sys_path_hacks/lms/bulk_enroll/urls.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing bulk_enroll.urls instead of lms.djangoapps.bulk_enroll.urls is deprecated", stacklevel=2) + +from lms.djangoapps.bulk_enroll.urls import * diff --git a/sys_path_hacks/lms/bulk_enroll/views.py b/sys_path_hacks/lms/bulk_enroll/views.py new file mode 100644 index 0000000000..45176bf077 --- /dev/null +++ b/sys_path_hacks/lms/bulk_enroll/views.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing bulk_enroll.views instead of lms.djangoapps.bulk_enroll.views is deprecated", stacklevel=2) + +from lms.djangoapps.bulk_enroll.views import * diff --git a/sys_path_hacks/lms/ccx/__init__.py b/sys_path_hacks/lms/ccx/__init__.py new file mode 100644 index 0000000000..4c4ef07b30 --- /dev/null +++ b/sys_path_hacks/lms/ccx/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing ccx instead of lms.djangoapps.ccx is deprecated", stacklevel=2) + +from lms.djangoapps.ccx import * diff --git a/sys_path_hacks/lms/ccx/api/__init__.py b/sys_path_hacks/lms/ccx/api/__init__.py new file mode 100644 index 0000000000..94d0ef53d0 --- /dev/null +++ b/sys_path_hacks/lms/ccx/api/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing ccx.api instead of lms.djangoapps.ccx.api is deprecated", stacklevel=2) + +from lms.djangoapps.ccx.api import * diff --git a/sys_path_hacks/lms/ccx/api/urls.py b/sys_path_hacks/lms/ccx/api/urls.py new file mode 100644 index 0000000000..af1a4c18a4 --- /dev/null +++ b/sys_path_hacks/lms/ccx/api/urls.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing ccx.api.urls instead of lms.djangoapps.ccx.api.urls is deprecated", stacklevel=2) + +from lms.djangoapps.ccx.api.urls import * diff --git a/sys_path_hacks/lms/ccx/api/v0/__init__.py b/sys_path_hacks/lms/ccx/api/v0/__init__.py new file mode 100644 index 0000000000..7aa18d5de1 --- /dev/null +++ b/sys_path_hacks/lms/ccx/api/v0/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing ccx.api.v0 instead of lms.djangoapps.ccx.api.v0 is deprecated", stacklevel=2) + +from lms.djangoapps.ccx.api.v0 import * diff --git a/sys_path_hacks/lms/ccx/api/v0/paginators.py b/sys_path_hacks/lms/ccx/api/v0/paginators.py new file mode 100644 index 0000000000..8a506c3f94 --- /dev/null +++ b/sys_path_hacks/lms/ccx/api/v0/paginators.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing ccx.api.v0.paginators instead of lms.djangoapps.ccx.api.v0.paginators is deprecated", stacklevel=2) + +from lms.djangoapps.ccx.api.v0.paginators import * diff --git a/sys_path_hacks/lms/ccx/api/v0/serializers.py b/sys_path_hacks/lms/ccx/api/v0/serializers.py new file mode 100644 index 0000000000..e390d888d8 --- /dev/null +++ b/sys_path_hacks/lms/ccx/api/v0/serializers.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing ccx.api.v0.serializers instead of lms.djangoapps.ccx.api.v0.serializers is deprecated", stacklevel=2) + +from lms.djangoapps.ccx.api.v0.serializers import * diff --git a/sys_path_hacks/lms/ccx/api/v0/tests/__init__.py b/sys_path_hacks/lms/ccx/api/v0/tests/__init__.py new file mode 100644 index 0000000000..4c48d964a0 --- /dev/null +++ b/sys_path_hacks/lms/ccx/api/v0/tests/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing ccx.api.v0.tests instead of lms.djangoapps.ccx.api.v0.tests is deprecated", stacklevel=2) + +from lms.djangoapps.ccx.api.v0.tests import * diff --git a/sys_path_hacks/lms/ccx/api/v0/tests/test_views.py b/sys_path_hacks/lms/ccx/api/v0/tests/test_views.py new file mode 100644 index 0000000000..4a91ed2600 --- /dev/null +++ b/sys_path_hacks/lms/ccx/api/v0/tests/test_views.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing ccx.api.v0.tests.test_views instead of lms.djangoapps.ccx.api.v0.tests.test_views is deprecated", stacklevel=2) + +from lms.djangoapps.ccx.api.v0.tests.test_views import * diff --git a/sys_path_hacks/lms/ccx/api/v0/urls.py b/sys_path_hacks/lms/ccx/api/v0/urls.py new file mode 100644 index 0000000000..fe2c870af7 --- /dev/null +++ b/sys_path_hacks/lms/ccx/api/v0/urls.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing ccx.api.v0.urls instead of lms.djangoapps.ccx.api.v0.urls is deprecated", stacklevel=2) + +from lms.djangoapps.ccx.api.v0.urls import * diff --git a/sys_path_hacks/lms/ccx/api/v0/views.py b/sys_path_hacks/lms/ccx/api/v0/views.py new file mode 100644 index 0000000000..388b1e68e8 --- /dev/null +++ b/sys_path_hacks/lms/ccx/api/v0/views.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing ccx.api.v0.views instead of lms.djangoapps.ccx.api.v0.views is deprecated", stacklevel=2) + +from lms.djangoapps.ccx.api.v0.views import * diff --git a/sys_path_hacks/lms/ccx/custom_exception.py b/sys_path_hacks/lms/ccx/custom_exception.py new file mode 100644 index 0000000000..592f217af8 --- /dev/null +++ b/sys_path_hacks/lms/ccx/custom_exception.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing ccx.custom_exception instead of lms.djangoapps.ccx.custom_exception is deprecated", stacklevel=2) + +from lms.djangoapps.ccx.custom_exception import * diff --git a/sys_path_hacks/lms/ccx/models.py b/sys_path_hacks/lms/ccx/models.py new file mode 100644 index 0000000000..074eec9bd7 --- /dev/null +++ b/sys_path_hacks/lms/ccx/models.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing ccx.models instead of lms.djangoapps.ccx.models is deprecated", stacklevel=2) + +from lms.djangoapps.ccx.models import * diff --git a/sys_path_hacks/lms/ccx/modulestore.py b/sys_path_hacks/lms/ccx/modulestore.py new file mode 100644 index 0000000000..6691773e10 --- /dev/null +++ b/sys_path_hacks/lms/ccx/modulestore.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing ccx.modulestore instead of lms.djangoapps.ccx.modulestore is deprecated", stacklevel=2) + +from lms.djangoapps.ccx.modulestore import * diff --git a/sys_path_hacks/lms/ccx/overrides.py b/sys_path_hacks/lms/ccx/overrides.py new file mode 100644 index 0000000000..092a6291b2 --- /dev/null +++ b/sys_path_hacks/lms/ccx/overrides.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing ccx.overrides instead of lms.djangoapps.ccx.overrides is deprecated", stacklevel=2) + +from lms.djangoapps.ccx.overrides import * diff --git a/sys_path_hacks/lms/ccx/permissions.py b/sys_path_hacks/lms/ccx/permissions.py new file mode 100644 index 0000000000..125966b9c6 --- /dev/null +++ b/sys_path_hacks/lms/ccx/permissions.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing ccx.permissions instead of lms.djangoapps.ccx.permissions is deprecated", stacklevel=2) + +from lms.djangoapps.ccx.permissions import * diff --git a/sys_path_hacks/lms/ccx/plugins.py b/sys_path_hacks/lms/ccx/plugins.py new file mode 100644 index 0000000000..b5104d0569 --- /dev/null +++ b/sys_path_hacks/lms/ccx/plugins.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing ccx.plugins instead of lms.djangoapps.ccx.plugins is deprecated", stacklevel=2) + +from lms.djangoapps.ccx.plugins import * diff --git a/sys_path_hacks/lms/ccx/tasks.py b/sys_path_hacks/lms/ccx/tasks.py new file mode 100644 index 0000000000..b2abbaf650 --- /dev/null +++ b/sys_path_hacks/lms/ccx/tasks.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing ccx.tasks instead of lms.djangoapps.ccx.tasks is deprecated", stacklevel=2) + +from lms.djangoapps.ccx.tasks import * diff --git a/sys_path_hacks/lms/ccx/tests/__init__.py b/sys_path_hacks/lms/ccx/tests/__init__.py new file mode 100644 index 0000000000..16509e1ec5 --- /dev/null +++ b/sys_path_hacks/lms/ccx/tests/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing ccx.tests instead of lms.djangoapps.ccx.tests is deprecated", stacklevel=2) + +from lms.djangoapps.ccx.tests import * diff --git a/sys_path_hacks/lms/ccx/tests/factories.py b/sys_path_hacks/lms/ccx/tests/factories.py new file mode 100644 index 0000000000..1610e9f468 --- /dev/null +++ b/sys_path_hacks/lms/ccx/tests/factories.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing ccx.tests.factories instead of lms.djangoapps.ccx.tests.factories is deprecated", stacklevel=2) + +from lms.djangoapps.ccx.tests.factories import * diff --git a/sys_path_hacks/lms/ccx/tests/test_ccx_modulestore.py b/sys_path_hacks/lms/ccx/tests/test_ccx_modulestore.py new file mode 100644 index 0000000000..2add55e41c --- /dev/null +++ b/sys_path_hacks/lms/ccx/tests/test_ccx_modulestore.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing ccx.tests.test_ccx_modulestore instead of lms.djangoapps.ccx.tests.test_ccx_modulestore is deprecated", stacklevel=2) + +from lms.djangoapps.ccx.tests.test_ccx_modulestore import * diff --git a/sys_path_hacks/lms/ccx/tests/test_field_override_performance.py b/sys_path_hacks/lms/ccx/tests/test_field_override_performance.py new file mode 100644 index 0000000000..65f2a3d687 --- /dev/null +++ b/sys_path_hacks/lms/ccx/tests/test_field_override_performance.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing ccx.tests.test_field_override_performance instead of lms.djangoapps.ccx.tests.test_field_override_performance is deprecated", stacklevel=2) + +from lms.djangoapps.ccx.tests.test_field_override_performance import * diff --git a/sys_path_hacks/lms/ccx/tests/test_models.py b/sys_path_hacks/lms/ccx/tests/test_models.py new file mode 100644 index 0000000000..03b1125351 --- /dev/null +++ b/sys_path_hacks/lms/ccx/tests/test_models.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing ccx.tests.test_models instead of lms.djangoapps.ccx.tests.test_models is deprecated", stacklevel=2) + +from lms.djangoapps.ccx.tests.test_models import * diff --git a/sys_path_hacks/lms/ccx/tests/test_overrides.py b/sys_path_hacks/lms/ccx/tests/test_overrides.py new file mode 100644 index 0000000000..635f38d771 --- /dev/null +++ b/sys_path_hacks/lms/ccx/tests/test_overrides.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing ccx.tests.test_overrides instead of lms.djangoapps.ccx.tests.test_overrides is deprecated", stacklevel=2) + +from lms.djangoapps.ccx.tests.test_overrides import * diff --git a/sys_path_hacks/lms/ccx/tests/test_tasks.py b/sys_path_hacks/lms/ccx/tests/test_tasks.py new file mode 100644 index 0000000000..a4c7b20850 --- /dev/null +++ b/sys_path_hacks/lms/ccx/tests/test_tasks.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing ccx.tests.test_tasks instead of lms.djangoapps.ccx.tests.test_tasks is deprecated", stacklevel=2) + +from lms.djangoapps.ccx.tests.test_tasks import * diff --git a/sys_path_hacks/lms/ccx/tests/test_utils.py b/sys_path_hacks/lms/ccx/tests/test_utils.py new file mode 100644 index 0000000000..07f9b58915 --- /dev/null +++ b/sys_path_hacks/lms/ccx/tests/test_utils.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing ccx.tests.test_utils instead of lms.djangoapps.ccx.tests.test_utils is deprecated", stacklevel=2) + +from lms.djangoapps.ccx.tests.test_utils import * diff --git a/sys_path_hacks/lms/ccx/tests/test_views.py b/sys_path_hacks/lms/ccx/tests/test_views.py new file mode 100644 index 0000000000..36a135b677 --- /dev/null +++ b/sys_path_hacks/lms/ccx/tests/test_views.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing ccx.tests.test_views instead of lms.djangoapps.ccx.tests.test_views is deprecated", stacklevel=2) + +from lms.djangoapps.ccx.tests.test_views import * diff --git a/sys_path_hacks/lms/ccx/tests/utils.py b/sys_path_hacks/lms/ccx/tests/utils.py new file mode 100644 index 0000000000..f5668fef34 --- /dev/null +++ b/sys_path_hacks/lms/ccx/tests/utils.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing ccx.tests.utils instead of lms.djangoapps.ccx.tests.utils is deprecated", stacklevel=2) + +from lms.djangoapps.ccx.tests.utils import * diff --git a/sys_path_hacks/lms/ccx/urls.py b/sys_path_hacks/lms/ccx/urls.py new file mode 100644 index 0000000000..84724976f3 --- /dev/null +++ b/sys_path_hacks/lms/ccx/urls.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing ccx.urls instead of lms.djangoapps.ccx.urls is deprecated", stacklevel=2) + +from lms.djangoapps.ccx.urls import * diff --git a/sys_path_hacks/lms/ccx/utils.py b/sys_path_hacks/lms/ccx/utils.py new file mode 100644 index 0000000000..bb69f11434 --- /dev/null +++ b/sys_path_hacks/lms/ccx/utils.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing ccx.utils instead of lms.djangoapps.ccx.utils is deprecated", stacklevel=2) + +from lms.djangoapps.ccx.utils import * diff --git a/sys_path_hacks/lms/ccx/views.py b/sys_path_hacks/lms/ccx/views.py new file mode 100644 index 0000000000..58b9c9545f --- /dev/null +++ b/sys_path_hacks/lms/ccx/views.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing ccx.views instead of lms.djangoapps.ccx.views is deprecated", stacklevel=2) + +from lms.djangoapps.ccx.views import * diff --git a/sys_path_hacks/lms/certificates/__init__.py b/sys_path_hacks/lms/certificates/__init__.py new file mode 100644 index 0000000000..e25e92ee0d --- /dev/null +++ b/sys_path_hacks/lms/certificates/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing certificates instead of lms.djangoapps.certificates is deprecated", stacklevel=2) + +from lms.djangoapps.certificates import * diff --git a/sys_path_hacks/lms/certificates/admin.py b/sys_path_hacks/lms/certificates/admin.py new file mode 100644 index 0000000000..823579c443 --- /dev/null +++ b/sys_path_hacks/lms/certificates/admin.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing certificates.admin instead of lms.djangoapps.certificates.admin is deprecated", stacklevel=2) + +from lms.djangoapps.certificates.admin import * diff --git a/sys_path_hacks/lms/certificates/api.py b/sys_path_hacks/lms/certificates/api.py new file mode 100644 index 0000000000..3c91d78f8f --- /dev/null +++ b/sys_path_hacks/lms/certificates/api.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing certificates.api instead of lms.djangoapps.certificates.api is deprecated", stacklevel=2) + +from lms.djangoapps.certificates.api import * diff --git a/sys_path_hacks/lms/certificates/apis/__init__.py b/sys_path_hacks/lms/certificates/apis/__init__.py new file mode 100644 index 0000000000..36314206fa --- /dev/null +++ b/sys_path_hacks/lms/certificates/apis/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing certificates.apis instead of lms.djangoapps.certificates.apis is deprecated", stacklevel=2) + +from lms.djangoapps.certificates.apis import * diff --git a/sys_path_hacks/lms/certificates/apis/urls.py b/sys_path_hacks/lms/certificates/apis/urls.py new file mode 100644 index 0000000000..ff9292fbc4 --- /dev/null +++ b/sys_path_hacks/lms/certificates/apis/urls.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing certificates.apis.urls instead of lms.djangoapps.certificates.apis.urls is deprecated", stacklevel=2) + +from lms.djangoapps.certificates.apis.urls import * diff --git a/sys_path_hacks/lms/certificates/apis/v0/__init__.py b/sys_path_hacks/lms/certificates/apis/v0/__init__.py new file mode 100644 index 0000000000..d07684f82c --- /dev/null +++ b/sys_path_hacks/lms/certificates/apis/v0/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing certificates.apis.v0 instead of lms.djangoapps.certificates.apis.v0 is deprecated", stacklevel=2) + +from lms.djangoapps.certificates.apis.v0 import * diff --git a/sys_path_hacks/lms/certificates/apis/v0/permissions.py b/sys_path_hacks/lms/certificates/apis/v0/permissions.py new file mode 100644 index 0000000000..6cac35c7d9 --- /dev/null +++ b/sys_path_hacks/lms/certificates/apis/v0/permissions.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing certificates.apis.v0.permissions instead of lms.djangoapps.certificates.apis.v0.permissions is deprecated", stacklevel=2) + +from lms.djangoapps.certificates.apis.v0.permissions import * diff --git a/sys_path_hacks/lms/certificates/apis/v0/tests/__init__.py b/sys_path_hacks/lms/certificates/apis/v0/tests/__init__.py new file mode 100644 index 0000000000..1c31d27411 --- /dev/null +++ b/sys_path_hacks/lms/certificates/apis/v0/tests/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing certificates.apis.v0.tests instead of lms.djangoapps.certificates.apis.v0.tests is deprecated", stacklevel=2) + +from lms.djangoapps.certificates.apis.v0.tests import * diff --git a/sys_path_hacks/lms/certificates/apis/v0/tests/test_views.py b/sys_path_hacks/lms/certificates/apis/v0/tests/test_views.py new file mode 100644 index 0000000000..1aabe2d1ae --- /dev/null +++ b/sys_path_hacks/lms/certificates/apis/v0/tests/test_views.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing certificates.apis.v0.tests.test_views instead of lms.djangoapps.certificates.apis.v0.tests.test_views is deprecated", stacklevel=2) + +from lms.djangoapps.certificates.apis.v0.tests.test_views import * diff --git a/sys_path_hacks/lms/certificates/apis/v0/urls.py b/sys_path_hacks/lms/certificates/apis/v0/urls.py new file mode 100644 index 0000000000..5af9523c0f --- /dev/null +++ b/sys_path_hacks/lms/certificates/apis/v0/urls.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing certificates.apis.v0.urls instead of lms.djangoapps.certificates.apis.v0.urls is deprecated", stacklevel=2) + +from lms.djangoapps.certificates.apis.v0.urls import * diff --git a/sys_path_hacks/lms/certificates/apis/v0/views.py b/sys_path_hacks/lms/certificates/apis/v0/views.py new file mode 100644 index 0000000000..a1a7cab6e2 --- /dev/null +++ b/sys_path_hacks/lms/certificates/apis/v0/views.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing certificates.apis.v0.views instead of lms.djangoapps.certificates.apis.v0.views is deprecated", stacklevel=2) + +from lms.djangoapps.certificates.apis.v0.views import * diff --git a/sys_path_hacks/lms/certificates/apps.py b/sys_path_hacks/lms/certificates/apps.py new file mode 100644 index 0000000000..38125c7c21 --- /dev/null +++ b/sys_path_hacks/lms/certificates/apps.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing certificates.apps instead of lms.djangoapps.certificates.apps is deprecated", stacklevel=2) + +from lms.djangoapps.certificates.apps import * diff --git a/sys_path_hacks/lms/certificates/management/__init__.py b/sys_path_hacks/lms/certificates/management/__init__.py new file mode 100644 index 0000000000..8043e2e17f --- /dev/null +++ b/sys_path_hacks/lms/certificates/management/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing certificates.management instead of lms.djangoapps.certificates.management is deprecated", stacklevel=2) + +from lms.djangoapps.certificates.management import * diff --git a/sys_path_hacks/lms/certificates/management/commands/__init__.py b/sys_path_hacks/lms/certificates/management/commands/__init__.py new file mode 100644 index 0000000000..27b87d66a3 --- /dev/null +++ b/sys_path_hacks/lms/certificates/management/commands/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing certificates.management.commands instead of lms.djangoapps.certificates.management.commands is deprecated", stacklevel=2) + +from lms.djangoapps.certificates.management.commands import * diff --git a/sys_path_hacks/lms/certificates/management/commands/cert_whitelist.py b/sys_path_hacks/lms/certificates/management/commands/cert_whitelist.py new file mode 100644 index 0000000000..ffd601312b --- /dev/null +++ b/sys_path_hacks/lms/certificates/management/commands/cert_whitelist.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing certificates.management.commands.cert_whitelist instead of lms.djangoapps.certificates.management.commands.cert_whitelist is deprecated", stacklevel=2) + +from lms.djangoapps.certificates.management.commands.cert_whitelist import * diff --git a/sys_path_hacks/lms/certificates/management/commands/create_fake_cert.py b/sys_path_hacks/lms/certificates/management/commands/create_fake_cert.py new file mode 100644 index 0000000000..2f1c2f7582 --- /dev/null +++ b/sys_path_hacks/lms/certificates/management/commands/create_fake_cert.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing certificates.management.commands.create_fake_cert instead of lms.djangoapps.certificates.management.commands.create_fake_cert is deprecated", stacklevel=2) + +from lms.djangoapps.certificates.management.commands.create_fake_cert import * diff --git a/sys_path_hacks/lms/certificates/management/commands/fix_ungraded_certs.py b/sys_path_hacks/lms/certificates/management/commands/fix_ungraded_certs.py new file mode 100644 index 0000000000..b7480bd528 --- /dev/null +++ b/sys_path_hacks/lms/certificates/management/commands/fix_ungraded_certs.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing certificates.management.commands.fix_ungraded_certs instead of lms.djangoapps.certificates.management.commands.fix_ungraded_certs is deprecated", stacklevel=2) + +from lms.djangoapps.certificates.management.commands.fix_ungraded_certs import * diff --git a/sys_path_hacks/lms/certificates/management/commands/gen_cert_report.py b/sys_path_hacks/lms/certificates/management/commands/gen_cert_report.py new file mode 100644 index 0000000000..c513cc58c4 --- /dev/null +++ b/sys_path_hacks/lms/certificates/management/commands/gen_cert_report.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing certificates.management.commands.gen_cert_report instead of lms.djangoapps.certificates.management.commands.gen_cert_report is deprecated", stacklevel=2) + +from lms.djangoapps.certificates.management.commands.gen_cert_report import * diff --git a/sys_path_hacks/lms/certificates/management/commands/regenerate_user.py b/sys_path_hacks/lms/certificates/management/commands/regenerate_user.py new file mode 100644 index 0000000000..9ce9025590 --- /dev/null +++ b/sys_path_hacks/lms/certificates/management/commands/regenerate_user.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing certificates.management.commands.regenerate_user instead of lms.djangoapps.certificates.management.commands.regenerate_user is deprecated", stacklevel=2) + +from lms.djangoapps.certificates.management.commands.regenerate_user import * diff --git a/sys_path_hacks/lms/certificates/management/commands/resubmit_error_certificates.py b/sys_path_hacks/lms/certificates/management/commands/resubmit_error_certificates.py new file mode 100644 index 0000000000..ede0939deb --- /dev/null +++ b/sys_path_hacks/lms/certificates/management/commands/resubmit_error_certificates.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing certificates.management.commands.resubmit_error_certificates instead of lms.djangoapps.certificates.management.commands.resubmit_error_certificates is deprecated", stacklevel=2) + +from lms.djangoapps.certificates.management.commands.resubmit_error_certificates import * diff --git a/sys_path_hacks/lms/certificates/management/commands/tests/__init__.py b/sys_path_hacks/lms/certificates/management/commands/tests/__init__.py new file mode 100644 index 0000000000..ed1f36ee13 --- /dev/null +++ b/sys_path_hacks/lms/certificates/management/commands/tests/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing certificates.management.commands.tests instead of lms.djangoapps.certificates.management.commands.tests is deprecated", stacklevel=2) + +from lms.djangoapps.certificates.management.commands.tests import * diff --git a/sys_path_hacks/lms/certificates/management/commands/tests/test_cert_whitelist.py b/sys_path_hacks/lms/certificates/management/commands/tests/test_cert_whitelist.py new file mode 100644 index 0000000000..b99653b978 --- /dev/null +++ b/sys_path_hacks/lms/certificates/management/commands/tests/test_cert_whitelist.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing certificates.management.commands.tests.test_cert_whitelist instead of lms.djangoapps.certificates.management.commands.tests.test_cert_whitelist is deprecated", stacklevel=2) + +from lms.djangoapps.certificates.management.commands.tests.test_cert_whitelist import * diff --git a/sys_path_hacks/lms/certificates/management/commands/tests/test_fix_ungraded_certs.py b/sys_path_hacks/lms/certificates/management/commands/tests/test_fix_ungraded_certs.py new file mode 100644 index 0000000000..662142f0f2 --- /dev/null +++ b/sys_path_hacks/lms/certificates/management/commands/tests/test_fix_ungraded_certs.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing certificates.management.commands.tests.test_fix_ungraded_certs instead of lms.djangoapps.certificates.management.commands.tests.test_fix_ungraded_certs is deprecated", stacklevel=2) + +from lms.djangoapps.certificates.management.commands.tests.test_fix_ungraded_certs import * diff --git a/sys_path_hacks/lms/certificates/management/commands/tests/test_gen_cert_report.py b/sys_path_hacks/lms/certificates/management/commands/tests/test_gen_cert_report.py new file mode 100644 index 0000000000..e516381ff8 --- /dev/null +++ b/sys_path_hacks/lms/certificates/management/commands/tests/test_gen_cert_report.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing certificates.management.commands.tests.test_gen_cert_report instead of lms.djangoapps.certificates.management.commands.tests.test_gen_cert_report is deprecated", stacklevel=2) + +from lms.djangoapps.certificates.management.commands.tests.test_gen_cert_report import * diff --git a/sys_path_hacks/lms/certificates/management/commands/ungenerated_certs.py b/sys_path_hacks/lms/certificates/management/commands/ungenerated_certs.py new file mode 100644 index 0000000000..fd160f4a35 --- /dev/null +++ b/sys_path_hacks/lms/certificates/management/commands/ungenerated_certs.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing certificates.management.commands.ungenerated_certs instead of lms.djangoapps.certificates.management.commands.ungenerated_certs is deprecated", stacklevel=2) + +from lms.djangoapps.certificates.management.commands.ungenerated_certs import * diff --git a/sys_path_hacks/lms/certificates/models.py b/sys_path_hacks/lms/certificates/models.py new file mode 100644 index 0000000000..b987973460 --- /dev/null +++ b/sys_path_hacks/lms/certificates/models.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing certificates.models instead of lms.djangoapps.certificates.models is deprecated", stacklevel=2) + +from lms.djangoapps.certificates.models import * diff --git a/sys_path_hacks/lms/certificates/permissions.py b/sys_path_hacks/lms/certificates/permissions.py new file mode 100644 index 0000000000..951f600f3a --- /dev/null +++ b/sys_path_hacks/lms/certificates/permissions.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing certificates.permissions instead of lms.djangoapps.certificates.permissions is deprecated", stacklevel=2) + +from lms.djangoapps.certificates.permissions import * diff --git a/sys_path_hacks/lms/certificates/queue.py b/sys_path_hacks/lms/certificates/queue.py new file mode 100644 index 0000000000..0087298581 --- /dev/null +++ b/sys_path_hacks/lms/certificates/queue.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing certificates.queue instead of lms.djangoapps.certificates.queue is deprecated", stacklevel=2) + +from lms.djangoapps.certificates.queue import * diff --git a/sys_path_hacks/lms/certificates/services.py b/sys_path_hacks/lms/certificates/services.py new file mode 100644 index 0000000000..96be8c1189 --- /dev/null +++ b/sys_path_hacks/lms/certificates/services.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing certificates.services instead of lms.djangoapps.certificates.services is deprecated", stacklevel=2) + +from lms.djangoapps.certificates.services import * diff --git a/sys_path_hacks/lms/certificates/signals.py b/sys_path_hacks/lms/certificates/signals.py new file mode 100644 index 0000000000..b1aba4b2c6 --- /dev/null +++ b/sys_path_hacks/lms/certificates/signals.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing certificates.signals instead of lms.djangoapps.certificates.signals is deprecated", stacklevel=2) + +from lms.djangoapps.certificates.signals import * diff --git a/sys_path_hacks/lms/certificates/tasks.py b/sys_path_hacks/lms/certificates/tasks.py new file mode 100644 index 0000000000..40ab09c242 --- /dev/null +++ b/sys_path_hacks/lms/certificates/tasks.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing certificates.tasks instead of lms.djangoapps.certificates.tasks is deprecated", stacklevel=2) + +from lms.djangoapps.certificates.tasks import * diff --git a/sys_path_hacks/lms/certificates/tests/__init__.py b/sys_path_hacks/lms/certificates/tests/__init__.py new file mode 100644 index 0000000000..153c5690ab --- /dev/null +++ b/sys_path_hacks/lms/certificates/tests/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing certificates.tests instead of lms.djangoapps.certificates.tests is deprecated", stacklevel=2) + +from lms.djangoapps.certificates.tests import * diff --git a/sys_path_hacks/lms/certificates/tests/factories.py b/sys_path_hacks/lms/certificates/tests/factories.py new file mode 100644 index 0000000000..680da67214 --- /dev/null +++ b/sys_path_hacks/lms/certificates/tests/factories.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing certificates.tests.factories instead of lms.djangoapps.certificates.tests.factories is deprecated", stacklevel=2) + +from lms.djangoapps.certificates.tests.factories import * diff --git a/sys_path_hacks/lms/certificates/tests/test_api.py b/sys_path_hacks/lms/certificates/tests/test_api.py new file mode 100644 index 0000000000..644a87e29a --- /dev/null +++ b/sys_path_hacks/lms/certificates/tests/test_api.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing certificates.tests.test_api instead of lms.djangoapps.certificates.tests.test_api is deprecated", stacklevel=2) + +from lms.djangoapps.certificates.tests.test_api import * diff --git a/sys_path_hacks/lms/certificates/tests/test_cert_management.py b/sys_path_hacks/lms/certificates/tests/test_cert_management.py new file mode 100644 index 0000000000..ab04b0567d --- /dev/null +++ b/sys_path_hacks/lms/certificates/tests/test_cert_management.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing certificates.tests.test_cert_management instead of lms.djangoapps.certificates.tests.test_cert_management is deprecated", stacklevel=2) + +from lms.djangoapps.certificates.tests.test_cert_management import * diff --git a/sys_path_hacks/lms/certificates/tests/test_create_fake_cert.py b/sys_path_hacks/lms/certificates/tests/test_create_fake_cert.py new file mode 100644 index 0000000000..5c261fb705 --- /dev/null +++ b/sys_path_hacks/lms/certificates/tests/test_create_fake_cert.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing certificates.tests.test_create_fake_cert instead of lms.djangoapps.certificates.tests.test_create_fake_cert is deprecated", stacklevel=2) + +from lms.djangoapps.certificates.tests.test_create_fake_cert import * diff --git a/sys_path_hacks/lms/certificates/tests/test_models.py b/sys_path_hacks/lms/certificates/tests/test_models.py new file mode 100644 index 0000000000..4c164594aa --- /dev/null +++ b/sys_path_hacks/lms/certificates/tests/test_models.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing certificates.tests.test_models instead of lms.djangoapps.certificates.tests.test_models is deprecated", stacklevel=2) + +from lms.djangoapps.certificates.tests.test_models import * diff --git a/sys_path_hacks/lms/certificates/tests/test_queue.py b/sys_path_hacks/lms/certificates/tests/test_queue.py new file mode 100644 index 0000000000..c89787ca9e --- /dev/null +++ b/sys_path_hacks/lms/certificates/tests/test_queue.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing certificates.tests.test_queue instead of lms.djangoapps.certificates.tests.test_queue is deprecated", stacklevel=2) + +from lms.djangoapps.certificates.tests.test_queue import * diff --git a/sys_path_hacks/lms/certificates/tests/test_services.py b/sys_path_hacks/lms/certificates/tests/test_services.py new file mode 100644 index 0000000000..d5c85e78fc --- /dev/null +++ b/sys_path_hacks/lms/certificates/tests/test_services.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing certificates.tests.test_services instead of lms.djangoapps.certificates.tests.test_services is deprecated", stacklevel=2) + +from lms.djangoapps.certificates.tests.test_services import * diff --git a/sys_path_hacks/lms/certificates/tests/test_signals.py b/sys_path_hacks/lms/certificates/tests/test_signals.py new file mode 100644 index 0000000000..b462c8724a --- /dev/null +++ b/sys_path_hacks/lms/certificates/tests/test_signals.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing certificates.tests.test_signals instead of lms.djangoapps.certificates.tests.test_signals is deprecated", stacklevel=2) + +from lms.djangoapps.certificates.tests.test_signals import * diff --git a/sys_path_hacks/lms/certificates/tests/test_support_views.py b/sys_path_hacks/lms/certificates/tests/test_support_views.py new file mode 100644 index 0000000000..2405f01474 --- /dev/null +++ b/sys_path_hacks/lms/certificates/tests/test_support_views.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing certificates.tests.test_support_views instead of lms.djangoapps.certificates.tests.test_support_views is deprecated", stacklevel=2) + +from lms.djangoapps.certificates.tests.test_support_views import * diff --git a/sys_path_hacks/lms/certificates/tests/test_tasks.py b/sys_path_hacks/lms/certificates/tests/test_tasks.py new file mode 100644 index 0000000000..75876ad816 --- /dev/null +++ b/sys_path_hacks/lms/certificates/tests/test_tasks.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing certificates.tests.test_tasks instead of lms.djangoapps.certificates.tests.test_tasks is deprecated", stacklevel=2) + +from lms.djangoapps.certificates.tests.test_tasks import * diff --git a/sys_path_hacks/lms/certificates/tests/test_views.py b/sys_path_hacks/lms/certificates/tests/test_views.py new file mode 100644 index 0000000000..38eafc5d9a --- /dev/null +++ b/sys_path_hacks/lms/certificates/tests/test_views.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing certificates.tests.test_views instead of lms.djangoapps.certificates.tests.test_views is deprecated", stacklevel=2) + +from lms.djangoapps.certificates.tests.test_views import * diff --git a/sys_path_hacks/lms/certificates/tests/test_webview_views.py b/sys_path_hacks/lms/certificates/tests/test_webview_views.py new file mode 100644 index 0000000000..b0405ed184 --- /dev/null +++ b/sys_path_hacks/lms/certificates/tests/test_webview_views.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing certificates.tests.test_webview_views instead of lms.djangoapps.certificates.tests.test_webview_views is deprecated", stacklevel=2) + +from lms.djangoapps.certificates.tests.test_webview_views import * diff --git a/sys_path_hacks/lms/certificates/tests/tests.py b/sys_path_hacks/lms/certificates/tests/tests.py new file mode 100644 index 0000000000..15bda53625 --- /dev/null +++ b/sys_path_hacks/lms/certificates/tests/tests.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing certificates.tests.tests instead of lms.djangoapps.certificates.tests.tests is deprecated", stacklevel=2) + +from lms.djangoapps.certificates.tests.tests import * diff --git a/sys_path_hacks/lms/certificates/urls.py b/sys_path_hacks/lms/certificates/urls.py new file mode 100644 index 0000000000..2a2d74e7f7 --- /dev/null +++ b/sys_path_hacks/lms/certificates/urls.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing certificates.urls instead of lms.djangoapps.certificates.urls is deprecated", stacklevel=2) + +from lms.djangoapps.certificates.urls import * diff --git a/sys_path_hacks/lms/certificates/views/__init__.py b/sys_path_hacks/lms/certificates/views/__init__.py new file mode 100644 index 0000000000..cfb7678e9a --- /dev/null +++ b/sys_path_hacks/lms/certificates/views/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing certificates.views instead of lms.djangoapps.certificates.views is deprecated", stacklevel=2) + +from lms.djangoapps.certificates.views import * diff --git a/sys_path_hacks/lms/certificates/views/support.py b/sys_path_hacks/lms/certificates/views/support.py new file mode 100644 index 0000000000..d357bc60ce --- /dev/null +++ b/sys_path_hacks/lms/certificates/views/support.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing certificates.views.support instead of lms.djangoapps.certificates.views.support is deprecated", stacklevel=2) + +from lms.djangoapps.certificates.views.support import * diff --git a/sys_path_hacks/lms/certificates/views/webview.py b/sys_path_hacks/lms/certificates/views/webview.py new file mode 100644 index 0000000000..91fe10f0f6 --- /dev/null +++ b/sys_path_hacks/lms/certificates/views/webview.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing certificates.views.webview instead of lms.djangoapps.certificates.views.webview is deprecated", stacklevel=2) + +from lms.djangoapps.certificates.views.webview import * diff --git a/sys_path_hacks/lms/certificates/views/xqueue.py b/sys_path_hacks/lms/certificates/views/xqueue.py new file mode 100644 index 0000000000..7eb3d9e555 --- /dev/null +++ b/sys_path_hacks/lms/certificates/views/xqueue.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing certificates.views.xqueue instead of lms.djangoapps.certificates.views.xqueue is deprecated", stacklevel=2) + +from lms.djangoapps.certificates.views.xqueue import * diff --git a/sys_path_hacks/lms/commerce/__init__.py b/sys_path_hacks/lms/commerce/__init__.py new file mode 100644 index 0000000000..198f526606 --- /dev/null +++ b/sys_path_hacks/lms/commerce/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing commerce instead of lms.djangoapps.commerce is deprecated", stacklevel=2) + +from lms.djangoapps.commerce import * diff --git a/sys_path_hacks/lms/commerce/admin.py b/sys_path_hacks/lms/commerce/admin.py new file mode 100644 index 0000000000..ea5b3abb5a --- /dev/null +++ b/sys_path_hacks/lms/commerce/admin.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing commerce.admin instead of lms.djangoapps.commerce.admin is deprecated", stacklevel=2) + +from lms.djangoapps.commerce.admin import * diff --git a/sys_path_hacks/lms/commerce/api/__init__.py b/sys_path_hacks/lms/commerce/api/__init__.py new file mode 100644 index 0000000000..e46ad75b46 --- /dev/null +++ b/sys_path_hacks/lms/commerce/api/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing commerce.api instead of lms.djangoapps.commerce.api is deprecated", stacklevel=2) + +from lms.djangoapps.commerce.api import * diff --git a/sys_path_hacks/lms/commerce/api/urls.py b/sys_path_hacks/lms/commerce/api/urls.py new file mode 100644 index 0000000000..077057f646 --- /dev/null +++ b/sys_path_hacks/lms/commerce/api/urls.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing commerce.api.urls instead of lms.djangoapps.commerce.api.urls is deprecated", stacklevel=2) + +from lms.djangoapps.commerce.api.urls import * diff --git a/sys_path_hacks/lms/commerce/api/v0/__init__.py b/sys_path_hacks/lms/commerce/api/v0/__init__.py new file mode 100644 index 0000000000..d72a579d70 --- /dev/null +++ b/sys_path_hacks/lms/commerce/api/v0/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing commerce.api.v0 instead of lms.djangoapps.commerce.api.v0 is deprecated", stacklevel=2) + +from lms.djangoapps.commerce.api.v0 import * diff --git a/sys_path_hacks/lms/commerce/api/v0/tests/__init__.py b/sys_path_hacks/lms/commerce/api/v0/tests/__init__.py new file mode 100644 index 0000000000..0790deb0f9 --- /dev/null +++ b/sys_path_hacks/lms/commerce/api/v0/tests/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing commerce.api.v0.tests instead of lms.djangoapps.commerce.api.v0.tests is deprecated", stacklevel=2) + +from lms.djangoapps.commerce.api.v0.tests import * diff --git a/sys_path_hacks/lms/commerce/api/v0/tests/test_views.py b/sys_path_hacks/lms/commerce/api/v0/tests/test_views.py new file mode 100644 index 0000000000..16b79089d5 --- /dev/null +++ b/sys_path_hacks/lms/commerce/api/v0/tests/test_views.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing commerce.api.v0.tests.test_views instead of lms.djangoapps.commerce.api.v0.tests.test_views is deprecated", stacklevel=2) + +from lms.djangoapps.commerce.api.v0.tests.test_views import * diff --git a/sys_path_hacks/lms/commerce/api/v0/urls.py b/sys_path_hacks/lms/commerce/api/v0/urls.py new file mode 100644 index 0000000000..5dc13b5a6d --- /dev/null +++ b/sys_path_hacks/lms/commerce/api/v0/urls.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing commerce.api.v0.urls instead of lms.djangoapps.commerce.api.v0.urls is deprecated", stacklevel=2) + +from lms.djangoapps.commerce.api.v0.urls import * diff --git a/sys_path_hacks/lms/commerce/api/v0/views.py b/sys_path_hacks/lms/commerce/api/v0/views.py new file mode 100644 index 0000000000..978ae4253b --- /dev/null +++ b/sys_path_hacks/lms/commerce/api/v0/views.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing commerce.api.v0.views instead of lms.djangoapps.commerce.api.v0.views is deprecated", stacklevel=2) + +from lms.djangoapps.commerce.api.v0.views import * diff --git a/sys_path_hacks/lms/commerce/api/v1/__init__.py b/sys_path_hacks/lms/commerce/api/v1/__init__.py new file mode 100644 index 0000000000..357423ed64 --- /dev/null +++ b/sys_path_hacks/lms/commerce/api/v1/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing commerce.api.v1 instead of lms.djangoapps.commerce.api.v1 is deprecated", stacklevel=2) + +from lms.djangoapps.commerce.api.v1 import * diff --git a/sys_path_hacks/lms/commerce/api/v1/models.py b/sys_path_hacks/lms/commerce/api/v1/models.py new file mode 100644 index 0000000000..ddfe6ca82e --- /dev/null +++ b/sys_path_hacks/lms/commerce/api/v1/models.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing commerce.api.v1.models instead of lms.djangoapps.commerce.api.v1.models is deprecated", stacklevel=2) + +from lms.djangoapps.commerce.api.v1.models import * diff --git a/sys_path_hacks/lms/commerce/api/v1/permissions.py b/sys_path_hacks/lms/commerce/api/v1/permissions.py new file mode 100644 index 0000000000..af66659dea --- /dev/null +++ b/sys_path_hacks/lms/commerce/api/v1/permissions.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing commerce.api.v1.permissions instead of lms.djangoapps.commerce.api.v1.permissions is deprecated", stacklevel=2) + +from lms.djangoapps.commerce.api.v1.permissions import * diff --git a/sys_path_hacks/lms/commerce/api/v1/serializers.py b/sys_path_hacks/lms/commerce/api/v1/serializers.py new file mode 100644 index 0000000000..79f7855cbd --- /dev/null +++ b/sys_path_hacks/lms/commerce/api/v1/serializers.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing commerce.api.v1.serializers instead of lms.djangoapps.commerce.api.v1.serializers is deprecated", stacklevel=2) + +from lms.djangoapps.commerce.api.v1.serializers import * diff --git a/sys_path_hacks/lms/commerce/api/v1/tests/__init__.py b/sys_path_hacks/lms/commerce/api/v1/tests/__init__.py new file mode 100644 index 0000000000..0ddf5ed7e7 --- /dev/null +++ b/sys_path_hacks/lms/commerce/api/v1/tests/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing commerce.api.v1.tests instead of lms.djangoapps.commerce.api.v1.tests is deprecated", stacklevel=2) + +from lms.djangoapps.commerce.api.v1.tests import * diff --git a/sys_path_hacks/lms/commerce/api/v1/tests/test_models.py b/sys_path_hacks/lms/commerce/api/v1/tests/test_models.py new file mode 100644 index 0000000000..42215cdf0e --- /dev/null +++ b/sys_path_hacks/lms/commerce/api/v1/tests/test_models.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing commerce.api.v1.tests.test_models instead of lms.djangoapps.commerce.api.v1.tests.test_models is deprecated", stacklevel=2) + +from lms.djangoapps.commerce.api.v1.tests.test_models import * diff --git a/sys_path_hacks/lms/commerce/api/v1/tests/test_serializers.py b/sys_path_hacks/lms/commerce/api/v1/tests/test_serializers.py new file mode 100644 index 0000000000..f62d7f4a4a --- /dev/null +++ b/sys_path_hacks/lms/commerce/api/v1/tests/test_serializers.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing commerce.api.v1.tests.test_serializers instead of lms.djangoapps.commerce.api.v1.tests.test_serializers is deprecated", stacklevel=2) + +from lms.djangoapps.commerce.api.v1.tests.test_serializers import * diff --git a/sys_path_hacks/lms/commerce/api/v1/tests/test_views.py b/sys_path_hacks/lms/commerce/api/v1/tests/test_views.py new file mode 100644 index 0000000000..1918dea66e --- /dev/null +++ b/sys_path_hacks/lms/commerce/api/v1/tests/test_views.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing commerce.api.v1.tests.test_views instead of lms.djangoapps.commerce.api.v1.tests.test_views is deprecated", stacklevel=2) + +from lms.djangoapps.commerce.api.v1.tests.test_views import * diff --git a/sys_path_hacks/lms/commerce/api/v1/urls.py b/sys_path_hacks/lms/commerce/api/v1/urls.py new file mode 100644 index 0000000000..09f2e16bda --- /dev/null +++ b/sys_path_hacks/lms/commerce/api/v1/urls.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing commerce.api.v1.urls instead of lms.djangoapps.commerce.api.v1.urls is deprecated", stacklevel=2) + +from lms.djangoapps.commerce.api.v1.urls import * diff --git a/sys_path_hacks/lms/commerce/api/v1/views.py b/sys_path_hacks/lms/commerce/api/v1/views.py new file mode 100644 index 0000000000..b8d1fac545 --- /dev/null +++ b/sys_path_hacks/lms/commerce/api/v1/views.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing commerce.api.v1.views instead of lms.djangoapps.commerce.api.v1.views is deprecated", stacklevel=2) + +from lms.djangoapps.commerce.api.v1.views import * diff --git a/sys_path_hacks/lms/commerce/apps.py b/sys_path_hacks/lms/commerce/apps.py new file mode 100644 index 0000000000..5c0bf4fe62 --- /dev/null +++ b/sys_path_hacks/lms/commerce/apps.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing commerce.apps instead of lms.djangoapps.commerce.apps is deprecated", stacklevel=2) + +from lms.djangoapps.commerce.apps import * diff --git a/sys_path_hacks/lms/commerce/constants.py b/sys_path_hacks/lms/commerce/constants.py new file mode 100644 index 0000000000..48005a7db9 --- /dev/null +++ b/sys_path_hacks/lms/commerce/constants.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing commerce.constants instead of lms.djangoapps.commerce.constants is deprecated", stacklevel=2) + +from lms.djangoapps.commerce.constants import * diff --git a/sys_path_hacks/lms/commerce/exceptions.py b/sys_path_hacks/lms/commerce/exceptions.py new file mode 100644 index 0000000000..f6eb8c9233 --- /dev/null +++ b/sys_path_hacks/lms/commerce/exceptions.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing commerce.exceptions instead of lms.djangoapps.commerce.exceptions is deprecated", stacklevel=2) + +from lms.djangoapps.commerce.exceptions import * diff --git a/sys_path_hacks/lms/commerce/http.py b/sys_path_hacks/lms/commerce/http.py new file mode 100644 index 0000000000..5e1b9edb3c --- /dev/null +++ b/sys_path_hacks/lms/commerce/http.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing commerce.http instead of lms.djangoapps.commerce.http is deprecated", stacklevel=2) + +from lms.djangoapps.commerce.http import * diff --git a/sys_path_hacks/lms/commerce/management/__init__.py b/sys_path_hacks/lms/commerce/management/__init__.py new file mode 100644 index 0000000000..1db56acbba --- /dev/null +++ b/sys_path_hacks/lms/commerce/management/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing commerce.management instead of lms.djangoapps.commerce.management is deprecated", stacklevel=2) + +from lms.djangoapps.commerce.management import * diff --git a/sys_path_hacks/lms/commerce/management/commands/__init__.py b/sys_path_hacks/lms/commerce/management/commands/__init__.py new file mode 100644 index 0000000000..227d9d6e6f --- /dev/null +++ b/sys_path_hacks/lms/commerce/management/commands/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing commerce.management.commands instead of lms.djangoapps.commerce.management.commands is deprecated", stacklevel=2) + +from lms.djangoapps.commerce.management.commands import * diff --git a/sys_path_hacks/lms/commerce/management/commands/configure_commerce.py b/sys_path_hacks/lms/commerce/management/commands/configure_commerce.py new file mode 100644 index 0000000000..d22913ec3e --- /dev/null +++ b/sys_path_hacks/lms/commerce/management/commands/configure_commerce.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing commerce.management.commands.configure_commerce instead of lms.djangoapps.commerce.management.commands.configure_commerce is deprecated", stacklevel=2) + +from lms.djangoapps.commerce.management.commands.configure_commerce import * diff --git a/sys_path_hacks/lms/commerce/management/commands/create_orders_for_old_enterprise_course_enrollment.py b/sys_path_hacks/lms/commerce/management/commands/create_orders_for_old_enterprise_course_enrollment.py new file mode 100644 index 0000000000..e60e83cc02 --- /dev/null +++ b/sys_path_hacks/lms/commerce/management/commands/create_orders_for_old_enterprise_course_enrollment.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing commerce.management.commands.create_orders_for_old_enterprise_course_enrollment instead of lms.djangoapps.commerce.management.commands.create_orders_for_old_enterprise_course_enrollment is deprecated", stacklevel=2) + +from lms.djangoapps.commerce.management.commands.create_orders_for_old_enterprise_course_enrollment import * diff --git a/sys_path_hacks/lms/commerce/management/commands/tests/__init__.py b/sys_path_hacks/lms/commerce/management/commands/tests/__init__.py new file mode 100644 index 0000000000..8f4c82ebba --- /dev/null +++ b/sys_path_hacks/lms/commerce/management/commands/tests/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing commerce.management.commands.tests instead of lms.djangoapps.commerce.management.commands.tests is deprecated", stacklevel=2) + +from lms.djangoapps.commerce.management.commands.tests import * diff --git a/sys_path_hacks/lms/commerce/management/commands/tests/test_configure_commerce.py b/sys_path_hacks/lms/commerce/management/commands/tests/test_configure_commerce.py new file mode 100644 index 0000000000..1489016a32 --- /dev/null +++ b/sys_path_hacks/lms/commerce/management/commands/tests/test_configure_commerce.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing commerce.management.commands.tests.test_configure_commerce instead of lms.djangoapps.commerce.management.commands.tests.test_configure_commerce is deprecated", stacklevel=2) + +from lms.djangoapps.commerce.management.commands.tests.test_configure_commerce import * diff --git a/sys_path_hacks/lms/commerce/management/commands/tests/test_create_orders_for_old_enterprise_course_enrollmnet.py b/sys_path_hacks/lms/commerce/management/commands/tests/test_create_orders_for_old_enterprise_course_enrollmnet.py new file mode 100644 index 0000000000..4ed646cbd4 --- /dev/null +++ b/sys_path_hacks/lms/commerce/management/commands/tests/test_create_orders_for_old_enterprise_course_enrollmnet.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing commerce.management.commands.tests.test_create_orders_for_old_enterprise_course_enrollmnet instead of lms.djangoapps.commerce.management.commands.tests.test_create_orders_for_old_enterprise_course_enrollmnet is deprecated", stacklevel=2) + +from lms.djangoapps.commerce.management.commands.tests.test_create_orders_for_old_enterprise_course_enrollmnet import * diff --git a/sys_path_hacks/lms/commerce/models.py b/sys_path_hacks/lms/commerce/models.py new file mode 100644 index 0000000000..91d1b83a87 --- /dev/null +++ b/sys_path_hacks/lms/commerce/models.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing commerce.models instead of lms.djangoapps.commerce.models is deprecated", stacklevel=2) + +from lms.djangoapps.commerce.models import * diff --git a/sys_path_hacks/lms/commerce/signals.py b/sys_path_hacks/lms/commerce/signals.py new file mode 100644 index 0000000000..7b3b565605 --- /dev/null +++ b/sys_path_hacks/lms/commerce/signals.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing commerce.signals instead of lms.djangoapps.commerce.signals is deprecated", stacklevel=2) + +from lms.djangoapps.commerce.signals import * diff --git a/sys_path_hacks/lms/commerce/tests/__init__.py b/sys_path_hacks/lms/commerce/tests/__init__.py new file mode 100644 index 0000000000..482bf77fd5 --- /dev/null +++ b/sys_path_hacks/lms/commerce/tests/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing commerce.tests instead of lms.djangoapps.commerce.tests is deprecated", stacklevel=2) + +from lms.djangoapps.commerce.tests import * diff --git a/sys_path_hacks/lms/commerce/tests/factories.py b/sys_path_hacks/lms/commerce/tests/factories.py new file mode 100644 index 0000000000..9c6834dfc5 --- /dev/null +++ b/sys_path_hacks/lms/commerce/tests/factories.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing commerce.tests.factories instead of lms.djangoapps.commerce.tests.factories is deprecated", stacklevel=2) + +from lms.djangoapps.commerce.tests.factories import * diff --git a/sys_path_hacks/lms/commerce/tests/mocks.py b/sys_path_hacks/lms/commerce/tests/mocks.py new file mode 100644 index 0000000000..497d0ea6a7 --- /dev/null +++ b/sys_path_hacks/lms/commerce/tests/mocks.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing commerce.tests.mocks instead of lms.djangoapps.commerce.tests.mocks is deprecated", stacklevel=2) + +from lms.djangoapps.commerce.tests.mocks import * diff --git a/sys_path_hacks/lms/commerce/tests/test_signals.py b/sys_path_hacks/lms/commerce/tests/test_signals.py new file mode 100644 index 0000000000..b7c49aac99 --- /dev/null +++ b/sys_path_hacks/lms/commerce/tests/test_signals.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing commerce.tests.test_signals instead of lms.djangoapps.commerce.tests.test_signals is deprecated", stacklevel=2) + +from lms.djangoapps.commerce.tests.test_signals import * diff --git a/sys_path_hacks/lms/commerce/tests/test_utils.py b/sys_path_hacks/lms/commerce/tests/test_utils.py new file mode 100644 index 0000000000..ad8ee03428 --- /dev/null +++ b/sys_path_hacks/lms/commerce/tests/test_utils.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing commerce.tests.test_utils instead of lms.djangoapps.commerce.tests.test_utils is deprecated", stacklevel=2) + +from lms.djangoapps.commerce.tests.test_utils import * diff --git a/sys_path_hacks/lms/commerce/tests/test_views.py b/sys_path_hacks/lms/commerce/tests/test_views.py new file mode 100644 index 0000000000..b567c4ad56 --- /dev/null +++ b/sys_path_hacks/lms/commerce/tests/test_views.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing commerce.tests.test_views instead of lms.djangoapps.commerce.tests.test_views is deprecated", stacklevel=2) + +from lms.djangoapps.commerce.tests.test_views import * diff --git a/sys_path_hacks/lms/commerce/utils.py b/sys_path_hacks/lms/commerce/utils.py new file mode 100644 index 0000000000..f4ee68e35c --- /dev/null +++ b/sys_path_hacks/lms/commerce/utils.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing commerce.utils instead of lms.djangoapps.commerce.utils is deprecated", stacklevel=2) + +from lms.djangoapps.commerce.utils import * diff --git a/sys_path_hacks/lms/course_api/__init__.py b/sys_path_hacks/lms/course_api/__init__.py new file mode 100644 index 0000000000..3c7ea1f912 --- /dev/null +++ b/sys_path_hacks/lms/course_api/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing course_api instead of lms.djangoapps.course_api is deprecated", stacklevel=2) + +from lms.djangoapps.course_api import * diff --git a/sys_path_hacks/lms/course_api/api.py b/sys_path_hacks/lms/course_api/api.py new file mode 100644 index 0000000000..ab8fcb23fb --- /dev/null +++ b/sys_path_hacks/lms/course_api/api.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing course_api.api instead of lms.djangoapps.course_api.api is deprecated", stacklevel=2) + +from lms.djangoapps.course_api.api import * diff --git a/sys_path_hacks/lms/course_api/blocks/__init__.py b/sys_path_hacks/lms/course_api/blocks/__init__.py new file mode 100644 index 0000000000..347a4c8b7a --- /dev/null +++ b/sys_path_hacks/lms/course_api/blocks/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing course_api.blocks instead of lms.djangoapps.course_api.blocks is deprecated", stacklevel=2) + +from lms.djangoapps.course_api.blocks import * diff --git a/sys_path_hacks/lms/course_api/blocks/api.py b/sys_path_hacks/lms/course_api/blocks/api.py new file mode 100644 index 0000000000..ff5d1048e9 --- /dev/null +++ b/sys_path_hacks/lms/course_api/blocks/api.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing course_api.blocks.api instead of lms.djangoapps.course_api.blocks.api is deprecated", stacklevel=2) + +from lms.djangoapps.course_api.blocks.api import * diff --git a/sys_path_hacks/lms/course_api/blocks/forms.py b/sys_path_hacks/lms/course_api/blocks/forms.py new file mode 100644 index 0000000000..1c88c89697 --- /dev/null +++ b/sys_path_hacks/lms/course_api/blocks/forms.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing course_api.blocks.forms instead of lms.djangoapps.course_api.blocks.forms is deprecated", stacklevel=2) + +from lms.djangoapps.course_api.blocks.forms import * diff --git a/sys_path_hacks/lms/course_api/blocks/permissions.py b/sys_path_hacks/lms/course_api/blocks/permissions.py new file mode 100644 index 0000000000..b4f6b7dadb --- /dev/null +++ b/sys_path_hacks/lms/course_api/blocks/permissions.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing course_api.blocks.permissions instead of lms.djangoapps.course_api.blocks.permissions is deprecated", stacklevel=2) + +from lms.djangoapps.course_api.blocks.permissions import * diff --git a/sys_path_hacks/lms/course_api/blocks/serializers.py b/sys_path_hacks/lms/course_api/blocks/serializers.py new file mode 100644 index 0000000000..be23c722ae --- /dev/null +++ b/sys_path_hacks/lms/course_api/blocks/serializers.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing course_api.blocks.serializers instead of lms.djangoapps.course_api.blocks.serializers is deprecated", stacklevel=2) + +from lms.djangoapps.course_api.blocks.serializers import * diff --git a/sys_path_hacks/lms/course_api/blocks/tests/__init__.py b/sys_path_hacks/lms/course_api/blocks/tests/__init__.py new file mode 100644 index 0000000000..dc1710425f --- /dev/null +++ b/sys_path_hacks/lms/course_api/blocks/tests/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing course_api.blocks.tests instead of lms.djangoapps.course_api.blocks.tests is deprecated", stacklevel=2) + +from lms.djangoapps.course_api.blocks.tests import * diff --git a/sys_path_hacks/lms/course_api/blocks/tests/helpers.py b/sys_path_hacks/lms/course_api/blocks/tests/helpers.py new file mode 100644 index 0000000000..ab8d6b2d27 --- /dev/null +++ b/sys_path_hacks/lms/course_api/blocks/tests/helpers.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing course_api.blocks.tests.helpers instead of lms.djangoapps.course_api.blocks.tests.helpers is deprecated", stacklevel=2) + +from lms.djangoapps.course_api.blocks.tests.helpers import * diff --git a/sys_path_hacks/lms/course_api/blocks/tests/test_api.py b/sys_path_hacks/lms/course_api/blocks/tests/test_api.py new file mode 100644 index 0000000000..f7165bb69d --- /dev/null +++ b/sys_path_hacks/lms/course_api/blocks/tests/test_api.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing course_api.blocks.tests.test_api instead of lms.djangoapps.course_api.blocks.tests.test_api is deprecated", stacklevel=2) + +from lms.djangoapps.course_api.blocks.tests.test_api import * diff --git a/sys_path_hacks/lms/course_api/blocks/tests/test_forms.py b/sys_path_hacks/lms/course_api/blocks/tests/test_forms.py new file mode 100644 index 0000000000..9aef6694bb --- /dev/null +++ b/sys_path_hacks/lms/course_api/blocks/tests/test_forms.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing course_api.blocks.tests.test_forms instead of lms.djangoapps.course_api.blocks.tests.test_forms is deprecated", stacklevel=2) + +from lms.djangoapps.course_api.blocks.tests.test_forms import * diff --git a/sys_path_hacks/lms/course_api/blocks/tests/test_serializers.py b/sys_path_hacks/lms/course_api/blocks/tests/test_serializers.py new file mode 100644 index 0000000000..0b50306e87 --- /dev/null +++ b/sys_path_hacks/lms/course_api/blocks/tests/test_serializers.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing course_api.blocks.tests.test_serializers instead of lms.djangoapps.course_api.blocks.tests.test_serializers is deprecated", stacklevel=2) + +from lms.djangoapps.course_api.blocks.tests.test_serializers import * diff --git a/sys_path_hacks/lms/course_api/blocks/tests/test_views.py b/sys_path_hacks/lms/course_api/blocks/tests/test_views.py new file mode 100644 index 0000000000..4d06ead125 --- /dev/null +++ b/sys_path_hacks/lms/course_api/blocks/tests/test_views.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing course_api.blocks.tests.test_views instead of lms.djangoapps.course_api.blocks.tests.test_views is deprecated", stacklevel=2) + +from lms.djangoapps.course_api.blocks.tests.test_views import * diff --git a/sys_path_hacks/lms/course_api/blocks/toggles.py b/sys_path_hacks/lms/course_api/blocks/toggles.py new file mode 100644 index 0000000000..d327b26378 --- /dev/null +++ b/sys_path_hacks/lms/course_api/blocks/toggles.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing course_api.blocks.toggles instead of lms.djangoapps.course_api.blocks.toggles is deprecated", stacklevel=2) + +from lms.djangoapps.course_api.blocks.toggles import * diff --git a/sys_path_hacks/lms/course_api/blocks/transformers/__init__.py b/sys_path_hacks/lms/course_api/blocks/transformers/__init__.py new file mode 100644 index 0000000000..71c0821b58 --- /dev/null +++ b/sys_path_hacks/lms/course_api/blocks/transformers/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing course_api.blocks.transformers instead of lms.djangoapps.course_api.blocks.transformers is deprecated", stacklevel=2) + +from lms.djangoapps.course_api.blocks.transformers import * diff --git a/sys_path_hacks/lms/course_api/blocks/transformers/block_completion.py b/sys_path_hacks/lms/course_api/blocks/transformers/block_completion.py new file mode 100644 index 0000000000..3e465b188c --- /dev/null +++ b/sys_path_hacks/lms/course_api/blocks/transformers/block_completion.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing course_api.blocks.transformers.block_completion instead of lms.djangoapps.course_api.blocks.transformers.block_completion is deprecated", stacklevel=2) + +from lms.djangoapps.course_api.blocks.transformers.block_completion import * diff --git a/sys_path_hacks/lms/course_api/blocks/transformers/block_counts.py b/sys_path_hacks/lms/course_api/blocks/transformers/block_counts.py new file mode 100644 index 0000000000..8304d30d62 --- /dev/null +++ b/sys_path_hacks/lms/course_api/blocks/transformers/block_counts.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing course_api.blocks.transformers.block_counts instead of lms.djangoapps.course_api.blocks.transformers.block_counts is deprecated", stacklevel=2) + +from lms.djangoapps.course_api.blocks.transformers.block_counts import * diff --git a/sys_path_hacks/lms/course_api/blocks/transformers/block_depth.py b/sys_path_hacks/lms/course_api/blocks/transformers/block_depth.py new file mode 100644 index 0000000000..c9b15468e2 --- /dev/null +++ b/sys_path_hacks/lms/course_api/blocks/transformers/block_depth.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing course_api.blocks.transformers.block_depth instead of lms.djangoapps.course_api.blocks.transformers.block_depth is deprecated", stacklevel=2) + +from lms.djangoapps.course_api.blocks.transformers.block_depth import * diff --git a/sys_path_hacks/lms/course_api/blocks/transformers/blocks_api.py b/sys_path_hacks/lms/course_api/blocks/transformers/blocks_api.py new file mode 100644 index 0000000000..068e08f71a --- /dev/null +++ b/sys_path_hacks/lms/course_api/blocks/transformers/blocks_api.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing course_api.blocks.transformers.blocks_api instead of lms.djangoapps.course_api.blocks.transformers.blocks_api is deprecated", stacklevel=2) + +from lms.djangoapps.course_api.blocks.transformers.blocks_api import * diff --git a/sys_path_hacks/lms/course_api/blocks/transformers/extra_fields.py b/sys_path_hacks/lms/course_api/blocks/transformers/extra_fields.py new file mode 100644 index 0000000000..4f239d2267 --- /dev/null +++ b/sys_path_hacks/lms/course_api/blocks/transformers/extra_fields.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing course_api.blocks.transformers.extra_fields instead of lms.djangoapps.course_api.blocks.transformers.extra_fields is deprecated", stacklevel=2) + +from lms.djangoapps.course_api.blocks.transformers.extra_fields import * diff --git a/sys_path_hacks/lms/course_api/blocks/transformers/milestones.py b/sys_path_hacks/lms/course_api/blocks/transformers/milestones.py new file mode 100644 index 0000000000..1b5170eedb --- /dev/null +++ b/sys_path_hacks/lms/course_api/blocks/transformers/milestones.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing course_api.blocks.transformers.milestones instead of lms.djangoapps.course_api.blocks.transformers.milestones is deprecated", stacklevel=2) + +from lms.djangoapps.course_api.blocks.transformers.milestones import * diff --git a/sys_path_hacks/lms/course_api/blocks/transformers/navigation.py b/sys_path_hacks/lms/course_api/blocks/transformers/navigation.py new file mode 100644 index 0000000000..163431a76b --- /dev/null +++ b/sys_path_hacks/lms/course_api/blocks/transformers/navigation.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing course_api.blocks.transformers.navigation instead of lms.djangoapps.course_api.blocks.transformers.navigation is deprecated", stacklevel=2) + +from lms.djangoapps.course_api.blocks.transformers.navigation import * diff --git a/sys_path_hacks/lms/course_api/blocks/transformers/student_view.py b/sys_path_hacks/lms/course_api/blocks/transformers/student_view.py new file mode 100644 index 0000000000..8bf6fa470d --- /dev/null +++ b/sys_path_hacks/lms/course_api/blocks/transformers/student_view.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing course_api.blocks.transformers.student_view instead of lms.djangoapps.course_api.blocks.transformers.student_view is deprecated", stacklevel=2) + +from lms.djangoapps.course_api.blocks.transformers.student_view import * diff --git a/sys_path_hacks/lms/course_api/blocks/transformers/tests/__init__.py b/sys_path_hacks/lms/course_api/blocks/transformers/tests/__init__.py new file mode 100644 index 0000000000..1bddd20e68 --- /dev/null +++ b/sys_path_hacks/lms/course_api/blocks/transformers/tests/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing course_api.blocks.transformers.tests instead of lms.djangoapps.course_api.blocks.transformers.tests is deprecated", stacklevel=2) + +from lms.djangoapps.course_api.blocks.transformers.tests import * diff --git a/sys_path_hacks/lms/course_api/blocks/transformers/tests/test_block_completion.py b/sys_path_hacks/lms/course_api/blocks/transformers/tests/test_block_completion.py new file mode 100644 index 0000000000..da917a75af --- /dev/null +++ b/sys_path_hacks/lms/course_api/blocks/transformers/tests/test_block_completion.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing course_api.blocks.transformers.tests.test_block_completion instead of lms.djangoapps.course_api.blocks.transformers.tests.test_block_completion is deprecated", stacklevel=2) + +from lms.djangoapps.course_api.blocks.transformers.tests.test_block_completion import * diff --git a/sys_path_hacks/lms/course_api/blocks/transformers/tests/test_block_counts.py b/sys_path_hacks/lms/course_api/blocks/transformers/tests/test_block_counts.py new file mode 100644 index 0000000000..c8e19f1187 --- /dev/null +++ b/sys_path_hacks/lms/course_api/blocks/transformers/tests/test_block_counts.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing course_api.blocks.transformers.tests.test_block_counts instead of lms.djangoapps.course_api.blocks.transformers.tests.test_block_counts is deprecated", stacklevel=2) + +from lms.djangoapps.course_api.blocks.transformers.tests.test_block_counts import * diff --git a/sys_path_hacks/lms/course_api/blocks/transformers/tests/test_block_depth.py b/sys_path_hacks/lms/course_api/blocks/transformers/tests/test_block_depth.py new file mode 100644 index 0000000000..ef078bf732 --- /dev/null +++ b/sys_path_hacks/lms/course_api/blocks/transformers/tests/test_block_depth.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing course_api.blocks.transformers.tests.test_block_depth instead of lms.djangoapps.course_api.blocks.transformers.tests.test_block_depth is deprecated", stacklevel=2) + +from lms.djangoapps.course_api.blocks.transformers.tests.test_block_depth import * diff --git a/sys_path_hacks/lms/course_api/blocks/transformers/tests/test_extra_fields.py b/sys_path_hacks/lms/course_api/blocks/transformers/tests/test_extra_fields.py new file mode 100644 index 0000000000..9ef79bc5bb --- /dev/null +++ b/sys_path_hacks/lms/course_api/blocks/transformers/tests/test_extra_fields.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing course_api.blocks.transformers.tests.test_extra_fields instead of lms.djangoapps.course_api.blocks.transformers.tests.test_extra_fields is deprecated", stacklevel=2) + +from lms.djangoapps.course_api.blocks.transformers.tests.test_extra_fields import * diff --git a/sys_path_hacks/lms/course_api/blocks/transformers/tests/test_milestones.py b/sys_path_hacks/lms/course_api/blocks/transformers/tests/test_milestones.py new file mode 100644 index 0000000000..422926c441 --- /dev/null +++ b/sys_path_hacks/lms/course_api/blocks/transformers/tests/test_milestones.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing course_api.blocks.transformers.tests.test_milestones instead of lms.djangoapps.course_api.blocks.transformers.tests.test_milestones is deprecated", stacklevel=2) + +from lms.djangoapps.course_api.blocks.transformers.tests.test_milestones import * diff --git a/sys_path_hacks/lms/course_api/blocks/transformers/tests/test_navigation.py b/sys_path_hacks/lms/course_api/blocks/transformers/tests/test_navigation.py new file mode 100644 index 0000000000..7cf828e7f4 --- /dev/null +++ b/sys_path_hacks/lms/course_api/blocks/transformers/tests/test_navigation.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing course_api.blocks.transformers.tests.test_navigation instead of lms.djangoapps.course_api.blocks.transformers.tests.test_navigation is deprecated", stacklevel=2) + +from lms.djangoapps.course_api.blocks.transformers.tests.test_navigation import * diff --git a/sys_path_hacks/lms/course_api/blocks/transformers/tests/test_student_view.py b/sys_path_hacks/lms/course_api/blocks/transformers/tests/test_student_view.py new file mode 100644 index 0000000000..060e262066 --- /dev/null +++ b/sys_path_hacks/lms/course_api/blocks/transformers/tests/test_student_view.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing course_api.blocks.transformers.tests.test_student_view instead of lms.djangoapps.course_api.blocks.transformers.tests.test_student_view is deprecated", stacklevel=2) + +from lms.djangoapps.course_api.blocks.transformers.tests.test_student_view import * diff --git a/sys_path_hacks/lms/course_api/blocks/transformers/tests/test_video_urls.py b/sys_path_hacks/lms/course_api/blocks/transformers/tests/test_video_urls.py new file mode 100644 index 0000000000..6966341b23 --- /dev/null +++ b/sys_path_hacks/lms/course_api/blocks/transformers/tests/test_video_urls.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing course_api.blocks.transformers.tests.test_video_urls instead of lms.djangoapps.course_api.blocks.transformers.tests.test_video_urls is deprecated", stacklevel=2) + +from lms.djangoapps.course_api.blocks.transformers.tests.test_video_urls import * diff --git a/sys_path_hacks/lms/course_api/blocks/transformers/video_urls.py b/sys_path_hacks/lms/course_api/blocks/transformers/video_urls.py new file mode 100644 index 0000000000..9057cc15e6 --- /dev/null +++ b/sys_path_hacks/lms/course_api/blocks/transformers/video_urls.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing course_api.blocks.transformers.video_urls instead of lms.djangoapps.course_api.blocks.transformers.video_urls is deprecated", stacklevel=2) + +from lms.djangoapps.course_api.blocks.transformers.video_urls import * diff --git a/sys_path_hacks/lms/course_api/blocks/urls.py b/sys_path_hacks/lms/course_api/blocks/urls.py new file mode 100644 index 0000000000..d6151df741 --- /dev/null +++ b/sys_path_hacks/lms/course_api/blocks/urls.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing course_api.blocks.urls instead of lms.djangoapps.course_api.blocks.urls is deprecated", stacklevel=2) + +from lms.djangoapps.course_api.blocks.urls import * diff --git a/sys_path_hacks/lms/course_api/blocks/views.py b/sys_path_hacks/lms/course_api/blocks/views.py new file mode 100644 index 0000000000..1d65b3d4a3 --- /dev/null +++ b/sys_path_hacks/lms/course_api/blocks/views.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing course_api.blocks.views instead of lms.djangoapps.course_api.blocks.views is deprecated", stacklevel=2) + +from lms.djangoapps.course_api.blocks.views import * diff --git a/sys_path_hacks/lms/course_api/forms.py b/sys_path_hacks/lms/course_api/forms.py new file mode 100644 index 0000000000..7379034e60 --- /dev/null +++ b/sys_path_hacks/lms/course_api/forms.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing course_api.forms instead of lms.djangoapps.course_api.forms is deprecated", stacklevel=2) + +from lms.djangoapps.course_api.forms import * diff --git a/sys_path_hacks/lms/course_api/permissions.py b/sys_path_hacks/lms/course_api/permissions.py new file mode 100644 index 0000000000..d3280ec782 --- /dev/null +++ b/sys_path_hacks/lms/course_api/permissions.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing course_api.permissions instead of lms.djangoapps.course_api.permissions is deprecated", stacklevel=2) + +from lms.djangoapps.course_api.permissions import * diff --git a/sys_path_hacks/lms/course_api/serializers.py b/sys_path_hacks/lms/course_api/serializers.py new file mode 100644 index 0000000000..4a9e36250a --- /dev/null +++ b/sys_path_hacks/lms/course_api/serializers.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing course_api.serializers instead of lms.djangoapps.course_api.serializers is deprecated", stacklevel=2) + +from lms.djangoapps.course_api.serializers import * diff --git a/sys_path_hacks/lms/course_api/tests/__init__.py b/sys_path_hacks/lms/course_api/tests/__init__.py new file mode 100644 index 0000000000..00b830a8cd --- /dev/null +++ b/sys_path_hacks/lms/course_api/tests/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing course_api.tests instead of lms.djangoapps.course_api.tests is deprecated", stacklevel=2) + +from lms.djangoapps.course_api.tests import * diff --git a/sys_path_hacks/lms/course_api/tests/mixins.py b/sys_path_hacks/lms/course_api/tests/mixins.py new file mode 100644 index 0000000000..56d0c111d0 --- /dev/null +++ b/sys_path_hacks/lms/course_api/tests/mixins.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing course_api.tests.mixins instead of lms.djangoapps.course_api.tests.mixins is deprecated", stacklevel=2) + +from lms.djangoapps.course_api.tests.mixins import * diff --git a/sys_path_hacks/lms/course_api/tests/test_api.py b/sys_path_hacks/lms/course_api/tests/test_api.py new file mode 100644 index 0000000000..68c0df3b2c --- /dev/null +++ b/sys_path_hacks/lms/course_api/tests/test_api.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing course_api.tests.test_api instead of lms.djangoapps.course_api.tests.test_api is deprecated", stacklevel=2) + +from lms.djangoapps.course_api.tests.test_api import * diff --git a/sys_path_hacks/lms/course_api/tests/test_forms.py b/sys_path_hacks/lms/course_api/tests/test_forms.py new file mode 100644 index 0000000000..49913abecf --- /dev/null +++ b/sys_path_hacks/lms/course_api/tests/test_forms.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing course_api.tests.test_forms instead of lms.djangoapps.course_api.tests.test_forms is deprecated", stacklevel=2) + +from lms.djangoapps.course_api.tests.test_forms import * diff --git a/sys_path_hacks/lms/course_api/tests/test_permissions.py b/sys_path_hacks/lms/course_api/tests/test_permissions.py new file mode 100644 index 0000000000..2cc8d0eb98 --- /dev/null +++ b/sys_path_hacks/lms/course_api/tests/test_permissions.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing course_api.tests.test_permissions instead of lms.djangoapps.course_api.tests.test_permissions is deprecated", stacklevel=2) + +from lms.djangoapps.course_api.tests.test_permissions import * diff --git a/sys_path_hacks/lms/course_api/tests/test_serializers.py b/sys_path_hacks/lms/course_api/tests/test_serializers.py new file mode 100644 index 0000000000..11ed3d4c4a --- /dev/null +++ b/sys_path_hacks/lms/course_api/tests/test_serializers.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing course_api.tests.test_serializers instead of lms.djangoapps.course_api.tests.test_serializers is deprecated", stacklevel=2) + +from lms.djangoapps.course_api.tests.test_serializers import * diff --git a/sys_path_hacks/lms/course_api/tests/test_views.py b/sys_path_hacks/lms/course_api/tests/test_views.py new file mode 100644 index 0000000000..f0304d5006 --- /dev/null +++ b/sys_path_hacks/lms/course_api/tests/test_views.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing course_api.tests.test_views instead of lms.djangoapps.course_api.tests.test_views is deprecated", stacklevel=2) + +from lms.djangoapps.course_api.tests.test_views import * diff --git a/sys_path_hacks/lms/course_api/urls.py b/sys_path_hacks/lms/course_api/urls.py new file mode 100644 index 0000000000..ffe2acbc32 --- /dev/null +++ b/sys_path_hacks/lms/course_api/urls.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing course_api.urls instead of lms.djangoapps.course_api.urls is deprecated", stacklevel=2) + +from lms.djangoapps.course_api.urls import * diff --git a/sys_path_hacks/lms/course_api/views.py b/sys_path_hacks/lms/course_api/views.py new file mode 100644 index 0000000000..e9241eff6c --- /dev/null +++ b/sys_path_hacks/lms/course_api/views.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing course_api.views instead of lms.djangoapps.course_api.views is deprecated", stacklevel=2) + +from lms.djangoapps.course_api.views import * diff --git a/sys_path_hacks/lms/course_blocks/__init__.py b/sys_path_hacks/lms/course_blocks/__init__.py new file mode 100644 index 0000000000..135232544e --- /dev/null +++ b/sys_path_hacks/lms/course_blocks/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing course_blocks instead of lms.djangoapps.course_blocks is deprecated", stacklevel=2) + +from lms.djangoapps.course_blocks import * diff --git a/sys_path_hacks/lms/course_blocks/api.py b/sys_path_hacks/lms/course_blocks/api.py new file mode 100644 index 0000000000..0cf364cb97 --- /dev/null +++ b/sys_path_hacks/lms/course_blocks/api.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing course_blocks.api instead of lms.djangoapps.course_blocks.api is deprecated", stacklevel=2) + +from lms.djangoapps.course_blocks.api import * diff --git a/sys_path_hacks/lms/course_blocks/tests/__init__.py b/sys_path_hacks/lms/course_blocks/tests/__init__.py new file mode 100644 index 0000000000..d8c26b792b --- /dev/null +++ b/sys_path_hacks/lms/course_blocks/tests/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing course_blocks.tests instead of lms.djangoapps.course_blocks.tests is deprecated", stacklevel=2) + +from lms.djangoapps.course_blocks.tests import * diff --git a/sys_path_hacks/lms/course_blocks/transformers/__init__.py b/sys_path_hacks/lms/course_blocks/transformers/__init__.py new file mode 100644 index 0000000000..d1ce3be08f --- /dev/null +++ b/sys_path_hacks/lms/course_blocks/transformers/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing course_blocks.transformers instead of lms.djangoapps.course_blocks.transformers is deprecated", stacklevel=2) + +from lms.djangoapps.course_blocks.transformers import * diff --git a/sys_path_hacks/lms/course_blocks/transformers/access_denied_filter.py b/sys_path_hacks/lms/course_blocks/transformers/access_denied_filter.py new file mode 100644 index 0000000000..5aeebe7aa8 --- /dev/null +++ b/sys_path_hacks/lms/course_blocks/transformers/access_denied_filter.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing course_blocks.transformers.access_denied_filter instead of lms.djangoapps.course_blocks.transformers.access_denied_filter is deprecated", stacklevel=2) + +from lms.djangoapps.course_blocks.transformers.access_denied_filter import * diff --git a/sys_path_hacks/lms/course_blocks/transformers/hidden_content.py b/sys_path_hacks/lms/course_blocks/transformers/hidden_content.py new file mode 100644 index 0000000000..d8ca1151db --- /dev/null +++ b/sys_path_hacks/lms/course_blocks/transformers/hidden_content.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing course_blocks.transformers.hidden_content instead of lms.djangoapps.course_blocks.transformers.hidden_content is deprecated", stacklevel=2) + +from lms.djangoapps.course_blocks.transformers.hidden_content import * diff --git a/sys_path_hacks/lms/course_blocks/transformers/hide_empty.py b/sys_path_hacks/lms/course_blocks/transformers/hide_empty.py new file mode 100644 index 0000000000..675232a959 --- /dev/null +++ b/sys_path_hacks/lms/course_blocks/transformers/hide_empty.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing course_blocks.transformers.hide_empty instead of lms.djangoapps.course_blocks.transformers.hide_empty is deprecated", stacklevel=2) + +from lms.djangoapps.course_blocks.transformers.hide_empty import * diff --git a/sys_path_hacks/lms/course_blocks/transformers/library_content.py b/sys_path_hacks/lms/course_blocks/transformers/library_content.py new file mode 100644 index 0000000000..18b3677e84 --- /dev/null +++ b/sys_path_hacks/lms/course_blocks/transformers/library_content.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing course_blocks.transformers.library_content instead of lms.djangoapps.course_blocks.transformers.library_content is deprecated", stacklevel=2) + +from lms.djangoapps.course_blocks.transformers.library_content import * diff --git a/sys_path_hacks/lms/course_blocks/transformers/load_override_data.py b/sys_path_hacks/lms/course_blocks/transformers/load_override_data.py new file mode 100644 index 0000000000..b09f9ee557 --- /dev/null +++ b/sys_path_hacks/lms/course_blocks/transformers/load_override_data.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing course_blocks.transformers.load_override_data instead of lms.djangoapps.course_blocks.transformers.load_override_data is deprecated", stacklevel=2) + +from lms.djangoapps.course_blocks.transformers.load_override_data import * diff --git a/sys_path_hacks/lms/course_blocks/transformers/split_test.py b/sys_path_hacks/lms/course_blocks/transformers/split_test.py new file mode 100644 index 0000000000..ef1a2c2cf4 --- /dev/null +++ b/sys_path_hacks/lms/course_blocks/transformers/split_test.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing course_blocks.transformers.split_test instead of lms.djangoapps.course_blocks.transformers.split_test is deprecated", stacklevel=2) + +from lms.djangoapps.course_blocks.transformers.split_test import * diff --git a/sys_path_hacks/lms/course_blocks/transformers/start_date.py b/sys_path_hacks/lms/course_blocks/transformers/start_date.py new file mode 100644 index 0000000000..b71d9f1c24 --- /dev/null +++ b/sys_path_hacks/lms/course_blocks/transformers/start_date.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing course_blocks.transformers.start_date instead of lms.djangoapps.course_blocks.transformers.start_date is deprecated", stacklevel=2) + +from lms.djangoapps.course_blocks.transformers.start_date import * diff --git a/sys_path_hacks/lms/course_blocks/transformers/tests/__init__.py b/sys_path_hacks/lms/course_blocks/transformers/tests/__init__.py new file mode 100644 index 0000000000..d17cc69433 --- /dev/null +++ b/sys_path_hacks/lms/course_blocks/transformers/tests/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing course_blocks.transformers.tests instead of lms.djangoapps.course_blocks.transformers.tests is deprecated", stacklevel=2) + +from lms.djangoapps.course_blocks.transformers.tests import * diff --git a/sys_path_hacks/lms/course_blocks/transformers/tests/helpers.py b/sys_path_hacks/lms/course_blocks/transformers/tests/helpers.py new file mode 100644 index 0000000000..a1310a761a --- /dev/null +++ b/sys_path_hacks/lms/course_blocks/transformers/tests/helpers.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing course_blocks.transformers.tests.helpers instead of lms.djangoapps.course_blocks.transformers.tests.helpers is deprecated", stacklevel=2) + +from lms.djangoapps.course_blocks.transformers.tests.helpers import * diff --git a/sys_path_hacks/lms/course_blocks/transformers/tests/test_hidden_content.py b/sys_path_hacks/lms/course_blocks/transformers/tests/test_hidden_content.py new file mode 100644 index 0000000000..c07abc3a33 --- /dev/null +++ b/sys_path_hacks/lms/course_blocks/transformers/tests/test_hidden_content.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing course_blocks.transformers.tests.test_hidden_content instead of lms.djangoapps.course_blocks.transformers.tests.test_hidden_content is deprecated", stacklevel=2) + +from lms.djangoapps.course_blocks.transformers.tests.test_hidden_content import * diff --git a/sys_path_hacks/lms/course_blocks/transformers/tests/test_library_content.py b/sys_path_hacks/lms/course_blocks/transformers/tests/test_library_content.py new file mode 100644 index 0000000000..11adc2ab8e --- /dev/null +++ b/sys_path_hacks/lms/course_blocks/transformers/tests/test_library_content.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing course_blocks.transformers.tests.test_library_content instead of lms.djangoapps.course_blocks.transformers.tests.test_library_content is deprecated", stacklevel=2) + +from lms.djangoapps.course_blocks.transformers.tests.test_library_content import * diff --git a/sys_path_hacks/lms/course_blocks/transformers/tests/test_load_override_data.py b/sys_path_hacks/lms/course_blocks/transformers/tests/test_load_override_data.py new file mode 100644 index 0000000000..5763a64e6a --- /dev/null +++ b/sys_path_hacks/lms/course_blocks/transformers/tests/test_load_override_data.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing course_blocks.transformers.tests.test_load_override_data instead of lms.djangoapps.course_blocks.transformers.tests.test_load_override_data is deprecated", stacklevel=2) + +from lms.djangoapps.course_blocks.transformers.tests.test_load_override_data import * diff --git a/sys_path_hacks/lms/course_blocks/transformers/tests/test_split_test.py b/sys_path_hacks/lms/course_blocks/transformers/tests/test_split_test.py new file mode 100644 index 0000000000..e3fd80b508 --- /dev/null +++ b/sys_path_hacks/lms/course_blocks/transformers/tests/test_split_test.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing course_blocks.transformers.tests.test_split_test instead of lms.djangoapps.course_blocks.transformers.tests.test_split_test is deprecated", stacklevel=2) + +from lms.djangoapps.course_blocks.transformers.tests.test_split_test import * diff --git a/sys_path_hacks/lms/course_blocks/transformers/tests/test_start_date.py b/sys_path_hacks/lms/course_blocks/transformers/tests/test_start_date.py new file mode 100644 index 0000000000..fe42de267a --- /dev/null +++ b/sys_path_hacks/lms/course_blocks/transformers/tests/test_start_date.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing course_blocks.transformers.tests.test_start_date instead of lms.djangoapps.course_blocks.transformers.tests.test_start_date is deprecated", stacklevel=2) + +from lms.djangoapps.course_blocks.transformers.tests.test_start_date import * diff --git a/sys_path_hacks/lms/course_blocks/transformers/tests/test_user_partitions.py b/sys_path_hacks/lms/course_blocks/transformers/tests/test_user_partitions.py new file mode 100644 index 0000000000..16aa1b6af9 --- /dev/null +++ b/sys_path_hacks/lms/course_blocks/transformers/tests/test_user_partitions.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing course_blocks.transformers.tests.test_user_partitions instead of lms.djangoapps.course_blocks.transformers.tests.test_user_partitions is deprecated", stacklevel=2) + +from lms.djangoapps.course_blocks.transformers.tests.test_user_partitions import * diff --git a/sys_path_hacks/lms/course_blocks/transformers/tests/test_visibility.py b/sys_path_hacks/lms/course_blocks/transformers/tests/test_visibility.py new file mode 100644 index 0000000000..a84fefe659 --- /dev/null +++ b/sys_path_hacks/lms/course_blocks/transformers/tests/test_visibility.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing course_blocks.transformers.tests.test_visibility instead of lms.djangoapps.course_blocks.transformers.tests.test_visibility is deprecated", stacklevel=2) + +from lms.djangoapps.course_blocks.transformers.tests.test_visibility import * diff --git a/sys_path_hacks/lms/course_blocks/transformers/user_partitions.py b/sys_path_hacks/lms/course_blocks/transformers/user_partitions.py new file mode 100644 index 0000000000..df520b9dd4 --- /dev/null +++ b/sys_path_hacks/lms/course_blocks/transformers/user_partitions.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing course_blocks.transformers.user_partitions instead of lms.djangoapps.course_blocks.transformers.user_partitions is deprecated", stacklevel=2) + +from lms.djangoapps.course_blocks.transformers.user_partitions import * diff --git a/sys_path_hacks/lms/course_blocks/transformers/utils.py b/sys_path_hacks/lms/course_blocks/transformers/utils.py new file mode 100644 index 0000000000..5ed3b9f93a --- /dev/null +++ b/sys_path_hacks/lms/course_blocks/transformers/utils.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing course_blocks.transformers.utils instead of lms.djangoapps.course_blocks.transformers.utils is deprecated", stacklevel=2) + +from lms.djangoapps.course_blocks.transformers.utils import * diff --git a/sys_path_hacks/lms/course_blocks/transformers/visibility.py b/sys_path_hacks/lms/course_blocks/transformers/visibility.py new file mode 100644 index 0000000000..60eeadfc83 --- /dev/null +++ b/sys_path_hacks/lms/course_blocks/transformers/visibility.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing course_blocks.transformers.visibility instead of lms.djangoapps.course_blocks.transformers.visibility is deprecated", stacklevel=2) + +from lms.djangoapps.course_blocks.transformers.visibility import * diff --git a/sys_path_hacks/lms/course_blocks/usage_info.py b/sys_path_hacks/lms/course_blocks/usage_info.py new file mode 100644 index 0000000000..a2b1f0e3b4 --- /dev/null +++ b/sys_path_hacks/lms/course_blocks/usage_info.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing course_blocks.usage_info instead of lms.djangoapps.course_blocks.usage_info is deprecated", stacklevel=2) + +from lms.djangoapps.course_blocks.usage_info import * diff --git a/sys_path_hacks/lms/course_blocks/utils.py b/sys_path_hacks/lms/course_blocks/utils.py new file mode 100644 index 0000000000..fa6562e756 --- /dev/null +++ b/sys_path_hacks/lms/course_blocks/utils.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing course_blocks.utils instead of lms.djangoapps.course_blocks.utils is deprecated", stacklevel=2) + +from lms.djangoapps.course_blocks.utils import * diff --git a/sys_path_hacks/lms/course_goals/__init__.py b/sys_path_hacks/lms/course_goals/__init__.py new file mode 100644 index 0000000000..b5cc701860 --- /dev/null +++ b/sys_path_hacks/lms/course_goals/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing course_goals instead of lms.djangoapps.course_goals is deprecated", stacklevel=2) + +from lms.djangoapps.course_goals import * diff --git a/sys_path_hacks/lms/course_goals/api.py b/sys_path_hacks/lms/course_goals/api.py new file mode 100644 index 0000000000..c36e2a5802 --- /dev/null +++ b/sys_path_hacks/lms/course_goals/api.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing course_goals.api instead of lms.djangoapps.course_goals.api is deprecated", stacklevel=2) + +from lms.djangoapps.course_goals.api import * diff --git a/sys_path_hacks/lms/course_goals/apps.py b/sys_path_hacks/lms/course_goals/apps.py new file mode 100644 index 0000000000..44f7767943 --- /dev/null +++ b/sys_path_hacks/lms/course_goals/apps.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing course_goals.apps instead of lms.djangoapps.course_goals.apps is deprecated", stacklevel=2) + +from lms.djangoapps.course_goals.apps import * diff --git a/sys_path_hacks/lms/course_goals/handlers.py b/sys_path_hacks/lms/course_goals/handlers.py new file mode 100644 index 0000000000..bee003dd25 --- /dev/null +++ b/sys_path_hacks/lms/course_goals/handlers.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing course_goals.handlers instead of lms.djangoapps.course_goals.handlers is deprecated", stacklevel=2) + +from lms.djangoapps.course_goals.handlers import * diff --git a/sys_path_hacks/lms/course_goals/models.py b/sys_path_hacks/lms/course_goals/models.py new file mode 100644 index 0000000000..43e255965f --- /dev/null +++ b/sys_path_hacks/lms/course_goals/models.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing course_goals.models instead of lms.djangoapps.course_goals.models is deprecated", stacklevel=2) + +from lms.djangoapps.course_goals.models import * diff --git a/sys_path_hacks/lms/course_goals/tests/__init__.py b/sys_path_hacks/lms/course_goals/tests/__init__.py new file mode 100644 index 0000000000..37094179dd --- /dev/null +++ b/sys_path_hacks/lms/course_goals/tests/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing course_goals.tests instead of lms.djangoapps.course_goals.tests is deprecated", stacklevel=2) + +from lms.djangoapps.course_goals.tests import * diff --git a/sys_path_hacks/lms/course_goals/tests/test_api.py b/sys_path_hacks/lms/course_goals/tests/test_api.py new file mode 100644 index 0000000000..93e73700cb --- /dev/null +++ b/sys_path_hacks/lms/course_goals/tests/test_api.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing course_goals.tests.test_api instead of lms.djangoapps.course_goals.tests.test_api is deprecated", stacklevel=2) + +from lms.djangoapps.course_goals.tests.test_api import * diff --git a/sys_path_hacks/lms/course_goals/urls.py b/sys_path_hacks/lms/course_goals/urls.py new file mode 100644 index 0000000000..9caa764f56 --- /dev/null +++ b/sys_path_hacks/lms/course_goals/urls.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing course_goals.urls instead of lms.djangoapps.course_goals.urls is deprecated", stacklevel=2) + +from lms.djangoapps.course_goals.urls import * diff --git a/sys_path_hacks/lms/course_goals/views.py b/sys_path_hacks/lms/course_goals/views.py new file mode 100644 index 0000000000..464033ea06 --- /dev/null +++ b/sys_path_hacks/lms/course_goals/views.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing course_goals.views instead of lms.djangoapps.course_goals.views is deprecated", stacklevel=2) + +from lms.djangoapps.course_goals.views import * diff --git a/sys_path_hacks/lms/course_home_api/__init__.py b/sys_path_hacks/lms/course_home_api/__init__.py new file mode 100644 index 0000000000..f96836424a --- /dev/null +++ b/sys_path_hacks/lms/course_home_api/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing course_home_api instead of lms.djangoapps.course_home_api is deprecated", stacklevel=2) + +from lms.djangoapps.course_home_api import * diff --git a/sys_path_hacks/lms/course_home_api/course_metadata/__init__.py b/sys_path_hacks/lms/course_home_api/course_metadata/__init__.py new file mode 100644 index 0000000000..bf978d796f --- /dev/null +++ b/sys_path_hacks/lms/course_home_api/course_metadata/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing course_home_api.course_metadata instead of lms.djangoapps.course_home_api.course_metadata is deprecated", stacklevel=2) + +from lms.djangoapps.course_home_api.course_metadata import * diff --git a/sys_path_hacks/lms/course_home_api/course_metadata/v1/__init__.py b/sys_path_hacks/lms/course_home_api/course_metadata/v1/__init__.py new file mode 100644 index 0000000000..8c1e4f8e9f --- /dev/null +++ b/sys_path_hacks/lms/course_home_api/course_metadata/v1/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing course_home_api.course_metadata.v1 instead of lms.djangoapps.course_home_api.course_metadata.v1 is deprecated", stacklevel=2) + +from lms.djangoapps.course_home_api.course_metadata.v1 import * diff --git a/sys_path_hacks/lms/course_home_api/course_metadata/v1/serializers.py b/sys_path_hacks/lms/course_home_api/course_metadata/v1/serializers.py new file mode 100644 index 0000000000..51ece76898 --- /dev/null +++ b/sys_path_hacks/lms/course_home_api/course_metadata/v1/serializers.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing course_home_api.course_metadata.v1.serializers instead of lms.djangoapps.course_home_api.course_metadata.v1.serializers is deprecated", stacklevel=2) + +from lms.djangoapps.course_home_api.course_metadata.v1.serializers import * diff --git a/sys_path_hacks/lms/course_home_api/course_metadata/v1/tests/__init__.py b/sys_path_hacks/lms/course_home_api/course_metadata/v1/tests/__init__.py new file mode 100644 index 0000000000..c9369df6e1 --- /dev/null +++ b/sys_path_hacks/lms/course_home_api/course_metadata/v1/tests/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing course_home_api.course_metadata.v1.tests instead of lms.djangoapps.course_home_api.course_metadata.v1.tests is deprecated", stacklevel=2) + +from lms.djangoapps.course_home_api.course_metadata.v1.tests import * diff --git a/sys_path_hacks/lms/course_home_api/course_metadata/v1/tests/test_views.py b/sys_path_hacks/lms/course_home_api/course_metadata/v1/tests/test_views.py new file mode 100644 index 0000000000..43eeb05376 --- /dev/null +++ b/sys_path_hacks/lms/course_home_api/course_metadata/v1/tests/test_views.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing course_home_api.course_metadata.v1.tests.test_views instead of lms.djangoapps.course_home_api.course_metadata.v1.tests.test_views is deprecated", stacklevel=2) + +from lms.djangoapps.course_home_api.course_metadata.v1.tests.test_views import * diff --git a/sys_path_hacks/lms/course_home_api/course_metadata/v1/views.py b/sys_path_hacks/lms/course_home_api/course_metadata/v1/views.py new file mode 100644 index 0000000000..622e7185fb --- /dev/null +++ b/sys_path_hacks/lms/course_home_api/course_metadata/v1/views.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing course_home_api.course_metadata.v1.views instead of lms.djangoapps.course_home_api.course_metadata.v1.views is deprecated", stacklevel=2) + +from lms.djangoapps.course_home_api.course_metadata.v1.views import * diff --git a/sys_path_hacks/lms/course_home_api/dates/__init__.py b/sys_path_hacks/lms/course_home_api/dates/__init__.py new file mode 100644 index 0000000000..6b04e82b98 --- /dev/null +++ b/sys_path_hacks/lms/course_home_api/dates/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing course_home_api.dates instead of lms.djangoapps.course_home_api.dates is deprecated", stacklevel=2) + +from lms.djangoapps.course_home_api.dates import * diff --git a/sys_path_hacks/lms/course_home_api/dates/v1/__init__.py b/sys_path_hacks/lms/course_home_api/dates/v1/__init__.py new file mode 100644 index 0000000000..5464330544 --- /dev/null +++ b/sys_path_hacks/lms/course_home_api/dates/v1/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing course_home_api.dates.v1 instead of lms.djangoapps.course_home_api.dates.v1 is deprecated", stacklevel=2) + +from lms.djangoapps.course_home_api.dates.v1 import * diff --git a/sys_path_hacks/lms/course_home_api/dates/v1/serializers.py b/sys_path_hacks/lms/course_home_api/dates/v1/serializers.py new file mode 100644 index 0000000000..c63721d4c8 --- /dev/null +++ b/sys_path_hacks/lms/course_home_api/dates/v1/serializers.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing course_home_api.dates.v1.serializers instead of lms.djangoapps.course_home_api.dates.v1.serializers is deprecated", stacklevel=2) + +from lms.djangoapps.course_home_api.dates.v1.serializers import * diff --git a/sys_path_hacks/lms/course_home_api/dates/v1/tests/__init__.py b/sys_path_hacks/lms/course_home_api/dates/v1/tests/__init__.py new file mode 100644 index 0000000000..5a96909f12 --- /dev/null +++ b/sys_path_hacks/lms/course_home_api/dates/v1/tests/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing course_home_api.dates.v1.tests instead of lms.djangoapps.course_home_api.dates.v1.tests is deprecated", stacklevel=2) + +from lms.djangoapps.course_home_api.dates.v1.tests import * diff --git a/sys_path_hacks/lms/course_home_api/dates/v1/tests/test_views.py b/sys_path_hacks/lms/course_home_api/dates/v1/tests/test_views.py new file mode 100644 index 0000000000..df68ab6519 --- /dev/null +++ b/sys_path_hacks/lms/course_home_api/dates/v1/tests/test_views.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing course_home_api.dates.v1.tests.test_views instead of lms.djangoapps.course_home_api.dates.v1.tests.test_views is deprecated", stacklevel=2) + +from lms.djangoapps.course_home_api.dates.v1.tests.test_views import * diff --git a/sys_path_hacks/lms/course_home_api/dates/v1/views.py b/sys_path_hacks/lms/course_home_api/dates/v1/views.py new file mode 100644 index 0000000000..98446e6315 --- /dev/null +++ b/sys_path_hacks/lms/course_home_api/dates/v1/views.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing course_home_api.dates.v1.views instead of lms.djangoapps.course_home_api.dates.v1.views is deprecated", stacklevel=2) + +from lms.djangoapps.course_home_api.dates.v1.views import * diff --git a/sys_path_hacks/lms/course_home_api/mixins.py b/sys_path_hacks/lms/course_home_api/mixins.py new file mode 100644 index 0000000000..fb633d635b --- /dev/null +++ b/sys_path_hacks/lms/course_home_api/mixins.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing course_home_api.mixins instead of lms.djangoapps.course_home_api.mixins is deprecated", stacklevel=2) + +from lms.djangoapps.course_home_api.mixins import * diff --git a/sys_path_hacks/lms/course_home_api/outline/v1/serializers.py b/sys_path_hacks/lms/course_home_api/outline/v1/serializers.py new file mode 100644 index 0000000000..626292ee21 --- /dev/null +++ b/sys_path_hacks/lms/course_home_api/outline/v1/serializers.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing course_home_api.outline.v1.serializers instead of lms.djangoapps.course_home_api.outline.v1.serializers is deprecated", stacklevel=2) + +from lms.djangoapps.course_home_api.outline.v1.serializers import * diff --git a/sys_path_hacks/lms/course_home_api/outline/v1/tests/__init__.py b/sys_path_hacks/lms/course_home_api/outline/v1/tests/__init__.py new file mode 100644 index 0000000000..c1ebff74e0 --- /dev/null +++ b/sys_path_hacks/lms/course_home_api/outline/v1/tests/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing course_home_api.outline.v1.tests instead of lms.djangoapps.course_home_api.outline.v1.tests is deprecated", stacklevel=2) + +from lms.djangoapps.course_home_api.outline.v1.tests import * diff --git a/sys_path_hacks/lms/course_home_api/outline/v1/tests/test_views.py b/sys_path_hacks/lms/course_home_api/outline/v1/tests/test_views.py new file mode 100644 index 0000000000..d6492c30f7 --- /dev/null +++ b/sys_path_hacks/lms/course_home_api/outline/v1/tests/test_views.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing course_home_api.outline.v1.tests.test_views instead of lms.djangoapps.course_home_api.outline.v1.tests.test_views is deprecated", stacklevel=2) + +from lms.djangoapps.course_home_api.outline.v1.tests.test_views import * diff --git a/sys_path_hacks/lms/course_home_api/outline/v1/views.py b/sys_path_hacks/lms/course_home_api/outline/v1/views.py new file mode 100644 index 0000000000..aa74e278d7 --- /dev/null +++ b/sys_path_hacks/lms/course_home_api/outline/v1/views.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing course_home_api.outline.v1.views instead of lms.djangoapps.course_home_api.outline.v1.views is deprecated", stacklevel=2) + +from lms.djangoapps.course_home_api.outline.v1.views import * diff --git a/sys_path_hacks/lms/course_home_api/progress/v1/__init__.py b/sys_path_hacks/lms/course_home_api/progress/v1/__init__.py new file mode 100644 index 0000000000..38f8c33191 --- /dev/null +++ b/sys_path_hacks/lms/course_home_api/progress/v1/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing course_home_api.progress.v1 instead of lms.djangoapps.course_home_api.progress.v1 is deprecated", stacklevel=2) + +from lms.djangoapps.course_home_api.progress.v1 import * diff --git a/sys_path_hacks/lms/course_home_api/progress/v1/serializers.py b/sys_path_hacks/lms/course_home_api/progress/v1/serializers.py new file mode 100644 index 0000000000..1dc6bdaeed --- /dev/null +++ b/sys_path_hacks/lms/course_home_api/progress/v1/serializers.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing course_home_api.progress.v1.serializers instead of lms.djangoapps.course_home_api.progress.v1.serializers is deprecated", stacklevel=2) + +from lms.djangoapps.course_home_api.progress.v1.serializers import * diff --git a/sys_path_hacks/lms/course_home_api/progress/v1/tests/__init__.py b/sys_path_hacks/lms/course_home_api/progress/v1/tests/__init__.py new file mode 100644 index 0000000000..424da962f9 --- /dev/null +++ b/sys_path_hacks/lms/course_home_api/progress/v1/tests/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing course_home_api.progress.v1.tests instead of lms.djangoapps.course_home_api.progress.v1.tests is deprecated", stacklevel=2) + +from lms.djangoapps.course_home_api.progress.v1.tests import * diff --git a/sys_path_hacks/lms/course_home_api/progress/v1/tests/test_views.py b/sys_path_hacks/lms/course_home_api/progress/v1/tests/test_views.py new file mode 100644 index 0000000000..a4523988a5 --- /dev/null +++ b/sys_path_hacks/lms/course_home_api/progress/v1/tests/test_views.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing course_home_api.progress.v1.tests.test_views instead of lms.djangoapps.course_home_api.progress.v1.tests.test_views is deprecated", stacklevel=2) + +from lms.djangoapps.course_home_api.progress.v1.tests.test_views import * diff --git a/sys_path_hacks/lms/course_home_api/progress/v1/views.py b/sys_path_hacks/lms/course_home_api/progress/v1/views.py new file mode 100644 index 0000000000..d1b586d7e7 --- /dev/null +++ b/sys_path_hacks/lms/course_home_api/progress/v1/views.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing course_home_api.progress.v1.views instead of lms.djangoapps.course_home_api.progress.v1.views is deprecated", stacklevel=2) + +from lms.djangoapps.course_home_api.progress.v1.views import * diff --git a/sys_path_hacks/lms/course_home_api/tests/__init__.py b/sys_path_hacks/lms/course_home_api/tests/__init__.py new file mode 100644 index 0000000000..ffe6d13a7b --- /dev/null +++ b/sys_path_hacks/lms/course_home_api/tests/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing course_home_api.tests instead of lms.djangoapps.course_home_api.tests is deprecated", stacklevel=2) + +from lms.djangoapps.course_home_api.tests import * diff --git a/sys_path_hacks/lms/course_home_api/tests/utils.py b/sys_path_hacks/lms/course_home_api/tests/utils.py new file mode 100644 index 0000000000..13524d76d3 --- /dev/null +++ b/sys_path_hacks/lms/course_home_api/tests/utils.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing course_home_api.tests.utils instead of lms.djangoapps.course_home_api.tests.utils is deprecated", stacklevel=2) + +from lms.djangoapps.course_home_api.tests.utils import * diff --git a/sys_path_hacks/lms/course_home_api/toggles.py b/sys_path_hacks/lms/course_home_api/toggles.py new file mode 100644 index 0000000000..96c5b940c4 --- /dev/null +++ b/sys_path_hacks/lms/course_home_api/toggles.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing course_home_api.toggles instead of lms.djangoapps.course_home_api.toggles is deprecated", stacklevel=2) + +from lms.djangoapps.course_home_api.toggles import * diff --git a/sys_path_hacks/lms/course_home_api/urls.py b/sys_path_hacks/lms/course_home_api/urls.py new file mode 100644 index 0000000000..f7b640cae6 --- /dev/null +++ b/sys_path_hacks/lms/course_home_api/urls.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing course_home_api.urls instead of lms.djangoapps.course_home_api.urls is deprecated", stacklevel=2) + +from lms.djangoapps.course_home_api.urls import * diff --git a/sys_path_hacks/lms/course_home_api/utils.py b/sys_path_hacks/lms/course_home_api/utils.py new file mode 100644 index 0000000000..29870f971a --- /dev/null +++ b/sys_path_hacks/lms/course_home_api/utils.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing course_home_api.utils instead of lms.djangoapps.course_home_api.utils is deprecated", stacklevel=2) + +from lms.djangoapps.course_home_api.utils import * diff --git a/sys_path_hacks/lms/course_wiki/__init__.py b/sys_path_hacks/lms/course_wiki/__init__.py new file mode 100644 index 0000000000..82992c63cb --- /dev/null +++ b/sys_path_hacks/lms/course_wiki/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing course_wiki instead of lms.djangoapps.course_wiki is deprecated", stacklevel=2) + +from lms.djangoapps.course_wiki import * diff --git a/sys_path_hacks/lms/course_wiki/editors.py b/sys_path_hacks/lms/course_wiki/editors.py new file mode 100644 index 0000000000..dd60edf17e --- /dev/null +++ b/sys_path_hacks/lms/course_wiki/editors.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing course_wiki.editors instead of lms.djangoapps.course_wiki.editors is deprecated", stacklevel=2) + +from lms.djangoapps.course_wiki.editors import * diff --git a/sys_path_hacks/lms/course_wiki/middleware.py b/sys_path_hacks/lms/course_wiki/middleware.py new file mode 100644 index 0000000000..4d578032cf --- /dev/null +++ b/sys_path_hacks/lms/course_wiki/middleware.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing course_wiki.middleware instead of lms.djangoapps.course_wiki.middleware is deprecated", stacklevel=2) + +from lms.djangoapps.course_wiki.middleware import * diff --git a/sys_path_hacks/lms/course_wiki/plugins/__init__.py b/sys_path_hacks/lms/course_wiki/plugins/__init__.py new file mode 100644 index 0000000000..d1a644e4db --- /dev/null +++ b/sys_path_hacks/lms/course_wiki/plugins/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing course_wiki.plugins instead of lms.djangoapps.course_wiki.plugins is deprecated", stacklevel=2) + +from lms.djangoapps.course_wiki.plugins import * diff --git a/sys_path_hacks/lms/course_wiki/plugins/markdownedx/__init__.py b/sys_path_hacks/lms/course_wiki/plugins/markdownedx/__init__.py new file mode 100644 index 0000000000..2cca341b29 --- /dev/null +++ b/sys_path_hacks/lms/course_wiki/plugins/markdownedx/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing course_wiki.plugins.markdownedx instead of lms.djangoapps.course_wiki.plugins.markdownedx is deprecated", stacklevel=2) + +from lms.djangoapps.course_wiki.plugins.markdownedx import * diff --git a/sys_path_hacks/lms/course_wiki/plugins/markdownedx/mdx_mathjax.py b/sys_path_hacks/lms/course_wiki/plugins/markdownedx/mdx_mathjax.py new file mode 100644 index 0000000000..c290b91d10 --- /dev/null +++ b/sys_path_hacks/lms/course_wiki/plugins/markdownedx/mdx_mathjax.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing course_wiki.plugins.markdownedx.mdx_mathjax instead of lms.djangoapps.course_wiki.plugins.markdownedx.mdx_mathjax is deprecated", stacklevel=2) + +from lms.djangoapps.course_wiki.plugins.markdownedx.mdx_mathjax import * diff --git a/sys_path_hacks/lms/course_wiki/plugins/markdownedx/mdx_video.py b/sys_path_hacks/lms/course_wiki/plugins/markdownedx/mdx_video.py new file mode 100644 index 0000000000..3609c3e3c3 --- /dev/null +++ b/sys_path_hacks/lms/course_wiki/plugins/markdownedx/mdx_video.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing course_wiki.plugins.markdownedx.mdx_video instead of lms.djangoapps.course_wiki.plugins.markdownedx.mdx_video is deprecated", stacklevel=2) + +from lms.djangoapps.course_wiki.plugins.markdownedx.mdx_video import * diff --git a/sys_path_hacks/lms/course_wiki/plugins/markdownedx/wiki_plugin.py b/sys_path_hacks/lms/course_wiki/plugins/markdownedx/wiki_plugin.py new file mode 100644 index 0000000000..5d6a67c48d --- /dev/null +++ b/sys_path_hacks/lms/course_wiki/plugins/markdownedx/wiki_plugin.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing course_wiki.plugins.markdownedx.wiki_plugin instead of lms.djangoapps.course_wiki.plugins.markdownedx.wiki_plugin is deprecated", stacklevel=2) + +from lms.djangoapps.course_wiki.plugins.markdownedx.wiki_plugin import * diff --git a/sys_path_hacks/lms/course_wiki/settings.py b/sys_path_hacks/lms/course_wiki/settings.py new file mode 100644 index 0000000000..d3d6ab0961 --- /dev/null +++ b/sys_path_hacks/lms/course_wiki/settings.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing course_wiki.settings instead of lms.djangoapps.course_wiki.settings is deprecated", stacklevel=2) + +from lms.djangoapps.course_wiki.settings import * diff --git a/sys_path_hacks/lms/course_wiki/tab.py b/sys_path_hacks/lms/course_wiki/tab.py new file mode 100644 index 0000000000..8d8bca8c8e --- /dev/null +++ b/sys_path_hacks/lms/course_wiki/tab.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing course_wiki.tab instead of lms.djangoapps.course_wiki.tab is deprecated", stacklevel=2) + +from lms.djangoapps.course_wiki.tab import * diff --git a/sys_path_hacks/lms/course_wiki/tests/__init__.py b/sys_path_hacks/lms/course_wiki/tests/__init__.py new file mode 100644 index 0000000000..a7ab887a03 --- /dev/null +++ b/sys_path_hacks/lms/course_wiki/tests/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing course_wiki.tests instead of lms.djangoapps.course_wiki.tests is deprecated", stacklevel=2) + +from lms.djangoapps.course_wiki.tests import * diff --git a/sys_path_hacks/lms/course_wiki/tests/test_access.py b/sys_path_hacks/lms/course_wiki/tests/test_access.py new file mode 100644 index 0000000000..11bd36dce2 --- /dev/null +++ b/sys_path_hacks/lms/course_wiki/tests/test_access.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing course_wiki.tests.test_access instead of lms.djangoapps.course_wiki.tests.test_access is deprecated", stacklevel=2) + +from lms.djangoapps.course_wiki.tests.test_access import * diff --git a/sys_path_hacks/lms/course_wiki/tests/test_comprehensive_theming.py b/sys_path_hacks/lms/course_wiki/tests/test_comprehensive_theming.py new file mode 100644 index 0000000000..e8ed17a622 --- /dev/null +++ b/sys_path_hacks/lms/course_wiki/tests/test_comprehensive_theming.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing course_wiki.tests.test_comprehensive_theming instead of lms.djangoapps.course_wiki.tests.test_comprehensive_theming is deprecated", stacklevel=2) + +from lms.djangoapps.course_wiki.tests.test_comprehensive_theming import * diff --git a/sys_path_hacks/lms/course_wiki/tests/test_middleware.py b/sys_path_hacks/lms/course_wiki/tests/test_middleware.py new file mode 100644 index 0000000000..b46e7fc3d6 --- /dev/null +++ b/sys_path_hacks/lms/course_wiki/tests/test_middleware.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing course_wiki.tests.test_middleware instead of lms.djangoapps.course_wiki.tests.test_middleware is deprecated", stacklevel=2) + +from lms.djangoapps.course_wiki.tests.test_middleware import * diff --git a/sys_path_hacks/lms/course_wiki/tests/test_tab.py b/sys_path_hacks/lms/course_wiki/tests/test_tab.py new file mode 100644 index 0000000000..9ce1fe7a2b --- /dev/null +++ b/sys_path_hacks/lms/course_wiki/tests/test_tab.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing course_wiki.tests.test_tab instead of lms.djangoapps.course_wiki.tests.test_tab is deprecated", stacklevel=2) + +from lms.djangoapps.course_wiki.tests.test_tab import * diff --git a/sys_path_hacks/lms/course_wiki/tests/tests.py b/sys_path_hacks/lms/course_wiki/tests/tests.py new file mode 100644 index 0000000000..0e756c2b33 --- /dev/null +++ b/sys_path_hacks/lms/course_wiki/tests/tests.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing course_wiki.tests.tests instead of lms.djangoapps.course_wiki.tests.tests is deprecated", stacklevel=2) + +from lms.djangoapps.course_wiki.tests.tests import * diff --git a/sys_path_hacks/lms/course_wiki/utils.py b/sys_path_hacks/lms/course_wiki/utils.py new file mode 100644 index 0000000000..dd905ac1b4 --- /dev/null +++ b/sys_path_hacks/lms/course_wiki/utils.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing course_wiki.utils instead of lms.djangoapps.course_wiki.utils is deprecated", stacklevel=2) + +from lms.djangoapps.course_wiki.utils import * diff --git a/sys_path_hacks/lms/course_wiki/views.py b/sys_path_hacks/lms/course_wiki/views.py new file mode 100644 index 0000000000..46b54d59e5 --- /dev/null +++ b/sys_path_hacks/lms/course_wiki/views.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing course_wiki.views instead of lms.djangoapps.course_wiki.views is deprecated", stacklevel=2) + +from lms.djangoapps.course_wiki.views import * diff --git a/sys_path_hacks/lms/courseware/__init__.py b/sys_path_hacks/lms/courseware/__init__.py new file mode 100644 index 0000000000..98a668d496 --- /dev/null +++ b/sys_path_hacks/lms/courseware/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing courseware instead of lms.djangoapps.courseware is deprecated", stacklevel=2) + +from lms.djangoapps.courseware import * diff --git a/sys_path_hacks/lms/courseware/access.py b/sys_path_hacks/lms/courseware/access.py new file mode 100644 index 0000000000..ae203f7acc --- /dev/null +++ b/sys_path_hacks/lms/courseware/access.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing courseware.access instead of lms.djangoapps.courseware.access is deprecated", stacklevel=2) + +from lms.djangoapps.courseware.access import * diff --git a/sys_path_hacks/lms/courseware/access_response.py b/sys_path_hacks/lms/courseware/access_response.py new file mode 100644 index 0000000000..713a081eac --- /dev/null +++ b/sys_path_hacks/lms/courseware/access_response.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing courseware.access_response instead of lms.djangoapps.courseware.access_response is deprecated", stacklevel=2) + +from lms.djangoapps.courseware.access_response import * diff --git a/sys_path_hacks/lms/courseware/access_utils.py b/sys_path_hacks/lms/courseware/access_utils.py new file mode 100644 index 0000000000..3524e53ad8 --- /dev/null +++ b/sys_path_hacks/lms/courseware/access_utils.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing courseware.access_utils instead of lms.djangoapps.courseware.access_utils is deprecated", stacklevel=2) + +from lms.djangoapps.courseware.access_utils import * diff --git a/sys_path_hacks/lms/courseware/admin.py b/sys_path_hacks/lms/courseware/admin.py new file mode 100644 index 0000000000..71eff0c5fe --- /dev/null +++ b/sys_path_hacks/lms/courseware/admin.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing courseware.admin instead of lms.djangoapps.courseware.admin is deprecated", stacklevel=2) + +from lms.djangoapps.courseware.admin import * diff --git a/sys_path_hacks/lms/courseware/context_processor.py b/sys_path_hacks/lms/courseware/context_processor.py new file mode 100644 index 0000000000..6d68b01fcb --- /dev/null +++ b/sys_path_hacks/lms/courseware/context_processor.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing courseware.context_processor instead of lms.djangoapps.courseware.context_processor is deprecated", stacklevel=2) + +from lms.djangoapps.courseware.context_processor import * diff --git a/sys_path_hacks/lms/courseware/course_tools.py b/sys_path_hacks/lms/courseware/course_tools.py new file mode 100644 index 0000000000..59b296e807 --- /dev/null +++ b/sys_path_hacks/lms/courseware/course_tools.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing courseware.course_tools instead of lms.djangoapps.courseware.course_tools is deprecated", stacklevel=2) + +from lms.djangoapps.courseware.course_tools import * diff --git a/sys_path_hacks/lms/courseware/courses.py b/sys_path_hacks/lms/courseware/courses.py new file mode 100644 index 0000000000..c84060a93f --- /dev/null +++ b/sys_path_hacks/lms/courseware/courses.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing courseware.courses instead of lms.djangoapps.courseware.courses is deprecated", stacklevel=2) + +from lms.djangoapps.courseware.courses import * diff --git a/sys_path_hacks/lms/courseware/courseware_access_exception.py b/sys_path_hacks/lms/courseware/courseware_access_exception.py new file mode 100644 index 0000000000..c9deb72e94 --- /dev/null +++ b/sys_path_hacks/lms/courseware/courseware_access_exception.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing courseware.courseware_access_exception instead of lms.djangoapps.courseware.courseware_access_exception is deprecated", stacklevel=2) + +from lms.djangoapps.courseware.courseware_access_exception import * diff --git a/sys_path_hacks/lms/courseware/date_summary.py b/sys_path_hacks/lms/courseware/date_summary.py new file mode 100644 index 0000000000..31cfd86f4d --- /dev/null +++ b/sys_path_hacks/lms/courseware/date_summary.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing courseware.date_summary instead of lms.djangoapps.courseware.date_summary is deprecated", stacklevel=2) + +from lms.djangoapps.courseware.date_summary import * diff --git a/sys_path_hacks/lms/courseware/entrance_exams.py b/sys_path_hacks/lms/courseware/entrance_exams.py new file mode 100644 index 0000000000..d4360c6d11 --- /dev/null +++ b/sys_path_hacks/lms/courseware/entrance_exams.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing courseware.entrance_exams instead of lms.djangoapps.courseware.entrance_exams is deprecated", stacklevel=2) + +from lms.djangoapps.courseware.entrance_exams import * diff --git a/sys_path_hacks/lms/courseware/exceptions.py b/sys_path_hacks/lms/courseware/exceptions.py new file mode 100644 index 0000000000..de6cd171ae --- /dev/null +++ b/sys_path_hacks/lms/courseware/exceptions.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing courseware.exceptions instead of lms.djangoapps.courseware.exceptions is deprecated", stacklevel=2) + +from lms.djangoapps.courseware.exceptions import * diff --git a/sys_path_hacks/lms/courseware/field_overrides.py b/sys_path_hacks/lms/courseware/field_overrides.py new file mode 100644 index 0000000000..3337cf133a --- /dev/null +++ b/sys_path_hacks/lms/courseware/field_overrides.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing courseware.field_overrides instead of lms.djangoapps.courseware.field_overrides is deprecated", stacklevel=2) + +from lms.djangoapps.courseware.field_overrides import * diff --git a/sys_path_hacks/lms/courseware/fields.py b/sys_path_hacks/lms/courseware/fields.py new file mode 100644 index 0000000000..6211a6eddd --- /dev/null +++ b/sys_path_hacks/lms/courseware/fields.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing courseware.fields instead of lms.djangoapps.courseware.fields is deprecated", stacklevel=2) + +from lms.djangoapps.courseware.fields import * diff --git a/sys_path_hacks/lms/courseware/management/__init__.py b/sys_path_hacks/lms/courseware/management/__init__.py new file mode 100644 index 0000000000..dc114a65ca --- /dev/null +++ b/sys_path_hacks/lms/courseware/management/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing courseware.management instead of lms.djangoapps.courseware.management is deprecated", stacklevel=2) + +from lms.djangoapps.courseware.management import * diff --git a/sys_path_hacks/lms/courseware/management/commands/__init__.py b/sys_path_hacks/lms/courseware/management/commands/__init__.py new file mode 100644 index 0000000000..eb3efca18e --- /dev/null +++ b/sys_path_hacks/lms/courseware/management/commands/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing courseware.management.commands instead of lms.djangoapps.courseware.management.commands is deprecated", stacklevel=2) + +from lms.djangoapps.courseware.management.commands import * diff --git a/sys_path_hacks/lms/courseware/management/commands/clean_xml.py b/sys_path_hacks/lms/courseware/management/commands/clean_xml.py new file mode 100644 index 0000000000..c6c83e2d2d --- /dev/null +++ b/sys_path_hacks/lms/courseware/management/commands/clean_xml.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing courseware.management.commands.clean_xml instead of lms.djangoapps.courseware.management.commands.clean_xml is deprecated", stacklevel=2) + +from lms.djangoapps.courseware.management.commands.clean_xml import * diff --git a/sys_path_hacks/lms/courseware/management/commands/dump_course_ids.py b/sys_path_hacks/lms/courseware/management/commands/dump_course_ids.py new file mode 100644 index 0000000000..c816b9b06c --- /dev/null +++ b/sys_path_hacks/lms/courseware/management/commands/dump_course_ids.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing courseware.management.commands.dump_course_ids instead of lms.djangoapps.courseware.management.commands.dump_course_ids is deprecated", stacklevel=2) + +from lms.djangoapps.courseware.management.commands.dump_course_ids import * diff --git a/sys_path_hacks/lms/courseware/management/commands/dump_course_structure.py b/sys_path_hacks/lms/courseware/management/commands/dump_course_structure.py new file mode 100644 index 0000000000..ac705322f9 --- /dev/null +++ b/sys_path_hacks/lms/courseware/management/commands/dump_course_structure.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing courseware.management.commands.dump_course_structure instead of lms.djangoapps.courseware.management.commands.dump_course_structure is deprecated", stacklevel=2) + +from lms.djangoapps.courseware.management.commands.dump_course_structure import * diff --git a/sys_path_hacks/lms/courseware/management/commands/import.py b/sys_path_hacks/lms/courseware/management/commands/import.py new file mode 100644 index 0000000000..eda4034311 --- /dev/null +++ b/sys_path_hacks/lms/courseware/management/commands/import.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing courseware.management.commands.import instead of lms.djangoapps.courseware.management.commands.import is deprecated", stacklevel=2) + +from lms.djangoapps.courseware.management.commands.import import * diff --git a/sys_path_hacks/lms/courseware/management/commands/tests/__init__.py b/sys_path_hacks/lms/courseware/management/commands/tests/__init__.py new file mode 100644 index 0000000000..9cfd1eee1f --- /dev/null +++ b/sys_path_hacks/lms/courseware/management/commands/tests/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing courseware.management.commands.tests instead of lms.djangoapps.courseware.management.commands.tests is deprecated", stacklevel=2) + +from lms.djangoapps.courseware.management.commands.tests import * diff --git a/sys_path_hacks/lms/courseware/management/commands/tests/test_dump_course.py b/sys_path_hacks/lms/courseware/management/commands/tests/test_dump_course.py new file mode 100644 index 0000000000..dea6bf1b0f --- /dev/null +++ b/sys_path_hacks/lms/courseware/management/commands/tests/test_dump_course.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing courseware.management.commands.tests.test_dump_course instead of lms.djangoapps.courseware.management.commands.tests.test_dump_course is deprecated", stacklevel=2) + +from lms.djangoapps.courseware.management.commands.tests.test_dump_course import * diff --git a/sys_path_hacks/lms/courseware/masquerade.py b/sys_path_hacks/lms/courseware/masquerade.py new file mode 100644 index 0000000000..f1a7524b97 --- /dev/null +++ b/sys_path_hacks/lms/courseware/masquerade.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing courseware.masquerade instead of lms.djangoapps.courseware.masquerade is deprecated", stacklevel=2) + +from lms.djangoapps.courseware.masquerade import * diff --git a/sys_path_hacks/lms/courseware/middleware.py b/sys_path_hacks/lms/courseware/middleware.py new file mode 100644 index 0000000000..58634a0f0c --- /dev/null +++ b/sys_path_hacks/lms/courseware/middleware.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing courseware.middleware instead of lms.djangoapps.courseware.middleware is deprecated", stacklevel=2) + +from lms.djangoapps.courseware.middleware import * diff --git a/sys_path_hacks/lms/courseware/model_data.py b/sys_path_hacks/lms/courseware/model_data.py new file mode 100644 index 0000000000..249ba3579d --- /dev/null +++ b/sys_path_hacks/lms/courseware/model_data.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing courseware.model_data instead of lms.djangoapps.courseware.model_data is deprecated", stacklevel=2) + +from lms.djangoapps.courseware.model_data import * diff --git a/sys_path_hacks/lms/courseware/models.py b/sys_path_hacks/lms/courseware/models.py new file mode 100644 index 0000000000..950af6274c --- /dev/null +++ b/sys_path_hacks/lms/courseware/models.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing courseware.models instead of lms.djangoapps.courseware.models is deprecated", stacklevel=2) + +from lms.djangoapps.courseware.models import * diff --git a/sys_path_hacks/lms/courseware/module_render.py b/sys_path_hacks/lms/courseware/module_render.py new file mode 100644 index 0000000000..e834e35cdc --- /dev/null +++ b/sys_path_hacks/lms/courseware/module_render.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing courseware.module_render instead of lms.djangoapps.courseware.module_render is deprecated", stacklevel=2) + +from lms.djangoapps.courseware.module_render import * diff --git a/sys_path_hacks/lms/courseware/permissions.py b/sys_path_hacks/lms/courseware/permissions.py new file mode 100644 index 0000000000..5be7d19b58 --- /dev/null +++ b/sys_path_hacks/lms/courseware/permissions.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing courseware.permissions instead of lms.djangoapps.courseware.permissions is deprecated", stacklevel=2) + +from lms.djangoapps.courseware.permissions import * diff --git a/sys_path_hacks/lms/courseware/rules.py b/sys_path_hacks/lms/courseware/rules.py new file mode 100644 index 0000000000..39c4453be5 --- /dev/null +++ b/sys_path_hacks/lms/courseware/rules.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing courseware.rules instead of lms.djangoapps.courseware.rules is deprecated", stacklevel=2) + +from lms.djangoapps.courseware.rules import * diff --git a/sys_path_hacks/lms/courseware/self_paced_overrides.py b/sys_path_hacks/lms/courseware/self_paced_overrides.py new file mode 100644 index 0000000000..606b08722b --- /dev/null +++ b/sys_path_hacks/lms/courseware/self_paced_overrides.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing courseware.self_paced_overrides instead of lms.djangoapps.courseware.self_paced_overrides is deprecated", stacklevel=2) + +from lms.djangoapps.courseware.self_paced_overrides import * diff --git a/sys_path_hacks/lms/courseware/services.py b/sys_path_hacks/lms/courseware/services.py new file mode 100644 index 0000000000..8be1b7e0b8 --- /dev/null +++ b/sys_path_hacks/lms/courseware/services.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing courseware.services instead of lms.djangoapps.courseware.services is deprecated", stacklevel=2) + +from lms.djangoapps.courseware.services import * diff --git a/sys_path_hacks/lms/courseware/student_field_overrides.py b/sys_path_hacks/lms/courseware/student_field_overrides.py new file mode 100644 index 0000000000..86e643afd3 --- /dev/null +++ b/sys_path_hacks/lms/courseware/student_field_overrides.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing courseware.student_field_overrides instead of lms.djangoapps.courseware.student_field_overrides is deprecated", stacklevel=2) + +from lms.djangoapps.courseware.student_field_overrides import * diff --git a/sys_path_hacks/lms/courseware/tabs.py b/sys_path_hacks/lms/courseware/tabs.py new file mode 100644 index 0000000000..21e40b8b09 --- /dev/null +++ b/sys_path_hacks/lms/courseware/tabs.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing courseware.tabs instead of lms.djangoapps.courseware.tabs is deprecated", stacklevel=2) + +from lms.djangoapps.courseware.tabs import * diff --git a/sys_path_hacks/lms/courseware/tests/__init__.py b/sys_path_hacks/lms/courseware/tests/__init__.py new file mode 100644 index 0000000000..a14bf935a3 --- /dev/null +++ b/sys_path_hacks/lms/courseware/tests/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing courseware.tests instead of lms.djangoapps.courseware.tests is deprecated", stacklevel=2) + +from lms.djangoapps.courseware.tests import * diff --git a/sys_path_hacks/lms/courseware/tests/animport.py b/sys_path_hacks/lms/courseware/tests/animport.py new file mode 100644 index 0000000000..d137e5f809 --- /dev/null +++ b/sys_path_hacks/lms/courseware/tests/animport.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing courseware.tests.animport instead of lms.djangoapps.courseware.tests.animport is deprecated", stacklevel=2) + +from lms.djangoapps.courseware.tests.animport import * diff --git a/sys_path_hacks/lms/courseware/tests/factories.py b/sys_path_hacks/lms/courseware/tests/factories.py new file mode 100644 index 0000000000..fef7efd48d --- /dev/null +++ b/sys_path_hacks/lms/courseware/tests/factories.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing courseware.tests.factories instead of lms.djangoapps.courseware.tests.factories is deprecated", stacklevel=2) + +from lms.djangoapps.courseware.tests.factories import * diff --git a/sys_path_hacks/lms/courseware/tests/helpers.py b/sys_path_hacks/lms/courseware/tests/helpers.py new file mode 100644 index 0000000000..7656c2fecc --- /dev/null +++ b/sys_path_hacks/lms/courseware/tests/helpers.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing courseware.tests.helpers instead of lms.djangoapps.courseware.tests.helpers is deprecated", stacklevel=2) + +from lms.djangoapps.courseware.tests.helpers import * diff --git a/sys_path_hacks/lms/courseware/tests/test_about.py b/sys_path_hacks/lms/courseware/tests/test_about.py new file mode 100644 index 0000000000..9ef477cdc0 --- /dev/null +++ b/sys_path_hacks/lms/courseware/tests/test_about.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing courseware.tests.test_about instead of lms.djangoapps.courseware.tests.test_about is deprecated", stacklevel=2) + +from lms.djangoapps.courseware.tests.test_about import * diff --git a/sys_path_hacks/lms/courseware/tests/test_access.py b/sys_path_hacks/lms/courseware/tests/test_access.py new file mode 100644 index 0000000000..5ebef66fef --- /dev/null +++ b/sys_path_hacks/lms/courseware/tests/test_access.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing courseware.tests.test_access instead of lms.djangoapps.courseware.tests.test_access is deprecated", stacklevel=2) + +from lms.djangoapps.courseware.tests.test_access import * diff --git a/sys_path_hacks/lms/courseware/tests/test_comprehensive_theming.py b/sys_path_hacks/lms/courseware/tests/test_comprehensive_theming.py new file mode 100644 index 0000000000..089a698fe9 --- /dev/null +++ b/sys_path_hacks/lms/courseware/tests/test_comprehensive_theming.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing courseware.tests.test_comprehensive_theming instead of lms.djangoapps.courseware.tests.test_comprehensive_theming is deprecated", stacklevel=2) + +from lms.djangoapps.courseware.tests.test_comprehensive_theming import * diff --git a/sys_path_hacks/lms/courseware/tests/test_context_processor.py b/sys_path_hacks/lms/courseware/tests/test_context_processor.py new file mode 100644 index 0000000000..953a55fd51 --- /dev/null +++ b/sys_path_hacks/lms/courseware/tests/test_context_processor.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing courseware.tests.test_context_processor instead of lms.djangoapps.courseware.tests.test_context_processor is deprecated", stacklevel=2) + +from lms.djangoapps.courseware.tests.test_context_processor import * diff --git a/sys_path_hacks/lms/courseware/tests/test_course_info.py b/sys_path_hacks/lms/courseware/tests/test_course_info.py new file mode 100644 index 0000000000..2dfa2778b5 --- /dev/null +++ b/sys_path_hacks/lms/courseware/tests/test_course_info.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing courseware.tests.test_course_info instead of lms.djangoapps.courseware.tests.test_course_info is deprecated", stacklevel=2) + +from lms.djangoapps.courseware.tests.test_course_info import * diff --git a/sys_path_hacks/lms/courseware/tests/test_course_survey.py b/sys_path_hacks/lms/courseware/tests/test_course_survey.py new file mode 100644 index 0000000000..e793b4be81 --- /dev/null +++ b/sys_path_hacks/lms/courseware/tests/test_course_survey.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing courseware.tests.test_course_survey instead of lms.djangoapps.courseware.tests.test_course_survey is deprecated", stacklevel=2) + +from lms.djangoapps.courseware.tests.test_course_survey import * diff --git a/sys_path_hacks/lms/courseware/tests/test_course_tools.py b/sys_path_hacks/lms/courseware/tests/test_course_tools.py new file mode 100644 index 0000000000..382104bb04 --- /dev/null +++ b/sys_path_hacks/lms/courseware/tests/test_course_tools.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing courseware.tests.test_course_tools instead of lms.djangoapps.courseware.tests.test_course_tools is deprecated", stacklevel=2) + +from lms.djangoapps.courseware.tests.test_course_tools import * diff --git a/sys_path_hacks/lms/courseware/tests/test_courses.py b/sys_path_hacks/lms/courseware/tests/test_courses.py new file mode 100644 index 0000000000..cee3d8210f --- /dev/null +++ b/sys_path_hacks/lms/courseware/tests/test_courses.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing courseware.tests.test_courses instead of lms.djangoapps.courseware.tests.test_courses is deprecated", stacklevel=2) + +from lms.djangoapps.courseware.tests.test_courses import * diff --git a/sys_path_hacks/lms/courseware/tests/test_credit_requirements.py b/sys_path_hacks/lms/courseware/tests/test_credit_requirements.py new file mode 100644 index 0000000000..512ec89055 --- /dev/null +++ b/sys_path_hacks/lms/courseware/tests/test_credit_requirements.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing courseware.tests.test_credit_requirements instead of lms.djangoapps.courseware.tests.test_credit_requirements is deprecated", stacklevel=2) + +from lms.djangoapps.courseware.tests.test_credit_requirements import * diff --git a/sys_path_hacks/lms/courseware/tests/test_date_summary.py b/sys_path_hacks/lms/courseware/tests/test_date_summary.py new file mode 100644 index 0000000000..bdffc7243b --- /dev/null +++ b/sys_path_hacks/lms/courseware/tests/test_date_summary.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing courseware.tests.test_date_summary instead of lms.djangoapps.courseware.tests.test_date_summary is deprecated", stacklevel=2) + +from lms.djangoapps.courseware.tests.test_date_summary import * diff --git a/sys_path_hacks/lms/courseware/tests/test_discussion_xblock.py b/sys_path_hacks/lms/courseware/tests/test_discussion_xblock.py new file mode 100644 index 0000000000..81f45b111b --- /dev/null +++ b/sys_path_hacks/lms/courseware/tests/test_discussion_xblock.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing courseware.tests.test_discussion_xblock instead of lms.djangoapps.courseware.tests.test_discussion_xblock is deprecated", stacklevel=2) + +from lms.djangoapps.courseware.tests.test_discussion_xblock import * diff --git a/sys_path_hacks/lms/courseware/tests/test_draft_modulestore.py b/sys_path_hacks/lms/courseware/tests/test_draft_modulestore.py new file mode 100644 index 0000000000..561e2266eb --- /dev/null +++ b/sys_path_hacks/lms/courseware/tests/test_draft_modulestore.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing courseware.tests.test_draft_modulestore instead of lms.djangoapps.courseware.tests.test_draft_modulestore is deprecated", stacklevel=2) + +from lms.djangoapps.courseware.tests.test_draft_modulestore import * diff --git a/sys_path_hacks/lms/courseware/tests/test_entrance_exam.py b/sys_path_hacks/lms/courseware/tests/test_entrance_exam.py new file mode 100644 index 0000000000..feb4b9cbc4 --- /dev/null +++ b/sys_path_hacks/lms/courseware/tests/test_entrance_exam.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing courseware.tests.test_entrance_exam instead of lms.djangoapps.courseware.tests.test_entrance_exam is deprecated", stacklevel=2) + +from lms.djangoapps.courseware.tests.test_entrance_exam import * diff --git a/sys_path_hacks/lms/courseware/tests/test_favicon.py b/sys_path_hacks/lms/courseware/tests/test_favicon.py new file mode 100644 index 0000000000..42bb851064 --- /dev/null +++ b/sys_path_hacks/lms/courseware/tests/test_favicon.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing courseware.tests.test_favicon instead of lms.djangoapps.courseware.tests.test_favicon is deprecated", stacklevel=2) + +from lms.djangoapps.courseware.tests.test_favicon import * diff --git a/sys_path_hacks/lms/courseware/tests/test_field_overrides.py b/sys_path_hacks/lms/courseware/tests/test_field_overrides.py new file mode 100644 index 0000000000..69a796bb65 --- /dev/null +++ b/sys_path_hacks/lms/courseware/tests/test_field_overrides.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing courseware.tests.test_field_overrides instead of lms.djangoapps.courseware.tests.test_field_overrides is deprecated", stacklevel=2) + +from lms.djangoapps.courseware.tests.test_field_overrides import * diff --git a/sys_path_hacks/lms/courseware/tests/test_footer.py b/sys_path_hacks/lms/courseware/tests/test_footer.py new file mode 100644 index 0000000000..7c852a0385 --- /dev/null +++ b/sys_path_hacks/lms/courseware/tests/test_footer.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing courseware.tests.test_footer instead of lms.djangoapps.courseware.tests.test_footer is deprecated", stacklevel=2) + +from lms.djangoapps.courseware.tests.test_footer import * diff --git a/sys_path_hacks/lms/courseware/tests/test_group_access.py b/sys_path_hacks/lms/courseware/tests/test_group_access.py new file mode 100644 index 0000000000..c63244142f --- /dev/null +++ b/sys_path_hacks/lms/courseware/tests/test_group_access.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing courseware.tests.test_group_access instead of lms.djangoapps.courseware.tests.test_group_access is deprecated", stacklevel=2) + +from lms.djangoapps.courseware.tests.test_group_access import * diff --git a/sys_path_hacks/lms/courseware/tests/test_i18n.py b/sys_path_hacks/lms/courseware/tests/test_i18n.py new file mode 100644 index 0000000000..9d00f2e5c0 --- /dev/null +++ b/sys_path_hacks/lms/courseware/tests/test_i18n.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing courseware.tests.test_i18n instead of lms.djangoapps.courseware.tests.test_i18n is deprecated", stacklevel=2) + +from lms.djangoapps.courseware.tests.test_i18n import * diff --git a/sys_path_hacks/lms/courseware/tests/test_lti_integration.py b/sys_path_hacks/lms/courseware/tests/test_lti_integration.py new file mode 100644 index 0000000000..12418ced13 --- /dev/null +++ b/sys_path_hacks/lms/courseware/tests/test_lti_integration.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing courseware.tests.test_lti_integration instead of lms.djangoapps.courseware.tests.test_lti_integration is deprecated", stacklevel=2) + +from lms.djangoapps.courseware.tests.test_lti_integration import * diff --git a/sys_path_hacks/lms/courseware/tests/test_masquerade.py b/sys_path_hacks/lms/courseware/tests/test_masquerade.py new file mode 100644 index 0000000000..468a6538dc --- /dev/null +++ b/sys_path_hacks/lms/courseware/tests/test_masquerade.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing courseware.tests.test_masquerade instead of lms.djangoapps.courseware.tests.test_masquerade is deprecated", stacklevel=2) + +from lms.djangoapps.courseware.tests.test_masquerade import * diff --git a/sys_path_hacks/lms/courseware/tests/test_middleware.py b/sys_path_hacks/lms/courseware/tests/test_middleware.py new file mode 100644 index 0000000000..4692c0f803 --- /dev/null +++ b/sys_path_hacks/lms/courseware/tests/test_middleware.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing courseware.tests.test_middleware instead of lms.djangoapps.courseware.tests.test_middleware is deprecated", stacklevel=2) + +from lms.djangoapps.courseware.tests.test_middleware import * diff --git a/sys_path_hacks/lms/courseware/tests/test_model_data.py b/sys_path_hacks/lms/courseware/tests/test_model_data.py new file mode 100644 index 0000000000..d1eed6157c --- /dev/null +++ b/sys_path_hacks/lms/courseware/tests/test_model_data.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing courseware.tests.test_model_data instead of lms.djangoapps.courseware.tests.test_model_data is deprecated", stacklevel=2) + +from lms.djangoapps.courseware.tests.test_model_data import * diff --git a/sys_path_hacks/lms/courseware/tests/test_module_render.py b/sys_path_hacks/lms/courseware/tests/test_module_render.py new file mode 100644 index 0000000000..97727d4b16 --- /dev/null +++ b/sys_path_hacks/lms/courseware/tests/test_module_render.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing courseware.tests.test_module_render instead of lms.djangoapps.courseware.tests.test_module_render is deprecated", stacklevel=2) + +from lms.djangoapps.courseware.tests.test_module_render import * diff --git a/sys_path_hacks/lms/courseware/tests/test_navigation.py b/sys_path_hacks/lms/courseware/tests/test_navigation.py new file mode 100644 index 0000000000..591c335c8b --- /dev/null +++ b/sys_path_hacks/lms/courseware/tests/test_navigation.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing courseware.tests.test_navigation instead of lms.djangoapps.courseware.tests.test_navigation is deprecated", stacklevel=2) + +from lms.djangoapps.courseware.tests.test_navigation import * diff --git a/sys_path_hacks/lms/courseware/tests/test_rules.py b/sys_path_hacks/lms/courseware/tests/test_rules.py new file mode 100644 index 0000000000..877c862b92 --- /dev/null +++ b/sys_path_hacks/lms/courseware/tests/test_rules.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing courseware.tests.test_rules instead of lms.djangoapps.courseware.tests.test_rules is deprecated", stacklevel=2) + +from lms.djangoapps.courseware.tests.test_rules import * diff --git a/sys_path_hacks/lms/courseware/tests/test_self_paced_overrides.py b/sys_path_hacks/lms/courseware/tests/test_self_paced_overrides.py new file mode 100644 index 0000000000..3af3d109fb --- /dev/null +++ b/sys_path_hacks/lms/courseware/tests/test_self_paced_overrides.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing courseware.tests.test_self_paced_overrides instead of lms.djangoapps.courseware.tests.test_self_paced_overrides is deprecated", stacklevel=2) + +from lms.djangoapps.courseware.tests.test_self_paced_overrides import * diff --git a/sys_path_hacks/lms/courseware/tests/test_services.py b/sys_path_hacks/lms/courseware/tests/test_services.py new file mode 100644 index 0000000000..69b8a85799 --- /dev/null +++ b/sys_path_hacks/lms/courseware/tests/test_services.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing courseware.tests.test_services instead of lms.djangoapps.courseware.tests.test_services is deprecated", stacklevel=2) + +from lms.djangoapps.courseware.tests.test_services import * diff --git a/sys_path_hacks/lms/courseware/tests/test_split_module.py b/sys_path_hacks/lms/courseware/tests/test_split_module.py new file mode 100644 index 0000000000..9ab85597fc --- /dev/null +++ b/sys_path_hacks/lms/courseware/tests/test_split_module.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing courseware.tests.test_split_module instead of lms.djangoapps.courseware.tests.test_split_module is deprecated", stacklevel=2) + +from lms.djangoapps.courseware.tests.test_split_module import * diff --git a/sys_path_hacks/lms/courseware/tests/test_submitting_problems.py b/sys_path_hacks/lms/courseware/tests/test_submitting_problems.py new file mode 100644 index 0000000000..1253842a08 --- /dev/null +++ b/sys_path_hacks/lms/courseware/tests/test_submitting_problems.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing courseware.tests.test_submitting_problems instead of lms.djangoapps.courseware.tests.test_submitting_problems is deprecated", stacklevel=2) + +from lms.djangoapps.courseware.tests.test_submitting_problems import * diff --git a/sys_path_hacks/lms/courseware/tests/test_tabs.py b/sys_path_hacks/lms/courseware/tests/test_tabs.py new file mode 100644 index 0000000000..6d2a946709 --- /dev/null +++ b/sys_path_hacks/lms/courseware/tests/test_tabs.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing courseware.tests.test_tabs instead of lms.djangoapps.courseware.tests.test_tabs is deprecated", stacklevel=2) + +from lms.djangoapps.courseware.tests.test_tabs import * diff --git a/sys_path_hacks/lms/courseware/tests/test_user_state_client.py b/sys_path_hacks/lms/courseware/tests/test_user_state_client.py new file mode 100644 index 0000000000..14718ebaf0 --- /dev/null +++ b/sys_path_hacks/lms/courseware/tests/test_user_state_client.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing courseware.tests.test_user_state_client instead of lms.djangoapps.courseware.tests.test_user_state_client is deprecated", stacklevel=2) + +from lms.djangoapps.courseware.tests.test_user_state_client import * diff --git a/sys_path_hacks/lms/courseware/tests/test_video_handlers.py b/sys_path_hacks/lms/courseware/tests/test_video_handlers.py new file mode 100644 index 0000000000..80d1685b94 --- /dev/null +++ b/sys_path_hacks/lms/courseware/tests/test_video_handlers.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing courseware.tests.test_video_handlers instead of lms.djangoapps.courseware.tests.test_video_handlers is deprecated", stacklevel=2) + +from lms.djangoapps.courseware.tests.test_video_handlers import * diff --git a/sys_path_hacks/lms/courseware/tests/test_video_mongo.py b/sys_path_hacks/lms/courseware/tests/test_video_mongo.py new file mode 100644 index 0000000000..e3890b4fab --- /dev/null +++ b/sys_path_hacks/lms/courseware/tests/test_video_mongo.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing courseware.tests.test_video_mongo instead of lms.djangoapps.courseware.tests.test_video_mongo is deprecated", stacklevel=2) + +from lms.djangoapps.courseware.tests.test_video_mongo import * diff --git a/sys_path_hacks/lms/courseware/tests/test_video_xml.py b/sys_path_hacks/lms/courseware/tests/test_video_xml.py new file mode 100644 index 0000000000..91d74a3562 --- /dev/null +++ b/sys_path_hacks/lms/courseware/tests/test_video_xml.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing courseware.tests.test_video_xml instead of lms.djangoapps.courseware.tests.test_video_xml is deprecated", stacklevel=2) + +from lms.djangoapps.courseware.tests.test_video_xml import * diff --git a/sys_path_hacks/lms/courseware/tests/test_view_authentication.py b/sys_path_hacks/lms/courseware/tests/test_view_authentication.py new file mode 100644 index 0000000000..b960b822d5 --- /dev/null +++ b/sys_path_hacks/lms/courseware/tests/test_view_authentication.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing courseware.tests.test_view_authentication instead of lms.djangoapps.courseware.tests.test_view_authentication is deprecated", stacklevel=2) + +from lms.djangoapps.courseware.tests.test_view_authentication import * diff --git a/sys_path_hacks/lms/courseware/tests/test_views.py b/sys_path_hacks/lms/courseware/tests/test_views.py new file mode 100644 index 0000000000..20e95a7b40 --- /dev/null +++ b/sys_path_hacks/lms/courseware/tests/test_views.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing courseware.tests.test_views instead of lms.djangoapps.courseware.tests.test_views is deprecated", stacklevel=2) + +from lms.djangoapps.courseware.tests.test_views import * diff --git a/sys_path_hacks/lms/courseware/tests/test_word_cloud.py b/sys_path_hacks/lms/courseware/tests/test_word_cloud.py new file mode 100644 index 0000000000..dd65377ced --- /dev/null +++ b/sys_path_hacks/lms/courseware/tests/test_word_cloud.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing courseware.tests.test_word_cloud instead of lms.djangoapps.courseware.tests.test_word_cloud is deprecated", stacklevel=2) + +from lms.djangoapps.courseware.tests.test_word_cloud import * diff --git a/sys_path_hacks/lms/courseware/tests/tests.py b/sys_path_hacks/lms/courseware/tests/tests.py new file mode 100644 index 0000000000..ca4bb5f71f --- /dev/null +++ b/sys_path_hacks/lms/courseware/tests/tests.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing courseware.tests.tests instead of lms.djangoapps.courseware.tests.tests is deprecated", stacklevel=2) + +from lms.djangoapps.courseware.tests.tests import * diff --git a/sys_path_hacks/lms/courseware/testutils.py b/sys_path_hacks/lms/courseware/testutils.py new file mode 100644 index 0000000000..29469b3063 --- /dev/null +++ b/sys_path_hacks/lms/courseware/testutils.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing courseware.testutils instead of lms.djangoapps.courseware.testutils is deprecated", stacklevel=2) + +from lms.djangoapps.courseware.testutils import * diff --git a/sys_path_hacks/lms/courseware/toggles.py b/sys_path_hacks/lms/courseware/toggles.py new file mode 100644 index 0000000000..85e9745701 --- /dev/null +++ b/sys_path_hacks/lms/courseware/toggles.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing courseware.toggles instead of lms.djangoapps.courseware.toggles is deprecated", stacklevel=2) + +from lms.djangoapps.courseware.toggles import * diff --git a/sys_path_hacks/lms/courseware/transformers.py b/sys_path_hacks/lms/courseware/transformers.py new file mode 100644 index 0000000000..42f6b3548c --- /dev/null +++ b/sys_path_hacks/lms/courseware/transformers.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing courseware.transformers instead of lms.djangoapps.courseware.transformers is deprecated", stacklevel=2) + +from lms.djangoapps.courseware.transformers import * diff --git a/sys_path_hacks/lms/courseware/url_helpers.py b/sys_path_hacks/lms/courseware/url_helpers.py new file mode 100644 index 0000000000..35bd1419fc --- /dev/null +++ b/sys_path_hacks/lms/courseware/url_helpers.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing courseware.url_helpers instead of lms.djangoapps.courseware.url_helpers is deprecated", stacklevel=2) + +from lms.djangoapps.courseware.url_helpers import * diff --git a/sys_path_hacks/lms/courseware/user_state_client.py b/sys_path_hacks/lms/courseware/user_state_client.py new file mode 100644 index 0000000000..3fb6be1bd0 --- /dev/null +++ b/sys_path_hacks/lms/courseware/user_state_client.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing courseware.user_state_client instead of lms.djangoapps.courseware.user_state_client is deprecated", stacklevel=2) + +from lms.djangoapps.courseware.user_state_client import * diff --git a/sys_path_hacks/lms/courseware/utils.py b/sys_path_hacks/lms/courseware/utils.py new file mode 100644 index 0000000000..25c9d237dd --- /dev/null +++ b/sys_path_hacks/lms/courseware/utils.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing courseware.utils instead of lms.djangoapps.courseware.utils is deprecated", stacklevel=2) + +from lms.djangoapps.courseware.utils import * diff --git a/sys_path_hacks/lms/courseware/views/__init__.py b/sys_path_hacks/lms/courseware/views/__init__.py new file mode 100644 index 0000000000..4c848c8ab1 --- /dev/null +++ b/sys_path_hacks/lms/courseware/views/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing courseware.views instead of lms.djangoapps.courseware.views is deprecated", stacklevel=2) + +from lms.djangoapps.courseware.views import * diff --git a/sys_path_hacks/lms/courseware/views/index.py b/sys_path_hacks/lms/courseware/views/index.py new file mode 100644 index 0000000000..7b467b4b56 --- /dev/null +++ b/sys_path_hacks/lms/courseware/views/index.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing courseware.views.index instead of lms.djangoapps.courseware.views.index is deprecated", stacklevel=2) + +from lms.djangoapps.courseware.views.index import * diff --git a/sys_path_hacks/lms/courseware/views/views.py b/sys_path_hacks/lms/courseware/views/views.py new file mode 100644 index 0000000000..d173fdd4c3 --- /dev/null +++ b/sys_path_hacks/lms/courseware/views/views.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing courseware.views.views instead of lms.djangoapps.courseware.views.views is deprecated", stacklevel=2) + +from lms.djangoapps.courseware.views.views import * diff --git a/sys_path_hacks/lms/coursewarehistoryextended/__init__.py b/sys_path_hacks/lms/coursewarehistoryextended/__init__.py new file mode 100644 index 0000000000..180eb4283a --- /dev/null +++ b/sys_path_hacks/lms/coursewarehistoryextended/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing coursewarehistoryextended instead of lms.djangoapps.coursewarehistoryextended is deprecated", stacklevel=2) + +from lms.djangoapps.coursewarehistoryextended import * diff --git a/sys_path_hacks/lms/coursewarehistoryextended/apps.py b/sys_path_hacks/lms/coursewarehistoryextended/apps.py new file mode 100644 index 0000000000..051348b874 --- /dev/null +++ b/sys_path_hacks/lms/coursewarehistoryextended/apps.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing coursewarehistoryextended.apps instead of lms.djangoapps.coursewarehistoryextended.apps is deprecated", stacklevel=2) + +from lms.djangoapps.coursewarehistoryextended.apps import * diff --git a/sys_path_hacks/lms/coursewarehistoryextended/models.py b/sys_path_hacks/lms/coursewarehistoryextended/models.py new file mode 100644 index 0000000000..9179390ee5 --- /dev/null +++ b/sys_path_hacks/lms/coursewarehistoryextended/models.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing coursewarehistoryextended.models instead of lms.djangoapps.coursewarehistoryextended.models is deprecated", stacklevel=2) + +from lms.djangoapps.coursewarehistoryextended.models import * diff --git a/sys_path_hacks/lms/coursewarehistoryextended/tests.py b/sys_path_hacks/lms/coursewarehistoryextended/tests.py new file mode 100644 index 0000000000..d9efdb34db --- /dev/null +++ b/sys_path_hacks/lms/coursewarehistoryextended/tests.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing coursewarehistoryextended.tests instead of lms.djangoapps.coursewarehistoryextended.tests is deprecated", stacklevel=2) + +from lms.djangoapps.coursewarehistoryextended.tests import * diff --git a/sys_path_hacks/lms/dashboard/__init__.py b/sys_path_hacks/lms/dashboard/__init__.py new file mode 100644 index 0000000000..f9fb2b06b1 --- /dev/null +++ b/sys_path_hacks/lms/dashboard/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing dashboard instead of lms.djangoapps.dashboard is deprecated", stacklevel=2) + +from lms.djangoapps.dashboard import * diff --git a/sys_path_hacks/lms/dashboard/git_import.py b/sys_path_hacks/lms/dashboard/git_import.py new file mode 100644 index 0000000000..ac27631875 --- /dev/null +++ b/sys_path_hacks/lms/dashboard/git_import.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing dashboard.git_import instead of lms.djangoapps.dashboard.git_import is deprecated", stacklevel=2) + +from lms.djangoapps.dashboard.git_import import * diff --git a/sys_path_hacks/lms/dashboard/management/__init__.py b/sys_path_hacks/lms/dashboard/management/__init__.py new file mode 100644 index 0000000000..07d8ba58c7 --- /dev/null +++ b/sys_path_hacks/lms/dashboard/management/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing dashboard.management instead of lms.djangoapps.dashboard.management is deprecated", stacklevel=2) + +from lms.djangoapps.dashboard.management import * diff --git a/sys_path_hacks/lms/dashboard/management/commands/__init__.py b/sys_path_hacks/lms/dashboard/management/commands/__init__.py new file mode 100644 index 0000000000..1a074f23c7 --- /dev/null +++ b/sys_path_hacks/lms/dashboard/management/commands/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing dashboard.management.commands instead of lms.djangoapps.dashboard.management.commands is deprecated", stacklevel=2) + +from lms.djangoapps.dashboard.management.commands import * diff --git a/sys_path_hacks/lms/dashboard/management/commands/git_add_course.py b/sys_path_hacks/lms/dashboard/management/commands/git_add_course.py new file mode 100644 index 0000000000..04529a47f4 --- /dev/null +++ b/sys_path_hacks/lms/dashboard/management/commands/git_add_course.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing dashboard.management.commands.git_add_course instead of lms.djangoapps.dashboard.management.commands.git_add_course is deprecated", stacklevel=2) + +from lms.djangoapps.dashboard.management.commands.git_add_course import * diff --git a/sys_path_hacks/lms/dashboard/management/commands/tests/__init__.py b/sys_path_hacks/lms/dashboard/management/commands/tests/__init__.py new file mode 100644 index 0000000000..fd1ce5b322 --- /dev/null +++ b/sys_path_hacks/lms/dashboard/management/commands/tests/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing dashboard.management.commands.tests instead of lms.djangoapps.dashboard.management.commands.tests is deprecated", stacklevel=2) + +from lms.djangoapps.dashboard.management.commands.tests import * diff --git a/sys_path_hacks/lms/dashboard/management/commands/tests/test_git_add_course.py b/sys_path_hacks/lms/dashboard/management/commands/tests/test_git_add_course.py new file mode 100644 index 0000000000..d9d64385dc --- /dev/null +++ b/sys_path_hacks/lms/dashboard/management/commands/tests/test_git_add_course.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing dashboard.management.commands.tests.test_git_add_course instead of lms.djangoapps.dashboard.management.commands.tests.test_git_add_course is deprecated", stacklevel=2) + +from lms.djangoapps.dashboard.management.commands.tests.test_git_add_course import * diff --git a/sys_path_hacks/lms/dashboard/models.py b/sys_path_hacks/lms/dashboard/models.py new file mode 100644 index 0000000000..4bc6cea84d --- /dev/null +++ b/sys_path_hacks/lms/dashboard/models.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing dashboard.models instead of lms.djangoapps.dashboard.models is deprecated", stacklevel=2) + +from lms.djangoapps.dashboard.models import * diff --git a/sys_path_hacks/lms/dashboard/sysadmin.py b/sys_path_hacks/lms/dashboard/sysadmin.py new file mode 100644 index 0000000000..0c61453c26 --- /dev/null +++ b/sys_path_hacks/lms/dashboard/sysadmin.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing dashboard.sysadmin instead of lms.djangoapps.dashboard.sysadmin is deprecated", stacklevel=2) + +from lms.djangoapps.dashboard.sysadmin import * diff --git a/sys_path_hacks/lms/dashboard/sysadmin_urls.py b/sys_path_hacks/lms/dashboard/sysadmin_urls.py new file mode 100644 index 0000000000..37497fce97 --- /dev/null +++ b/sys_path_hacks/lms/dashboard/sysadmin_urls.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing dashboard.sysadmin_urls instead of lms.djangoapps.dashboard.sysadmin_urls is deprecated", stacklevel=2) + +from lms.djangoapps.dashboard.sysadmin_urls import * diff --git a/sys_path_hacks/lms/dashboard/tests/__init__.py b/sys_path_hacks/lms/dashboard/tests/__init__.py new file mode 100644 index 0000000000..276a0db81c --- /dev/null +++ b/sys_path_hacks/lms/dashboard/tests/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing dashboard.tests instead of lms.djangoapps.dashboard.tests is deprecated", stacklevel=2) + +from lms.djangoapps.dashboard.tests import * diff --git a/sys_path_hacks/lms/dashboard/tests/test_sysadmin.py b/sys_path_hacks/lms/dashboard/tests/test_sysadmin.py new file mode 100644 index 0000000000..cf5bab8d53 --- /dev/null +++ b/sys_path_hacks/lms/dashboard/tests/test_sysadmin.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing dashboard.tests.test_sysadmin instead of lms.djangoapps.dashboard.tests.test_sysadmin is deprecated", stacklevel=2) + +from lms.djangoapps.dashboard.tests.test_sysadmin import * diff --git a/sys_path_hacks/lms/debug/__init__.py b/sys_path_hacks/lms/debug/__init__.py new file mode 100644 index 0000000000..60bd0003ca --- /dev/null +++ b/sys_path_hacks/lms/debug/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing debug instead of lms.djangoapps.debug is deprecated", stacklevel=2) + +from lms.djangoapps.debug import * diff --git a/sys_path_hacks/lms/debug/management/__init__.py b/sys_path_hacks/lms/debug/management/__init__.py new file mode 100644 index 0000000000..d7d8e33ea5 --- /dev/null +++ b/sys_path_hacks/lms/debug/management/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing debug.management instead of lms.djangoapps.debug.management is deprecated", stacklevel=2) + +from lms.djangoapps.debug.management import * diff --git a/sys_path_hacks/lms/debug/management/commands/__init__.py b/sys_path_hacks/lms/debug/management/commands/__init__.py new file mode 100644 index 0000000000..0c33b7f515 --- /dev/null +++ b/sys_path_hacks/lms/debug/management/commands/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing debug.management.commands instead of lms.djangoapps.debug.management.commands is deprecated", stacklevel=2) + +from lms.djangoapps.debug.management.commands import * diff --git a/sys_path_hacks/lms/debug/management/commands/dump_xml_courses.py b/sys_path_hacks/lms/debug/management/commands/dump_xml_courses.py new file mode 100644 index 0000000000..770e1c442a --- /dev/null +++ b/sys_path_hacks/lms/debug/management/commands/dump_xml_courses.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing debug.management.commands.dump_xml_courses instead of lms.djangoapps.debug.management.commands.dump_xml_courses is deprecated", stacklevel=2) + +from lms.djangoapps.debug.management.commands.dump_xml_courses import * diff --git a/sys_path_hacks/lms/debug/views.py b/sys_path_hacks/lms/debug/views.py new file mode 100644 index 0000000000..588157dd67 --- /dev/null +++ b/sys_path_hacks/lms/debug/views.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing debug.views instead of lms.djangoapps.debug.views is deprecated", stacklevel=2) + +from lms.djangoapps.debug.views import * diff --git a/sys_path_hacks/lms/discussion/__init__.py b/sys_path_hacks/lms/discussion/__init__.py new file mode 100644 index 0000000000..7d18488ee6 --- /dev/null +++ b/sys_path_hacks/lms/discussion/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing discussion instead of lms.djangoapps.discussion is deprecated", stacklevel=2) + +from lms.djangoapps.discussion import * diff --git a/sys_path_hacks/lms/discussion/apps.py b/sys_path_hacks/lms/discussion/apps.py new file mode 100644 index 0000000000..f0c62bd69b --- /dev/null +++ b/sys_path_hacks/lms/discussion/apps.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing discussion.apps instead of lms.djangoapps.discussion.apps is deprecated", stacklevel=2) + +from lms.djangoapps.discussion.apps import * diff --git a/sys_path_hacks/lms/discussion/config/__init__.py b/sys_path_hacks/lms/discussion/config/__init__.py new file mode 100644 index 0000000000..51976cf86c --- /dev/null +++ b/sys_path_hacks/lms/discussion/config/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing discussion.config instead of lms.djangoapps.discussion.config is deprecated", stacklevel=2) + +from lms.djangoapps.discussion.config import * diff --git a/sys_path_hacks/lms/discussion/config/settings.py b/sys_path_hacks/lms/discussion/config/settings.py new file mode 100644 index 0000000000..dd40562a32 --- /dev/null +++ b/sys_path_hacks/lms/discussion/config/settings.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing discussion.config.settings instead of lms.djangoapps.discussion.config.settings is deprecated", stacklevel=2) + +from lms.djangoapps.discussion.config.settings import * diff --git a/sys_path_hacks/lms/discussion/django_comment_client/__init__.py b/sys_path_hacks/lms/discussion/django_comment_client/__init__.py new file mode 100644 index 0000000000..dcfe0c8610 --- /dev/null +++ b/sys_path_hacks/lms/discussion/django_comment_client/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing discussion.django_comment_client instead of lms.djangoapps.discussion.django_comment_client is deprecated", stacklevel=2) + +from lms.djangoapps.discussion.django_comment_client import * diff --git a/sys_path_hacks/lms/discussion/django_comment_client/base/__init__.py b/sys_path_hacks/lms/discussion/django_comment_client/base/__init__.py new file mode 100644 index 0000000000..901107921c --- /dev/null +++ b/sys_path_hacks/lms/discussion/django_comment_client/base/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing discussion.django_comment_client.base instead of lms.djangoapps.discussion.django_comment_client.base is deprecated", stacklevel=2) + +from lms.djangoapps.discussion.django_comment_client.base import * diff --git a/sys_path_hacks/lms/discussion/django_comment_client/base/event_transformers.py b/sys_path_hacks/lms/discussion/django_comment_client/base/event_transformers.py new file mode 100644 index 0000000000..33593e0034 --- /dev/null +++ b/sys_path_hacks/lms/discussion/django_comment_client/base/event_transformers.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing discussion.django_comment_client.base.event_transformers instead of lms.djangoapps.discussion.django_comment_client.base.event_transformers is deprecated", stacklevel=2) + +from lms.djangoapps.discussion.django_comment_client.base.event_transformers import * diff --git a/sys_path_hacks/lms/discussion/django_comment_client/base/tests.py b/sys_path_hacks/lms/discussion/django_comment_client/base/tests.py new file mode 100644 index 0000000000..bed9ff7341 --- /dev/null +++ b/sys_path_hacks/lms/discussion/django_comment_client/base/tests.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing discussion.django_comment_client.base.tests instead of lms.djangoapps.discussion.django_comment_client.base.tests is deprecated", stacklevel=2) + +from lms.djangoapps.discussion.django_comment_client.base.tests import * diff --git a/sys_path_hacks/lms/discussion/django_comment_client/base/urls.py b/sys_path_hacks/lms/discussion/django_comment_client/base/urls.py new file mode 100644 index 0000000000..5bdccd3b01 --- /dev/null +++ b/sys_path_hacks/lms/discussion/django_comment_client/base/urls.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing discussion.django_comment_client.base.urls instead of lms.djangoapps.discussion.django_comment_client.base.urls is deprecated", stacklevel=2) + +from lms.djangoapps.discussion.django_comment_client.base.urls import * diff --git a/sys_path_hacks/lms/discussion/django_comment_client/base/views.py b/sys_path_hacks/lms/discussion/django_comment_client/base/views.py new file mode 100644 index 0000000000..c40565cd78 --- /dev/null +++ b/sys_path_hacks/lms/discussion/django_comment_client/base/views.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing discussion.django_comment_client.base.views instead of lms.djangoapps.discussion.django_comment_client.base.views is deprecated", stacklevel=2) + +from lms.djangoapps.discussion.django_comment_client.base.views import * diff --git a/sys_path_hacks/lms/discussion/django_comment_client/constants.py b/sys_path_hacks/lms/discussion/django_comment_client/constants.py new file mode 100644 index 0000000000..4e1d66b988 --- /dev/null +++ b/sys_path_hacks/lms/discussion/django_comment_client/constants.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing discussion.django_comment_client.constants instead of lms.djangoapps.discussion.django_comment_client.constants is deprecated", stacklevel=2) + +from lms.djangoapps.discussion.django_comment_client.constants import * diff --git a/sys_path_hacks/lms/discussion/django_comment_client/middleware.py b/sys_path_hacks/lms/discussion/django_comment_client/middleware.py new file mode 100644 index 0000000000..c739deea81 --- /dev/null +++ b/sys_path_hacks/lms/discussion/django_comment_client/middleware.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing discussion.django_comment_client.middleware instead of lms.djangoapps.discussion.django_comment_client.middleware is deprecated", stacklevel=2) + +from lms.djangoapps.discussion.django_comment_client.middleware import * diff --git a/sys_path_hacks/lms/discussion/django_comment_client/models.py b/sys_path_hacks/lms/discussion/django_comment_client/models.py new file mode 100644 index 0000000000..306780346d --- /dev/null +++ b/sys_path_hacks/lms/discussion/django_comment_client/models.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing discussion.django_comment_client.models instead of lms.djangoapps.discussion.django_comment_client.models is deprecated", stacklevel=2) + +from lms.djangoapps.discussion.django_comment_client.models import * diff --git a/sys_path_hacks/lms/discussion/django_comment_client/permissions.py b/sys_path_hacks/lms/discussion/django_comment_client/permissions.py new file mode 100644 index 0000000000..e4773d8b83 --- /dev/null +++ b/sys_path_hacks/lms/discussion/django_comment_client/permissions.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing discussion.django_comment_client.permissions instead of lms.djangoapps.discussion.django_comment_client.permissions is deprecated", stacklevel=2) + +from lms.djangoapps.discussion.django_comment_client.permissions import * diff --git a/sys_path_hacks/lms/discussion/django_comment_client/settings.py b/sys_path_hacks/lms/discussion/django_comment_client/settings.py new file mode 100644 index 0000000000..c99072d9f3 --- /dev/null +++ b/sys_path_hacks/lms/discussion/django_comment_client/settings.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing discussion.django_comment_client.settings instead of lms.djangoapps.discussion.django_comment_client.settings is deprecated", stacklevel=2) + +from lms.djangoapps.discussion.django_comment_client.settings import * diff --git a/sys_path_hacks/lms/discussion/django_comment_client/tests/__init__.py b/sys_path_hacks/lms/discussion/django_comment_client/tests/__init__.py new file mode 100644 index 0000000000..dbbce8db30 --- /dev/null +++ b/sys_path_hacks/lms/discussion/django_comment_client/tests/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing discussion.django_comment_client.tests instead of lms.djangoapps.discussion.django_comment_client.tests is deprecated", stacklevel=2) + +from lms.djangoapps.discussion.django_comment_client.tests import * diff --git a/sys_path_hacks/lms/discussion/django_comment_client/tests/factories.py b/sys_path_hacks/lms/discussion/django_comment_client/tests/factories.py new file mode 100644 index 0000000000..f98fe64755 --- /dev/null +++ b/sys_path_hacks/lms/discussion/django_comment_client/tests/factories.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing discussion.django_comment_client.tests.factories instead of lms.djangoapps.discussion.django_comment_client.tests.factories is deprecated", stacklevel=2) + +from lms.djangoapps.discussion.django_comment_client.tests.factories import * diff --git a/sys_path_hacks/lms/discussion/django_comment_client/tests/group_id.py b/sys_path_hacks/lms/discussion/django_comment_client/tests/group_id.py new file mode 100644 index 0000000000..abedfed82f --- /dev/null +++ b/sys_path_hacks/lms/discussion/django_comment_client/tests/group_id.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing discussion.django_comment_client.tests.group_id instead of lms.djangoapps.discussion.django_comment_client.tests.group_id is deprecated", stacklevel=2) + +from lms.djangoapps.discussion.django_comment_client.tests.group_id import * diff --git a/sys_path_hacks/lms/discussion/django_comment_client/tests/mock_cs_server/__init__.py b/sys_path_hacks/lms/discussion/django_comment_client/tests/mock_cs_server/__init__.py new file mode 100644 index 0000000000..eea1715bea --- /dev/null +++ b/sys_path_hacks/lms/discussion/django_comment_client/tests/mock_cs_server/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing discussion.django_comment_client.tests.mock_cs_server instead of lms.djangoapps.discussion.django_comment_client.tests.mock_cs_server is deprecated", stacklevel=2) + +from lms.djangoapps.discussion.django_comment_client.tests.mock_cs_server import * diff --git a/sys_path_hacks/lms/discussion/django_comment_client/tests/mock_cs_server/mock_cs_server.py b/sys_path_hacks/lms/discussion/django_comment_client/tests/mock_cs_server/mock_cs_server.py new file mode 100644 index 0000000000..4c06b98533 --- /dev/null +++ b/sys_path_hacks/lms/discussion/django_comment_client/tests/mock_cs_server/mock_cs_server.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing discussion.django_comment_client.tests.mock_cs_server.mock_cs_server instead of lms.djangoapps.discussion.django_comment_client.tests.mock_cs_server.mock_cs_server is deprecated", stacklevel=2) + +from lms.djangoapps.discussion.django_comment_client.tests.mock_cs_server.mock_cs_server import * diff --git a/sys_path_hacks/lms/discussion/django_comment_client/tests/mock_cs_server/test_mock_cs_server.py b/sys_path_hacks/lms/discussion/django_comment_client/tests/mock_cs_server/test_mock_cs_server.py new file mode 100644 index 0000000000..4f37d64e79 --- /dev/null +++ b/sys_path_hacks/lms/discussion/django_comment_client/tests/mock_cs_server/test_mock_cs_server.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing discussion.django_comment_client.tests.mock_cs_server.test_mock_cs_server instead of lms.djangoapps.discussion.django_comment_client.tests.mock_cs_server.test_mock_cs_server is deprecated", stacklevel=2) + +from lms.djangoapps.discussion.django_comment_client.tests.mock_cs_server.test_mock_cs_server import * diff --git a/sys_path_hacks/lms/discussion/django_comment_client/tests/test_middleware.py b/sys_path_hacks/lms/discussion/django_comment_client/tests/test_middleware.py new file mode 100644 index 0000000000..dcb5ced647 --- /dev/null +++ b/sys_path_hacks/lms/discussion/django_comment_client/tests/test_middleware.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing discussion.django_comment_client.tests.test_middleware instead of lms.djangoapps.discussion.django_comment_client.tests.test_middleware is deprecated", stacklevel=2) + +from lms.djangoapps.discussion.django_comment_client.tests.test_middleware import * diff --git a/sys_path_hacks/lms/discussion/django_comment_client/tests/test_models.py b/sys_path_hacks/lms/discussion/django_comment_client/tests/test_models.py new file mode 100644 index 0000000000..1cd7e22b48 --- /dev/null +++ b/sys_path_hacks/lms/discussion/django_comment_client/tests/test_models.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing discussion.django_comment_client.tests.test_models instead of lms.djangoapps.discussion.django_comment_client.tests.test_models is deprecated", stacklevel=2) + +from lms.djangoapps.discussion.django_comment_client.tests.test_models import * diff --git a/sys_path_hacks/lms/discussion/django_comment_client/tests/test_utils.py b/sys_path_hacks/lms/discussion/django_comment_client/tests/test_utils.py new file mode 100644 index 0000000000..8f05a5766e --- /dev/null +++ b/sys_path_hacks/lms/discussion/django_comment_client/tests/test_utils.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing discussion.django_comment_client.tests.test_utils instead of lms.djangoapps.discussion.django_comment_client.tests.test_utils is deprecated", stacklevel=2) + +from lms.djangoapps.discussion.django_comment_client.tests.test_utils import * diff --git a/sys_path_hacks/lms/discussion/django_comment_client/tests/unicode.py b/sys_path_hacks/lms/discussion/django_comment_client/tests/unicode.py new file mode 100644 index 0000000000..a38caff21e --- /dev/null +++ b/sys_path_hacks/lms/discussion/django_comment_client/tests/unicode.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing discussion.django_comment_client.tests.unicode instead of lms.djangoapps.discussion.django_comment_client.tests.unicode is deprecated", stacklevel=2) + +from lms.djangoapps.discussion.django_comment_client.tests.unicode import * diff --git a/sys_path_hacks/lms/discussion/django_comment_client/tests/utils.py b/sys_path_hacks/lms/discussion/django_comment_client/tests/utils.py new file mode 100644 index 0000000000..a0062910bd --- /dev/null +++ b/sys_path_hacks/lms/discussion/django_comment_client/tests/utils.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing discussion.django_comment_client.tests.utils instead of lms.djangoapps.discussion.django_comment_client.tests.utils is deprecated", stacklevel=2) + +from lms.djangoapps.discussion.django_comment_client.tests.utils import * diff --git a/sys_path_hacks/lms/discussion/django_comment_client/urls.py b/sys_path_hacks/lms/discussion/django_comment_client/urls.py new file mode 100644 index 0000000000..90824023f6 --- /dev/null +++ b/sys_path_hacks/lms/discussion/django_comment_client/urls.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing discussion.django_comment_client.urls instead of lms.djangoapps.discussion.django_comment_client.urls is deprecated", stacklevel=2) + +from lms.djangoapps.discussion.django_comment_client.urls import * diff --git a/sys_path_hacks/lms/discussion/django_comment_client/utils.py b/sys_path_hacks/lms/discussion/django_comment_client/utils.py new file mode 100644 index 0000000000..7667bfda76 --- /dev/null +++ b/sys_path_hacks/lms/discussion/django_comment_client/utils.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing discussion.django_comment_client.utils instead of lms.djangoapps.discussion.django_comment_client.utils is deprecated", stacklevel=2) + +from lms.djangoapps.discussion.django_comment_client.utils import * diff --git a/sys_path_hacks/lms/discussion/exceptions.py b/sys_path_hacks/lms/discussion/exceptions.py new file mode 100644 index 0000000000..5d0f65de3f --- /dev/null +++ b/sys_path_hacks/lms/discussion/exceptions.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing discussion.exceptions instead of lms.djangoapps.discussion.exceptions is deprecated", stacklevel=2) + +from lms.djangoapps.discussion.exceptions import * diff --git a/sys_path_hacks/lms/discussion/management/__init__.py b/sys_path_hacks/lms/discussion/management/__init__.py new file mode 100644 index 0000000000..e26b38001d --- /dev/null +++ b/sys_path_hacks/lms/discussion/management/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing discussion.management instead of lms.djangoapps.discussion.management is deprecated", stacklevel=2) + +from lms.djangoapps.discussion.management import * diff --git a/sys_path_hacks/lms/discussion/management/commands/__init__.py b/sys_path_hacks/lms/discussion/management/commands/__init__.py new file mode 100644 index 0000000000..dd90253efc --- /dev/null +++ b/sys_path_hacks/lms/discussion/management/commands/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing discussion.management.commands instead of lms.djangoapps.discussion.management.commands is deprecated", stacklevel=2) + +from lms.djangoapps.discussion.management.commands import * diff --git a/sys_path_hacks/lms/discussion/management/commands/assign_role.py b/sys_path_hacks/lms/discussion/management/commands/assign_role.py new file mode 100644 index 0000000000..9c22eabe5e --- /dev/null +++ b/sys_path_hacks/lms/discussion/management/commands/assign_role.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing discussion.management.commands.assign_role instead of lms.djangoapps.discussion.management.commands.assign_role is deprecated", stacklevel=2) + +from lms.djangoapps.discussion.management.commands.assign_role import * diff --git a/sys_path_hacks/lms/discussion/management/commands/assign_roles_for_course.py b/sys_path_hacks/lms/discussion/management/commands/assign_roles_for_course.py new file mode 100644 index 0000000000..16157e8ea4 --- /dev/null +++ b/sys_path_hacks/lms/discussion/management/commands/assign_roles_for_course.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing discussion.management.commands.assign_roles_for_course instead of lms.djangoapps.discussion.management.commands.assign_roles_for_course is deprecated", stacklevel=2) + +from lms.djangoapps.discussion.management.commands.assign_roles_for_course import * diff --git a/sys_path_hacks/lms/discussion/management/commands/create_roles_for_existing.py b/sys_path_hacks/lms/discussion/management/commands/create_roles_for_existing.py new file mode 100644 index 0000000000..90240e4ba1 --- /dev/null +++ b/sys_path_hacks/lms/discussion/management/commands/create_roles_for_existing.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing discussion.management.commands.create_roles_for_existing instead of lms.djangoapps.discussion.management.commands.create_roles_for_existing is deprecated", stacklevel=2) + +from lms.djangoapps.discussion.management.commands.create_roles_for_existing import * diff --git a/sys_path_hacks/lms/discussion/management/commands/get_discussion_link.py b/sys_path_hacks/lms/discussion/management/commands/get_discussion_link.py new file mode 100644 index 0000000000..e8d79617e0 --- /dev/null +++ b/sys_path_hacks/lms/discussion/management/commands/get_discussion_link.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing discussion.management.commands.get_discussion_link instead of lms.djangoapps.discussion.management.commands.get_discussion_link is deprecated", stacklevel=2) + +from lms.djangoapps.discussion.management.commands.get_discussion_link import * diff --git a/sys_path_hacks/lms/discussion/management/commands/reload_forum_users.py b/sys_path_hacks/lms/discussion/management/commands/reload_forum_users.py new file mode 100644 index 0000000000..0f9c96cb8e --- /dev/null +++ b/sys_path_hacks/lms/discussion/management/commands/reload_forum_users.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing discussion.management.commands.reload_forum_users instead of lms.djangoapps.discussion.management.commands.reload_forum_users is deprecated", stacklevel=2) + +from lms.djangoapps.discussion.management.commands.reload_forum_users import * diff --git a/sys_path_hacks/lms/discussion/management/commands/seed_permissions_roles.py b/sys_path_hacks/lms/discussion/management/commands/seed_permissions_roles.py new file mode 100644 index 0000000000..fa1d836e8a --- /dev/null +++ b/sys_path_hacks/lms/discussion/management/commands/seed_permissions_roles.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing discussion.management.commands.seed_permissions_roles instead of lms.djangoapps.discussion.management.commands.seed_permissions_roles is deprecated", stacklevel=2) + +from lms.djangoapps.discussion.management.commands.seed_permissions_roles import * diff --git a/sys_path_hacks/lms/discussion/management/commands/show_permissions.py b/sys_path_hacks/lms/discussion/management/commands/show_permissions.py new file mode 100644 index 0000000000..434c61d434 --- /dev/null +++ b/sys_path_hacks/lms/discussion/management/commands/show_permissions.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing discussion.management.commands.show_permissions instead of lms.djangoapps.discussion.management.commands.show_permissions is deprecated", stacklevel=2) + +from lms.djangoapps.discussion.management.commands.show_permissions import * diff --git a/sys_path_hacks/lms/discussion/management/commands/sync_user_info.py b/sys_path_hacks/lms/discussion/management/commands/sync_user_info.py new file mode 100644 index 0000000000..948db2d929 --- /dev/null +++ b/sys_path_hacks/lms/discussion/management/commands/sync_user_info.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing discussion.management.commands.sync_user_info instead of lms.djangoapps.discussion.management.commands.sync_user_info is deprecated", stacklevel=2) + +from lms.djangoapps.discussion.management.commands.sync_user_info import * diff --git a/sys_path_hacks/lms/discussion/notification_prefs/__init__.py b/sys_path_hacks/lms/discussion/notification_prefs/__init__.py new file mode 100644 index 0000000000..6eb9feeeb0 --- /dev/null +++ b/sys_path_hacks/lms/discussion/notification_prefs/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing discussion.notification_prefs instead of lms.djangoapps.discussion.notification_prefs is deprecated", stacklevel=2) + +from lms.djangoapps.discussion.notification_prefs import * diff --git a/sys_path_hacks/lms/discussion/notification_prefs/tests.py b/sys_path_hacks/lms/discussion/notification_prefs/tests.py new file mode 100644 index 0000000000..a53ed66b4e --- /dev/null +++ b/sys_path_hacks/lms/discussion/notification_prefs/tests.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing discussion.notification_prefs.tests instead of lms.djangoapps.discussion.notification_prefs.tests is deprecated", stacklevel=2) + +from lms.djangoapps.discussion.notification_prefs.tests import * diff --git a/sys_path_hacks/lms/discussion/notification_prefs/views.py b/sys_path_hacks/lms/discussion/notification_prefs/views.py new file mode 100644 index 0000000000..0d36454f20 --- /dev/null +++ b/sys_path_hacks/lms/discussion/notification_prefs/views.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing discussion.notification_prefs.views instead of lms.djangoapps.discussion.notification_prefs.views is deprecated", stacklevel=2) + +from lms.djangoapps.discussion.notification_prefs.views import * diff --git a/sys_path_hacks/lms/discussion/notifier_api/__init__.py b/sys_path_hacks/lms/discussion/notifier_api/__init__.py new file mode 100644 index 0000000000..0ca49a4079 --- /dev/null +++ b/sys_path_hacks/lms/discussion/notifier_api/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing discussion.notifier_api instead of lms.djangoapps.discussion.notifier_api is deprecated", stacklevel=2) + +from lms.djangoapps.discussion.notifier_api import * diff --git a/sys_path_hacks/lms/discussion/notifier_api/serializers.py b/sys_path_hacks/lms/discussion/notifier_api/serializers.py new file mode 100644 index 0000000000..17924cc996 --- /dev/null +++ b/sys_path_hacks/lms/discussion/notifier_api/serializers.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing discussion.notifier_api.serializers instead of lms.djangoapps.discussion.notifier_api.serializers is deprecated", stacklevel=2) + +from lms.djangoapps.discussion.notifier_api.serializers import * diff --git a/sys_path_hacks/lms/discussion/notifier_api/tests.py b/sys_path_hacks/lms/discussion/notifier_api/tests.py new file mode 100644 index 0000000000..42cde529d9 --- /dev/null +++ b/sys_path_hacks/lms/discussion/notifier_api/tests.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing discussion.notifier_api.tests instead of lms.djangoapps.discussion.notifier_api.tests is deprecated", stacklevel=2) + +from lms.djangoapps.discussion.notifier_api.tests import * diff --git a/sys_path_hacks/lms/discussion/notifier_api/urls.py b/sys_path_hacks/lms/discussion/notifier_api/urls.py new file mode 100644 index 0000000000..d74d78cb92 --- /dev/null +++ b/sys_path_hacks/lms/discussion/notifier_api/urls.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing discussion.notifier_api.urls instead of lms.djangoapps.discussion.notifier_api.urls is deprecated", stacklevel=2) + +from lms.djangoapps.discussion.notifier_api.urls import * diff --git a/sys_path_hacks/lms/discussion/notifier_api/views.py b/sys_path_hacks/lms/discussion/notifier_api/views.py new file mode 100644 index 0000000000..388574c132 --- /dev/null +++ b/sys_path_hacks/lms/discussion/notifier_api/views.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing discussion.notifier_api.views instead of lms.djangoapps.discussion.notifier_api.views is deprecated", stacklevel=2) + +from lms.djangoapps.discussion.notifier_api.views import * diff --git a/sys_path_hacks/lms/discussion/plugins.py b/sys_path_hacks/lms/discussion/plugins.py new file mode 100644 index 0000000000..265ae8ea9d --- /dev/null +++ b/sys_path_hacks/lms/discussion/plugins.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing discussion.plugins instead of lms.djangoapps.discussion.plugins is deprecated", stacklevel=2) + +from lms.djangoapps.discussion.plugins import * diff --git a/sys_path_hacks/lms/discussion/rest_api/__init__.py b/sys_path_hacks/lms/discussion/rest_api/__init__.py new file mode 100644 index 0000000000..3766cef054 --- /dev/null +++ b/sys_path_hacks/lms/discussion/rest_api/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing discussion.rest_api instead of lms.djangoapps.discussion.rest_api is deprecated", stacklevel=2) + +from lms.djangoapps.discussion.rest_api import * diff --git a/sys_path_hacks/lms/discussion/rest_api/api.py b/sys_path_hacks/lms/discussion/rest_api/api.py new file mode 100644 index 0000000000..bd941090c7 --- /dev/null +++ b/sys_path_hacks/lms/discussion/rest_api/api.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing discussion.rest_api.api instead of lms.djangoapps.discussion.rest_api.api is deprecated", stacklevel=2) + +from lms.djangoapps.discussion.rest_api.api import * diff --git a/sys_path_hacks/lms/discussion/rest_api/exceptions.py b/sys_path_hacks/lms/discussion/rest_api/exceptions.py new file mode 100644 index 0000000000..dde29650b3 --- /dev/null +++ b/sys_path_hacks/lms/discussion/rest_api/exceptions.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing discussion.rest_api.exceptions instead of lms.djangoapps.discussion.rest_api.exceptions is deprecated", stacklevel=2) + +from lms.djangoapps.discussion.rest_api.exceptions import * diff --git a/sys_path_hacks/lms/discussion/rest_api/forms.py b/sys_path_hacks/lms/discussion/rest_api/forms.py new file mode 100644 index 0000000000..d0df5a6675 --- /dev/null +++ b/sys_path_hacks/lms/discussion/rest_api/forms.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing discussion.rest_api.forms instead of lms.djangoapps.discussion.rest_api.forms is deprecated", stacklevel=2) + +from lms.djangoapps.discussion.rest_api.forms import * diff --git a/sys_path_hacks/lms/discussion/rest_api/pagination.py b/sys_path_hacks/lms/discussion/rest_api/pagination.py new file mode 100644 index 0000000000..c9de5d8fc0 --- /dev/null +++ b/sys_path_hacks/lms/discussion/rest_api/pagination.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing discussion.rest_api.pagination instead of lms.djangoapps.discussion.rest_api.pagination is deprecated", stacklevel=2) + +from lms.djangoapps.discussion.rest_api.pagination import * diff --git a/sys_path_hacks/lms/discussion/rest_api/permissions.py b/sys_path_hacks/lms/discussion/rest_api/permissions.py new file mode 100644 index 0000000000..71dfee1506 --- /dev/null +++ b/sys_path_hacks/lms/discussion/rest_api/permissions.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing discussion.rest_api.permissions instead of lms.djangoapps.discussion.rest_api.permissions is deprecated", stacklevel=2) + +from lms.djangoapps.discussion.rest_api.permissions import * diff --git a/sys_path_hacks/lms/discussion/rest_api/render.py b/sys_path_hacks/lms/discussion/rest_api/render.py new file mode 100644 index 0000000000..f49a9ead9a --- /dev/null +++ b/sys_path_hacks/lms/discussion/rest_api/render.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing discussion.rest_api.render instead of lms.djangoapps.discussion.rest_api.render is deprecated", stacklevel=2) + +from lms.djangoapps.discussion.rest_api.render import * diff --git a/sys_path_hacks/lms/discussion/rest_api/serializers.py b/sys_path_hacks/lms/discussion/rest_api/serializers.py new file mode 100644 index 0000000000..503c2bf82e --- /dev/null +++ b/sys_path_hacks/lms/discussion/rest_api/serializers.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing discussion.rest_api.serializers instead of lms.djangoapps.discussion.rest_api.serializers is deprecated", stacklevel=2) + +from lms.djangoapps.discussion.rest_api.serializers import * diff --git a/sys_path_hacks/lms/discussion/rest_api/tests/__init__.py b/sys_path_hacks/lms/discussion/rest_api/tests/__init__.py new file mode 100644 index 0000000000..fc53b16759 --- /dev/null +++ b/sys_path_hacks/lms/discussion/rest_api/tests/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing discussion.rest_api.tests instead of lms.djangoapps.discussion.rest_api.tests is deprecated", stacklevel=2) + +from lms.djangoapps.discussion.rest_api.tests import * diff --git a/sys_path_hacks/lms/discussion/rest_api/tests/test_api.py b/sys_path_hacks/lms/discussion/rest_api/tests/test_api.py new file mode 100644 index 0000000000..c376789f5c --- /dev/null +++ b/sys_path_hacks/lms/discussion/rest_api/tests/test_api.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing discussion.rest_api.tests.test_api instead of lms.djangoapps.discussion.rest_api.tests.test_api is deprecated", stacklevel=2) + +from lms.djangoapps.discussion.rest_api.tests.test_api import * diff --git a/sys_path_hacks/lms/discussion/rest_api/tests/test_forms.py b/sys_path_hacks/lms/discussion/rest_api/tests/test_forms.py new file mode 100644 index 0000000000..b4a7f14792 --- /dev/null +++ b/sys_path_hacks/lms/discussion/rest_api/tests/test_forms.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing discussion.rest_api.tests.test_forms instead of lms.djangoapps.discussion.rest_api.tests.test_forms is deprecated", stacklevel=2) + +from lms.djangoapps.discussion.rest_api.tests.test_forms import * diff --git a/sys_path_hacks/lms/discussion/rest_api/tests/test_pagination.py b/sys_path_hacks/lms/discussion/rest_api/tests/test_pagination.py new file mode 100644 index 0000000000..51134f01d2 --- /dev/null +++ b/sys_path_hacks/lms/discussion/rest_api/tests/test_pagination.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing discussion.rest_api.tests.test_pagination instead of lms.djangoapps.discussion.rest_api.tests.test_pagination is deprecated", stacklevel=2) + +from lms.djangoapps.discussion.rest_api.tests.test_pagination import * diff --git a/sys_path_hacks/lms/discussion/rest_api/tests/test_permissions.py b/sys_path_hacks/lms/discussion/rest_api/tests/test_permissions.py new file mode 100644 index 0000000000..7d78e52caf --- /dev/null +++ b/sys_path_hacks/lms/discussion/rest_api/tests/test_permissions.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing discussion.rest_api.tests.test_permissions instead of lms.djangoapps.discussion.rest_api.tests.test_permissions is deprecated", stacklevel=2) + +from lms.djangoapps.discussion.rest_api.tests.test_permissions import * diff --git a/sys_path_hacks/lms/discussion/rest_api/tests/test_render.py b/sys_path_hacks/lms/discussion/rest_api/tests/test_render.py new file mode 100644 index 0000000000..68a1ce6176 --- /dev/null +++ b/sys_path_hacks/lms/discussion/rest_api/tests/test_render.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing discussion.rest_api.tests.test_render instead of lms.djangoapps.discussion.rest_api.tests.test_render is deprecated", stacklevel=2) + +from lms.djangoapps.discussion.rest_api.tests.test_render import * diff --git a/sys_path_hacks/lms/discussion/rest_api/tests/test_serializers.py b/sys_path_hacks/lms/discussion/rest_api/tests/test_serializers.py new file mode 100644 index 0000000000..7e4829375e --- /dev/null +++ b/sys_path_hacks/lms/discussion/rest_api/tests/test_serializers.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing discussion.rest_api.tests.test_serializers instead of lms.djangoapps.discussion.rest_api.tests.test_serializers is deprecated", stacklevel=2) + +from lms.djangoapps.discussion.rest_api.tests.test_serializers import * diff --git a/sys_path_hacks/lms/discussion/rest_api/tests/test_views.py b/sys_path_hacks/lms/discussion/rest_api/tests/test_views.py new file mode 100644 index 0000000000..5414c5e587 --- /dev/null +++ b/sys_path_hacks/lms/discussion/rest_api/tests/test_views.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing discussion.rest_api.tests.test_views instead of lms.djangoapps.discussion.rest_api.tests.test_views is deprecated", stacklevel=2) + +from lms.djangoapps.discussion.rest_api.tests.test_views import * diff --git a/sys_path_hacks/lms/discussion/rest_api/tests/utils.py b/sys_path_hacks/lms/discussion/rest_api/tests/utils.py new file mode 100644 index 0000000000..1759b88b43 --- /dev/null +++ b/sys_path_hacks/lms/discussion/rest_api/tests/utils.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing discussion.rest_api.tests.utils instead of lms.djangoapps.discussion.rest_api.tests.utils is deprecated", stacklevel=2) + +from lms.djangoapps.discussion.rest_api.tests.utils import * diff --git a/sys_path_hacks/lms/discussion/rest_api/urls.py b/sys_path_hacks/lms/discussion/rest_api/urls.py new file mode 100644 index 0000000000..16e51a3a68 --- /dev/null +++ b/sys_path_hacks/lms/discussion/rest_api/urls.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing discussion.rest_api.urls instead of lms.djangoapps.discussion.rest_api.urls is deprecated", stacklevel=2) + +from lms.djangoapps.discussion.rest_api.urls import * diff --git a/sys_path_hacks/lms/discussion/rest_api/views.py b/sys_path_hacks/lms/discussion/rest_api/views.py new file mode 100644 index 0000000000..2678eb3a8e --- /dev/null +++ b/sys_path_hacks/lms/discussion/rest_api/views.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing discussion.rest_api.views instead of lms.djangoapps.discussion.rest_api.views is deprecated", stacklevel=2) + +from lms.djangoapps.discussion.rest_api.views import * diff --git a/sys_path_hacks/lms/discussion/settings/__init__.py b/sys_path_hacks/lms/discussion/settings/__init__.py new file mode 100644 index 0000000000..53fd0336f5 --- /dev/null +++ b/sys_path_hacks/lms/discussion/settings/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing discussion.settings instead of lms.djangoapps.discussion.settings is deprecated", stacklevel=2) + +from lms.djangoapps.discussion.settings import * diff --git a/sys_path_hacks/lms/discussion/settings/common.py b/sys_path_hacks/lms/discussion/settings/common.py new file mode 100644 index 0000000000..46269bc2cf --- /dev/null +++ b/sys_path_hacks/lms/discussion/settings/common.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing discussion.settings.common instead of lms.djangoapps.discussion.settings.common is deprecated", stacklevel=2) + +from lms.djangoapps.discussion.settings.common import * diff --git a/sys_path_hacks/lms/discussion/signals/__init__.py b/sys_path_hacks/lms/discussion/signals/__init__.py new file mode 100644 index 0000000000..e58413cc25 --- /dev/null +++ b/sys_path_hacks/lms/discussion/signals/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing discussion.signals instead of lms.djangoapps.discussion.signals is deprecated", stacklevel=2) + +from lms.djangoapps.discussion.signals import * diff --git a/sys_path_hacks/lms/discussion/signals/handlers.py b/sys_path_hacks/lms/discussion/signals/handlers.py new file mode 100644 index 0000000000..04f0bb6a41 --- /dev/null +++ b/sys_path_hacks/lms/discussion/signals/handlers.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing discussion.signals.handlers instead of lms.djangoapps.discussion.signals.handlers is deprecated", stacklevel=2) + +from lms.djangoapps.discussion.signals.handlers import * diff --git a/sys_path_hacks/lms/discussion/tasks.py b/sys_path_hacks/lms/discussion/tasks.py new file mode 100644 index 0000000000..8a3b1cce0a --- /dev/null +++ b/sys_path_hacks/lms/discussion/tasks.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing discussion.tasks instead of lms.djangoapps.discussion.tasks is deprecated", stacklevel=2) + +from lms.djangoapps.discussion.tasks import * diff --git a/sys_path_hacks/lms/discussion/tests/__init__.py b/sys_path_hacks/lms/discussion/tests/__init__.py new file mode 100644 index 0000000000..fdd600c6a1 --- /dev/null +++ b/sys_path_hacks/lms/discussion/tests/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing discussion.tests instead of lms.djangoapps.discussion.tests is deprecated", stacklevel=2) + +from lms.djangoapps.discussion.tests import * diff --git a/sys_path_hacks/lms/discussion/tests/test_signals.py b/sys_path_hacks/lms/discussion/tests/test_signals.py new file mode 100644 index 0000000000..d89f44bdee --- /dev/null +++ b/sys_path_hacks/lms/discussion/tests/test_signals.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing discussion.tests.test_signals instead of lms.djangoapps.discussion.tests.test_signals is deprecated", stacklevel=2) + +from lms.djangoapps.discussion.tests.test_signals import * diff --git a/sys_path_hacks/lms/discussion/tests/test_tasks.py b/sys_path_hacks/lms/discussion/tests/test_tasks.py new file mode 100644 index 0000000000..db40ddc2dc --- /dev/null +++ b/sys_path_hacks/lms/discussion/tests/test_tasks.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing discussion.tests.test_tasks instead of lms.djangoapps.discussion.tests.test_tasks is deprecated", stacklevel=2) + +from lms.djangoapps.discussion.tests.test_tasks import * diff --git a/sys_path_hacks/lms/discussion/tests/test_views.py b/sys_path_hacks/lms/discussion/tests/test_views.py new file mode 100644 index 0000000000..bbd2354bf9 --- /dev/null +++ b/sys_path_hacks/lms/discussion/tests/test_views.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing discussion.tests.test_views instead of lms.djangoapps.discussion.tests.test_views is deprecated", stacklevel=2) + +from lms.djangoapps.discussion.tests.test_views import * diff --git a/sys_path_hacks/lms/discussion/urls.py b/sys_path_hacks/lms/discussion/urls.py new file mode 100644 index 0000000000..cba1d6ffde --- /dev/null +++ b/sys_path_hacks/lms/discussion/urls.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing discussion.urls instead of lms.djangoapps.discussion.urls is deprecated", stacklevel=2) + +from lms.djangoapps.discussion.urls import * diff --git a/sys_path_hacks/lms/discussion/views.py b/sys_path_hacks/lms/discussion/views.py new file mode 100644 index 0000000000..249b2e9604 --- /dev/null +++ b/sys_path_hacks/lms/discussion/views.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing discussion.views instead of lms.djangoapps.discussion.views is deprecated", stacklevel=2) + +from lms.djangoapps.discussion.views import * diff --git a/sys_path_hacks/lms/edxnotes/__init__.py b/sys_path_hacks/lms/edxnotes/__init__.py new file mode 100644 index 0000000000..f570a148c7 --- /dev/null +++ b/sys_path_hacks/lms/edxnotes/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing edxnotes instead of lms.djangoapps.edxnotes is deprecated", stacklevel=2) + +from lms.djangoapps.edxnotes import * diff --git a/sys_path_hacks/lms/edxnotes/api_urls.py b/sys_path_hacks/lms/edxnotes/api_urls.py new file mode 100644 index 0000000000..7218ef5feb --- /dev/null +++ b/sys_path_hacks/lms/edxnotes/api_urls.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing edxnotes.api_urls instead of lms.djangoapps.edxnotes.api_urls is deprecated", stacklevel=2) + +from lms.djangoapps.edxnotes.api_urls import * diff --git a/sys_path_hacks/lms/edxnotes/decorators.py b/sys_path_hacks/lms/edxnotes/decorators.py new file mode 100644 index 0000000000..a4abad3514 --- /dev/null +++ b/sys_path_hacks/lms/edxnotes/decorators.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing edxnotes.decorators instead of lms.djangoapps.edxnotes.decorators is deprecated", stacklevel=2) + +from lms.djangoapps.edxnotes.decorators import * diff --git a/sys_path_hacks/lms/edxnotes/exceptions.py b/sys_path_hacks/lms/edxnotes/exceptions.py new file mode 100644 index 0000000000..5fd5f1cc84 --- /dev/null +++ b/sys_path_hacks/lms/edxnotes/exceptions.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing edxnotes.exceptions instead of lms.djangoapps.edxnotes.exceptions is deprecated", stacklevel=2) + +from lms.djangoapps.edxnotes.exceptions import * diff --git a/sys_path_hacks/lms/edxnotes/helpers.py b/sys_path_hacks/lms/edxnotes/helpers.py new file mode 100644 index 0000000000..d0c408305a --- /dev/null +++ b/sys_path_hacks/lms/edxnotes/helpers.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing edxnotes.helpers instead of lms.djangoapps.edxnotes.helpers is deprecated", stacklevel=2) + +from lms.djangoapps.edxnotes.helpers import * diff --git a/sys_path_hacks/lms/edxnotes/plugins.py b/sys_path_hacks/lms/edxnotes/plugins.py new file mode 100644 index 0000000000..581c102cb5 --- /dev/null +++ b/sys_path_hacks/lms/edxnotes/plugins.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing edxnotes.plugins instead of lms.djangoapps.edxnotes.plugins is deprecated", stacklevel=2) + +from lms.djangoapps.edxnotes.plugins import * diff --git a/sys_path_hacks/lms/edxnotes/tests.py b/sys_path_hacks/lms/edxnotes/tests.py new file mode 100644 index 0000000000..72fd116a38 --- /dev/null +++ b/sys_path_hacks/lms/edxnotes/tests.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing edxnotes.tests instead of lms.djangoapps.edxnotes.tests is deprecated", stacklevel=2) + +from lms.djangoapps.edxnotes.tests import * diff --git a/sys_path_hacks/lms/edxnotes/urls.py b/sys_path_hacks/lms/edxnotes/urls.py new file mode 100644 index 0000000000..72c5af4421 --- /dev/null +++ b/sys_path_hacks/lms/edxnotes/urls.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing edxnotes.urls instead of lms.djangoapps.edxnotes.urls is deprecated", stacklevel=2) + +from lms.djangoapps.edxnotes.urls import * diff --git a/sys_path_hacks/lms/edxnotes/views.py b/sys_path_hacks/lms/edxnotes/views.py new file mode 100644 index 0000000000..399313b9b2 --- /dev/null +++ b/sys_path_hacks/lms/edxnotes/views.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing edxnotes.views instead of lms.djangoapps.edxnotes.views is deprecated", stacklevel=2) + +from lms.djangoapps.edxnotes.views import * diff --git a/sys_path_hacks/lms/email_marketing/__init__.py b/sys_path_hacks/lms/email_marketing/__init__.py new file mode 100644 index 0000000000..6b3450e40b --- /dev/null +++ b/sys_path_hacks/lms/email_marketing/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing email_marketing instead of lms.djangoapps.email_marketing is deprecated", stacklevel=2) + +from lms.djangoapps.email_marketing import * diff --git a/sys_path_hacks/lms/email_marketing/admin.py b/sys_path_hacks/lms/email_marketing/admin.py new file mode 100644 index 0000000000..0ca9659172 --- /dev/null +++ b/sys_path_hacks/lms/email_marketing/admin.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing email_marketing.admin instead of lms.djangoapps.email_marketing.admin is deprecated", stacklevel=2) + +from lms.djangoapps.email_marketing.admin import * diff --git a/sys_path_hacks/lms/email_marketing/apps.py b/sys_path_hacks/lms/email_marketing/apps.py new file mode 100644 index 0000000000..ce2562daae --- /dev/null +++ b/sys_path_hacks/lms/email_marketing/apps.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing email_marketing.apps instead of lms.djangoapps.email_marketing.apps is deprecated", stacklevel=2) + +from lms.djangoapps.email_marketing.apps import * diff --git a/sys_path_hacks/lms/email_marketing/models.py b/sys_path_hacks/lms/email_marketing/models.py new file mode 100644 index 0000000000..0d18b874e4 --- /dev/null +++ b/sys_path_hacks/lms/email_marketing/models.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing email_marketing.models instead of lms.djangoapps.email_marketing.models is deprecated", stacklevel=2) + +from lms.djangoapps.email_marketing.models import * diff --git a/sys_path_hacks/lms/email_marketing/signals.py b/sys_path_hacks/lms/email_marketing/signals.py new file mode 100644 index 0000000000..1fdaddc764 --- /dev/null +++ b/sys_path_hacks/lms/email_marketing/signals.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing email_marketing.signals instead of lms.djangoapps.email_marketing.signals is deprecated", stacklevel=2) + +from lms.djangoapps.email_marketing.signals import * diff --git a/sys_path_hacks/lms/email_marketing/tasks.py b/sys_path_hacks/lms/email_marketing/tasks.py new file mode 100644 index 0000000000..266f59bbb4 --- /dev/null +++ b/sys_path_hacks/lms/email_marketing/tasks.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing email_marketing.tasks instead of lms.djangoapps.email_marketing.tasks is deprecated", stacklevel=2) + +from lms.djangoapps.email_marketing.tasks import * diff --git a/sys_path_hacks/lms/email_marketing/tests/__init__.py b/sys_path_hacks/lms/email_marketing/tests/__init__.py new file mode 100644 index 0000000000..12f5201a90 --- /dev/null +++ b/sys_path_hacks/lms/email_marketing/tests/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing email_marketing.tests instead of lms.djangoapps.email_marketing.tests is deprecated", stacklevel=2) + +from lms.djangoapps.email_marketing.tests import * diff --git a/sys_path_hacks/lms/email_marketing/tests/test_signals.py b/sys_path_hacks/lms/email_marketing/tests/test_signals.py new file mode 100644 index 0000000000..55218cdc12 --- /dev/null +++ b/sys_path_hacks/lms/email_marketing/tests/test_signals.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing email_marketing.tests.test_signals instead of lms.djangoapps.email_marketing.tests.test_signals is deprecated", stacklevel=2) + +from lms.djangoapps.email_marketing.tests.test_signals import * diff --git a/sys_path_hacks/lms/experiments/__init__.py b/sys_path_hacks/lms/experiments/__init__.py new file mode 100644 index 0000000000..c3d7bcbd50 --- /dev/null +++ b/sys_path_hacks/lms/experiments/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing experiments instead of lms.djangoapps.experiments is deprecated", stacklevel=2) + +from lms.djangoapps.experiments import * diff --git a/sys_path_hacks/lms/experiments/admin.py b/sys_path_hacks/lms/experiments/admin.py new file mode 100644 index 0000000000..806225d954 --- /dev/null +++ b/sys_path_hacks/lms/experiments/admin.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing experiments.admin instead of lms.djangoapps.experiments.admin is deprecated", stacklevel=2) + +from lms.djangoapps.experiments.admin import * diff --git a/sys_path_hacks/lms/experiments/apps.py b/sys_path_hacks/lms/experiments/apps.py new file mode 100644 index 0000000000..cdf86eadff --- /dev/null +++ b/sys_path_hacks/lms/experiments/apps.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing experiments.apps instead of lms.djangoapps.experiments.apps is deprecated", stacklevel=2) + +from lms.djangoapps.experiments.apps import * diff --git a/sys_path_hacks/lms/experiments/factories.py b/sys_path_hacks/lms/experiments/factories.py new file mode 100644 index 0000000000..188cbad402 --- /dev/null +++ b/sys_path_hacks/lms/experiments/factories.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing experiments.factories instead of lms.djangoapps.experiments.factories is deprecated", stacklevel=2) + +from lms.djangoapps.experiments.factories import * diff --git a/sys_path_hacks/lms/experiments/filters.py b/sys_path_hacks/lms/experiments/filters.py new file mode 100644 index 0000000000..7fd5d39607 --- /dev/null +++ b/sys_path_hacks/lms/experiments/filters.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing experiments.filters instead of lms.djangoapps.experiments.filters is deprecated", stacklevel=2) + +from lms.djangoapps.experiments.filters import * diff --git a/sys_path_hacks/lms/experiments/flags.py b/sys_path_hacks/lms/experiments/flags.py new file mode 100644 index 0000000000..dea22439fc --- /dev/null +++ b/sys_path_hacks/lms/experiments/flags.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing experiments.flags instead of lms.djangoapps.experiments.flags is deprecated", stacklevel=2) + +from lms.djangoapps.experiments.flags import * diff --git a/sys_path_hacks/lms/experiments/models.py b/sys_path_hacks/lms/experiments/models.py new file mode 100644 index 0000000000..230b02210f --- /dev/null +++ b/sys_path_hacks/lms/experiments/models.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing experiments.models instead of lms.djangoapps.experiments.models is deprecated", stacklevel=2) + +from lms.djangoapps.experiments.models import * diff --git a/sys_path_hacks/lms/experiments/permissions.py b/sys_path_hacks/lms/experiments/permissions.py new file mode 100644 index 0000000000..37d144ccaa --- /dev/null +++ b/sys_path_hacks/lms/experiments/permissions.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing experiments.permissions instead of lms.djangoapps.experiments.permissions is deprecated", stacklevel=2) + +from lms.djangoapps.experiments.permissions import * diff --git a/sys_path_hacks/lms/experiments/routers.py b/sys_path_hacks/lms/experiments/routers.py new file mode 100644 index 0000000000..f19519f97e --- /dev/null +++ b/sys_path_hacks/lms/experiments/routers.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing experiments.routers instead of lms.djangoapps.experiments.routers is deprecated", stacklevel=2) + +from lms.djangoapps.experiments.routers import * diff --git a/sys_path_hacks/lms/experiments/serializers.py b/sys_path_hacks/lms/experiments/serializers.py new file mode 100644 index 0000000000..3a61ac99b2 --- /dev/null +++ b/sys_path_hacks/lms/experiments/serializers.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing experiments.serializers instead of lms.djangoapps.experiments.serializers is deprecated", stacklevel=2) + +from lms.djangoapps.experiments.serializers import * diff --git a/sys_path_hacks/lms/experiments/stable_bucketing.py b/sys_path_hacks/lms/experiments/stable_bucketing.py new file mode 100644 index 0000000000..22bb5fc0df --- /dev/null +++ b/sys_path_hacks/lms/experiments/stable_bucketing.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing experiments.stable_bucketing instead of lms.djangoapps.experiments.stable_bucketing is deprecated", stacklevel=2) + +from lms.djangoapps.experiments.stable_bucketing import * diff --git a/sys_path_hacks/lms/experiments/tests/__init__.py b/sys_path_hacks/lms/experiments/tests/__init__.py new file mode 100644 index 0000000000..01900c29a9 --- /dev/null +++ b/sys_path_hacks/lms/experiments/tests/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing experiments.tests instead of lms.djangoapps.experiments.tests is deprecated", stacklevel=2) + +from lms.djangoapps.experiments.tests import * diff --git a/sys_path_hacks/lms/experiments/tests/test_flags.py b/sys_path_hacks/lms/experiments/tests/test_flags.py new file mode 100644 index 0000000000..01a836088e --- /dev/null +++ b/sys_path_hacks/lms/experiments/tests/test_flags.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing experiments.tests.test_flags instead of lms.djangoapps.experiments.tests.test_flags is deprecated", stacklevel=2) + +from lms.djangoapps.experiments.tests.test_flags import * diff --git a/sys_path_hacks/lms/experiments/tests/test_utils.py b/sys_path_hacks/lms/experiments/tests/test_utils.py new file mode 100644 index 0000000000..2408d8c75b --- /dev/null +++ b/sys_path_hacks/lms/experiments/tests/test_utils.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing experiments.tests.test_utils instead of lms.djangoapps.experiments.tests.test_utils is deprecated", stacklevel=2) + +from lms.djangoapps.experiments.tests.test_utils import * diff --git a/sys_path_hacks/lms/experiments/tests/test_views.py b/sys_path_hacks/lms/experiments/tests/test_views.py new file mode 100644 index 0000000000..62ef2b7faf --- /dev/null +++ b/sys_path_hacks/lms/experiments/tests/test_views.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing experiments.tests.test_views instead of lms.djangoapps.experiments.tests.test_views is deprecated", stacklevel=2) + +from lms.djangoapps.experiments.tests.test_views import * diff --git a/sys_path_hacks/lms/experiments/tests/test_views_custom.py b/sys_path_hacks/lms/experiments/tests/test_views_custom.py new file mode 100644 index 0000000000..9ed89586ad --- /dev/null +++ b/sys_path_hacks/lms/experiments/tests/test_views_custom.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing experiments.tests.test_views_custom instead of lms.djangoapps.experiments.tests.test_views_custom is deprecated", stacklevel=2) + +from lms.djangoapps.experiments.tests.test_views_custom import * diff --git a/sys_path_hacks/lms/experiments/urls.py b/sys_path_hacks/lms/experiments/urls.py new file mode 100644 index 0000000000..1ba262b76c --- /dev/null +++ b/sys_path_hacks/lms/experiments/urls.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing experiments.urls instead of lms.djangoapps.experiments.urls is deprecated", stacklevel=2) + +from lms.djangoapps.experiments.urls import * diff --git a/sys_path_hacks/lms/experiments/utils.py b/sys_path_hacks/lms/experiments/utils.py new file mode 100644 index 0000000000..780482fa3b --- /dev/null +++ b/sys_path_hacks/lms/experiments/utils.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing experiments.utils instead of lms.djangoapps.experiments.utils is deprecated", stacklevel=2) + +from lms.djangoapps.experiments.utils import * diff --git a/sys_path_hacks/lms/experiments/views.py b/sys_path_hacks/lms/experiments/views.py new file mode 100644 index 0000000000..f57da52a80 --- /dev/null +++ b/sys_path_hacks/lms/experiments/views.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing experiments.views instead of lms.djangoapps.experiments.views is deprecated", stacklevel=2) + +from lms.djangoapps.experiments.views import * diff --git a/sys_path_hacks/lms/experiments/views_custom.py b/sys_path_hacks/lms/experiments/views_custom.py new file mode 100644 index 0000000000..05a85788fd --- /dev/null +++ b/sys_path_hacks/lms/experiments/views_custom.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing experiments.views_custom instead of lms.djangoapps.experiments.views_custom is deprecated", stacklevel=2) + +from lms.djangoapps.experiments.views_custom import * diff --git a/sys_path_hacks/lms/gating/__init__.py b/sys_path_hacks/lms/gating/__init__.py new file mode 100644 index 0000000000..af67a8f5e4 --- /dev/null +++ b/sys_path_hacks/lms/gating/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing gating instead of lms.djangoapps.gating is deprecated", stacklevel=2) + +from lms.djangoapps.gating import * diff --git a/sys_path_hacks/lms/gating/api.py b/sys_path_hacks/lms/gating/api.py new file mode 100644 index 0000000000..d4ff8902c1 --- /dev/null +++ b/sys_path_hacks/lms/gating/api.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing gating.api instead of lms.djangoapps.gating.api is deprecated", stacklevel=2) + +from lms.djangoapps.gating.api import * diff --git a/sys_path_hacks/lms/gating/apps.py b/sys_path_hacks/lms/gating/apps.py new file mode 100644 index 0000000000..d696a544bb --- /dev/null +++ b/sys_path_hacks/lms/gating/apps.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing gating.apps instead of lms.djangoapps.gating.apps is deprecated", stacklevel=2) + +from lms.djangoapps.gating.apps import * diff --git a/sys_path_hacks/lms/gating/signals.py b/sys_path_hacks/lms/gating/signals.py new file mode 100644 index 0000000000..76b35c2033 --- /dev/null +++ b/sys_path_hacks/lms/gating/signals.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing gating.signals instead of lms.djangoapps.gating.signals is deprecated", stacklevel=2) + +from lms.djangoapps.gating.signals import * diff --git a/sys_path_hacks/lms/gating/tasks.py b/sys_path_hacks/lms/gating/tasks.py new file mode 100644 index 0000000000..3ef6d500b7 --- /dev/null +++ b/sys_path_hacks/lms/gating/tasks.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing gating.tasks instead of lms.djangoapps.gating.tasks is deprecated", stacklevel=2) + +from lms.djangoapps.gating.tasks import * diff --git a/sys_path_hacks/lms/gating/tests/__init__.py b/sys_path_hacks/lms/gating/tests/__init__.py new file mode 100644 index 0000000000..2a7e7ea967 --- /dev/null +++ b/sys_path_hacks/lms/gating/tests/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing gating.tests instead of lms.djangoapps.gating.tests is deprecated", stacklevel=2) + +from lms.djangoapps.gating.tests import * diff --git a/sys_path_hacks/lms/gating/tests/test_api.py b/sys_path_hacks/lms/gating/tests/test_api.py new file mode 100644 index 0000000000..a3bf0fec5e --- /dev/null +++ b/sys_path_hacks/lms/gating/tests/test_api.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing gating.tests.test_api instead of lms.djangoapps.gating.tests.test_api is deprecated", stacklevel=2) + +from lms.djangoapps.gating.tests.test_api import * diff --git a/sys_path_hacks/lms/gating/tests/test_integration.py b/sys_path_hacks/lms/gating/tests/test_integration.py new file mode 100644 index 0000000000..8f27c00f78 --- /dev/null +++ b/sys_path_hacks/lms/gating/tests/test_integration.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing gating.tests.test_integration instead of lms.djangoapps.gating.tests.test_integration is deprecated", stacklevel=2) + +from lms.djangoapps.gating.tests.test_integration import * diff --git a/sys_path_hacks/lms/gating/tests/test_signals.py b/sys_path_hacks/lms/gating/tests/test_signals.py new file mode 100644 index 0000000000..592d5556ce --- /dev/null +++ b/sys_path_hacks/lms/gating/tests/test_signals.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing gating.tests.test_signals instead of lms.djangoapps.gating.tests.test_signals is deprecated", stacklevel=2) + +from lms.djangoapps.gating.tests.test_signals import * diff --git a/sys_path_hacks/lms/grades/__init__.py b/sys_path_hacks/lms/grades/__init__.py new file mode 100644 index 0000000000..1409361025 --- /dev/null +++ b/sys_path_hacks/lms/grades/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing grades instead of lms.djangoapps.grades is deprecated", stacklevel=2) + +from lms.djangoapps.grades import * diff --git a/sys_path_hacks/lms/grades/admin.py b/sys_path_hacks/lms/grades/admin.py new file mode 100644 index 0000000000..ba28cbb998 --- /dev/null +++ b/sys_path_hacks/lms/grades/admin.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing grades.admin instead of lms.djangoapps.grades.admin is deprecated", stacklevel=2) + +from lms.djangoapps.grades.admin import * diff --git a/sys_path_hacks/lms/grades/api.py b/sys_path_hacks/lms/grades/api.py new file mode 100644 index 0000000000..d242e293e9 --- /dev/null +++ b/sys_path_hacks/lms/grades/api.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing grades.api instead of lms.djangoapps.grades.api is deprecated", stacklevel=2) + +from lms.djangoapps.grades.api import * diff --git a/sys_path_hacks/lms/grades/apps.py b/sys_path_hacks/lms/grades/apps.py new file mode 100644 index 0000000000..d7c5988253 --- /dev/null +++ b/sys_path_hacks/lms/grades/apps.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing grades.apps instead of lms.djangoapps.grades.apps is deprecated", stacklevel=2) + +from lms.djangoapps.grades.apps import * diff --git a/sys_path_hacks/lms/grades/config/__init__.py b/sys_path_hacks/lms/grades/config/__init__.py new file mode 100644 index 0000000000..2d913cafe9 --- /dev/null +++ b/sys_path_hacks/lms/grades/config/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing grades.config instead of lms.djangoapps.grades.config is deprecated", stacklevel=2) + +from lms.djangoapps.grades.config import * diff --git a/sys_path_hacks/lms/grades/config/forms.py b/sys_path_hacks/lms/grades/config/forms.py new file mode 100644 index 0000000000..ebaa3ad71e --- /dev/null +++ b/sys_path_hacks/lms/grades/config/forms.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing grades.config.forms instead of lms.djangoapps.grades.config.forms is deprecated", stacklevel=2) + +from lms.djangoapps.grades.config.forms import * diff --git a/sys_path_hacks/lms/grades/config/models.py b/sys_path_hacks/lms/grades/config/models.py new file mode 100644 index 0000000000..73e4d0bfcd --- /dev/null +++ b/sys_path_hacks/lms/grades/config/models.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing grades.config.models instead of lms.djangoapps.grades.config.models is deprecated", stacklevel=2) + +from lms.djangoapps.grades.config.models import * diff --git a/sys_path_hacks/lms/grades/config/tests/__init__.py b/sys_path_hacks/lms/grades/config/tests/__init__.py new file mode 100644 index 0000000000..f2a8583e92 --- /dev/null +++ b/sys_path_hacks/lms/grades/config/tests/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing grades.config.tests instead of lms.djangoapps.grades.config.tests is deprecated", stacklevel=2) + +from lms.djangoapps.grades.config.tests import * diff --git a/sys_path_hacks/lms/grades/config/tests/test_models.py b/sys_path_hacks/lms/grades/config/tests/test_models.py new file mode 100644 index 0000000000..330863ea6c --- /dev/null +++ b/sys_path_hacks/lms/grades/config/tests/test_models.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing grades.config.tests.test_models instead of lms.djangoapps.grades.config.tests.test_models is deprecated", stacklevel=2) + +from lms.djangoapps.grades.config.tests.test_models import * diff --git a/sys_path_hacks/lms/grades/config/tests/utils.py b/sys_path_hacks/lms/grades/config/tests/utils.py new file mode 100644 index 0000000000..06f7e24d54 --- /dev/null +++ b/sys_path_hacks/lms/grades/config/tests/utils.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing grades.config.tests.utils instead of lms.djangoapps.grades.config.tests.utils is deprecated", stacklevel=2) + +from lms.djangoapps.grades.config.tests.utils import * diff --git a/sys_path_hacks/lms/grades/config/waffle.py b/sys_path_hacks/lms/grades/config/waffle.py new file mode 100644 index 0000000000..253a349b6b --- /dev/null +++ b/sys_path_hacks/lms/grades/config/waffle.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing grades.config.waffle instead of lms.djangoapps.grades.config.waffle is deprecated", stacklevel=2) + +from lms.djangoapps.grades.config.waffle import * diff --git a/sys_path_hacks/lms/grades/constants.py b/sys_path_hacks/lms/grades/constants.py new file mode 100644 index 0000000000..83291923bb --- /dev/null +++ b/sys_path_hacks/lms/grades/constants.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing grades.constants instead of lms.djangoapps.grades.constants is deprecated", stacklevel=2) + +from lms.djangoapps.grades.constants import * diff --git a/sys_path_hacks/lms/grades/context.py b/sys_path_hacks/lms/grades/context.py new file mode 100644 index 0000000000..e714f8ee34 --- /dev/null +++ b/sys_path_hacks/lms/grades/context.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing grades.context instead of lms.djangoapps.grades.context is deprecated", stacklevel=2) + +from lms.djangoapps.grades.context import * diff --git a/sys_path_hacks/lms/grades/course_data.py b/sys_path_hacks/lms/grades/course_data.py new file mode 100644 index 0000000000..f0b05a4129 --- /dev/null +++ b/sys_path_hacks/lms/grades/course_data.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing grades.course_data instead of lms.djangoapps.grades.course_data is deprecated", stacklevel=2) + +from lms.djangoapps.grades.course_data import * diff --git a/sys_path_hacks/lms/grades/course_grade.py b/sys_path_hacks/lms/grades/course_grade.py new file mode 100644 index 0000000000..aa6be9eb0e --- /dev/null +++ b/sys_path_hacks/lms/grades/course_grade.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing grades.course_grade instead of lms.djangoapps.grades.course_grade is deprecated", stacklevel=2) + +from lms.djangoapps.grades.course_grade import * diff --git a/sys_path_hacks/lms/grades/course_grade_factory.py b/sys_path_hacks/lms/grades/course_grade_factory.py new file mode 100644 index 0000000000..8fc90d143f --- /dev/null +++ b/sys_path_hacks/lms/grades/course_grade_factory.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing grades.course_grade_factory instead of lms.djangoapps.grades.course_grade_factory is deprecated", stacklevel=2) + +from lms.djangoapps.grades.course_grade_factory import * diff --git a/sys_path_hacks/lms/grades/events.py b/sys_path_hacks/lms/grades/events.py new file mode 100644 index 0000000000..51a2a85fd0 --- /dev/null +++ b/sys_path_hacks/lms/grades/events.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing grades.events instead of lms.djangoapps.grades.events is deprecated", stacklevel=2) + +from lms.djangoapps.grades.events import * diff --git a/sys_path_hacks/lms/grades/exceptions.py b/sys_path_hacks/lms/grades/exceptions.py new file mode 100644 index 0000000000..34712ecea5 --- /dev/null +++ b/sys_path_hacks/lms/grades/exceptions.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing grades.exceptions instead of lms.djangoapps.grades.exceptions is deprecated", stacklevel=2) + +from lms.djangoapps.grades.exceptions import * diff --git a/sys_path_hacks/lms/grades/grade_utils.py b/sys_path_hacks/lms/grades/grade_utils.py new file mode 100644 index 0000000000..a8801323c0 --- /dev/null +++ b/sys_path_hacks/lms/grades/grade_utils.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing grades.grade_utils instead of lms.djangoapps.grades.grade_utils is deprecated", stacklevel=2) + +from lms.djangoapps.grades.grade_utils import * diff --git a/sys_path_hacks/lms/grades/management/__init__.py b/sys_path_hacks/lms/grades/management/__init__.py new file mode 100644 index 0000000000..e56f8d8c94 --- /dev/null +++ b/sys_path_hacks/lms/grades/management/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing grades.management instead of lms.djangoapps.grades.management is deprecated", stacklevel=2) + +from lms.djangoapps.grades.management import * diff --git a/sys_path_hacks/lms/grades/management/commands/__init__.py b/sys_path_hacks/lms/grades/management/commands/__init__.py new file mode 100644 index 0000000000..750e5dabdc --- /dev/null +++ b/sys_path_hacks/lms/grades/management/commands/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing grades.management.commands instead of lms.djangoapps.grades.management.commands is deprecated", stacklevel=2) + +from lms.djangoapps.grades.management.commands import * diff --git a/sys_path_hacks/lms/grades/management/commands/compute_grades.py b/sys_path_hacks/lms/grades/management/commands/compute_grades.py new file mode 100644 index 0000000000..193aaade1a --- /dev/null +++ b/sys_path_hacks/lms/grades/management/commands/compute_grades.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing grades.management.commands.compute_grades instead of lms.djangoapps.grades.management.commands.compute_grades is deprecated", stacklevel=2) + +from lms.djangoapps.grades.management.commands.compute_grades import * diff --git a/sys_path_hacks/lms/grades/management/commands/recalculate_learner_grades.py b/sys_path_hacks/lms/grades/management/commands/recalculate_learner_grades.py new file mode 100644 index 0000000000..330ac8629c --- /dev/null +++ b/sys_path_hacks/lms/grades/management/commands/recalculate_learner_grades.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing grades.management.commands.recalculate_learner_grades instead of lms.djangoapps.grades.management.commands.recalculate_learner_grades is deprecated", stacklevel=2) + +from lms.djangoapps.grades.management.commands.recalculate_learner_grades import * diff --git a/sys_path_hacks/lms/grades/management/commands/recalculate_subsection_grades.py b/sys_path_hacks/lms/grades/management/commands/recalculate_subsection_grades.py new file mode 100644 index 0000000000..1ab5a92e1f --- /dev/null +++ b/sys_path_hacks/lms/grades/management/commands/recalculate_subsection_grades.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing grades.management.commands.recalculate_subsection_grades instead of lms.djangoapps.grades.management.commands.recalculate_subsection_grades is deprecated", stacklevel=2) + +from lms.djangoapps.grades.management.commands.recalculate_subsection_grades import * diff --git a/sys_path_hacks/lms/grades/management/commands/tests/__init__.py b/sys_path_hacks/lms/grades/management/commands/tests/__init__.py new file mode 100644 index 0000000000..c97f3ec685 --- /dev/null +++ b/sys_path_hacks/lms/grades/management/commands/tests/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing grades.management.commands.tests instead of lms.djangoapps.grades.management.commands.tests is deprecated", stacklevel=2) + +from lms.djangoapps.grades.management.commands.tests import * diff --git a/sys_path_hacks/lms/grades/management/commands/tests/test_compute_grades.py b/sys_path_hacks/lms/grades/management/commands/tests/test_compute_grades.py new file mode 100644 index 0000000000..8c4bdde149 --- /dev/null +++ b/sys_path_hacks/lms/grades/management/commands/tests/test_compute_grades.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing grades.management.commands.tests.test_compute_grades instead of lms.djangoapps.grades.management.commands.tests.test_compute_grades is deprecated", stacklevel=2) + +from lms.djangoapps.grades.management.commands.tests.test_compute_grades import * diff --git a/sys_path_hacks/lms/grades/management/commands/tests/test_recalculate_learner_grades.py b/sys_path_hacks/lms/grades/management/commands/tests/test_recalculate_learner_grades.py new file mode 100644 index 0000000000..44485fea69 --- /dev/null +++ b/sys_path_hacks/lms/grades/management/commands/tests/test_recalculate_learner_grades.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing grades.management.commands.tests.test_recalculate_learner_grades instead of lms.djangoapps.grades.management.commands.tests.test_recalculate_learner_grades is deprecated", stacklevel=2) + +from lms.djangoapps.grades.management.commands.tests.test_recalculate_learner_grades import * diff --git a/sys_path_hacks/lms/grades/management/commands/tests/test_recalculate_subsection_grades.py b/sys_path_hacks/lms/grades/management/commands/tests/test_recalculate_subsection_grades.py new file mode 100644 index 0000000000..13564af15c --- /dev/null +++ b/sys_path_hacks/lms/grades/management/commands/tests/test_recalculate_subsection_grades.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing grades.management.commands.tests.test_recalculate_subsection_grades instead of lms.djangoapps.grades.management.commands.tests.test_recalculate_subsection_grades is deprecated", stacklevel=2) + +from lms.djangoapps.grades.management.commands.tests.test_recalculate_subsection_grades import * diff --git a/sys_path_hacks/lms/grades/models.py b/sys_path_hacks/lms/grades/models.py new file mode 100644 index 0000000000..7af56cd025 --- /dev/null +++ b/sys_path_hacks/lms/grades/models.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing grades.models instead of lms.djangoapps.grades.models is deprecated", stacklevel=2) + +from lms.djangoapps.grades.models import * diff --git a/sys_path_hacks/lms/grades/models_api.py b/sys_path_hacks/lms/grades/models_api.py new file mode 100644 index 0000000000..0784f736ff --- /dev/null +++ b/sys_path_hacks/lms/grades/models_api.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing grades.models_api instead of lms.djangoapps.grades.models_api is deprecated", stacklevel=2) + +from lms.djangoapps.grades.models_api import * diff --git a/sys_path_hacks/lms/grades/rest_api/__init__.py b/sys_path_hacks/lms/grades/rest_api/__init__.py new file mode 100644 index 0000000000..95de78574a --- /dev/null +++ b/sys_path_hacks/lms/grades/rest_api/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing grades.rest_api instead of lms.djangoapps.grades.rest_api is deprecated", stacklevel=2) + +from lms.djangoapps.grades.rest_api import * diff --git a/sys_path_hacks/lms/grades/rest_api/serializers.py b/sys_path_hacks/lms/grades/rest_api/serializers.py new file mode 100644 index 0000000000..4d678cd5f2 --- /dev/null +++ b/sys_path_hacks/lms/grades/rest_api/serializers.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing grades.rest_api.serializers instead of lms.djangoapps.grades.rest_api.serializers is deprecated", stacklevel=2) + +from lms.djangoapps.grades.rest_api.serializers import * diff --git a/sys_path_hacks/lms/grades/rest_api/urls.py b/sys_path_hacks/lms/grades/rest_api/urls.py new file mode 100644 index 0000000000..a2c9ee3a55 --- /dev/null +++ b/sys_path_hacks/lms/grades/rest_api/urls.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing grades.rest_api.urls instead of lms.djangoapps.grades.rest_api.urls is deprecated", stacklevel=2) + +from lms.djangoapps.grades.rest_api.urls import * diff --git a/sys_path_hacks/lms/grades/rest_api/v1/__init__.py b/sys_path_hacks/lms/grades/rest_api/v1/__init__.py new file mode 100644 index 0000000000..06c9ee064a --- /dev/null +++ b/sys_path_hacks/lms/grades/rest_api/v1/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing grades.rest_api.v1 instead of lms.djangoapps.grades.rest_api.v1 is deprecated", stacklevel=2) + +from lms.djangoapps.grades.rest_api.v1 import * diff --git a/sys_path_hacks/lms/grades/rest_api/v1/gradebook_views.py b/sys_path_hacks/lms/grades/rest_api/v1/gradebook_views.py new file mode 100644 index 0000000000..b8e6834db2 --- /dev/null +++ b/sys_path_hacks/lms/grades/rest_api/v1/gradebook_views.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing grades.rest_api.v1.gradebook_views instead of lms.djangoapps.grades.rest_api.v1.gradebook_views is deprecated", stacklevel=2) + +from lms.djangoapps.grades.rest_api.v1.gradebook_views import * diff --git a/sys_path_hacks/lms/grades/rest_api/v1/tests/__init__.py b/sys_path_hacks/lms/grades/rest_api/v1/tests/__init__.py new file mode 100644 index 0000000000..1539207154 --- /dev/null +++ b/sys_path_hacks/lms/grades/rest_api/v1/tests/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing grades.rest_api.v1.tests instead of lms.djangoapps.grades.rest_api.v1.tests is deprecated", stacklevel=2) + +from lms.djangoapps.grades.rest_api.v1.tests import * diff --git a/sys_path_hacks/lms/grades/rest_api/v1/tests/mixins.py b/sys_path_hacks/lms/grades/rest_api/v1/tests/mixins.py new file mode 100644 index 0000000000..e42d138939 --- /dev/null +++ b/sys_path_hacks/lms/grades/rest_api/v1/tests/mixins.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing grades.rest_api.v1.tests.mixins instead of lms.djangoapps.grades.rest_api.v1.tests.mixins is deprecated", stacklevel=2) + +from lms.djangoapps.grades.rest_api.v1.tests.mixins import * diff --git a/sys_path_hacks/lms/grades/rest_api/v1/tests/test_gradebook_views.py b/sys_path_hacks/lms/grades/rest_api/v1/tests/test_gradebook_views.py new file mode 100644 index 0000000000..7772c9190c --- /dev/null +++ b/sys_path_hacks/lms/grades/rest_api/v1/tests/test_gradebook_views.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing grades.rest_api.v1.tests.test_gradebook_views instead of lms.djangoapps.grades.rest_api.v1.tests.test_gradebook_views is deprecated", stacklevel=2) + +from lms.djangoapps.grades.rest_api.v1.tests.test_gradebook_views import * diff --git a/sys_path_hacks/lms/grades/rest_api/v1/tests/test_grading_policy_view.py b/sys_path_hacks/lms/grades/rest_api/v1/tests/test_grading_policy_view.py new file mode 100644 index 0000000000..e1c256c6db --- /dev/null +++ b/sys_path_hacks/lms/grades/rest_api/v1/tests/test_grading_policy_view.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing grades.rest_api.v1.tests.test_grading_policy_view instead of lms.djangoapps.grades.rest_api.v1.tests.test_grading_policy_view is deprecated", stacklevel=2) + +from lms.djangoapps.grades.rest_api.v1.tests.test_grading_policy_view import * diff --git a/sys_path_hacks/lms/grades/rest_api/v1/tests/test_views.py b/sys_path_hacks/lms/grades/rest_api/v1/tests/test_views.py new file mode 100644 index 0000000000..1917a7624d --- /dev/null +++ b/sys_path_hacks/lms/grades/rest_api/v1/tests/test_views.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing grades.rest_api.v1.tests.test_views instead of lms.djangoapps.grades.rest_api.v1.tests.test_views is deprecated", stacklevel=2) + +from lms.djangoapps.grades.rest_api.v1.tests.test_views import * diff --git a/sys_path_hacks/lms/grades/rest_api/v1/urls.py b/sys_path_hacks/lms/grades/rest_api/v1/urls.py new file mode 100644 index 0000000000..e508136f02 --- /dev/null +++ b/sys_path_hacks/lms/grades/rest_api/v1/urls.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing grades.rest_api.v1.urls instead of lms.djangoapps.grades.rest_api.v1.urls is deprecated", stacklevel=2) + +from lms.djangoapps.grades.rest_api.v1.urls import * diff --git a/sys_path_hacks/lms/grades/rest_api/v1/utils.py b/sys_path_hacks/lms/grades/rest_api/v1/utils.py new file mode 100644 index 0000000000..b8f77d8454 --- /dev/null +++ b/sys_path_hacks/lms/grades/rest_api/v1/utils.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing grades.rest_api.v1.utils instead of lms.djangoapps.grades.rest_api.v1.utils is deprecated", stacklevel=2) + +from lms.djangoapps.grades.rest_api.v1.utils import * diff --git a/sys_path_hacks/lms/grades/rest_api/v1/views.py b/sys_path_hacks/lms/grades/rest_api/v1/views.py new file mode 100644 index 0000000000..d63a0af320 --- /dev/null +++ b/sys_path_hacks/lms/grades/rest_api/v1/views.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing grades.rest_api.v1.views instead of lms.djangoapps.grades.rest_api.v1.views is deprecated", stacklevel=2) + +from lms.djangoapps.grades.rest_api.v1.views import * diff --git a/sys_path_hacks/lms/grades/scores.py b/sys_path_hacks/lms/grades/scores.py new file mode 100644 index 0000000000..8f6c7f4079 --- /dev/null +++ b/sys_path_hacks/lms/grades/scores.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing grades.scores instead of lms.djangoapps.grades.scores is deprecated", stacklevel=2) + +from lms.djangoapps.grades.scores import * diff --git a/sys_path_hacks/lms/grades/services.py b/sys_path_hacks/lms/grades/services.py new file mode 100644 index 0000000000..588ba7d4cc --- /dev/null +++ b/sys_path_hacks/lms/grades/services.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing grades.services instead of lms.djangoapps.grades.services is deprecated", stacklevel=2) + +from lms.djangoapps.grades.services import * diff --git a/sys_path_hacks/lms/grades/settings/__init__.py b/sys_path_hacks/lms/grades/settings/__init__.py new file mode 100644 index 0000000000..4cb94266dd --- /dev/null +++ b/sys_path_hacks/lms/grades/settings/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing grades.settings instead of lms.djangoapps.grades.settings is deprecated", stacklevel=2) + +from lms.djangoapps.grades.settings import * diff --git a/sys_path_hacks/lms/grades/settings/common.py b/sys_path_hacks/lms/grades/settings/common.py new file mode 100644 index 0000000000..7054d1f948 --- /dev/null +++ b/sys_path_hacks/lms/grades/settings/common.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing grades.settings.common instead of lms.djangoapps.grades.settings.common is deprecated", stacklevel=2) + +from lms.djangoapps.grades.settings.common import * diff --git a/sys_path_hacks/lms/grades/settings/production.py b/sys_path_hacks/lms/grades/settings/production.py new file mode 100644 index 0000000000..88b2236ab7 --- /dev/null +++ b/sys_path_hacks/lms/grades/settings/production.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing grades.settings.production instead of lms.djangoapps.grades.settings.production is deprecated", stacklevel=2) + +from lms.djangoapps.grades.settings.production import * diff --git a/sys_path_hacks/lms/grades/settings/test.py b/sys_path_hacks/lms/grades/settings/test.py new file mode 100644 index 0000000000..a563d201b1 --- /dev/null +++ b/sys_path_hacks/lms/grades/settings/test.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing grades.settings.test instead of lms.djangoapps.grades.settings.test is deprecated", stacklevel=2) + +from lms.djangoapps.grades.settings.test import * diff --git a/sys_path_hacks/lms/grades/signals/__init__.py b/sys_path_hacks/lms/grades/signals/__init__.py new file mode 100644 index 0000000000..111f3cbff4 --- /dev/null +++ b/sys_path_hacks/lms/grades/signals/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing grades.signals instead of lms.djangoapps.grades.signals is deprecated", stacklevel=2) + +from lms.djangoapps.grades.signals import * diff --git a/sys_path_hacks/lms/grades/signals/handlers.py b/sys_path_hacks/lms/grades/signals/handlers.py new file mode 100644 index 0000000000..0ef23fecd0 --- /dev/null +++ b/sys_path_hacks/lms/grades/signals/handlers.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing grades.signals.handlers instead of lms.djangoapps.grades.signals.handlers is deprecated", stacklevel=2) + +from lms.djangoapps.grades.signals.handlers import * diff --git a/sys_path_hacks/lms/grades/signals/signals.py b/sys_path_hacks/lms/grades/signals/signals.py new file mode 100644 index 0000000000..27660e03fa --- /dev/null +++ b/sys_path_hacks/lms/grades/signals/signals.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing grades.signals.signals instead of lms.djangoapps.grades.signals.signals is deprecated", stacklevel=2) + +from lms.djangoapps.grades.signals.signals import * diff --git a/sys_path_hacks/lms/grades/subsection_grade.py b/sys_path_hacks/lms/grades/subsection_grade.py new file mode 100644 index 0000000000..1ea880ab84 --- /dev/null +++ b/sys_path_hacks/lms/grades/subsection_grade.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing grades.subsection_grade instead of lms.djangoapps.grades.subsection_grade is deprecated", stacklevel=2) + +from lms.djangoapps.grades.subsection_grade import * diff --git a/sys_path_hacks/lms/grades/subsection_grade_factory.py b/sys_path_hacks/lms/grades/subsection_grade_factory.py new file mode 100644 index 0000000000..48b6a47a78 --- /dev/null +++ b/sys_path_hacks/lms/grades/subsection_grade_factory.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing grades.subsection_grade_factory instead of lms.djangoapps.grades.subsection_grade_factory is deprecated", stacklevel=2) + +from lms.djangoapps.grades.subsection_grade_factory import * diff --git a/sys_path_hacks/lms/grades/tasks.py b/sys_path_hacks/lms/grades/tasks.py new file mode 100644 index 0000000000..b7134a306e --- /dev/null +++ b/sys_path_hacks/lms/grades/tasks.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing grades.tasks instead of lms.djangoapps.grades.tasks is deprecated", stacklevel=2) + +from lms.djangoapps.grades.tasks import * diff --git a/sys_path_hacks/lms/grades/tests/__init__.py b/sys_path_hacks/lms/grades/tests/__init__.py new file mode 100644 index 0000000000..8889459eef --- /dev/null +++ b/sys_path_hacks/lms/grades/tests/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing grades.tests instead of lms.djangoapps.grades.tests is deprecated", stacklevel=2) + +from lms.djangoapps.grades.tests import * diff --git a/sys_path_hacks/lms/grades/tests/base.py b/sys_path_hacks/lms/grades/tests/base.py new file mode 100644 index 0000000000..e3bc50e820 --- /dev/null +++ b/sys_path_hacks/lms/grades/tests/base.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing grades.tests.base instead of lms.djangoapps.grades.tests.base is deprecated", stacklevel=2) + +from lms.djangoapps.grades.tests.base import * diff --git a/sys_path_hacks/lms/grades/tests/integration/__init__.py b/sys_path_hacks/lms/grades/tests/integration/__init__.py new file mode 100644 index 0000000000..b3c02b0a15 --- /dev/null +++ b/sys_path_hacks/lms/grades/tests/integration/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing grades.tests.integration instead of lms.djangoapps.grades.tests.integration is deprecated", stacklevel=2) + +from lms.djangoapps.grades.tests.integration import * diff --git a/sys_path_hacks/lms/grades/tests/integration/test_access.py b/sys_path_hacks/lms/grades/tests/integration/test_access.py new file mode 100644 index 0000000000..4b03375071 --- /dev/null +++ b/sys_path_hacks/lms/grades/tests/integration/test_access.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing grades.tests.integration.test_access instead of lms.djangoapps.grades.tests.integration.test_access is deprecated", stacklevel=2) + +from lms.djangoapps.grades.tests.integration.test_access import * diff --git a/sys_path_hacks/lms/grades/tests/integration/test_events.py b/sys_path_hacks/lms/grades/tests/integration/test_events.py new file mode 100644 index 0000000000..10c09a55a8 --- /dev/null +++ b/sys_path_hacks/lms/grades/tests/integration/test_events.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing grades.tests.integration.test_events instead of lms.djangoapps.grades.tests.integration.test_events is deprecated", stacklevel=2) + +from lms.djangoapps.grades.tests.integration.test_events import * diff --git a/sys_path_hacks/lms/grades/tests/integration/test_problems.py b/sys_path_hacks/lms/grades/tests/integration/test_problems.py new file mode 100644 index 0000000000..84c52e7552 --- /dev/null +++ b/sys_path_hacks/lms/grades/tests/integration/test_problems.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing grades.tests.integration.test_problems instead of lms.djangoapps.grades.tests.integration.test_problems is deprecated", stacklevel=2) + +from lms.djangoapps.grades.tests.integration.test_problems import * diff --git a/sys_path_hacks/lms/grades/tests/test_api.py b/sys_path_hacks/lms/grades/tests/test_api.py new file mode 100644 index 0000000000..4dc99bf5b9 --- /dev/null +++ b/sys_path_hacks/lms/grades/tests/test_api.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing grades.tests.test_api instead of lms.djangoapps.grades.tests.test_api is deprecated", stacklevel=2) + +from lms.djangoapps.grades.tests.test_api import * diff --git a/sys_path_hacks/lms/grades/tests/test_course_data.py b/sys_path_hacks/lms/grades/tests/test_course_data.py new file mode 100644 index 0000000000..1a1f984ce4 --- /dev/null +++ b/sys_path_hacks/lms/grades/tests/test_course_data.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing grades.tests.test_course_data instead of lms.djangoapps.grades.tests.test_course_data is deprecated", stacklevel=2) + +from lms.djangoapps.grades.tests.test_course_data import * diff --git a/sys_path_hacks/lms/grades/tests/test_course_grade.py b/sys_path_hacks/lms/grades/tests/test_course_grade.py new file mode 100644 index 0000000000..8b590bd6e6 --- /dev/null +++ b/sys_path_hacks/lms/grades/tests/test_course_grade.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing grades.tests.test_course_grade instead of lms.djangoapps.grades.tests.test_course_grade is deprecated", stacklevel=2) + +from lms.djangoapps.grades.tests.test_course_grade import * diff --git a/sys_path_hacks/lms/grades/tests/test_course_grade_factory.py b/sys_path_hacks/lms/grades/tests/test_course_grade_factory.py new file mode 100644 index 0000000000..fc48c961ea --- /dev/null +++ b/sys_path_hacks/lms/grades/tests/test_course_grade_factory.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing grades.tests.test_course_grade_factory instead of lms.djangoapps.grades.tests.test_course_grade_factory is deprecated", stacklevel=2) + +from lms.djangoapps.grades.tests.test_course_grade_factory import * diff --git a/sys_path_hacks/lms/grades/tests/test_models.py b/sys_path_hacks/lms/grades/tests/test_models.py new file mode 100644 index 0000000000..edad5fc895 --- /dev/null +++ b/sys_path_hacks/lms/grades/tests/test_models.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing grades.tests.test_models instead of lms.djangoapps.grades.tests.test_models is deprecated", stacklevel=2) + +from lms.djangoapps.grades.tests.test_models import * diff --git a/sys_path_hacks/lms/grades/tests/test_scores.py b/sys_path_hacks/lms/grades/tests/test_scores.py new file mode 100644 index 0000000000..d9e8d8ef2e --- /dev/null +++ b/sys_path_hacks/lms/grades/tests/test_scores.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing grades.tests.test_scores instead of lms.djangoapps.grades.tests.test_scores is deprecated", stacklevel=2) + +from lms.djangoapps.grades.tests.test_scores import * diff --git a/sys_path_hacks/lms/grades/tests/test_services.py b/sys_path_hacks/lms/grades/tests/test_services.py new file mode 100644 index 0000000000..58de8e5c68 --- /dev/null +++ b/sys_path_hacks/lms/grades/tests/test_services.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing grades.tests.test_services instead of lms.djangoapps.grades.tests.test_services is deprecated", stacklevel=2) + +from lms.djangoapps.grades.tests.test_services import * diff --git a/sys_path_hacks/lms/grades/tests/test_signals.py b/sys_path_hacks/lms/grades/tests/test_signals.py new file mode 100644 index 0000000000..d8fb2f8a93 --- /dev/null +++ b/sys_path_hacks/lms/grades/tests/test_signals.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing grades.tests.test_signals instead of lms.djangoapps.grades.tests.test_signals is deprecated", stacklevel=2) + +from lms.djangoapps.grades.tests.test_signals import * diff --git a/sys_path_hacks/lms/grades/tests/test_subsection_grade.py b/sys_path_hacks/lms/grades/tests/test_subsection_grade.py new file mode 100644 index 0000000000..11f5d92de8 --- /dev/null +++ b/sys_path_hacks/lms/grades/tests/test_subsection_grade.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing grades.tests.test_subsection_grade instead of lms.djangoapps.grades.tests.test_subsection_grade is deprecated", stacklevel=2) + +from lms.djangoapps.grades.tests.test_subsection_grade import * diff --git a/sys_path_hacks/lms/grades/tests/test_subsection_grade_factory.py b/sys_path_hacks/lms/grades/tests/test_subsection_grade_factory.py new file mode 100644 index 0000000000..5fa2228581 --- /dev/null +++ b/sys_path_hacks/lms/grades/tests/test_subsection_grade_factory.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing grades.tests.test_subsection_grade_factory instead of lms.djangoapps.grades.tests.test_subsection_grade_factory is deprecated", stacklevel=2) + +from lms.djangoapps.grades.tests.test_subsection_grade_factory import * diff --git a/sys_path_hacks/lms/grades/tests/test_tasks.py b/sys_path_hacks/lms/grades/tests/test_tasks.py new file mode 100644 index 0000000000..ea019739da --- /dev/null +++ b/sys_path_hacks/lms/grades/tests/test_tasks.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing grades.tests.test_tasks instead of lms.djangoapps.grades.tests.test_tasks is deprecated", stacklevel=2) + +from lms.djangoapps.grades.tests.test_tasks import * diff --git a/sys_path_hacks/lms/grades/tests/test_transformer.py b/sys_path_hacks/lms/grades/tests/test_transformer.py new file mode 100644 index 0000000000..877e5327b5 --- /dev/null +++ b/sys_path_hacks/lms/grades/tests/test_transformer.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing grades.tests.test_transformer instead of lms.djangoapps.grades.tests.test_transformer is deprecated", stacklevel=2) + +from lms.djangoapps.grades.tests.test_transformer import * diff --git a/sys_path_hacks/lms/grades/tests/utils.py b/sys_path_hacks/lms/grades/tests/utils.py new file mode 100644 index 0000000000..868ae58712 --- /dev/null +++ b/sys_path_hacks/lms/grades/tests/utils.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing grades.tests.utils instead of lms.djangoapps.grades.tests.utils is deprecated", stacklevel=2) + +from lms.djangoapps.grades.tests.utils import * diff --git a/sys_path_hacks/lms/grades/transformer.py b/sys_path_hacks/lms/grades/transformer.py new file mode 100644 index 0000000000..f1c8445b97 --- /dev/null +++ b/sys_path_hacks/lms/grades/transformer.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing grades.transformer instead of lms.djangoapps.grades.transformer is deprecated", stacklevel=2) + +from lms.djangoapps.grades.transformer import * diff --git a/sys_path_hacks/lms/grades/util_services.py b/sys_path_hacks/lms/grades/util_services.py new file mode 100644 index 0000000000..639962607f --- /dev/null +++ b/sys_path_hacks/lms/grades/util_services.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing grades.util_services instead of lms.djangoapps.grades.util_services is deprecated", stacklevel=2) + +from lms.djangoapps.grades.util_services import * diff --git a/sys_path_hacks/lms/instructor/__init__.py b/sys_path_hacks/lms/instructor/__init__.py new file mode 100644 index 0000000000..7ac3dd5ff7 --- /dev/null +++ b/sys_path_hacks/lms/instructor/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing instructor instead of lms.djangoapps.instructor is deprecated", stacklevel=2) + +from lms.djangoapps.instructor import * diff --git a/sys_path_hacks/lms/instructor/access.py b/sys_path_hacks/lms/instructor/access.py new file mode 100644 index 0000000000..d5259d4a69 --- /dev/null +++ b/sys_path_hacks/lms/instructor/access.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing instructor.access instead of lms.djangoapps.instructor.access is deprecated", stacklevel=2) + +from lms.djangoapps.instructor.access import * diff --git a/sys_path_hacks/lms/instructor/apps.py b/sys_path_hacks/lms/instructor/apps.py new file mode 100644 index 0000000000..1ffcb95e35 --- /dev/null +++ b/sys_path_hacks/lms/instructor/apps.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing instructor.apps instead of lms.djangoapps.instructor.apps is deprecated", stacklevel=2) + +from lms.djangoapps.instructor.apps import * diff --git a/sys_path_hacks/lms/instructor/enrollment.py b/sys_path_hacks/lms/instructor/enrollment.py new file mode 100644 index 0000000000..8817373509 --- /dev/null +++ b/sys_path_hacks/lms/instructor/enrollment.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing instructor.enrollment instead of lms.djangoapps.instructor.enrollment is deprecated", stacklevel=2) + +from lms.djangoapps.instructor.enrollment import * diff --git a/sys_path_hacks/lms/instructor/message_types.py b/sys_path_hacks/lms/instructor/message_types.py new file mode 100644 index 0000000000..25d41e2e6c --- /dev/null +++ b/sys_path_hacks/lms/instructor/message_types.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing instructor.message_types instead of lms.djangoapps.instructor.message_types is deprecated", stacklevel=2) + +from lms.djangoapps.instructor.message_types import * diff --git a/sys_path_hacks/lms/instructor/permissions.py b/sys_path_hacks/lms/instructor/permissions.py new file mode 100644 index 0000000000..9443635486 --- /dev/null +++ b/sys_path_hacks/lms/instructor/permissions.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing instructor.permissions instead of lms.djangoapps.instructor.permissions is deprecated", stacklevel=2) + +from lms.djangoapps.instructor.permissions import * diff --git a/sys_path_hacks/lms/instructor/services.py b/sys_path_hacks/lms/instructor/services.py new file mode 100644 index 0000000000..9339547f7c --- /dev/null +++ b/sys_path_hacks/lms/instructor/services.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing instructor.services instead of lms.djangoapps.instructor.services is deprecated", stacklevel=2) + +from lms.djangoapps.instructor.services import * diff --git a/sys_path_hacks/lms/instructor/settings/__init__.py b/sys_path_hacks/lms/instructor/settings/__init__.py new file mode 100644 index 0000000000..3d46e67010 --- /dev/null +++ b/sys_path_hacks/lms/instructor/settings/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing instructor.settings instead of lms.djangoapps.instructor.settings is deprecated", stacklevel=2) + +from lms.djangoapps.instructor.settings import * diff --git a/sys_path_hacks/lms/instructor/settings/common.py b/sys_path_hacks/lms/instructor/settings/common.py new file mode 100644 index 0000000000..ed47c3bdc1 --- /dev/null +++ b/sys_path_hacks/lms/instructor/settings/common.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing instructor.settings.common instead of lms.djangoapps.instructor.settings.common is deprecated", stacklevel=2) + +from lms.djangoapps.instructor.settings.common import * diff --git a/sys_path_hacks/lms/instructor/settings/devstack.py b/sys_path_hacks/lms/instructor/settings/devstack.py new file mode 100644 index 0000000000..f503771b83 --- /dev/null +++ b/sys_path_hacks/lms/instructor/settings/devstack.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing instructor.settings.devstack instead of lms.djangoapps.instructor.settings.devstack is deprecated", stacklevel=2) + +from lms.djangoapps.instructor.settings.devstack import * diff --git a/sys_path_hacks/lms/instructor/settings/production.py b/sys_path_hacks/lms/instructor/settings/production.py new file mode 100644 index 0000000000..da12874c15 --- /dev/null +++ b/sys_path_hacks/lms/instructor/settings/production.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing instructor.settings.production instead of lms.djangoapps.instructor.settings.production is deprecated", stacklevel=2) + +from lms.djangoapps.instructor.settings.production import * diff --git a/sys_path_hacks/lms/instructor/settings/test.py b/sys_path_hacks/lms/instructor/settings/test.py new file mode 100644 index 0000000000..81834f7583 --- /dev/null +++ b/sys_path_hacks/lms/instructor/settings/test.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing instructor.settings.test instead of lms.djangoapps.instructor.settings.test is deprecated", stacklevel=2) + +from lms.djangoapps.instructor.settings.test import * diff --git a/sys_path_hacks/lms/instructor/tests/__init__.py b/sys_path_hacks/lms/instructor/tests/__init__.py new file mode 100644 index 0000000000..ba74aa2f39 --- /dev/null +++ b/sys_path_hacks/lms/instructor/tests/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing instructor.tests instead of lms.djangoapps.instructor.tests is deprecated", stacklevel=2) + +from lms.djangoapps.instructor.tests import * diff --git a/sys_path_hacks/lms/instructor/tests/test_access.py b/sys_path_hacks/lms/instructor/tests/test_access.py new file mode 100644 index 0000000000..d33fa7e691 --- /dev/null +++ b/sys_path_hacks/lms/instructor/tests/test_access.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing instructor.tests.test_access instead of lms.djangoapps.instructor.tests.test_access is deprecated", stacklevel=2) + +from lms.djangoapps.instructor.tests.test_access import * diff --git a/sys_path_hacks/lms/instructor/tests/test_api.py b/sys_path_hacks/lms/instructor/tests/test_api.py new file mode 100644 index 0000000000..f697bcdacc --- /dev/null +++ b/sys_path_hacks/lms/instructor/tests/test_api.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing instructor.tests.test_api instead of lms.djangoapps.instructor.tests.test_api is deprecated", stacklevel=2) + +from lms.djangoapps.instructor.tests.test_api import * diff --git a/sys_path_hacks/lms/instructor/tests/test_api_email_localization.py b/sys_path_hacks/lms/instructor/tests/test_api_email_localization.py new file mode 100644 index 0000000000..6f2b0c3f54 --- /dev/null +++ b/sys_path_hacks/lms/instructor/tests/test_api_email_localization.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing instructor.tests.test_api_email_localization instead of lms.djangoapps.instructor.tests.test_api_email_localization is deprecated", stacklevel=2) + +from lms.djangoapps.instructor.tests.test_api_email_localization import * diff --git a/sys_path_hacks/lms/instructor/tests/test_certificates.py b/sys_path_hacks/lms/instructor/tests/test_certificates.py new file mode 100644 index 0000000000..0c8d02dbca --- /dev/null +++ b/sys_path_hacks/lms/instructor/tests/test_certificates.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing instructor.tests.test_certificates instead of lms.djangoapps.instructor.tests.test_certificates is deprecated", stacklevel=2) + +from lms.djangoapps.instructor.tests.test_certificates import * diff --git a/sys_path_hacks/lms/instructor/tests/test_email.py b/sys_path_hacks/lms/instructor/tests/test_email.py new file mode 100644 index 0000000000..d36cba10ab --- /dev/null +++ b/sys_path_hacks/lms/instructor/tests/test_email.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing instructor.tests.test_email instead of lms.djangoapps.instructor.tests.test_email is deprecated", stacklevel=2) + +from lms.djangoapps.instructor.tests.test_email import * diff --git a/sys_path_hacks/lms/instructor/tests/test_enrollment.py b/sys_path_hacks/lms/instructor/tests/test_enrollment.py new file mode 100644 index 0000000000..ec96aee06d --- /dev/null +++ b/sys_path_hacks/lms/instructor/tests/test_enrollment.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing instructor.tests.test_enrollment instead of lms.djangoapps.instructor.tests.test_enrollment is deprecated", stacklevel=2) + +from lms.djangoapps.instructor.tests.test_enrollment import * diff --git a/sys_path_hacks/lms/instructor/tests/test_proctoring.py b/sys_path_hacks/lms/instructor/tests/test_proctoring.py new file mode 100644 index 0000000000..0c408c958c --- /dev/null +++ b/sys_path_hacks/lms/instructor/tests/test_proctoring.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing instructor.tests.test_proctoring instead of lms.djangoapps.instructor.tests.test_proctoring is deprecated", stacklevel=2) + +from lms.djangoapps.instructor.tests.test_proctoring import * diff --git a/sys_path_hacks/lms/instructor/tests/test_services.py b/sys_path_hacks/lms/instructor/tests/test_services.py new file mode 100644 index 0000000000..8667f7da90 --- /dev/null +++ b/sys_path_hacks/lms/instructor/tests/test_services.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing instructor.tests.test_services instead of lms.djangoapps.instructor.tests.test_services is deprecated", stacklevel=2) + +from lms.djangoapps.instructor.tests.test_services import * diff --git a/sys_path_hacks/lms/instructor/tests/test_spoc_gradebook.py b/sys_path_hacks/lms/instructor/tests/test_spoc_gradebook.py new file mode 100644 index 0000000000..fdbae53a24 --- /dev/null +++ b/sys_path_hacks/lms/instructor/tests/test_spoc_gradebook.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing instructor.tests.test_spoc_gradebook instead of lms.djangoapps.instructor.tests.test_spoc_gradebook is deprecated", stacklevel=2) + +from lms.djangoapps.instructor.tests.test_spoc_gradebook import * diff --git a/sys_path_hacks/lms/instructor/tests/test_tools.py b/sys_path_hacks/lms/instructor/tests/test_tools.py new file mode 100644 index 0000000000..f8f42f49c4 --- /dev/null +++ b/sys_path_hacks/lms/instructor/tests/test_tools.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing instructor.tests.test_tools instead of lms.djangoapps.instructor.tests.test_tools is deprecated", stacklevel=2) + +from lms.djangoapps.instructor.tests.test_tools import * diff --git a/sys_path_hacks/lms/instructor/tests/utils.py b/sys_path_hacks/lms/instructor/tests/utils.py new file mode 100644 index 0000000000..0ea82afb7f --- /dev/null +++ b/sys_path_hacks/lms/instructor/tests/utils.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing instructor.tests.utils instead of lms.djangoapps.instructor.tests.utils is deprecated", stacklevel=2) + +from lms.djangoapps.instructor.tests.utils import * diff --git a/sys_path_hacks/lms/instructor/tests/views/__init__.py b/sys_path_hacks/lms/instructor/tests/views/__init__.py new file mode 100644 index 0000000000..57947c0382 --- /dev/null +++ b/sys_path_hacks/lms/instructor/tests/views/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing instructor.tests.views instead of lms.djangoapps.instructor.tests.views is deprecated", stacklevel=2) + +from lms.djangoapps.instructor.tests.views import * diff --git a/sys_path_hacks/lms/instructor/tests/views/test_instructor_dashboard.py b/sys_path_hacks/lms/instructor/tests/views/test_instructor_dashboard.py new file mode 100644 index 0000000000..9dcb7467f6 --- /dev/null +++ b/sys_path_hacks/lms/instructor/tests/views/test_instructor_dashboard.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing instructor.tests.views.test_instructor_dashboard instead of lms.djangoapps.instructor.tests.views.test_instructor_dashboard is deprecated", stacklevel=2) + +from lms.djangoapps.instructor.tests.views.test_instructor_dashboard import * diff --git a/sys_path_hacks/lms/instructor/utils.py b/sys_path_hacks/lms/instructor/utils.py new file mode 100644 index 0000000000..4180768425 --- /dev/null +++ b/sys_path_hacks/lms/instructor/utils.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing instructor.utils instead of lms.djangoapps.instructor.utils is deprecated", stacklevel=2) + +from lms.djangoapps.instructor.utils import * diff --git a/sys_path_hacks/lms/instructor/views/__init__.py b/sys_path_hacks/lms/instructor/views/__init__.py new file mode 100644 index 0000000000..28c747c913 --- /dev/null +++ b/sys_path_hacks/lms/instructor/views/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing instructor.views instead of lms.djangoapps.instructor.views is deprecated", stacklevel=2) + +from lms.djangoapps.instructor.views import * diff --git a/sys_path_hacks/lms/instructor/views/api.py b/sys_path_hacks/lms/instructor/views/api.py new file mode 100644 index 0000000000..3f1065a235 --- /dev/null +++ b/sys_path_hacks/lms/instructor/views/api.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing instructor.views.api instead of lms.djangoapps.instructor.views.api is deprecated", stacklevel=2) + +from lms.djangoapps.instructor.views.api import * diff --git a/sys_path_hacks/lms/instructor/views/api_urls.py b/sys_path_hacks/lms/instructor/views/api_urls.py new file mode 100644 index 0000000000..5471a51094 --- /dev/null +++ b/sys_path_hacks/lms/instructor/views/api_urls.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing instructor.views.api_urls instead of lms.djangoapps.instructor.views.api_urls is deprecated", stacklevel=2) + +from lms.djangoapps.instructor.views.api_urls import * diff --git a/sys_path_hacks/lms/instructor/views/gradebook_api.py b/sys_path_hacks/lms/instructor/views/gradebook_api.py new file mode 100644 index 0000000000..225a71a732 --- /dev/null +++ b/sys_path_hacks/lms/instructor/views/gradebook_api.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing instructor.views.gradebook_api instead of lms.djangoapps.instructor.views.gradebook_api is deprecated", stacklevel=2) + +from lms.djangoapps.instructor.views.gradebook_api import * diff --git a/sys_path_hacks/lms/instructor/views/instructor_dashboard.py b/sys_path_hacks/lms/instructor/views/instructor_dashboard.py new file mode 100644 index 0000000000..1bdb810a0c --- /dev/null +++ b/sys_path_hacks/lms/instructor/views/instructor_dashboard.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing instructor.views.instructor_dashboard instead of lms.djangoapps.instructor.views.instructor_dashboard is deprecated", stacklevel=2) + +from lms.djangoapps.instructor.views.instructor_dashboard import * diff --git a/sys_path_hacks/lms/instructor/views/instructor_task_helpers.py b/sys_path_hacks/lms/instructor/views/instructor_task_helpers.py new file mode 100644 index 0000000000..ba176dbaef --- /dev/null +++ b/sys_path_hacks/lms/instructor/views/instructor_task_helpers.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing instructor.views.instructor_task_helpers instead of lms.djangoapps.instructor.views.instructor_task_helpers is deprecated", stacklevel=2) + +from lms.djangoapps.instructor.views.instructor_task_helpers import * diff --git a/sys_path_hacks/lms/instructor/views/tools.py b/sys_path_hacks/lms/instructor/views/tools.py new file mode 100644 index 0000000000..7dbe8e45c8 --- /dev/null +++ b/sys_path_hacks/lms/instructor/views/tools.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing instructor.views.tools instead of lms.djangoapps.instructor.views.tools is deprecated", stacklevel=2) + +from lms.djangoapps.instructor.views.tools import * diff --git a/sys_path_hacks/lms/instructor_analytics/__init__.py b/sys_path_hacks/lms/instructor_analytics/__init__.py new file mode 100644 index 0000000000..84be5c1ee4 --- /dev/null +++ b/sys_path_hacks/lms/instructor_analytics/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing instructor_analytics instead of lms.djangoapps.instructor_analytics is deprecated", stacklevel=2) + +from lms.djangoapps.instructor_analytics import * diff --git a/sys_path_hacks/lms/instructor_analytics/basic.py b/sys_path_hacks/lms/instructor_analytics/basic.py new file mode 100644 index 0000000000..147394a7d1 --- /dev/null +++ b/sys_path_hacks/lms/instructor_analytics/basic.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing instructor_analytics.basic instead of lms.djangoapps.instructor_analytics.basic is deprecated", stacklevel=2) + +from lms.djangoapps.instructor_analytics.basic import * diff --git a/sys_path_hacks/lms/instructor_analytics/csvs.py b/sys_path_hacks/lms/instructor_analytics/csvs.py new file mode 100644 index 0000000000..b7d4d873fc --- /dev/null +++ b/sys_path_hacks/lms/instructor_analytics/csvs.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing instructor_analytics.csvs instead of lms.djangoapps.instructor_analytics.csvs is deprecated", stacklevel=2) + +from lms.djangoapps.instructor_analytics.csvs import * diff --git a/sys_path_hacks/lms/instructor_analytics/distributions.py b/sys_path_hacks/lms/instructor_analytics/distributions.py new file mode 100644 index 0000000000..da411afe5d --- /dev/null +++ b/sys_path_hacks/lms/instructor_analytics/distributions.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing instructor_analytics.distributions instead of lms.djangoapps.instructor_analytics.distributions is deprecated", stacklevel=2) + +from lms.djangoapps.instructor_analytics.distributions import * diff --git a/sys_path_hacks/lms/instructor_analytics/management/__init__.py b/sys_path_hacks/lms/instructor_analytics/management/__init__.py new file mode 100644 index 0000000000..6c49c5ff5f --- /dev/null +++ b/sys_path_hacks/lms/instructor_analytics/management/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing instructor_analytics.management instead of lms.djangoapps.instructor_analytics.management is deprecated", stacklevel=2) + +from lms.djangoapps.instructor_analytics.management import * diff --git a/sys_path_hacks/lms/instructor_analytics/management/commands/__init__.py b/sys_path_hacks/lms/instructor_analytics/management/commands/__init__.py new file mode 100644 index 0000000000..187695e35a --- /dev/null +++ b/sys_path_hacks/lms/instructor_analytics/management/commands/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing instructor_analytics.management.commands instead of lms.djangoapps.instructor_analytics.management.commands is deprecated", stacklevel=2) + +from lms.djangoapps.instructor_analytics.management.commands import * diff --git a/sys_path_hacks/lms/instructor_analytics/tests/__init__.py b/sys_path_hacks/lms/instructor_analytics/tests/__init__.py new file mode 100644 index 0000000000..66a88ddf37 --- /dev/null +++ b/sys_path_hacks/lms/instructor_analytics/tests/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing instructor_analytics.tests instead of lms.djangoapps.instructor_analytics.tests is deprecated", stacklevel=2) + +from lms.djangoapps.instructor_analytics.tests import * diff --git a/sys_path_hacks/lms/instructor_analytics/tests/test_basic.py b/sys_path_hacks/lms/instructor_analytics/tests/test_basic.py new file mode 100644 index 0000000000..adeaf236dc --- /dev/null +++ b/sys_path_hacks/lms/instructor_analytics/tests/test_basic.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing instructor_analytics.tests.test_basic instead of lms.djangoapps.instructor_analytics.tests.test_basic is deprecated", stacklevel=2) + +from lms.djangoapps.instructor_analytics.tests.test_basic import * diff --git a/sys_path_hacks/lms/instructor_analytics/tests/test_csvs.py b/sys_path_hacks/lms/instructor_analytics/tests/test_csvs.py new file mode 100644 index 0000000000..cc190823ea --- /dev/null +++ b/sys_path_hacks/lms/instructor_analytics/tests/test_csvs.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing instructor_analytics.tests.test_csvs instead of lms.djangoapps.instructor_analytics.tests.test_csvs is deprecated", stacklevel=2) + +from lms.djangoapps.instructor_analytics.tests.test_csvs import * diff --git a/sys_path_hacks/lms/instructor_analytics/tests/test_distributions.py b/sys_path_hacks/lms/instructor_analytics/tests/test_distributions.py new file mode 100644 index 0000000000..086def1ff0 --- /dev/null +++ b/sys_path_hacks/lms/instructor_analytics/tests/test_distributions.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing instructor_analytics.tests.test_distributions instead of lms.djangoapps.instructor_analytics.tests.test_distributions is deprecated", stacklevel=2) + +from lms.djangoapps.instructor_analytics.tests.test_distributions import * diff --git a/sys_path_hacks/lms/instructor_task/__init__.py b/sys_path_hacks/lms/instructor_task/__init__.py new file mode 100644 index 0000000000..1b982eb200 --- /dev/null +++ b/sys_path_hacks/lms/instructor_task/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing instructor_task instead of lms.djangoapps.instructor_task is deprecated", stacklevel=2) + +from lms.djangoapps.instructor_task import * diff --git a/sys_path_hacks/lms/instructor_task/admin.py b/sys_path_hacks/lms/instructor_task/admin.py new file mode 100644 index 0000000000..721cce6e8a --- /dev/null +++ b/sys_path_hacks/lms/instructor_task/admin.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing instructor_task.admin instead of lms.djangoapps.instructor_task.admin is deprecated", stacklevel=2) + +from lms.djangoapps.instructor_task.admin import * diff --git a/sys_path_hacks/lms/instructor_task/api.py b/sys_path_hacks/lms/instructor_task/api.py new file mode 100644 index 0000000000..ed93ca7e68 --- /dev/null +++ b/sys_path_hacks/lms/instructor_task/api.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing instructor_task.api instead of lms.djangoapps.instructor_task.api is deprecated", stacklevel=2) + +from lms.djangoapps.instructor_task.api import * diff --git a/sys_path_hacks/lms/instructor_task/api_helper.py b/sys_path_hacks/lms/instructor_task/api_helper.py new file mode 100644 index 0000000000..e9b88ac820 --- /dev/null +++ b/sys_path_hacks/lms/instructor_task/api_helper.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing instructor_task.api_helper instead of lms.djangoapps.instructor_task.api_helper is deprecated", stacklevel=2) + +from lms.djangoapps.instructor_task.api_helper import * diff --git a/sys_path_hacks/lms/instructor_task/config/__init__.py b/sys_path_hacks/lms/instructor_task/config/__init__.py new file mode 100644 index 0000000000..69fe88e0ce --- /dev/null +++ b/sys_path_hacks/lms/instructor_task/config/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing instructor_task.config instead of lms.djangoapps.instructor_task.config is deprecated", stacklevel=2) + +from lms.djangoapps.instructor_task.config import * diff --git a/sys_path_hacks/lms/instructor_task/config/models.py b/sys_path_hacks/lms/instructor_task/config/models.py new file mode 100644 index 0000000000..021dd3a768 --- /dev/null +++ b/sys_path_hacks/lms/instructor_task/config/models.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing instructor_task.config.models instead of lms.djangoapps.instructor_task.config.models is deprecated", stacklevel=2) + +from lms.djangoapps.instructor_task.config.models import * diff --git a/sys_path_hacks/lms/instructor_task/config/waffle.py b/sys_path_hacks/lms/instructor_task/config/waffle.py new file mode 100644 index 0000000000..90d451709d --- /dev/null +++ b/sys_path_hacks/lms/instructor_task/config/waffle.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing instructor_task.config.waffle instead of lms.djangoapps.instructor_task.config.waffle is deprecated", stacklevel=2) + +from lms.djangoapps.instructor_task.config.waffle import * diff --git a/sys_path_hacks/lms/instructor_task/exceptions.py b/sys_path_hacks/lms/instructor_task/exceptions.py new file mode 100644 index 0000000000..27222aa4c6 --- /dev/null +++ b/sys_path_hacks/lms/instructor_task/exceptions.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing instructor_task.exceptions instead of lms.djangoapps.instructor_task.exceptions is deprecated", stacklevel=2) + +from lms.djangoapps.instructor_task.exceptions import * diff --git a/sys_path_hacks/lms/instructor_task/management/__init__.py b/sys_path_hacks/lms/instructor_task/management/__init__.py new file mode 100644 index 0000000000..7c1f617281 --- /dev/null +++ b/sys_path_hacks/lms/instructor_task/management/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing instructor_task.management instead of lms.djangoapps.instructor_task.management is deprecated", stacklevel=2) + +from lms.djangoapps.instructor_task.management import * diff --git a/sys_path_hacks/lms/instructor_task/management/commands/__init__.py b/sys_path_hacks/lms/instructor_task/management/commands/__init__.py new file mode 100644 index 0000000000..e32572593d --- /dev/null +++ b/sys_path_hacks/lms/instructor_task/management/commands/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing instructor_task.management.commands instead of lms.djangoapps.instructor_task.management.commands is deprecated", stacklevel=2) + +from lms.djangoapps.instructor_task.management.commands import * diff --git a/sys_path_hacks/lms/instructor_task/management/commands/fail_old_tasks.py b/sys_path_hacks/lms/instructor_task/management/commands/fail_old_tasks.py new file mode 100644 index 0000000000..0ccbd1b43b --- /dev/null +++ b/sys_path_hacks/lms/instructor_task/management/commands/fail_old_tasks.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing instructor_task.management.commands.fail_old_tasks instead of lms.djangoapps.instructor_task.management.commands.fail_old_tasks is deprecated", stacklevel=2) + +from lms.djangoapps.instructor_task.management.commands.fail_old_tasks import * diff --git a/sys_path_hacks/lms/instructor_task/management/commands/tests/__init__.py b/sys_path_hacks/lms/instructor_task/management/commands/tests/__init__.py new file mode 100644 index 0000000000..265bbbf489 --- /dev/null +++ b/sys_path_hacks/lms/instructor_task/management/commands/tests/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing instructor_task.management.commands.tests instead of lms.djangoapps.instructor_task.management.commands.tests is deprecated", stacklevel=2) + +from lms.djangoapps.instructor_task.management.commands.tests import * diff --git a/sys_path_hacks/lms/instructor_task/management/commands/tests/test_fail_old_tasks.py b/sys_path_hacks/lms/instructor_task/management/commands/tests/test_fail_old_tasks.py new file mode 100644 index 0000000000..f2cec6a835 --- /dev/null +++ b/sys_path_hacks/lms/instructor_task/management/commands/tests/test_fail_old_tasks.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing instructor_task.management.commands.tests.test_fail_old_tasks instead of lms.djangoapps.instructor_task.management.commands.tests.test_fail_old_tasks is deprecated", stacklevel=2) + +from lms.djangoapps.instructor_task.management.commands.tests.test_fail_old_tasks import * diff --git a/sys_path_hacks/lms/instructor_task/models.py b/sys_path_hacks/lms/instructor_task/models.py new file mode 100644 index 0000000000..40ae2e5046 --- /dev/null +++ b/sys_path_hacks/lms/instructor_task/models.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing instructor_task.models instead of lms.djangoapps.instructor_task.models is deprecated", stacklevel=2) + +from lms.djangoapps.instructor_task.models import * diff --git a/sys_path_hacks/lms/instructor_task/subtasks.py b/sys_path_hacks/lms/instructor_task/subtasks.py new file mode 100644 index 0000000000..7d054e74e6 --- /dev/null +++ b/sys_path_hacks/lms/instructor_task/subtasks.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing instructor_task.subtasks instead of lms.djangoapps.instructor_task.subtasks is deprecated", stacklevel=2) + +from lms.djangoapps.instructor_task.subtasks import * diff --git a/sys_path_hacks/lms/instructor_task/tasks.py b/sys_path_hacks/lms/instructor_task/tasks.py new file mode 100644 index 0000000000..14614989c0 --- /dev/null +++ b/sys_path_hacks/lms/instructor_task/tasks.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing instructor_task.tasks instead of lms.djangoapps.instructor_task.tasks is deprecated", stacklevel=2) + +from lms.djangoapps.instructor_task.tasks import * diff --git a/sys_path_hacks/lms/instructor_task/tasks_base.py b/sys_path_hacks/lms/instructor_task/tasks_base.py new file mode 100644 index 0000000000..2ccd8ae285 --- /dev/null +++ b/sys_path_hacks/lms/instructor_task/tasks_base.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing instructor_task.tasks_base instead of lms.djangoapps.instructor_task.tasks_base is deprecated", stacklevel=2) + +from lms.djangoapps.instructor_task.tasks_base import * diff --git a/sys_path_hacks/lms/instructor_task/tasks_helper/__init__.py b/sys_path_hacks/lms/instructor_task/tasks_helper/__init__.py new file mode 100644 index 0000000000..688d817e20 --- /dev/null +++ b/sys_path_hacks/lms/instructor_task/tasks_helper/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing instructor_task.tasks_helper instead of lms.djangoapps.instructor_task.tasks_helper is deprecated", stacklevel=2) + +from lms.djangoapps.instructor_task.tasks_helper import * diff --git a/sys_path_hacks/lms/instructor_task/tasks_helper/certs.py b/sys_path_hacks/lms/instructor_task/tasks_helper/certs.py new file mode 100644 index 0000000000..afbfa559e4 --- /dev/null +++ b/sys_path_hacks/lms/instructor_task/tasks_helper/certs.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing instructor_task.tasks_helper.certs instead of lms.djangoapps.instructor_task.tasks_helper.certs is deprecated", stacklevel=2) + +from lms.djangoapps.instructor_task.tasks_helper.certs import * diff --git a/sys_path_hacks/lms/instructor_task/tasks_helper/enrollments.py b/sys_path_hacks/lms/instructor_task/tasks_helper/enrollments.py new file mode 100644 index 0000000000..0d9539b427 --- /dev/null +++ b/sys_path_hacks/lms/instructor_task/tasks_helper/enrollments.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing instructor_task.tasks_helper.enrollments instead of lms.djangoapps.instructor_task.tasks_helper.enrollments is deprecated", stacklevel=2) + +from lms.djangoapps.instructor_task.tasks_helper.enrollments import * diff --git a/sys_path_hacks/lms/instructor_task/tasks_helper/grades.py b/sys_path_hacks/lms/instructor_task/tasks_helper/grades.py new file mode 100644 index 0000000000..b5cc8d153e --- /dev/null +++ b/sys_path_hacks/lms/instructor_task/tasks_helper/grades.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing instructor_task.tasks_helper.grades instead of lms.djangoapps.instructor_task.tasks_helper.grades is deprecated", stacklevel=2) + +from lms.djangoapps.instructor_task.tasks_helper.grades import * diff --git a/sys_path_hacks/lms/instructor_task/tasks_helper/misc.py b/sys_path_hacks/lms/instructor_task/tasks_helper/misc.py new file mode 100644 index 0000000000..19c9ed160e --- /dev/null +++ b/sys_path_hacks/lms/instructor_task/tasks_helper/misc.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing instructor_task.tasks_helper.misc instead of lms.djangoapps.instructor_task.tasks_helper.misc is deprecated", stacklevel=2) + +from lms.djangoapps.instructor_task.tasks_helper.misc import * diff --git a/sys_path_hacks/lms/instructor_task/tasks_helper/module_state.py b/sys_path_hacks/lms/instructor_task/tasks_helper/module_state.py new file mode 100644 index 0000000000..bce59a9ea7 --- /dev/null +++ b/sys_path_hacks/lms/instructor_task/tasks_helper/module_state.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing instructor_task.tasks_helper.module_state instead of lms.djangoapps.instructor_task.tasks_helper.module_state is deprecated", stacklevel=2) + +from lms.djangoapps.instructor_task.tasks_helper.module_state import * diff --git a/sys_path_hacks/lms/instructor_task/tasks_helper/runner.py b/sys_path_hacks/lms/instructor_task/tasks_helper/runner.py new file mode 100644 index 0000000000..058effd1cf --- /dev/null +++ b/sys_path_hacks/lms/instructor_task/tasks_helper/runner.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing instructor_task.tasks_helper.runner instead of lms.djangoapps.instructor_task.tasks_helper.runner is deprecated", stacklevel=2) + +from lms.djangoapps.instructor_task.tasks_helper.runner import * diff --git a/sys_path_hacks/lms/instructor_task/tasks_helper/utils.py b/sys_path_hacks/lms/instructor_task/tasks_helper/utils.py new file mode 100644 index 0000000000..8ae27d985f --- /dev/null +++ b/sys_path_hacks/lms/instructor_task/tasks_helper/utils.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing instructor_task.tasks_helper.utils instead of lms.djangoapps.instructor_task.tasks_helper.utils is deprecated", stacklevel=2) + +from lms.djangoapps.instructor_task.tasks_helper.utils import * diff --git a/sys_path_hacks/lms/instructor_task/tests/__init__.py b/sys_path_hacks/lms/instructor_task/tests/__init__.py new file mode 100644 index 0000000000..872fe94308 --- /dev/null +++ b/sys_path_hacks/lms/instructor_task/tests/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing instructor_task.tests instead of lms.djangoapps.instructor_task.tests is deprecated", stacklevel=2) + +from lms.djangoapps.instructor_task.tests import * diff --git a/sys_path_hacks/lms/instructor_task/tests/factories.py b/sys_path_hacks/lms/instructor_task/tests/factories.py new file mode 100644 index 0000000000..5d2d9c1a0e --- /dev/null +++ b/sys_path_hacks/lms/instructor_task/tests/factories.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing instructor_task.tests.factories instead of lms.djangoapps.instructor_task.tests.factories is deprecated", stacklevel=2) + +from lms.djangoapps.instructor_task.tests.factories import * diff --git a/sys_path_hacks/lms/instructor_task/tests/test_api.py b/sys_path_hacks/lms/instructor_task/tests/test_api.py new file mode 100644 index 0000000000..67b1ee2753 --- /dev/null +++ b/sys_path_hacks/lms/instructor_task/tests/test_api.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing instructor_task.tests.test_api instead of lms.djangoapps.instructor_task.tests.test_api is deprecated", stacklevel=2) + +from lms.djangoapps.instructor_task.tests.test_api import * diff --git a/sys_path_hacks/lms/instructor_task/tests/test_base.py b/sys_path_hacks/lms/instructor_task/tests/test_base.py new file mode 100644 index 0000000000..b8f56a4a2b --- /dev/null +++ b/sys_path_hacks/lms/instructor_task/tests/test_base.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing instructor_task.tests.test_base instead of lms.djangoapps.instructor_task.tests.test_base is deprecated", stacklevel=2) + +from lms.djangoapps.instructor_task.tests.test_base import * diff --git a/sys_path_hacks/lms/instructor_task/tests/test_integration.py b/sys_path_hacks/lms/instructor_task/tests/test_integration.py new file mode 100644 index 0000000000..722fe100af --- /dev/null +++ b/sys_path_hacks/lms/instructor_task/tests/test_integration.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing instructor_task.tests.test_integration instead of lms.djangoapps.instructor_task.tests.test_integration is deprecated", stacklevel=2) + +from lms.djangoapps.instructor_task.tests.test_integration import * diff --git a/sys_path_hacks/lms/instructor_task/tests/test_models.py b/sys_path_hacks/lms/instructor_task/tests/test_models.py new file mode 100644 index 0000000000..9adf46374d --- /dev/null +++ b/sys_path_hacks/lms/instructor_task/tests/test_models.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing instructor_task.tests.test_models instead of lms.djangoapps.instructor_task.tests.test_models is deprecated", stacklevel=2) + +from lms.djangoapps.instructor_task.tests.test_models import * diff --git a/sys_path_hacks/lms/instructor_task/tests/test_subtasks.py b/sys_path_hacks/lms/instructor_task/tests/test_subtasks.py new file mode 100644 index 0000000000..5dd5dec92a --- /dev/null +++ b/sys_path_hacks/lms/instructor_task/tests/test_subtasks.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing instructor_task.tests.test_subtasks instead of lms.djangoapps.instructor_task.tests.test_subtasks is deprecated", stacklevel=2) + +from lms.djangoapps.instructor_task.tests.test_subtasks import * diff --git a/sys_path_hacks/lms/instructor_task/tests/test_tasks.py b/sys_path_hacks/lms/instructor_task/tests/test_tasks.py new file mode 100644 index 0000000000..60efabb171 --- /dev/null +++ b/sys_path_hacks/lms/instructor_task/tests/test_tasks.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing instructor_task.tests.test_tasks instead of lms.djangoapps.instructor_task.tests.test_tasks is deprecated", stacklevel=2) + +from lms.djangoapps.instructor_task.tests.test_tasks import * diff --git a/sys_path_hacks/lms/instructor_task/tests/test_tasks_helper.py b/sys_path_hacks/lms/instructor_task/tests/test_tasks_helper.py new file mode 100644 index 0000000000..4e84737857 --- /dev/null +++ b/sys_path_hacks/lms/instructor_task/tests/test_tasks_helper.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing instructor_task.tests.test_tasks_helper instead of lms.djangoapps.instructor_task.tests.test_tasks_helper is deprecated", stacklevel=2) + +from lms.djangoapps.instructor_task.tests.test_tasks_helper import * diff --git a/sys_path_hacks/lms/instructor_task/tests/test_views.py b/sys_path_hacks/lms/instructor_task/tests/test_views.py new file mode 100644 index 0000000000..1b98a5b8e3 --- /dev/null +++ b/sys_path_hacks/lms/instructor_task/tests/test_views.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing instructor_task.tests.test_views instead of lms.djangoapps.instructor_task.tests.test_views is deprecated", stacklevel=2) + +from lms.djangoapps.instructor_task.tests.test_views import * diff --git a/sys_path_hacks/lms/instructor_task/views.py b/sys_path_hacks/lms/instructor_task/views.py new file mode 100644 index 0000000000..e2e165fe8b --- /dev/null +++ b/sys_path_hacks/lms/instructor_task/views.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing instructor_task.views instead of lms.djangoapps.instructor_task.views is deprecated", stacklevel=2) + +from lms.djangoapps.instructor_task.views import * diff --git a/sys_path_hacks/lms/learner_dashboard/__init__.py b/sys_path_hacks/lms/learner_dashboard/__init__.py new file mode 100644 index 0000000000..96932a01d1 --- /dev/null +++ b/sys_path_hacks/lms/learner_dashboard/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing learner_dashboard instead of lms.djangoapps.learner_dashboard is deprecated", stacklevel=2) + +from lms.djangoapps.learner_dashboard import * diff --git a/sys_path_hacks/lms/learner_dashboard/programs.py b/sys_path_hacks/lms/learner_dashboard/programs.py new file mode 100644 index 0000000000..c925eaf2f6 --- /dev/null +++ b/sys_path_hacks/lms/learner_dashboard/programs.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing learner_dashboard.programs instead of lms.djangoapps.learner_dashboard.programs is deprecated", stacklevel=2) + +from lms.djangoapps.learner_dashboard.programs import * diff --git a/sys_path_hacks/lms/learner_dashboard/tests/__init__.py b/sys_path_hacks/lms/learner_dashboard/tests/__init__.py new file mode 100644 index 0000000000..faf3118074 --- /dev/null +++ b/sys_path_hacks/lms/learner_dashboard/tests/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing learner_dashboard.tests instead of lms.djangoapps.learner_dashboard.tests is deprecated", stacklevel=2) + +from lms.djangoapps.learner_dashboard.tests import * diff --git a/sys_path_hacks/lms/learner_dashboard/tests/test_programs.py b/sys_path_hacks/lms/learner_dashboard/tests/test_programs.py new file mode 100644 index 0000000000..612ef4c86b --- /dev/null +++ b/sys_path_hacks/lms/learner_dashboard/tests/test_programs.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing learner_dashboard.tests.test_programs instead of lms.djangoapps.learner_dashboard.tests.test_programs is deprecated", stacklevel=2) + +from lms.djangoapps.learner_dashboard.tests.test_programs import * diff --git a/sys_path_hacks/lms/learner_dashboard/tests/test_utils.py b/sys_path_hacks/lms/learner_dashboard/tests/test_utils.py new file mode 100644 index 0000000000..a8422add5b --- /dev/null +++ b/sys_path_hacks/lms/learner_dashboard/tests/test_utils.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing learner_dashboard.tests.test_utils instead of lms.djangoapps.learner_dashboard.tests.test_utils is deprecated", stacklevel=2) + +from lms.djangoapps.learner_dashboard.tests.test_utils import * diff --git a/sys_path_hacks/lms/learner_dashboard/urls.py b/sys_path_hacks/lms/learner_dashboard/urls.py new file mode 100644 index 0000000000..8ea84fe00b --- /dev/null +++ b/sys_path_hacks/lms/learner_dashboard/urls.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing learner_dashboard.urls instead of lms.djangoapps.learner_dashboard.urls is deprecated", stacklevel=2) + +from lms.djangoapps.learner_dashboard.urls import * diff --git a/sys_path_hacks/lms/learner_dashboard/utils.py b/sys_path_hacks/lms/learner_dashboard/utils.py new file mode 100644 index 0000000000..b3e83ffe19 --- /dev/null +++ b/sys_path_hacks/lms/learner_dashboard/utils.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing learner_dashboard.utils instead of lms.djangoapps.learner_dashboard.utils is deprecated", stacklevel=2) + +from lms.djangoapps.learner_dashboard.utils import * diff --git a/sys_path_hacks/lms/learner_dashboard/views.py b/sys_path_hacks/lms/learner_dashboard/views.py new file mode 100644 index 0000000000..2b0e30d7f1 --- /dev/null +++ b/sys_path_hacks/lms/learner_dashboard/views.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing learner_dashboard.views instead of lms.djangoapps.learner_dashboard.views is deprecated", stacklevel=2) + +from lms.djangoapps.learner_dashboard.views import * diff --git a/sys_path_hacks/lms/lms_initialization/__init__.py b/sys_path_hacks/lms/lms_initialization/__init__.py new file mode 100644 index 0000000000..7551d686a2 --- /dev/null +++ b/sys_path_hacks/lms/lms_initialization/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing lms_initialization instead of lms.djangoapps.lms_initialization is deprecated", stacklevel=2) + +from lms.djangoapps.lms_initialization import * diff --git a/sys_path_hacks/lms/lms_initialization/apps.py b/sys_path_hacks/lms/lms_initialization/apps.py new file mode 100644 index 0000000000..860571ad13 --- /dev/null +++ b/sys_path_hacks/lms/lms_initialization/apps.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing lms_initialization.apps instead of lms.djangoapps.lms_initialization.apps is deprecated", stacklevel=2) + +from lms.djangoapps.lms_initialization.apps import * diff --git a/sys_path_hacks/lms/lms_xblock/__init__.py b/sys_path_hacks/lms/lms_xblock/__init__.py new file mode 100644 index 0000000000..7b742118fb --- /dev/null +++ b/sys_path_hacks/lms/lms_xblock/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing lms_xblock instead of lms.djangoapps.lms_xblock is deprecated", stacklevel=2) + +from lms.djangoapps.lms_xblock import * diff --git a/sys_path_hacks/lms/lms_xblock/admin.py b/sys_path_hacks/lms/lms_xblock/admin.py new file mode 100644 index 0000000000..44b95c86fc --- /dev/null +++ b/sys_path_hacks/lms/lms_xblock/admin.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing lms_xblock.admin instead of lms.djangoapps.lms_xblock.admin is deprecated", stacklevel=2) + +from lms.djangoapps.lms_xblock.admin import * diff --git a/sys_path_hacks/lms/lms_xblock/apps.py b/sys_path_hacks/lms/lms_xblock/apps.py new file mode 100644 index 0000000000..96ce9313e9 --- /dev/null +++ b/sys_path_hacks/lms/lms_xblock/apps.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing lms_xblock.apps instead of lms.djangoapps.lms_xblock.apps is deprecated", stacklevel=2) + +from lms.djangoapps.lms_xblock.apps import * diff --git a/sys_path_hacks/lms/lms_xblock/field_data.py b/sys_path_hacks/lms/lms_xblock/field_data.py new file mode 100644 index 0000000000..20df492a66 --- /dev/null +++ b/sys_path_hacks/lms/lms_xblock/field_data.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing lms_xblock.field_data instead of lms.djangoapps.lms_xblock.field_data is deprecated", stacklevel=2) + +from lms.djangoapps.lms_xblock.field_data import * diff --git a/sys_path_hacks/lms/lms_xblock/mixin.py b/sys_path_hacks/lms/lms_xblock/mixin.py new file mode 100644 index 0000000000..51497b1b61 --- /dev/null +++ b/sys_path_hacks/lms/lms_xblock/mixin.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing lms_xblock.mixin instead of lms.djangoapps.lms_xblock.mixin is deprecated", stacklevel=2) + +from lms.djangoapps.lms_xblock.mixin import * diff --git a/sys_path_hacks/lms/lms_xblock/models.py b/sys_path_hacks/lms/lms_xblock/models.py new file mode 100644 index 0000000000..69ef4dd323 --- /dev/null +++ b/sys_path_hacks/lms/lms_xblock/models.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing lms_xblock.models instead of lms.djangoapps.lms_xblock.models is deprecated", stacklevel=2) + +from lms.djangoapps.lms_xblock.models import * diff --git a/sys_path_hacks/lms/lms_xblock/runtime.py b/sys_path_hacks/lms/lms_xblock/runtime.py new file mode 100644 index 0000000000..69bad9ea3d --- /dev/null +++ b/sys_path_hacks/lms/lms_xblock/runtime.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing lms_xblock.runtime instead of lms.djangoapps.lms_xblock.runtime is deprecated", stacklevel=2) + +from lms.djangoapps.lms_xblock.runtime import * diff --git a/sys_path_hacks/lms/lms_xblock/test/__init__.py b/sys_path_hacks/lms/lms_xblock/test/__init__.py new file mode 100644 index 0000000000..f7987f1eac --- /dev/null +++ b/sys_path_hacks/lms/lms_xblock/test/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing lms_xblock.test instead of lms.djangoapps.lms_xblock.test is deprecated", stacklevel=2) + +from lms.djangoapps.lms_xblock.test import * diff --git a/sys_path_hacks/lms/lms_xblock/test/test_runtime.py b/sys_path_hacks/lms/lms_xblock/test/test_runtime.py new file mode 100644 index 0000000000..2644106fb8 --- /dev/null +++ b/sys_path_hacks/lms/lms_xblock/test/test_runtime.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing lms_xblock.test.test_runtime instead of lms.djangoapps.lms_xblock.test.test_runtime is deprecated", stacklevel=2) + +from lms.djangoapps.lms_xblock.test.test_runtime import * diff --git a/sys_path_hacks/lms/lti_provider/__init__.py b/sys_path_hacks/lms/lti_provider/__init__.py new file mode 100644 index 0000000000..3c081f7d8a --- /dev/null +++ b/sys_path_hacks/lms/lti_provider/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing lti_provider instead of lms.djangoapps.lti_provider is deprecated", stacklevel=2) + +from lms.djangoapps.lti_provider import * diff --git a/sys_path_hacks/lms/lti_provider/admin.py b/sys_path_hacks/lms/lti_provider/admin.py new file mode 100644 index 0000000000..4c002c9e3d --- /dev/null +++ b/sys_path_hacks/lms/lti_provider/admin.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing lti_provider.admin instead of lms.djangoapps.lti_provider.admin is deprecated", stacklevel=2) + +from lms.djangoapps.lti_provider.admin import * diff --git a/sys_path_hacks/lms/lti_provider/apps.py b/sys_path_hacks/lms/lti_provider/apps.py new file mode 100644 index 0000000000..5a5da5eca1 --- /dev/null +++ b/sys_path_hacks/lms/lti_provider/apps.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing lti_provider.apps instead of lms.djangoapps.lti_provider.apps is deprecated", stacklevel=2) + +from lms.djangoapps.lti_provider.apps import * diff --git a/sys_path_hacks/lms/lti_provider/management/__init__.py b/sys_path_hacks/lms/lti_provider/management/__init__.py new file mode 100644 index 0000000000..9a74451ecf --- /dev/null +++ b/sys_path_hacks/lms/lti_provider/management/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing lti_provider.management instead of lms.djangoapps.lti_provider.management is deprecated", stacklevel=2) + +from lms.djangoapps.lti_provider.management import * diff --git a/sys_path_hacks/lms/lti_provider/management/commands/__init__.py b/sys_path_hacks/lms/lti_provider/management/commands/__init__.py new file mode 100644 index 0000000000..5e9376170c --- /dev/null +++ b/sys_path_hacks/lms/lti_provider/management/commands/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing lti_provider.management.commands instead of lms.djangoapps.lti_provider.management.commands is deprecated", stacklevel=2) + +from lms.djangoapps.lti_provider.management.commands import * diff --git a/sys_path_hacks/lms/lti_provider/management/commands/resend_lti_scores.py b/sys_path_hacks/lms/lti_provider/management/commands/resend_lti_scores.py new file mode 100644 index 0000000000..46f7c3e14a --- /dev/null +++ b/sys_path_hacks/lms/lti_provider/management/commands/resend_lti_scores.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing lti_provider.management.commands.resend_lti_scores instead of lms.djangoapps.lti_provider.management.commands.resend_lti_scores is deprecated", stacklevel=2) + +from lms.djangoapps.lti_provider.management.commands.resend_lti_scores import * diff --git a/sys_path_hacks/lms/lti_provider/management/commands/tests/__init__.py b/sys_path_hacks/lms/lti_provider/management/commands/tests/__init__.py new file mode 100644 index 0000000000..62f94cc450 --- /dev/null +++ b/sys_path_hacks/lms/lti_provider/management/commands/tests/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing lti_provider.management.commands.tests instead of lms.djangoapps.lti_provider.management.commands.tests is deprecated", stacklevel=2) + +from lms.djangoapps.lti_provider.management.commands.tests import * diff --git a/sys_path_hacks/lms/lti_provider/management/commands/tests/test_resend_lti_scores.py b/sys_path_hacks/lms/lti_provider/management/commands/tests/test_resend_lti_scores.py new file mode 100644 index 0000000000..0556ebee1e --- /dev/null +++ b/sys_path_hacks/lms/lti_provider/management/commands/tests/test_resend_lti_scores.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing lti_provider.management.commands.tests.test_resend_lti_scores instead of lms.djangoapps.lti_provider.management.commands.tests.test_resend_lti_scores is deprecated", stacklevel=2) + +from lms.djangoapps.lti_provider.management.commands.tests.test_resend_lti_scores import * diff --git a/sys_path_hacks/lms/lti_provider/models.py b/sys_path_hacks/lms/lti_provider/models.py new file mode 100644 index 0000000000..e308cb8d85 --- /dev/null +++ b/sys_path_hacks/lms/lti_provider/models.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing lti_provider.models instead of lms.djangoapps.lti_provider.models is deprecated", stacklevel=2) + +from lms.djangoapps.lti_provider.models import * diff --git a/sys_path_hacks/lms/lti_provider/outcomes.py b/sys_path_hacks/lms/lti_provider/outcomes.py new file mode 100644 index 0000000000..92063e1d93 --- /dev/null +++ b/sys_path_hacks/lms/lti_provider/outcomes.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing lti_provider.outcomes instead of lms.djangoapps.lti_provider.outcomes is deprecated", stacklevel=2) + +from lms.djangoapps.lti_provider.outcomes import * diff --git a/sys_path_hacks/lms/lti_provider/signals.py b/sys_path_hacks/lms/lti_provider/signals.py new file mode 100644 index 0000000000..f665e65ca7 --- /dev/null +++ b/sys_path_hacks/lms/lti_provider/signals.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing lti_provider.signals instead of lms.djangoapps.lti_provider.signals is deprecated", stacklevel=2) + +from lms.djangoapps.lti_provider.signals import * diff --git a/sys_path_hacks/lms/lti_provider/signature_validator.py b/sys_path_hacks/lms/lti_provider/signature_validator.py new file mode 100644 index 0000000000..85fc050a08 --- /dev/null +++ b/sys_path_hacks/lms/lti_provider/signature_validator.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing lti_provider.signature_validator instead of lms.djangoapps.lti_provider.signature_validator is deprecated", stacklevel=2) + +from lms.djangoapps.lti_provider.signature_validator import * diff --git a/sys_path_hacks/lms/lti_provider/tasks.py b/sys_path_hacks/lms/lti_provider/tasks.py new file mode 100644 index 0000000000..49ecdc5fc1 --- /dev/null +++ b/sys_path_hacks/lms/lti_provider/tasks.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing lti_provider.tasks instead of lms.djangoapps.lti_provider.tasks is deprecated", stacklevel=2) + +from lms.djangoapps.lti_provider.tasks import * diff --git a/sys_path_hacks/lms/lti_provider/tests/__init__.py b/sys_path_hacks/lms/lti_provider/tests/__init__.py new file mode 100644 index 0000000000..6caffab068 --- /dev/null +++ b/sys_path_hacks/lms/lti_provider/tests/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing lti_provider.tests instead of lms.djangoapps.lti_provider.tests is deprecated", stacklevel=2) + +from lms.djangoapps.lti_provider.tests import * diff --git a/sys_path_hacks/lms/lti_provider/tests/test_outcomes.py b/sys_path_hacks/lms/lti_provider/tests/test_outcomes.py new file mode 100644 index 0000000000..be71e725c3 --- /dev/null +++ b/sys_path_hacks/lms/lti_provider/tests/test_outcomes.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing lti_provider.tests.test_outcomes instead of lms.djangoapps.lti_provider.tests.test_outcomes is deprecated", stacklevel=2) + +from lms.djangoapps.lti_provider.tests.test_outcomes import * diff --git a/sys_path_hacks/lms/lti_provider/tests/test_signature_validator.py b/sys_path_hacks/lms/lti_provider/tests/test_signature_validator.py new file mode 100644 index 0000000000..4b3c8659c1 --- /dev/null +++ b/sys_path_hacks/lms/lti_provider/tests/test_signature_validator.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing lti_provider.tests.test_signature_validator instead of lms.djangoapps.lti_provider.tests.test_signature_validator is deprecated", stacklevel=2) + +from lms.djangoapps.lti_provider.tests.test_signature_validator import * diff --git a/sys_path_hacks/lms/lti_provider/tests/test_tasks.py b/sys_path_hacks/lms/lti_provider/tests/test_tasks.py new file mode 100644 index 0000000000..5c5d44b5e3 --- /dev/null +++ b/sys_path_hacks/lms/lti_provider/tests/test_tasks.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing lti_provider.tests.test_tasks instead of lms.djangoapps.lti_provider.tests.test_tasks is deprecated", stacklevel=2) + +from lms.djangoapps.lti_provider.tests.test_tasks import * diff --git a/sys_path_hacks/lms/lti_provider/tests/test_users.py b/sys_path_hacks/lms/lti_provider/tests/test_users.py new file mode 100644 index 0000000000..01424af9f2 --- /dev/null +++ b/sys_path_hacks/lms/lti_provider/tests/test_users.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing lti_provider.tests.test_users instead of lms.djangoapps.lti_provider.tests.test_users is deprecated", stacklevel=2) + +from lms.djangoapps.lti_provider.tests.test_users import * diff --git a/sys_path_hacks/lms/lti_provider/tests/test_views.py b/sys_path_hacks/lms/lti_provider/tests/test_views.py new file mode 100644 index 0000000000..380d077777 --- /dev/null +++ b/sys_path_hacks/lms/lti_provider/tests/test_views.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing lti_provider.tests.test_views instead of lms.djangoapps.lti_provider.tests.test_views is deprecated", stacklevel=2) + +from lms.djangoapps.lti_provider.tests.test_views import * diff --git a/sys_path_hacks/lms/lti_provider/urls.py b/sys_path_hacks/lms/lti_provider/urls.py new file mode 100644 index 0000000000..a505490a44 --- /dev/null +++ b/sys_path_hacks/lms/lti_provider/urls.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing lti_provider.urls instead of lms.djangoapps.lti_provider.urls is deprecated", stacklevel=2) + +from lms.djangoapps.lti_provider.urls import * diff --git a/sys_path_hacks/lms/lti_provider/users.py b/sys_path_hacks/lms/lti_provider/users.py new file mode 100644 index 0000000000..c8fe4addc8 --- /dev/null +++ b/sys_path_hacks/lms/lti_provider/users.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing lti_provider.users instead of lms.djangoapps.lti_provider.users is deprecated", stacklevel=2) + +from lms.djangoapps.lti_provider.users import * diff --git a/sys_path_hacks/lms/lti_provider/views.py b/sys_path_hacks/lms/lti_provider/views.py new file mode 100644 index 0000000000..f9933a44f0 --- /dev/null +++ b/sys_path_hacks/lms/lti_provider/views.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing lti_provider.views instead of lms.djangoapps.lti_provider.views is deprecated", stacklevel=2) + +from lms.djangoapps.lti_provider.views import * diff --git a/sys_path_hacks/lms/mailing/__init__.py b/sys_path_hacks/lms/mailing/__init__.py new file mode 100644 index 0000000000..984d1cf2bb --- /dev/null +++ b/sys_path_hacks/lms/mailing/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing mailing instead of lms.djangoapps.mailing is deprecated", stacklevel=2) + +from lms.djangoapps.mailing import * diff --git a/sys_path_hacks/lms/mailing/management/__init__.py b/sys_path_hacks/lms/mailing/management/__init__.py new file mode 100644 index 0000000000..0597cb3e8e --- /dev/null +++ b/sys_path_hacks/lms/mailing/management/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing mailing.management instead of lms.djangoapps.mailing.management is deprecated", stacklevel=2) + +from lms.djangoapps.mailing.management import * diff --git a/sys_path_hacks/lms/mailing/management/commands/__init__.py b/sys_path_hacks/lms/mailing/management/commands/__init__.py new file mode 100644 index 0000000000..31de38e4ef --- /dev/null +++ b/sys_path_hacks/lms/mailing/management/commands/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing mailing.management.commands instead of lms.djangoapps.mailing.management.commands is deprecated", stacklevel=2) + +from lms.djangoapps.mailing.management.commands import * diff --git a/sys_path_hacks/lms/mailing/management/commands/mailchimp_id.py b/sys_path_hacks/lms/mailing/management/commands/mailchimp_id.py new file mode 100644 index 0000000000..8b3773bc6f --- /dev/null +++ b/sys_path_hacks/lms/mailing/management/commands/mailchimp_id.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing mailing.management.commands.mailchimp_id instead of lms.djangoapps.mailing.management.commands.mailchimp_id is deprecated", stacklevel=2) + +from lms.djangoapps.mailing.management.commands.mailchimp_id import * diff --git a/sys_path_hacks/lms/mailing/management/commands/mailchimp_sync_announcements.py b/sys_path_hacks/lms/mailing/management/commands/mailchimp_sync_announcements.py new file mode 100644 index 0000000000..b887c3cb83 --- /dev/null +++ b/sys_path_hacks/lms/mailing/management/commands/mailchimp_sync_announcements.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing mailing.management.commands.mailchimp_sync_announcements instead of lms.djangoapps.mailing.management.commands.mailchimp_sync_announcements is deprecated", stacklevel=2) + +from lms.djangoapps.mailing.management.commands.mailchimp_sync_announcements import * diff --git a/sys_path_hacks/lms/mailing/management/commands/mailchimp_sync_course.py b/sys_path_hacks/lms/mailing/management/commands/mailchimp_sync_course.py new file mode 100644 index 0000000000..eafe93725b --- /dev/null +++ b/sys_path_hacks/lms/mailing/management/commands/mailchimp_sync_course.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing mailing.management.commands.mailchimp_sync_course instead of lms.djangoapps.mailing.management.commands.mailchimp_sync_course is deprecated", stacklevel=2) + +from lms.djangoapps.mailing.management.commands.mailchimp_sync_course import * diff --git a/sys_path_hacks/lms/mobile_api/__init__.py b/sys_path_hacks/lms/mobile_api/__init__.py new file mode 100644 index 0000000000..cc8db11b7e --- /dev/null +++ b/sys_path_hacks/lms/mobile_api/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing mobile_api instead of lms.djangoapps.mobile_api is deprecated", stacklevel=2) + +from lms.djangoapps.mobile_api import * diff --git a/sys_path_hacks/lms/mobile_api/admin.py b/sys_path_hacks/lms/mobile_api/admin.py new file mode 100644 index 0000000000..32c2c0a36d --- /dev/null +++ b/sys_path_hacks/lms/mobile_api/admin.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing mobile_api.admin instead of lms.djangoapps.mobile_api.admin is deprecated", stacklevel=2) + +from lms.djangoapps.mobile_api.admin import * diff --git a/sys_path_hacks/lms/mobile_api/context_processor.py b/sys_path_hacks/lms/mobile_api/context_processor.py new file mode 100644 index 0000000000..ad00d4e238 --- /dev/null +++ b/sys_path_hacks/lms/mobile_api/context_processor.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing mobile_api.context_processor instead of lms.djangoapps.mobile_api.context_processor is deprecated", stacklevel=2) + +from lms.djangoapps.mobile_api.context_processor import * diff --git a/sys_path_hacks/lms/mobile_api/course_info/__init__.py b/sys_path_hacks/lms/mobile_api/course_info/__init__.py new file mode 100644 index 0000000000..d1e7222793 --- /dev/null +++ b/sys_path_hacks/lms/mobile_api/course_info/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing mobile_api.course_info instead of lms.djangoapps.mobile_api.course_info is deprecated", stacklevel=2) + +from lms.djangoapps.mobile_api.course_info import * diff --git a/sys_path_hacks/lms/mobile_api/course_info/models.py b/sys_path_hacks/lms/mobile_api/course_info/models.py new file mode 100644 index 0000000000..8672b6ca0e --- /dev/null +++ b/sys_path_hacks/lms/mobile_api/course_info/models.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing mobile_api.course_info.models instead of lms.djangoapps.mobile_api.course_info.models is deprecated", stacklevel=2) + +from lms.djangoapps.mobile_api.course_info.models import * diff --git a/sys_path_hacks/lms/mobile_api/course_info/tests.py b/sys_path_hacks/lms/mobile_api/course_info/tests.py new file mode 100644 index 0000000000..79a2016e65 --- /dev/null +++ b/sys_path_hacks/lms/mobile_api/course_info/tests.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing mobile_api.course_info.tests instead of lms.djangoapps.mobile_api.course_info.tests is deprecated", stacklevel=2) + +from lms.djangoapps.mobile_api.course_info.tests import * diff --git a/sys_path_hacks/lms/mobile_api/course_info/urls.py b/sys_path_hacks/lms/mobile_api/course_info/urls.py new file mode 100644 index 0000000000..fba5238f00 --- /dev/null +++ b/sys_path_hacks/lms/mobile_api/course_info/urls.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing mobile_api.course_info.urls instead of lms.djangoapps.mobile_api.course_info.urls is deprecated", stacklevel=2) + +from lms.djangoapps.mobile_api.course_info.urls import * diff --git a/sys_path_hacks/lms/mobile_api/course_info/views.py b/sys_path_hacks/lms/mobile_api/course_info/views.py new file mode 100644 index 0000000000..54b9900b61 --- /dev/null +++ b/sys_path_hacks/lms/mobile_api/course_info/views.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing mobile_api.course_info.views instead of lms.djangoapps.mobile_api.course_info.views is deprecated", stacklevel=2) + +from lms.djangoapps.mobile_api.course_info.views import * diff --git a/sys_path_hacks/lms/mobile_api/decorators.py b/sys_path_hacks/lms/mobile_api/decorators.py new file mode 100644 index 0000000000..a5291f95fc --- /dev/null +++ b/sys_path_hacks/lms/mobile_api/decorators.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing mobile_api.decorators instead of lms.djangoapps.mobile_api.decorators is deprecated", stacklevel=2) + +from lms.djangoapps.mobile_api.decorators import * diff --git a/sys_path_hacks/lms/mobile_api/errors.py b/sys_path_hacks/lms/mobile_api/errors.py new file mode 100644 index 0000000000..ac43b26e59 --- /dev/null +++ b/sys_path_hacks/lms/mobile_api/errors.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing mobile_api.errors instead of lms.djangoapps.mobile_api.errors is deprecated", stacklevel=2) + +from lms.djangoapps.mobile_api.errors import * diff --git a/sys_path_hacks/lms/mobile_api/middleware.py b/sys_path_hacks/lms/mobile_api/middleware.py new file mode 100644 index 0000000000..dd1dbe0d1f --- /dev/null +++ b/sys_path_hacks/lms/mobile_api/middleware.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing mobile_api.middleware instead of lms.djangoapps.mobile_api.middleware is deprecated", stacklevel=2) + +from lms.djangoapps.mobile_api.middleware import * diff --git a/sys_path_hacks/lms/mobile_api/mobile_platform.py b/sys_path_hacks/lms/mobile_api/mobile_platform.py new file mode 100644 index 0000000000..f97e371260 --- /dev/null +++ b/sys_path_hacks/lms/mobile_api/mobile_platform.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing mobile_api.mobile_platform instead of lms.djangoapps.mobile_api.mobile_platform is deprecated", stacklevel=2) + +from lms.djangoapps.mobile_api.mobile_platform import * diff --git a/sys_path_hacks/lms/mobile_api/models.py b/sys_path_hacks/lms/mobile_api/models.py new file mode 100644 index 0000000000..28e88efafb --- /dev/null +++ b/sys_path_hacks/lms/mobile_api/models.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing mobile_api.models instead of lms.djangoapps.mobile_api.models is deprecated", stacklevel=2) + +from lms.djangoapps.mobile_api.models import * diff --git a/sys_path_hacks/lms/mobile_api/tests/__init__.py b/sys_path_hacks/lms/mobile_api/tests/__init__.py new file mode 100644 index 0000000000..0954e7732b --- /dev/null +++ b/sys_path_hacks/lms/mobile_api/tests/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing mobile_api.tests instead of lms.djangoapps.mobile_api.tests is deprecated", stacklevel=2) + +from lms.djangoapps.mobile_api.tests import * diff --git a/sys_path_hacks/lms/mobile_api/tests/test_context_processor.py b/sys_path_hacks/lms/mobile_api/tests/test_context_processor.py new file mode 100644 index 0000000000..ab55d21687 --- /dev/null +++ b/sys_path_hacks/lms/mobile_api/tests/test_context_processor.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing mobile_api.tests.test_context_processor instead of lms.djangoapps.mobile_api.tests.test_context_processor is deprecated", stacklevel=2) + +from lms.djangoapps.mobile_api.tests.test_context_processor import * diff --git a/sys_path_hacks/lms/mobile_api/tests/test_decorator.py b/sys_path_hacks/lms/mobile_api/tests/test_decorator.py new file mode 100644 index 0000000000..465c362a8a --- /dev/null +++ b/sys_path_hacks/lms/mobile_api/tests/test_decorator.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing mobile_api.tests.test_decorator instead of lms.djangoapps.mobile_api.tests.test_decorator is deprecated", stacklevel=2) + +from lms.djangoapps.mobile_api.tests.test_decorator import * diff --git a/sys_path_hacks/lms/mobile_api/tests/test_middleware.py b/sys_path_hacks/lms/mobile_api/tests/test_middleware.py new file mode 100644 index 0000000000..fd58d772a6 --- /dev/null +++ b/sys_path_hacks/lms/mobile_api/tests/test_middleware.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing mobile_api.tests.test_middleware instead of lms.djangoapps.mobile_api.tests.test_middleware is deprecated", stacklevel=2) + +from lms.djangoapps.mobile_api.tests.test_middleware import * diff --git a/sys_path_hacks/lms/mobile_api/tests/test_milestones.py b/sys_path_hacks/lms/mobile_api/tests/test_milestones.py new file mode 100644 index 0000000000..f2d379ec39 --- /dev/null +++ b/sys_path_hacks/lms/mobile_api/tests/test_milestones.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing mobile_api.tests.test_milestones instead of lms.djangoapps.mobile_api.tests.test_milestones is deprecated", stacklevel=2) + +from lms.djangoapps.mobile_api.tests.test_milestones import * diff --git a/sys_path_hacks/lms/mobile_api/tests/test_mobile_platform.py b/sys_path_hacks/lms/mobile_api/tests/test_mobile_platform.py new file mode 100644 index 0000000000..0929083820 --- /dev/null +++ b/sys_path_hacks/lms/mobile_api/tests/test_mobile_platform.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing mobile_api.tests.test_mobile_platform instead of lms.djangoapps.mobile_api.tests.test_mobile_platform is deprecated", stacklevel=2) + +from lms.djangoapps.mobile_api.tests.test_mobile_platform import * diff --git a/sys_path_hacks/lms/mobile_api/tests/test_model.py b/sys_path_hacks/lms/mobile_api/tests/test_model.py new file mode 100644 index 0000000000..93c92b56f8 --- /dev/null +++ b/sys_path_hacks/lms/mobile_api/tests/test_model.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing mobile_api.tests.test_model instead of lms.djangoapps.mobile_api.tests.test_model is deprecated", stacklevel=2) + +from lms.djangoapps.mobile_api.tests.test_model import * diff --git a/sys_path_hacks/lms/mobile_api/testutils.py b/sys_path_hacks/lms/mobile_api/testutils.py new file mode 100644 index 0000000000..3af17c8b5a --- /dev/null +++ b/sys_path_hacks/lms/mobile_api/testutils.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing mobile_api.testutils instead of lms.djangoapps.mobile_api.testutils is deprecated", stacklevel=2) + +from lms.djangoapps.mobile_api.testutils import * diff --git a/sys_path_hacks/lms/mobile_api/urls.py b/sys_path_hacks/lms/mobile_api/urls.py new file mode 100644 index 0000000000..03fc3add7e --- /dev/null +++ b/sys_path_hacks/lms/mobile_api/urls.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing mobile_api.urls instead of lms.djangoapps.mobile_api.urls is deprecated", stacklevel=2) + +from lms.djangoapps.mobile_api.urls import * diff --git a/sys_path_hacks/lms/mobile_api/users/__init__.py b/sys_path_hacks/lms/mobile_api/users/__init__.py new file mode 100644 index 0000000000..4229c9877d --- /dev/null +++ b/sys_path_hacks/lms/mobile_api/users/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing mobile_api.users instead of lms.djangoapps.mobile_api.users is deprecated", stacklevel=2) + +from lms.djangoapps.mobile_api.users import * diff --git a/sys_path_hacks/lms/mobile_api/users/serializers.py b/sys_path_hacks/lms/mobile_api/users/serializers.py new file mode 100644 index 0000000000..e7a8a76922 --- /dev/null +++ b/sys_path_hacks/lms/mobile_api/users/serializers.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing mobile_api.users.serializers instead of lms.djangoapps.mobile_api.users.serializers is deprecated", stacklevel=2) + +from lms.djangoapps.mobile_api.users.serializers import * diff --git a/sys_path_hacks/lms/mobile_api/users/tests.py b/sys_path_hacks/lms/mobile_api/users/tests.py new file mode 100644 index 0000000000..be0ed836aa --- /dev/null +++ b/sys_path_hacks/lms/mobile_api/users/tests.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing mobile_api.users.tests instead of lms.djangoapps.mobile_api.users.tests is deprecated", stacklevel=2) + +from lms.djangoapps.mobile_api.users.tests import * diff --git a/sys_path_hacks/lms/mobile_api/users/urls.py b/sys_path_hacks/lms/mobile_api/users/urls.py new file mode 100644 index 0000000000..c986ce072e --- /dev/null +++ b/sys_path_hacks/lms/mobile_api/users/urls.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing mobile_api.users.urls instead of lms.djangoapps.mobile_api.users.urls is deprecated", stacklevel=2) + +from lms.djangoapps.mobile_api.users.urls import * diff --git a/sys_path_hacks/lms/mobile_api/users/views.py b/sys_path_hacks/lms/mobile_api/users/views.py new file mode 100644 index 0000000000..7e79d305f0 --- /dev/null +++ b/sys_path_hacks/lms/mobile_api/users/views.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing mobile_api.users.views instead of lms.djangoapps.mobile_api.users.views is deprecated", stacklevel=2) + +from lms.djangoapps.mobile_api.users.views import * diff --git a/sys_path_hacks/lms/mobile_api/utils.py b/sys_path_hacks/lms/mobile_api/utils.py new file mode 100644 index 0000000000..c35be15257 --- /dev/null +++ b/sys_path_hacks/lms/mobile_api/utils.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing mobile_api.utils instead of lms.djangoapps.mobile_api.utils is deprecated", stacklevel=2) + +from lms.djangoapps.mobile_api.utils import * diff --git a/sys_path_hacks/lms/monitoring/__init__.py b/sys_path_hacks/lms/monitoring/__init__.py new file mode 100644 index 0000000000..c4b9596e66 --- /dev/null +++ b/sys_path_hacks/lms/monitoring/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing monitoring instead of lms.djangoapps.monitoring is deprecated", stacklevel=2) + +from lms.djangoapps.monitoring import * diff --git a/sys_path_hacks/lms/monitoring/scripts/clean_unmapped_view_modules.py b/sys_path_hacks/lms/monitoring/scripts/clean_unmapped_view_modules.py new file mode 100644 index 0000000000..cb7ace3942 --- /dev/null +++ b/sys_path_hacks/lms/monitoring/scripts/clean_unmapped_view_modules.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing monitoring.scripts.clean_unmapped_view_modules instead of lms.djangoapps.monitoring.scripts.clean_unmapped_view_modules is deprecated", stacklevel=2) + +from lms.djangoapps.monitoring.scripts.clean_unmapped_view_modules import * diff --git a/sys_path_hacks/lms/monitoring/scripts/generate_code_owner_mappings.py b/sys_path_hacks/lms/monitoring/scripts/generate_code_owner_mappings.py new file mode 100644 index 0000000000..6c1b010778 --- /dev/null +++ b/sys_path_hacks/lms/monitoring/scripts/generate_code_owner_mappings.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing monitoring.scripts.generate_code_owner_mappings instead of lms.djangoapps.monitoring.scripts.generate_code_owner_mappings is deprecated", stacklevel=2) + +from lms.djangoapps.monitoring.scripts.generate_code_owner_mappings import * diff --git a/sys_path_hacks/lms/program_enrollments/__init__.py b/sys_path_hacks/lms/program_enrollments/__init__.py new file mode 100644 index 0000000000..6a113b0457 --- /dev/null +++ b/sys_path_hacks/lms/program_enrollments/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing program_enrollments instead of lms.djangoapps.program_enrollments is deprecated", stacklevel=2) + +from lms.djangoapps.program_enrollments import * diff --git a/sys_path_hacks/lms/program_enrollments/admin.py b/sys_path_hacks/lms/program_enrollments/admin.py new file mode 100644 index 0000000000..ff7df7615a --- /dev/null +++ b/sys_path_hacks/lms/program_enrollments/admin.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing program_enrollments.admin instead of lms.djangoapps.program_enrollments.admin is deprecated", stacklevel=2) + +from lms.djangoapps.program_enrollments.admin import * diff --git a/sys_path_hacks/lms/program_enrollments/api/__init__.py b/sys_path_hacks/lms/program_enrollments/api/__init__.py new file mode 100644 index 0000000000..d27a0caa48 --- /dev/null +++ b/sys_path_hacks/lms/program_enrollments/api/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing program_enrollments.api instead of lms.djangoapps.program_enrollments.api is deprecated", stacklevel=2) + +from lms.djangoapps.program_enrollments.api import * diff --git a/sys_path_hacks/lms/program_enrollments/api/grades.py b/sys_path_hacks/lms/program_enrollments/api/grades.py new file mode 100644 index 0000000000..4b9ab37a9f --- /dev/null +++ b/sys_path_hacks/lms/program_enrollments/api/grades.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing program_enrollments.api.grades instead of lms.djangoapps.program_enrollments.api.grades is deprecated", stacklevel=2) + +from lms.djangoapps.program_enrollments.api.grades import * diff --git a/sys_path_hacks/lms/program_enrollments/api/linking.py b/sys_path_hacks/lms/program_enrollments/api/linking.py new file mode 100644 index 0000000000..b591853b91 --- /dev/null +++ b/sys_path_hacks/lms/program_enrollments/api/linking.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing program_enrollments.api.linking instead of lms.djangoapps.program_enrollments.api.linking is deprecated", stacklevel=2) + +from lms.djangoapps.program_enrollments.api.linking import * diff --git a/sys_path_hacks/lms/program_enrollments/api/reading.py b/sys_path_hacks/lms/program_enrollments/api/reading.py new file mode 100644 index 0000000000..76fb8bce80 --- /dev/null +++ b/sys_path_hacks/lms/program_enrollments/api/reading.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing program_enrollments.api.reading instead of lms.djangoapps.program_enrollments.api.reading is deprecated", stacklevel=2) + +from lms.djangoapps.program_enrollments.api.reading import * diff --git a/sys_path_hacks/lms/program_enrollments/api/tests/__init__.py b/sys_path_hacks/lms/program_enrollments/api/tests/__init__.py new file mode 100644 index 0000000000..5052789991 --- /dev/null +++ b/sys_path_hacks/lms/program_enrollments/api/tests/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing program_enrollments.api.tests instead of lms.djangoapps.program_enrollments.api.tests is deprecated", stacklevel=2) + +from lms.djangoapps.program_enrollments.api.tests import * diff --git a/sys_path_hacks/lms/program_enrollments/api/tests/test_grades.py b/sys_path_hacks/lms/program_enrollments/api/tests/test_grades.py new file mode 100644 index 0000000000..95650badc3 --- /dev/null +++ b/sys_path_hacks/lms/program_enrollments/api/tests/test_grades.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing program_enrollments.api.tests.test_grades instead of lms.djangoapps.program_enrollments.api.tests.test_grades is deprecated", stacklevel=2) + +from lms.djangoapps.program_enrollments.api.tests.test_grades import * diff --git a/sys_path_hacks/lms/program_enrollments/api/tests/test_linking.py b/sys_path_hacks/lms/program_enrollments/api/tests/test_linking.py new file mode 100644 index 0000000000..3f60218943 --- /dev/null +++ b/sys_path_hacks/lms/program_enrollments/api/tests/test_linking.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing program_enrollments.api.tests.test_linking instead of lms.djangoapps.program_enrollments.api.tests.test_linking is deprecated", stacklevel=2) + +from lms.djangoapps.program_enrollments.api.tests.test_linking import * diff --git a/sys_path_hacks/lms/program_enrollments/api/tests/test_reading.py b/sys_path_hacks/lms/program_enrollments/api/tests/test_reading.py new file mode 100644 index 0000000000..b7771a4735 --- /dev/null +++ b/sys_path_hacks/lms/program_enrollments/api/tests/test_reading.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing program_enrollments.api.tests.test_reading instead of lms.djangoapps.program_enrollments.api.tests.test_reading is deprecated", stacklevel=2) + +from lms.djangoapps.program_enrollments.api.tests.test_reading import * diff --git a/sys_path_hacks/lms/program_enrollments/api/tests/test_writing.py b/sys_path_hacks/lms/program_enrollments/api/tests/test_writing.py new file mode 100644 index 0000000000..9a4f43da1d --- /dev/null +++ b/sys_path_hacks/lms/program_enrollments/api/tests/test_writing.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing program_enrollments.api.tests.test_writing instead of lms.djangoapps.program_enrollments.api.tests.test_writing is deprecated", stacklevel=2) + +from lms.djangoapps.program_enrollments.api.tests.test_writing import * diff --git a/sys_path_hacks/lms/program_enrollments/api/writing.py b/sys_path_hacks/lms/program_enrollments/api/writing.py new file mode 100644 index 0000000000..f5765f55bf --- /dev/null +++ b/sys_path_hacks/lms/program_enrollments/api/writing.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing program_enrollments.api.writing instead of lms.djangoapps.program_enrollments.api.writing is deprecated", stacklevel=2) + +from lms.djangoapps.program_enrollments.api.writing import * diff --git a/sys_path_hacks/lms/program_enrollments/apps.py b/sys_path_hacks/lms/program_enrollments/apps.py new file mode 100644 index 0000000000..12a0a13bf8 --- /dev/null +++ b/sys_path_hacks/lms/program_enrollments/apps.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing program_enrollments.apps instead of lms.djangoapps.program_enrollments.apps is deprecated", stacklevel=2) + +from lms.djangoapps.program_enrollments.apps import * diff --git a/sys_path_hacks/lms/program_enrollments/constants.py b/sys_path_hacks/lms/program_enrollments/constants.py new file mode 100644 index 0000000000..c5ab9326e3 --- /dev/null +++ b/sys_path_hacks/lms/program_enrollments/constants.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing program_enrollments.constants instead of lms.djangoapps.program_enrollments.constants is deprecated", stacklevel=2) + +from lms.djangoapps.program_enrollments.constants import * diff --git a/sys_path_hacks/lms/program_enrollments/exceptions.py b/sys_path_hacks/lms/program_enrollments/exceptions.py new file mode 100644 index 0000000000..0d58ddcf01 --- /dev/null +++ b/sys_path_hacks/lms/program_enrollments/exceptions.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing program_enrollments.exceptions instead of lms.djangoapps.program_enrollments.exceptions is deprecated", stacklevel=2) + +from lms.djangoapps.program_enrollments.exceptions import * diff --git a/sys_path_hacks/lms/program_enrollments/management/__init__.py b/sys_path_hacks/lms/program_enrollments/management/__init__.py new file mode 100644 index 0000000000..10909728be --- /dev/null +++ b/sys_path_hacks/lms/program_enrollments/management/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing program_enrollments.management instead of lms.djangoapps.program_enrollments.management is deprecated", stacklevel=2) + +from lms.djangoapps.program_enrollments.management import * diff --git a/sys_path_hacks/lms/program_enrollments/management/commands/__init__.py b/sys_path_hacks/lms/program_enrollments/management/commands/__init__.py new file mode 100644 index 0000000000..a6240f1806 --- /dev/null +++ b/sys_path_hacks/lms/program_enrollments/management/commands/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing program_enrollments.management.commands instead of lms.djangoapps.program_enrollments.management.commands is deprecated", stacklevel=2) + +from lms.djangoapps.program_enrollments.management.commands import * diff --git a/sys_path_hacks/lms/program_enrollments/management/commands/expire_waiting_enrollments.py b/sys_path_hacks/lms/program_enrollments/management/commands/expire_waiting_enrollments.py new file mode 100644 index 0000000000..700af7ad5d --- /dev/null +++ b/sys_path_hacks/lms/program_enrollments/management/commands/expire_waiting_enrollments.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing program_enrollments.management.commands.expire_waiting_enrollments instead of lms.djangoapps.program_enrollments.management.commands.expire_waiting_enrollments is deprecated", stacklevel=2) + +from lms.djangoapps.program_enrollments.management.commands.expire_waiting_enrollments import * diff --git a/sys_path_hacks/lms/program_enrollments/management/commands/link_program_enrollments.py b/sys_path_hacks/lms/program_enrollments/management/commands/link_program_enrollments.py new file mode 100644 index 0000000000..1c07b78d7e --- /dev/null +++ b/sys_path_hacks/lms/program_enrollments/management/commands/link_program_enrollments.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing program_enrollments.management.commands.link_program_enrollments instead of lms.djangoapps.program_enrollments.management.commands.link_program_enrollments is deprecated", stacklevel=2) + +from lms.djangoapps.program_enrollments.management.commands.link_program_enrollments import * diff --git a/sys_path_hacks/lms/program_enrollments/management/commands/migrate_saml_uids.py b/sys_path_hacks/lms/program_enrollments/management/commands/migrate_saml_uids.py new file mode 100644 index 0000000000..adf4615d09 --- /dev/null +++ b/sys_path_hacks/lms/program_enrollments/management/commands/migrate_saml_uids.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing program_enrollments.management.commands.migrate_saml_uids instead of lms.djangoapps.program_enrollments.management.commands.migrate_saml_uids is deprecated", stacklevel=2) + +from lms.djangoapps.program_enrollments.management.commands.migrate_saml_uids import * diff --git a/sys_path_hacks/lms/program_enrollments/management/commands/reset_enrollment_data.py b/sys_path_hacks/lms/program_enrollments/management/commands/reset_enrollment_data.py new file mode 100644 index 0000000000..2683f5b562 --- /dev/null +++ b/sys_path_hacks/lms/program_enrollments/management/commands/reset_enrollment_data.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing program_enrollments.management.commands.reset_enrollment_data instead of lms.djangoapps.program_enrollments.management.commands.reset_enrollment_data is deprecated", stacklevel=2) + +from lms.djangoapps.program_enrollments.management.commands.reset_enrollment_data import * diff --git a/sys_path_hacks/lms/program_enrollments/management/commands/tests/__init__.py b/sys_path_hacks/lms/program_enrollments/management/commands/tests/__init__.py new file mode 100644 index 0000000000..be5640ee07 --- /dev/null +++ b/sys_path_hacks/lms/program_enrollments/management/commands/tests/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing program_enrollments.management.commands.tests instead of lms.djangoapps.program_enrollments.management.commands.tests is deprecated", stacklevel=2) + +from lms.djangoapps.program_enrollments.management.commands.tests import * diff --git a/sys_path_hacks/lms/program_enrollments/management/commands/tests/test_expire_waiting_enrollments.py b/sys_path_hacks/lms/program_enrollments/management/commands/tests/test_expire_waiting_enrollments.py new file mode 100644 index 0000000000..efd8835755 --- /dev/null +++ b/sys_path_hacks/lms/program_enrollments/management/commands/tests/test_expire_waiting_enrollments.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing program_enrollments.management.commands.tests.test_expire_waiting_enrollments instead of lms.djangoapps.program_enrollments.management.commands.tests.test_expire_waiting_enrollments is deprecated", stacklevel=2) + +from lms.djangoapps.program_enrollments.management.commands.tests.test_expire_waiting_enrollments import * diff --git a/sys_path_hacks/lms/program_enrollments/management/commands/tests/test_link_program_enrollments.py b/sys_path_hacks/lms/program_enrollments/management/commands/tests/test_link_program_enrollments.py new file mode 100644 index 0000000000..a6203a9568 --- /dev/null +++ b/sys_path_hacks/lms/program_enrollments/management/commands/tests/test_link_program_enrollments.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing program_enrollments.management.commands.tests.test_link_program_enrollments instead of lms.djangoapps.program_enrollments.management.commands.tests.test_link_program_enrollments is deprecated", stacklevel=2) + +from lms.djangoapps.program_enrollments.management.commands.tests.test_link_program_enrollments import * diff --git a/sys_path_hacks/lms/program_enrollments/management/commands/tests/test_migrate_saml_uids.py b/sys_path_hacks/lms/program_enrollments/management/commands/tests/test_migrate_saml_uids.py new file mode 100644 index 0000000000..fe1285abd8 --- /dev/null +++ b/sys_path_hacks/lms/program_enrollments/management/commands/tests/test_migrate_saml_uids.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing program_enrollments.management.commands.tests.test_migrate_saml_uids instead of lms.djangoapps.program_enrollments.management.commands.tests.test_migrate_saml_uids is deprecated", stacklevel=2) + +from lms.djangoapps.program_enrollments.management.commands.tests.test_migrate_saml_uids import * diff --git a/sys_path_hacks/lms/program_enrollments/management/commands/tests/test_reset_enrollment_data.py b/sys_path_hacks/lms/program_enrollments/management/commands/tests/test_reset_enrollment_data.py new file mode 100644 index 0000000000..4f7204e5cd --- /dev/null +++ b/sys_path_hacks/lms/program_enrollments/management/commands/tests/test_reset_enrollment_data.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing program_enrollments.management.commands.tests.test_reset_enrollment_data instead of lms.djangoapps.program_enrollments.management.commands.tests.test_reset_enrollment_data is deprecated", stacklevel=2) + +from lms.djangoapps.program_enrollments.management.commands.tests.test_reset_enrollment_data import * diff --git a/sys_path_hacks/lms/program_enrollments/management/commands/tests/utils.py b/sys_path_hacks/lms/program_enrollments/management/commands/tests/utils.py new file mode 100644 index 0000000000..31ab345671 --- /dev/null +++ b/sys_path_hacks/lms/program_enrollments/management/commands/tests/utils.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing program_enrollments.management.commands.tests.utils instead of lms.djangoapps.program_enrollments.management.commands.tests.utils is deprecated", stacklevel=2) + +from lms.djangoapps.program_enrollments.management.commands.tests.utils import * diff --git a/sys_path_hacks/lms/program_enrollments/models.py b/sys_path_hacks/lms/program_enrollments/models.py new file mode 100644 index 0000000000..e1528ec7f2 --- /dev/null +++ b/sys_path_hacks/lms/program_enrollments/models.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing program_enrollments.models instead of lms.djangoapps.program_enrollments.models is deprecated", stacklevel=2) + +from lms.djangoapps.program_enrollments.models import * diff --git a/sys_path_hacks/lms/program_enrollments/rest_api/__init__.py b/sys_path_hacks/lms/program_enrollments/rest_api/__init__.py new file mode 100644 index 0000000000..417676f568 --- /dev/null +++ b/sys_path_hacks/lms/program_enrollments/rest_api/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing program_enrollments.rest_api instead of lms.djangoapps.program_enrollments.rest_api is deprecated", stacklevel=2) + +from lms.djangoapps.program_enrollments.rest_api import * diff --git a/sys_path_hacks/lms/program_enrollments/rest_api/urls.py b/sys_path_hacks/lms/program_enrollments/rest_api/urls.py new file mode 100644 index 0000000000..93bd1e6004 --- /dev/null +++ b/sys_path_hacks/lms/program_enrollments/rest_api/urls.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing program_enrollments.rest_api.urls instead of lms.djangoapps.program_enrollments.rest_api.urls is deprecated", stacklevel=2) + +from lms.djangoapps.program_enrollments.rest_api.urls import * diff --git a/sys_path_hacks/lms/program_enrollments/rest_api/v1/__init__.py b/sys_path_hacks/lms/program_enrollments/rest_api/v1/__init__.py new file mode 100644 index 0000000000..ef12e01b81 --- /dev/null +++ b/sys_path_hacks/lms/program_enrollments/rest_api/v1/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing program_enrollments.rest_api.v1 instead of lms.djangoapps.program_enrollments.rest_api.v1 is deprecated", stacklevel=2) + +from lms.djangoapps.program_enrollments.rest_api.v1 import * diff --git a/sys_path_hacks/lms/program_enrollments/rest_api/v1/constants.py b/sys_path_hacks/lms/program_enrollments/rest_api/v1/constants.py new file mode 100644 index 0000000000..16cd6bd0e3 --- /dev/null +++ b/sys_path_hacks/lms/program_enrollments/rest_api/v1/constants.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing program_enrollments.rest_api.v1.constants instead of lms.djangoapps.program_enrollments.rest_api.v1.constants is deprecated", stacklevel=2) + +from lms.djangoapps.program_enrollments.rest_api.v1.constants import * diff --git a/sys_path_hacks/lms/program_enrollments/rest_api/v1/serializers.py b/sys_path_hacks/lms/program_enrollments/rest_api/v1/serializers.py new file mode 100644 index 0000000000..16d051270a --- /dev/null +++ b/sys_path_hacks/lms/program_enrollments/rest_api/v1/serializers.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing program_enrollments.rest_api.v1.serializers instead of lms.djangoapps.program_enrollments.rest_api.v1.serializers is deprecated", stacklevel=2) + +from lms.djangoapps.program_enrollments.rest_api.v1.serializers import * diff --git a/sys_path_hacks/lms/program_enrollments/rest_api/v1/tests/__init__.py b/sys_path_hacks/lms/program_enrollments/rest_api/v1/tests/__init__.py new file mode 100644 index 0000000000..5282769180 --- /dev/null +++ b/sys_path_hacks/lms/program_enrollments/rest_api/v1/tests/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing program_enrollments.rest_api.v1.tests instead of lms.djangoapps.program_enrollments.rest_api.v1.tests is deprecated", stacklevel=2) + +from lms.djangoapps.program_enrollments.rest_api.v1.tests import * diff --git a/sys_path_hacks/lms/program_enrollments/rest_api/v1/tests/test_views.py b/sys_path_hacks/lms/program_enrollments/rest_api/v1/tests/test_views.py new file mode 100644 index 0000000000..cd8ea1952d --- /dev/null +++ b/sys_path_hacks/lms/program_enrollments/rest_api/v1/tests/test_views.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing program_enrollments.rest_api.v1.tests.test_views instead of lms.djangoapps.program_enrollments.rest_api.v1.tests.test_views is deprecated", stacklevel=2) + +from lms.djangoapps.program_enrollments.rest_api.v1.tests.test_views import * diff --git a/sys_path_hacks/lms/program_enrollments/rest_api/v1/urls.py b/sys_path_hacks/lms/program_enrollments/rest_api/v1/urls.py new file mode 100644 index 0000000000..2fd33a43dd --- /dev/null +++ b/sys_path_hacks/lms/program_enrollments/rest_api/v1/urls.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing program_enrollments.rest_api.v1.urls instead of lms.djangoapps.program_enrollments.rest_api.v1.urls is deprecated", stacklevel=2) + +from lms.djangoapps.program_enrollments.rest_api.v1.urls import * diff --git a/sys_path_hacks/lms/program_enrollments/rest_api/v1/utils.py b/sys_path_hacks/lms/program_enrollments/rest_api/v1/utils.py new file mode 100644 index 0000000000..2467b89b2b --- /dev/null +++ b/sys_path_hacks/lms/program_enrollments/rest_api/v1/utils.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing program_enrollments.rest_api.v1.utils instead of lms.djangoapps.program_enrollments.rest_api.v1.utils is deprecated", stacklevel=2) + +from lms.djangoapps.program_enrollments.rest_api.v1.utils import * diff --git a/sys_path_hacks/lms/program_enrollments/rest_api/v1/views.py b/sys_path_hacks/lms/program_enrollments/rest_api/v1/views.py new file mode 100644 index 0000000000..68bb68dc73 --- /dev/null +++ b/sys_path_hacks/lms/program_enrollments/rest_api/v1/views.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing program_enrollments.rest_api.v1.views instead of lms.djangoapps.program_enrollments.rest_api.v1.views is deprecated", stacklevel=2) + +from lms.djangoapps.program_enrollments.rest_api.v1.views import * diff --git a/sys_path_hacks/lms/program_enrollments/signals.py b/sys_path_hacks/lms/program_enrollments/signals.py new file mode 100644 index 0000000000..61f69c6cbb --- /dev/null +++ b/sys_path_hacks/lms/program_enrollments/signals.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing program_enrollments.signals instead of lms.djangoapps.program_enrollments.signals is deprecated", stacklevel=2) + +from lms.djangoapps.program_enrollments.signals import * diff --git a/sys_path_hacks/lms/program_enrollments/tasks.py b/sys_path_hacks/lms/program_enrollments/tasks.py new file mode 100644 index 0000000000..6517e94654 --- /dev/null +++ b/sys_path_hacks/lms/program_enrollments/tasks.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing program_enrollments.tasks instead of lms.djangoapps.program_enrollments.tasks is deprecated", stacklevel=2) + +from lms.djangoapps.program_enrollments.tasks import * diff --git a/sys_path_hacks/lms/program_enrollments/tests/__init__.py b/sys_path_hacks/lms/program_enrollments/tests/__init__.py new file mode 100644 index 0000000000..e294be70a3 --- /dev/null +++ b/sys_path_hacks/lms/program_enrollments/tests/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing program_enrollments.tests instead of lms.djangoapps.program_enrollments.tests is deprecated", stacklevel=2) + +from lms.djangoapps.program_enrollments.tests import * diff --git a/sys_path_hacks/lms/program_enrollments/tests/factories.py b/sys_path_hacks/lms/program_enrollments/tests/factories.py new file mode 100644 index 0000000000..9a241389a5 --- /dev/null +++ b/sys_path_hacks/lms/program_enrollments/tests/factories.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing program_enrollments.tests.factories instead of lms.djangoapps.program_enrollments.tests.factories is deprecated", stacklevel=2) + +from lms.djangoapps.program_enrollments.tests.factories import * diff --git a/sys_path_hacks/lms/program_enrollments/tests/test_admin.py b/sys_path_hacks/lms/program_enrollments/tests/test_admin.py new file mode 100644 index 0000000000..2afc96d29e --- /dev/null +++ b/sys_path_hacks/lms/program_enrollments/tests/test_admin.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing program_enrollments.tests.test_admin instead of lms.djangoapps.program_enrollments.tests.test_admin is deprecated", stacklevel=2) + +from lms.djangoapps.program_enrollments.tests.test_admin import * diff --git a/sys_path_hacks/lms/program_enrollments/tests/test_models.py b/sys_path_hacks/lms/program_enrollments/tests/test_models.py new file mode 100644 index 0000000000..7a99f2718a --- /dev/null +++ b/sys_path_hacks/lms/program_enrollments/tests/test_models.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing program_enrollments.tests.test_models instead of lms.djangoapps.program_enrollments.tests.test_models is deprecated", stacklevel=2) + +from lms.djangoapps.program_enrollments.tests.test_models import * diff --git a/sys_path_hacks/lms/program_enrollments/tests/test_signals.py b/sys_path_hacks/lms/program_enrollments/tests/test_signals.py new file mode 100644 index 0000000000..fe290a1ed7 --- /dev/null +++ b/sys_path_hacks/lms/program_enrollments/tests/test_signals.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing program_enrollments.tests.test_signals instead of lms.djangoapps.program_enrollments.tests.test_signals is deprecated", stacklevel=2) + +from lms.djangoapps.program_enrollments.tests.test_signals import * diff --git a/sys_path_hacks/lms/program_enrollments/tests/test_tasks.py b/sys_path_hacks/lms/program_enrollments/tests/test_tasks.py new file mode 100644 index 0000000000..62e7030dbb --- /dev/null +++ b/sys_path_hacks/lms/program_enrollments/tests/test_tasks.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing program_enrollments.tests.test_tasks instead of lms.djangoapps.program_enrollments.tests.test_tasks is deprecated", stacklevel=2) + +from lms.djangoapps.program_enrollments.tests.test_tasks import * diff --git a/sys_path_hacks/lms/rss_proxy/__init__.py b/sys_path_hacks/lms/rss_proxy/__init__.py new file mode 100644 index 0000000000..3fdbf658c6 --- /dev/null +++ b/sys_path_hacks/lms/rss_proxy/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing rss_proxy instead of lms.djangoapps.rss_proxy is deprecated", stacklevel=2) + +from lms.djangoapps.rss_proxy import * diff --git a/sys_path_hacks/lms/rss_proxy/admin.py b/sys_path_hacks/lms/rss_proxy/admin.py new file mode 100644 index 0000000000..c7d743f53f --- /dev/null +++ b/sys_path_hacks/lms/rss_proxy/admin.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing rss_proxy.admin instead of lms.djangoapps.rss_proxy.admin is deprecated", stacklevel=2) + +from lms.djangoapps.rss_proxy.admin import * diff --git a/sys_path_hacks/lms/rss_proxy/models.py b/sys_path_hacks/lms/rss_proxy/models.py new file mode 100644 index 0000000000..3d82043f44 --- /dev/null +++ b/sys_path_hacks/lms/rss_proxy/models.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing rss_proxy.models instead of lms.djangoapps.rss_proxy.models is deprecated", stacklevel=2) + +from lms.djangoapps.rss_proxy.models import * diff --git a/sys_path_hacks/lms/rss_proxy/tests/__init__.py b/sys_path_hacks/lms/rss_proxy/tests/__init__.py new file mode 100644 index 0000000000..4547f9c47a --- /dev/null +++ b/sys_path_hacks/lms/rss_proxy/tests/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing rss_proxy.tests instead of lms.djangoapps.rss_proxy.tests is deprecated", stacklevel=2) + +from lms.djangoapps.rss_proxy.tests import * diff --git a/sys_path_hacks/lms/rss_proxy/tests/test_models.py b/sys_path_hacks/lms/rss_proxy/tests/test_models.py new file mode 100644 index 0000000000..b5d87d2446 --- /dev/null +++ b/sys_path_hacks/lms/rss_proxy/tests/test_models.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing rss_proxy.tests.test_models instead of lms.djangoapps.rss_proxy.tests.test_models is deprecated", stacklevel=2) + +from lms.djangoapps.rss_proxy.tests.test_models import * diff --git a/sys_path_hacks/lms/rss_proxy/tests/test_views.py b/sys_path_hacks/lms/rss_proxy/tests/test_views.py new file mode 100644 index 0000000000..3850774e0c --- /dev/null +++ b/sys_path_hacks/lms/rss_proxy/tests/test_views.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing rss_proxy.tests.test_views instead of lms.djangoapps.rss_proxy.tests.test_views is deprecated", stacklevel=2) + +from lms.djangoapps.rss_proxy.tests.test_views import * diff --git a/sys_path_hacks/lms/rss_proxy/urls.py b/sys_path_hacks/lms/rss_proxy/urls.py new file mode 100644 index 0000000000..91cff08949 --- /dev/null +++ b/sys_path_hacks/lms/rss_proxy/urls.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing rss_proxy.urls instead of lms.djangoapps.rss_proxy.urls is deprecated", stacklevel=2) + +from lms.djangoapps.rss_proxy.urls import * diff --git a/sys_path_hacks/lms/rss_proxy/views.py b/sys_path_hacks/lms/rss_proxy/views.py new file mode 100644 index 0000000000..b8bac0392a --- /dev/null +++ b/sys_path_hacks/lms/rss_proxy/views.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing rss_proxy.views instead of lms.djangoapps.rss_proxy.views is deprecated", stacklevel=2) + +from lms.djangoapps.rss_proxy.views import * diff --git a/sys_path_hacks/lms/shoppingcart/__init__.py b/sys_path_hacks/lms/shoppingcart/__init__.py new file mode 100644 index 0000000000..e00626f8b1 --- /dev/null +++ b/sys_path_hacks/lms/shoppingcart/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing shoppingcart instead of lms.djangoapps.shoppingcart is deprecated", stacklevel=2) + +from lms.djangoapps.shoppingcart import * diff --git a/sys_path_hacks/lms/shoppingcart/admin.py b/sys_path_hacks/lms/shoppingcart/admin.py new file mode 100644 index 0000000000..eec677a6e2 --- /dev/null +++ b/sys_path_hacks/lms/shoppingcart/admin.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing shoppingcart.admin instead of lms.djangoapps.shoppingcart.admin is deprecated", stacklevel=2) + +from lms.djangoapps.shoppingcart.admin import * diff --git a/sys_path_hacks/lms/shoppingcart/api.py b/sys_path_hacks/lms/shoppingcart/api.py new file mode 100644 index 0000000000..c3e7f5a04d --- /dev/null +++ b/sys_path_hacks/lms/shoppingcart/api.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing shoppingcart.api instead of lms.djangoapps.shoppingcart.api is deprecated", stacklevel=2) + +from lms.djangoapps.shoppingcart.api import * diff --git a/sys_path_hacks/lms/shoppingcart/context_processor.py b/sys_path_hacks/lms/shoppingcart/context_processor.py new file mode 100644 index 0000000000..8a20dc103c --- /dev/null +++ b/sys_path_hacks/lms/shoppingcart/context_processor.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing shoppingcart.context_processor instead of lms.djangoapps.shoppingcart.context_processor is deprecated", stacklevel=2) + +from lms.djangoapps.shoppingcart.context_processor import * diff --git a/sys_path_hacks/lms/shoppingcart/decorators.py b/sys_path_hacks/lms/shoppingcart/decorators.py new file mode 100644 index 0000000000..8cf2795a8d --- /dev/null +++ b/sys_path_hacks/lms/shoppingcart/decorators.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing shoppingcart.decorators instead of lms.djangoapps.shoppingcart.decorators is deprecated", stacklevel=2) + +from lms.djangoapps.shoppingcart.decorators import * diff --git a/sys_path_hacks/lms/shoppingcart/exceptions.py b/sys_path_hacks/lms/shoppingcart/exceptions.py new file mode 100644 index 0000000000..35111fa81e --- /dev/null +++ b/sys_path_hacks/lms/shoppingcart/exceptions.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing shoppingcart.exceptions instead of lms.djangoapps.shoppingcart.exceptions is deprecated", stacklevel=2) + +from lms.djangoapps.shoppingcart.exceptions import * diff --git a/sys_path_hacks/lms/shoppingcart/management/__init__.py b/sys_path_hacks/lms/shoppingcart/management/__init__.py new file mode 100644 index 0000000000..07bc98fdf2 --- /dev/null +++ b/sys_path_hacks/lms/shoppingcart/management/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing shoppingcart.management instead of lms.djangoapps.shoppingcart.management is deprecated", stacklevel=2) + +from lms.djangoapps.shoppingcart.management import * diff --git a/sys_path_hacks/lms/shoppingcart/management/commands/__init__.py b/sys_path_hacks/lms/shoppingcart/management/commands/__init__.py new file mode 100644 index 0000000000..1b23556c9c --- /dev/null +++ b/sys_path_hacks/lms/shoppingcart/management/commands/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing shoppingcart.management.commands instead of lms.djangoapps.shoppingcart.management.commands is deprecated", stacklevel=2) + +from lms.djangoapps.shoppingcart.management.commands import * diff --git a/sys_path_hacks/lms/shoppingcart/management/commands/retire_order.py b/sys_path_hacks/lms/shoppingcart/management/commands/retire_order.py new file mode 100644 index 0000000000..446d4a5a51 --- /dev/null +++ b/sys_path_hacks/lms/shoppingcart/management/commands/retire_order.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing shoppingcart.management.commands.retire_order instead of lms.djangoapps.shoppingcart.management.commands.retire_order is deprecated", stacklevel=2) + +from lms.djangoapps.shoppingcart.management.commands.retire_order import * diff --git a/sys_path_hacks/lms/shoppingcart/management/tests/__init__.py b/sys_path_hacks/lms/shoppingcart/management/tests/__init__.py new file mode 100644 index 0000000000..598dda320e --- /dev/null +++ b/sys_path_hacks/lms/shoppingcart/management/tests/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing shoppingcart.management.tests instead of lms.djangoapps.shoppingcart.management.tests is deprecated", stacklevel=2) + +from lms.djangoapps.shoppingcart.management.tests import * diff --git a/sys_path_hacks/lms/shoppingcart/management/tests/test_retire_order.py b/sys_path_hacks/lms/shoppingcart/management/tests/test_retire_order.py new file mode 100644 index 0000000000..ab8c89155e --- /dev/null +++ b/sys_path_hacks/lms/shoppingcart/management/tests/test_retire_order.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing shoppingcart.management.tests.test_retire_order instead of lms.djangoapps.shoppingcart.management.tests.test_retire_order is deprecated", stacklevel=2) + +from lms.djangoapps.shoppingcart.management.tests.test_retire_order import * diff --git a/sys_path_hacks/lms/shoppingcart/models.py b/sys_path_hacks/lms/shoppingcart/models.py new file mode 100644 index 0000000000..48e5f450c6 --- /dev/null +++ b/sys_path_hacks/lms/shoppingcart/models.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing shoppingcart.models instead of lms.djangoapps.shoppingcart.models is deprecated", stacklevel=2) + +from lms.djangoapps.shoppingcart.models import * diff --git a/sys_path_hacks/lms/shoppingcart/processors/CyberSource2.py b/sys_path_hacks/lms/shoppingcart/processors/CyberSource2.py new file mode 100644 index 0000000000..2e8358623a --- /dev/null +++ b/sys_path_hacks/lms/shoppingcart/processors/CyberSource2.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing shoppingcart.processors.CyberSource2 instead of lms.djangoapps.shoppingcart.processors.CyberSource2 is deprecated", stacklevel=2) + +from lms.djangoapps.shoppingcart.processors.CyberSource2 import * diff --git a/sys_path_hacks/lms/shoppingcart/processors/__init__.py b/sys_path_hacks/lms/shoppingcart/processors/__init__.py new file mode 100644 index 0000000000..b4af6cd091 --- /dev/null +++ b/sys_path_hacks/lms/shoppingcart/processors/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing shoppingcart.processors instead of lms.djangoapps.shoppingcart.processors is deprecated", stacklevel=2) + +from lms.djangoapps.shoppingcart.processors import * diff --git a/sys_path_hacks/lms/shoppingcart/processors/exceptions.py b/sys_path_hacks/lms/shoppingcart/processors/exceptions.py new file mode 100644 index 0000000000..1b50d43c04 --- /dev/null +++ b/sys_path_hacks/lms/shoppingcart/processors/exceptions.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing shoppingcart.processors.exceptions instead of lms.djangoapps.shoppingcart.processors.exceptions is deprecated", stacklevel=2) + +from lms.djangoapps.shoppingcart.processors.exceptions import * diff --git a/sys_path_hacks/lms/shoppingcart/processors/helpers.py b/sys_path_hacks/lms/shoppingcart/processors/helpers.py new file mode 100644 index 0000000000..4719fa36c8 --- /dev/null +++ b/sys_path_hacks/lms/shoppingcart/processors/helpers.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing shoppingcart.processors.helpers instead of lms.djangoapps.shoppingcart.processors.helpers is deprecated", stacklevel=2) + +from lms.djangoapps.shoppingcart.processors.helpers import * diff --git a/sys_path_hacks/lms/shoppingcart/processors/tests/__init__.py b/sys_path_hacks/lms/shoppingcart/processors/tests/__init__.py new file mode 100644 index 0000000000..8d6a21434a --- /dev/null +++ b/sys_path_hacks/lms/shoppingcart/processors/tests/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing shoppingcart.processors.tests instead of lms.djangoapps.shoppingcart.processors.tests is deprecated", stacklevel=2) + +from lms.djangoapps.shoppingcart.processors.tests import * diff --git a/sys_path_hacks/lms/shoppingcart/processors/tests/test_CyberSource2.py b/sys_path_hacks/lms/shoppingcart/processors/tests/test_CyberSource2.py new file mode 100644 index 0000000000..2e0b281fb7 --- /dev/null +++ b/sys_path_hacks/lms/shoppingcart/processors/tests/test_CyberSource2.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing shoppingcart.processors.tests.test_CyberSource2 instead of lms.djangoapps.shoppingcart.processors.tests.test_CyberSource2 is deprecated", stacklevel=2) + +from lms.djangoapps.shoppingcart.processors.tests.test_CyberSource2 import * diff --git a/sys_path_hacks/lms/shoppingcart/reports.py b/sys_path_hacks/lms/shoppingcart/reports.py new file mode 100644 index 0000000000..166d40a54e --- /dev/null +++ b/sys_path_hacks/lms/shoppingcart/reports.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing shoppingcart.reports instead of lms.djangoapps.shoppingcart.reports is deprecated", stacklevel=2) + +from lms.djangoapps.shoppingcart.reports import * diff --git a/sys_path_hacks/lms/shoppingcart/tests/__init__.py b/sys_path_hacks/lms/shoppingcart/tests/__init__.py new file mode 100644 index 0000000000..d2184e7bf9 --- /dev/null +++ b/sys_path_hacks/lms/shoppingcart/tests/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing shoppingcart.tests instead of lms.djangoapps.shoppingcart.tests is deprecated", stacklevel=2) + +from lms.djangoapps.shoppingcart.tests import * diff --git a/sys_path_hacks/lms/shoppingcart/tests/payment_fake.py b/sys_path_hacks/lms/shoppingcart/tests/payment_fake.py new file mode 100644 index 0000000000..98d36e1e87 --- /dev/null +++ b/sys_path_hacks/lms/shoppingcart/tests/payment_fake.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing shoppingcart.tests.payment_fake instead of lms.djangoapps.shoppingcart.tests.payment_fake is deprecated", stacklevel=2) + +from lms.djangoapps.shoppingcart.tests.payment_fake import * diff --git a/sys_path_hacks/lms/shoppingcart/tests/test_context_processor.py b/sys_path_hacks/lms/shoppingcart/tests/test_context_processor.py new file mode 100644 index 0000000000..76a0c9e168 --- /dev/null +++ b/sys_path_hacks/lms/shoppingcart/tests/test_context_processor.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing shoppingcart.tests.test_context_processor instead of lms.djangoapps.shoppingcart.tests.test_context_processor is deprecated", stacklevel=2) + +from lms.djangoapps.shoppingcart.tests.test_context_processor import * diff --git a/sys_path_hacks/lms/shoppingcart/tests/test_models.py b/sys_path_hacks/lms/shoppingcart/tests/test_models.py new file mode 100644 index 0000000000..e3ade72a81 --- /dev/null +++ b/sys_path_hacks/lms/shoppingcart/tests/test_models.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing shoppingcart.tests.test_models instead of lms.djangoapps.shoppingcart.tests.test_models is deprecated", stacklevel=2) + +from lms.djangoapps.shoppingcart.tests.test_models import * diff --git a/sys_path_hacks/lms/shoppingcart/tests/test_payment_fake.py b/sys_path_hacks/lms/shoppingcart/tests/test_payment_fake.py new file mode 100644 index 0000000000..6c7122aaaa --- /dev/null +++ b/sys_path_hacks/lms/shoppingcart/tests/test_payment_fake.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing shoppingcart.tests.test_payment_fake instead of lms.djangoapps.shoppingcart.tests.test_payment_fake is deprecated", stacklevel=2) + +from lms.djangoapps.shoppingcart.tests.test_payment_fake import * diff --git a/sys_path_hacks/lms/shoppingcart/tests/test_reports.py b/sys_path_hacks/lms/shoppingcart/tests/test_reports.py new file mode 100644 index 0000000000..7ad70f3492 --- /dev/null +++ b/sys_path_hacks/lms/shoppingcart/tests/test_reports.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing shoppingcart.tests.test_reports instead of lms.djangoapps.shoppingcart.tests.test_reports is deprecated", stacklevel=2) + +from lms.djangoapps.shoppingcart.tests.test_reports import * diff --git a/sys_path_hacks/lms/shoppingcart/tests/test_views.py b/sys_path_hacks/lms/shoppingcart/tests/test_views.py new file mode 100644 index 0000000000..0dc43cfa0e --- /dev/null +++ b/sys_path_hacks/lms/shoppingcart/tests/test_views.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing shoppingcart.tests.test_views instead of lms.djangoapps.shoppingcart.tests.test_views is deprecated", stacklevel=2) + +from lms.djangoapps.shoppingcart.tests.test_views import * diff --git a/sys_path_hacks/lms/shoppingcart/urls.py b/sys_path_hacks/lms/shoppingcart/urls.py new file mode 100644 index 0000000000..807e39bbf4 --- /dev/null +++ b/sys_path_hacks/lms/shoppingcart/urls.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing shoppingcart.urls instead of lms.djangoapps.shoppingcart.urls is deprecated", stacklevel=2) + +from lms.djangoapps.shoppingcart.urls import * diff --git a/sys_path_hacks/lms/shoppingcart/utils.py b/sys_path_hacks/lms/shoppingcart/utils.py new file mode 100644 index 0000000000..705d6140eb --- /dev/null +++ b/sys_path_hacks/lms/shoppingcart/utils.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing shoppingcart.utils instead of lms.djangoapps.shoppingcart.utils is deprecated", stacklevel=2) + +from lms.djangoapps.shoppingcart.utils import * diff --git a/sys_path_hacks/lms/shoppingcart/views.py b/sys_path_hacks/lms/shoppingcart/views.py new file mode 100644 index 0000000000..8345500129 --- /dev/null +++ b/sys_path_hacks/lms/shoppingcart/views.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing shoppingcart.views instead of lms.djangoapps.shoppingcart.views is deprecated", stacklevel=2) + +from lms.djangoapps.shoppingcart.views import * diff --git a/sys_path_hacks/lms/static_template_view/__init__.py b/sys_path_hacks/lms/static_template_view/__init__.py new file mode 100644 index 0000000000..108aee49ba --- /dev/null +++ b/sys_path_hacks/lms/static_template_view/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing static_template_view instead of lms.djangoapps.static_template_view is deprecated", stacklevel=2) + +from lms.djangoapps.static_template_view import * diff --git a/sys_path_hacks/lms/static_template_view/tests/__init__.py b/sys_path_hacks/lms/static_template_view/tests/__init__.py new file mode 100644 index 0000000000..80b2ef7b00 --- /dev/null +++ b/sys_path_hacks/lms/static_template_view/tests/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing static_template_view.tests instead of lms.djangoapps.static_template_view.tests is deprecated", stacklevel=2) + +from lms.djangoapps.static_template_view.tests import * diff --git a/sys_path_hacks/lms/static_template_view/tests/test_views.py b/sys_path_hacks/lms/static_template_view/tests/test_views.py new file mode 100644 index 0000000000..04f046ca25 --- /dev/null +++ b/sys_path_hacks/lms/static_template_view/tests/test_views.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing static_template_view.tests.test_views instead of lms.djangoapps.static_template_view.tests.test_views is deprecated", stacklevel=2) + +from lms.djangoapps.static_template_view.tests.test_views import * diff --git a/sys_path_hacks/lms/static_template_view/urls.py b/sys_path_hacks/lms/static_template_view/urls.py new file mode 100644 index 0000000000..691ab093b0 --- /dev/null +++ b/sys_path_hacks/lms/static_template_view/urls.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing static_template_view.urls instead of lms.djangoapps.static_template_view.urls is deprecated", stacklevel=2) + +from lms.djangoapps.static_template_view.urls import * diff --git a/sys_path_hacks/lms/static_template_view/views.py b/sys_path_hacks/lms/static_template_view/views.py new file mode 100644 index 0000000000..ed1192edd3 --- /dev/null +++ b/sys_path_hacks/lms/static_template_view/views.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing static_template_view.views instead of lms.djangoapps.static_template_view.views is deprecated", stacklevel=2) + +from lms.djangoapps.static_template_view.views import * diff --git a/sys_path_hacks/lms/staticbook/__init__.py b/sys_path_hacks/lms/staticbook/__init__.py new file mode 100644 index 0000000000..a6f0413e52 --- /dev/null +++ b/sys_path_hacks/lms/staticbook/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing staticbook instead of lms.djangoapps.staticbook is deprecated", stacklevel=2) + +from lms.djangoapps.staticbook import * diff --git a/sys_path_hacks/lms/staticbook/tests.py b/sys_path_hacks/lms/staticbook/tests.py new file mode 100644 index 0000000000..eccb00a401 --- /dev/null +++ b/sys_path_hacks/lms/staticbook/tests.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing staticbook.tests instead of lms.djangoapps.staticbook.tests is deprecated", stacklevel=2) + +from lms.djangoapps.staticbook.tests import * diff --git a/sys_path_hacks/lms/staticbook/views.py b/sys_path_hacks/lms/staticbook/views.py new file mode 100644 index 0000000000..3dcb9e6910 --- /dev/null +++ b/sys_path_hacks/lms/staticbook/views.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing staticbook.views instead of lms.djangoapps.staticbook.views is deprecated", stacklevel=2) + +from lms.djangoapps.staticbook.views import * diff --git a/sys_path_hacks/lms/support/__init__.py b/sys_path_hacks/lms/support/__init__.py new file mode 100644 index 0000000000..6614bc2c94 --- /dev/null +++ b/sys_path_hacks/lms/support/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing support instead of lms.djangoapps.support is deprecated", stacklevel=2) + +from lms.djangoapps.support import * diff --git a/sys_path_hacks/lms/support/decorators.py b/sys_path_hacks/lms/support/decorators.py new file mode 100644 index 0000000000..8258c21e0e --- /dev/null +++ b/sys_path_hacks/lms/support/decorators.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing support.decorators instead of lms.djangoapps.support.decorators is deprecated", stacklevel=2) + +from lms.djangoapps.support.decorators import * diff --git a/sys_path_hacks/lms/support/serializers.py b/sys_path_hacks/lms/support/serializers.py new file mode 100644 index 0000000000..a612e0d1e9 --- /dev/null +++ b/sys_path_hacks/lms/support/serializers.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing support.serializers instead of lms.djangoapps.support.serializers is deprecated", stacklevel=2) + +from lms.djangoapps.support.serializers import * diff --git a/sys_path_hacks/lms/support/tests/__init__.py b/sys_path_hacks/lms/support/tests/__init__.py new file mode 100644 index 0000000000..7099f0124f --- /dev/null +++ b/sys_path_hacks/lms/support/tests/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing support.tests instead of lms.djangoapps.support.tests is deprecated", stacklevel=2) + +from lms.djangoapps.support.tests import * diff --git a/sys_path_hacks/lms/support/tests/test_views.py b/sys_path_hacks/lms/support/tests/test_views.py new file mode 100644 index 0000000000..3f6f549b97 --- /dev/null +++ b/sys_path_hacks/lms/support/tests/test_views.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing support.tests.test_views instead of lms.djangoapps.support.tests.test_views is deprecated", stacklevel=2) + +from lms.djangoapps.support.tests.test_views import * diff --git a/sys_path_hacks/lms/support/urls.py b/sys_path_hacks/lms/support/urls.py new file mode 100644 index 0000000000..e40e4f7e65 --- /dev/null +++ b/sys_path_hacks/lms/support/urls.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing support.urls instead of lms.djangoapps.support.urls is deprecated", stacklevel=2) + +from lms.djangoapps.support.urls import * diff --git a/sys_path_hacks/lms/support/views/__init__.py b/sys_path_hacks/lms/support/views/__init__.py new file mode 100644 index 0000000000..9046a4a865 --- /dev/null +++ b/sys_path_hacks/lms/support/views/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing support.views instead of lms.djangoapps.support.views is deprecated", stacklevel=2) + +from lms.djangoapps.support.views import * diff --git a/sys_path_hacks/lms/support/views/certificate.py b/sys_path_hacks/lms/support/views/certificate.py new file mode 100644 index 0000000000..e1a73f9400 --- /dev/null +++ b/sys_path_hacks/lms/support/views/certificate.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing support.views.certificate instead of lms.djangoapps.support.views.certificate is deprecated", stacklevel=2) + +from lms.djangoapps.support.views.certificate import * diff --git a/sys_path_hacks/lms/support/views/contact_us.py b/sys_path_hacks/lms/support/views/contact_us.py new file mode 100644 index 0000000000..76e8f69dba --- /dev/null +++ b/sys_path_hacks/lms/support/views/contact_us.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing support.views.contact_us instead of lms.djangoapps.support.views.contact_us is deprecated", stacklevel=2) + +from lms.djangoapps.support.views.contact_us import * diff --git a/sys_path_hacks/lms/support/views/course_entitlements.py b/sys_path_hacks/lms/support/views/course_entitlements.py new file mode 100644 index 0000000000..ac33b415f5 --- /dev/null +++ b/sys_path_hacks/lms/support/views/course_entitlements.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing support.views.course_entitlements instead of lms.djangoapps.support.views.course_entitlements is deprecated", stacklevel=2) + +from lms.djangoapps.support.views.course_entitlements import * diff --git a/sys_path_hacks/lms/support/views/enrollments.py b/sys_path_hacks/lms/support/views/enrollments.py new file mode 100644 index 0000000000..f98902c3e0 --- /dev/null +++ b/sys_path_hacks/lms/support/views/enrollments.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing support.views.enrollments instead of lms.djangoapps.support.views.enrollments is deprecated", stacklevel=2) + +from lms.djangoapps.support.views.enrollments import * diff --git a/sys_path_hacks/lms/support/views/feature_based_enrollments.py b/sys_path_hacks/lms/support/views/feature_based_enrollments.py new file mode 100644 index 0000000000..97aa77ed95 --- /dev/null +++ b/sys_path_hacks/lms/support/views/feature_based_enrollments.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing support.views.feature_based_enrollments instead of lms.djangoapps.support.views.feature_based_enrollments is deprecated", stacklevel=2) + +from lms.djangoapps.support.views.feature_based_enrollments import * diff --git a/sys_path_hacks/lms/support/views/index.py b/sys_path_hacks/lms/support/views/index.py new file mode 100644 index 0000000000..8c204ffee0 --- /dev/null +++ b/sys_path_hacks/lms/support/views/index.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing support.views.index instead of lms.djangoapps.support.views.index is deprecated", stacklevel=2) + +from lms.djangoapps.support.views.index import * diff --git a/sys_path_hacks/lms/support/views/manage_user.py b/sys_path_hacks/lms/support/views/manage_user.py new file mode 100644 index 0000000000..7549fb81d6 --- /dev/null +++ b/sys_path_hacks/lms/support/views/manage_user.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing support.views.manage_user instead of lms.djangoapps.support.views.manage_user is deprecated", stacklevel=2) + +from lms.djangoapps.support.views.manage_user import * diff --git a/sys_path_hacks/lms/support/views/program_enrollments.py b/sys_path_hacks/lms/support/views/program_enrollments.py new file mode 100644 index 0000000000..9228288dac --- /dev/null +++ b/sys_path_hacks/lms/support/views/program_enrollments.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing support.views.program_enrollments instead of lms.djangoapps.support.views.program_enrollments is deprecated", stacklevel=2) + +from lms.djangoapps.support.views.program_enrollments import * diff --git a/sys_path_hacks/lms/support/views/sso_records.py b/sys_path_hacks/lms/support/views/sso_records.py new file mode 100644 index 0000000000..43d9c5f203 --- /dev/null +++ b/sys_path_hacks/lms/support/views/sso_records.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing support.views.sso_records instead of lms.djangoapps.support.views.sso_records is deprecated", stacklevel=2) + +from lms.djangoapps.support.views.sso_records import * diff --git a/sys_path_hacks/lms/survey/__init__.py b/sys_path_hacks/lms/survey/__init__.py new file mode 100644 index 0000000000..8d16b08e31 --- /dev/null +++ b/sys_path_hacks/lms/survey/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing survey instead of lms.djangoapps.survey is deprecated", stacklevel=2) + +from lms.djangoapps.survey import * diff --git a/sys_path_hacks/lms/survey/admin.py b/sys_path_hacks/lms/survey/admin.py new file mode 100644 index 0000000000..fef9b4eced --- /dev/null +++ b/sys_path_hacks/lms/survey/admin.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing survey.admin instead of lms.djangoapps.survey.admin is deprecated", stacklevel=2) + +from lms.djangoapps.survey.admin import * diff --git a/sys_path_hacks/lms/survey/apps.py b/sys_path_hacks/lms/survey/apps.py new file mode 100644 index 0000000000..b718d45e55 --- /dev/null +++ b/sys_path_hacks/lms/survey/apps.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing survey.apps instead of lms.djangoapps.survey.apps is deprecated", stacklevel=2) + +from lms.djangoapps.survey.apps import * diff --git a/sys_path_hacks/lms/survey/exceptions.py b/sys_path_hacks/lms/survey/exceptions.py new file mode 100644 index 0000000000..b56285fbcb --- /dev/null +++ b/sys_path_hacks/lms/survey/exceptions.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing survey.exceptions instead of lms.djangoapps.survey.exceptions is deprecated", stacklevel=2) + +from lms.djangoapps.survey.exceptions import * diff --git a/sys_path_hacks/lms/survey/models.py b/sys_path_hacks/lms/survey/models.py new file mode 100644 index 0000000000..45c0c2d7e4 --- /dev/null +++ b/sys_path_hacks/lms/survey/models.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing survey.models instead of lms.djangoapps.survey.models is deprecated", stacklevel=2) + +from lms.djangoapps.survey.models import * diff --git a/sys_path_hacks/lms/survey/signals.py b/sys_path_hacks/lms/survey/signals.py new file mode 100644 index 0000000000..f94eb8acdc --- /dev/null +++ b/sys_path_hacks/lms/survey/signals.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing survey.signals instead of lms.djangoapps.survey.signals is deprecated", stacklevel=2) + +from lms.djangoapps.survey.signals import * diff --git a/sys_path_hacks/lms/survey/tests/__init__.py b/sys_path_hacks/lms/survey/tests/__init__.py new file mode 100644 index 0000000000..0a91111043 --- /dev/null +++ b/sys_path_hacks/lms/survey/tests/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing survey.tests instead of lms.djangoapps.survey.tests is deprecated", stacklevel=2) + +from lms.djangoapps.survey.tests import * diff --git a/sys_path_hacks/lms/survey/tests/factories.py b/sys_path_hacks/lms/survey/tests/factories.py new file mode 100644 index 0000000000..913c4c8c05 --- /dev/null +++ b/sys_path_hacks/lms/survey/tests/factories.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing survey.tests.factories instead of lms.djangoapps.survey.tests.factories is deprecated", stacklevel=2) + +from lms.djangoapps.survey.tests.factories import * diff --git a/sys_path_hacks/lms/survey/tests/test_models.py b/sys_path_hacks/lms/survey/tests/test_models.py new file mode 100644 index 0000000000..71c9fb2216 --- /dev/null +++ b/sys_path_hacks/lms/survey/tests/test_models.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing survey.tests.test_models instead of lms.djangoapps.survey.tests.test_models is deprecated", stacklevel=2) + +from lms.djangoapps.survey.tests.test_models import * diff --git a/sys_path_hacks/lms/survey/tests/test_signals.py b/sys_path_hacks/lms/survey/tests/test_signals.py new file mode 100644 index 0000000000..5f5bff81ab --- /dev/null +++ b/sys_path_hacks/lms/survey/tests/test_signals.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing survey.tests.test_signals instead of lms.djangoapps.survey.tests.test_signals is deprecated", stacklevel=2) + +from lms.djangoapps.survey.tests.test_signals import * diff --git a/sys_path_hacks/lms/survey/tests/test_utils.py b/sys_path_hacks/lms/survey/tests/test_utils.py new file mode 100644 index 0000000000..9f2e24d8e4 --- /dev/null +++ b/sys_path_hacks/lms/survey/tests/test_utils.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing survey.tests.test_utils instead of lms.djangoapps.survey.tests.test_utils is deprecated", stacklevel=2) + +from lms.djangoapps.survey.tests.test_utils import * diff --git a/sys_path_hacks/lms/survey/tests/test_views.py b/sys_path_hacks/lms/survey/tests/test_views.py new file mode 100644 index 0000000000..fcc3c00e27 --- /dev/null +++ b/sys_path_hacks/lms/survey/tests/test_views.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing survey.tests.test_views instead of lms.djangoapps.survey.tests.test_views is deprecated", stacklevel=2) + +from lms.djangoapps.survey.tests.test_views import * diff --git a/sys_path_hacks/lms/survey/urls.py b/sys_path_hacks/lms/survey/urls.py new file mode 100644 index 0000000000..f3e9cd8991 --- /dev/null +++ b/sys_path_hacks/lms/survey/urls.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing survey.urls instead of lms.djangoapps.survey.urls is deprecated", stacklevel=2) + +from lms.djangoapps.survey.urls import * diff --git a/sys_path_hacks/lms/survey/utils.py b/sys_path_hacks/lms/survey/utils.py new file mode 100644 index 0000000000..2904901030 --- /dev/null +++ b/sys_path_hacks/lms/survey/utils.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing survey.utils instead of lms.djangoapps.survey.utils is deprecated", stacklevel=2) + +from lms.djangoapps.survey.utils import * diff --git a/sys_path_hacks/lms/survey/views.py b/sys_path_hacks/lms/survey/views.py new file mode 100644 index 0000000000..f0642b4047 --- /dev/null +++ b/sys_path_hacks/lms/survey/views.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing survey.views instead of lms.djangoapps.survey.views is deprecated", stacklevel=2) + +from lms.djangoapps.survey.views import * diff --git a/sys_path_hacks/lms/teams/__init__.py b/sys_path_hacks/lms/teams/__init__.py new file mode 100644 index 0000000000..ddbfc0ea38 --- /dev/null +++ b/sys_path_hacks/lms/teams/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing teams instead of lms.djangoapps.teams is deprecated", stacklevel=2) + +from lms.djangoapps.teams import * diff --git a/sys_path_hacks/lms/teams/admin.py b/sys_path_hacks/lms/teams/admin.py new file mode 100644 index 0000000000..aaea180dab --- /dev/null +++ b/sys_path_hacks/lms/teams/admin.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing teams.admin instead of lms.djangoapps.teams.admin is deprecated", stacklevel=2) + +from lms.djangoapps.teams.admin import * diff --git a/sys_path_hacks/lms/teams/api.py b/sys_path_hacks/lms/teams/api.py new file mode 100644 index 0000000000..5a83656699 --- /dev/null +++ b/sys_path_hacks/lms/teams/api.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing teams.api instead of lms.djangoapps.teams.api is deprecated", stacklevel=2) + +from lms.djangoapps.teams.api import * diff --git a/sys_path_hacks/lms/teams/api_urls.py b/sys_path_hacks/lms/teams/api_urls.py new file mode 100644 index 0000000000..4f863cc446 --- /dev/null +++ b/sys_path_hacks/lms/teams/api_urls.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing teams.api_urls instead of lms.djangoapps.teams.api_urls is deprecated", stacklevel=2) + +from lms.djangoapps.teams.api_urls import * diff --git a/sys_path_hacks/lms/teams/csv.py b/sys_path_hacks/lms/teams/csv.py new file mode 100644 index 0000000000..41f1cf0ef4 --- /dev/null +++ b/sys_path_hacks/lms/teams/csv.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing teams.csv instead of lms.djangoapps.teams.csv is deprecated", stacklevel=2) + +from lms.djangoapps.teams.csv import * diff --git a/sys_path_hacks/lms/teams/errors.py b/sys_path_hacks/lms/teams/errors.py new file mode 100644 index 0000000000..2f4436f7f9 --- /dev/null +++ b/sys_path_hacks/lms/teams/errors.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing teams.errors instead of lms.djangoapps.teams.errors is deprecated", stacklevel=2) + +from lms.djangoapps.teams.errors import * diff --git a/sys_path_hacks/lms/teams/management/__init__.py b/sys_path_hacks/lms/teams/management/__init__.py new file mode 100644 index 0000000000..b3dda3dc2e --- /dev/null +++ b/sys_path_hacks/lms/teams/management/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing teams.management instead of lms.djangoapps.teams.management is deprecated", stacklevel=2) + +from lms.djangoapps.teams.management import * diff --git a/sys_path_hacks/lms/teams/management/commands/__init__.py b/sys_path_hacks/lms/teams/management/commands/__init__.py new file mode 100644 index 0000000000..ea45d882d2 --- /dev/null +++ b/sys_path_hacks/lms/teams/management/commands/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing teams.management.commands instead of lms.djangoapps.teams.management.commands is deprecated", stacklevel=2) + +from lms.djangoapps.teams.management.commands import * diff --git a/sys_path_hacks/lms/teams/management/commands/reindex_course_team.py b/sys_path_hacks/lms/teams/management/commands/reindex_course_team.py new file mode 100644 index 0000000000..ecf3e73101 --- /dev/null +++ b/sys_path_hacks/lms/teams/management/commands/reindex_course_team.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing teams.management.commands.reindex_course_team instead of lms.djangoapps.teams.management.commands.reindex_course_team is deprecated", stacklevel=2) + +from lms.djangoapps.teams.management.commands.reindex_course_team import * diff --git a/sys_path_hacks/lms/teams/management/commands/tests/__init__.py b/sys_path_hacks/lms/teams/management/commands/tests/__init__.py new file mode 100644 index 0000000000..131e3980d3 --- /dev/null +++ b/sys_path_hacks/lms/teams/management/commands/tests/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing teams.management.commands.tests instead of lms.djangoapps.teams.management.commands.tests is deprecated", stacklevel=2) + +from lms.djangoapps.teams.management.commands.tests import * diff --git a/sys_path_hacks/lms/teams/management/commands/tests/test_reindex_course_team.py b/sys_path_hacks/lms/teams/management/commands/tests/test_reindex_course_team.py new file mode 100644 index 0000000000..86a85e5344 --- /dev/null +++ b/sys_path_hacks/lms/teams/management/commands/tests/test_reindex_course_team.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing teams.management.commands.tests.test_reindex_course_team instead of lms.djangoapps.teams.management.commands.tests.test_reindex_course_team is deprecated", stacklevel=2) + +from lms.djangoapps.teams.management.commands.tests.test_reindex_course_team import * diff --git a/sys_path_hacks/lms/teams/models.py b/sys_path_hacks/lms/teams/models.py new file mode 100644 index 0000000000..02d016a52c --- /dev/null +++ b/sys_path_hacks/lms/teams/models.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing teams.models instead of lms.djangoapps.teams.models is deprecated", stacklevel=2) + +from lms.djangoapps.teams.models import * diff --git a/sys_path_hacks/lms/teams/plugins.py b/sys_path_hacks/lms/teams/plugins.py new file mode 100644 index 0000000000..1f5f22c5f6 --- /dev/null +++ b/sys_path_hacks/lms/teams/plugins.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing teams.plugins instead of lms.djangoapps.teams.plugins is deprecated", stacklevel=2) + +from lms.djangoapps.teams.plugins import * diff --git a/sys_path_hacks/lms/teams/search_indexes.py b/sys_path_hacks/lms/teams/search_indexes.py new file mode 100644 index 0000000000..31ac681883 --- /dev/null +++ b/sys_path_hacks/lms/teams/search_indexes.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing teams.search_indexes instead of lms.djangoapps.teams.search_indexes is deprecated", stacklevel=2) + +from lms.djangoapps.teams.search_indexes import * diff --git a/sys_path_hacks/lms/teams/serializers.py b/sys_path_hacks/lms/teams/serializers.py new file mode 100644 index 0000000000..7778219a2d --- /dev/null +++ b/sys_path_hacks/lms/teams/serializers.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing teams.serializers instead of lms.djangoapps.teams.serializers is deprecated", stacklevel=2) + +from lms.djangoapps.teams.serializers import * diff --git a/sys_path_hacks/lms/teams/services.py b/sys_path_hacks/lms/teams/services.py new file mode 100644 index 0000000000..1e4c135f33 --- /dev/null +++ b/sys_path_hacks/lms/teams/services.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing teams.services instead of lms.djangoapps.teams.services is deprecated", stacklevel=2) + +from lms.djangoapps.teams.services import * diff --git a/sys_path_hacks/lms/teams/tests/__init__.py b/sys_path_hacks/lms/teams/tests/__init__.py new file mode 100644 index 0000000000..b25e5104bf --- /dev/null +++ b/sys_path_hacks/lms/teams/tests/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing teams.tests instead of lms.djangoapps.teams.tests is deprecated", stacklevel=2) + +from lms.djangoapps.teams.tests import * diff --git a/sys_path_hacks/lms/teams/tests/factories.py b/sys_path_hacks/lms/teams/tests/factories.py new file mode 100644 index 0000000000..11e76d586d --- /dev/null +++ b/sys_path_hacks/lms/teams/tests/factories.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing teams.tests.factories instead of lms.djangoapps.teams.tests.factories is deprecated", stacklevel=2) + +from lms.djangoapps.teams.tests.factories import * diff --git a/sys_path_hacks/lms/teams/tests/test_api.py b/sys_path_hacks/lms/teams/tests/test_api.py new file mode 100644 index 0000000000..6d8aca7ae7 --- /dev/null +++ b/sys_path_hacks/lms/teams/tests/test_api.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing teams.tests.test_api instead of lms.djangoapps.teams.tests.test_api is deprecated", stacklevel=2) + +from lms.djangoapps.teams.tests.test_api import * diff --git a/sys_path_hacks/lms/teams/tests/test_csv.py b/sys_path_hacks/lms/teams/tests/test_csv.py new file mode 100644 index 0000000000..ad7807b3a2 --- /dev/null +++ b/sys_path_hacks/lms/teams/tests/test_csv.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing teams.tests.test_csv instead of lms.djangoapps.teams.tests.test_csv is deprecated", stacklevel=2) + +from lms.djangoapps.teams.tests.test_csv import * diff --git a/sys_path_hacks/lms/teams/tests/test_models.py b/sys_path_hacks/lms/teams/tests/test_models.py new file mode 100644 index 0000000000..fb53120756 --- /dev/null +++ b/sys_path_hacks/lms/teams/tests/test_models.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing teams.tests.test_models instead of lms.djangoapps.teams.tests.test_models is deprecated", stacklevel=2) + +from lms.djangoapps.teams.tests.test_models import * diff --git a/sys_path_hacks/lms/teams/tests/test_serializers.py b/sys_path_hacks/lms/teams/tests/test_serializers.py new file mode 100644 index 0000000000..5e986a8136 --- /dev/null +++ b/sys_path_hacks/lms/teams/tests/test_serializers.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing teams.tests.test_serializers instead of lms.djangoapps.teams.tests.test_serializers is deprecated", stacklevel=2) + +from lms.djangoapps.teams.tests.test_serializers import * diff --git a/sys_path_hacks/lms/teams/tests/test_services.py b/sys_path_hacks/lms/teams/tests/test_services.py new file mode 100644 index 0000000000..697e579621 --- /dev/null +++ b/sys_path_hacks/lms/teams/tests/test_services.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing teams.tests.test_services instead of lms.djangoapps.teams.tests.test_services is deprecated", stacklevel=2) + +from lms.djangoapps.teams.tests.test_services import * diff --git a/sys_path_hacks/lms/teams/tests/test_views.py b/sys_path_hacks/lms/teams/tests/test_views.py new file mode 100644 index 0000000000..41668a57fb --- /dev/null +++ b/sys_path_hacks/lms/teams/tests/test_views.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing teams.tests.test_views instead of lms.djangoapps.teams.tests.test_views is deprecated", stacklevel=2) + +from lms.djangoapps.teams.tests.test_views import * diff --git a/sys_path_hacks/lms/teams/urls.py b/sys_path_hacks/lms/teams/urls.py new file mode 100644 index 0000000000..36cae1ea4f --- /dev/null +++ b/sys_path_hacks/lms/teams/urls.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing teams.urls instead of lms.djangoapps.teams.urls is deprecated", stacklevel=2) + +from lms.djangoapps.teams.urls import * diff --git a/sys_path_hacks/lms/teams/utils.py b/sys_path_hacks/lms/teams/utils.py new file mode 100644 index 0000000000..6aae2b9fca --- /dev/null +++ b/sys_path_hacks/lms/teams/utils.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing teams.utils instead of lms.djangoapps.teams.utils is deprecated", stacklevel=2) + +from lms.djangoapps.teams.utils import * diff --git a/sys_path_hacks/lms/teams/views.py b/sys_path_hacks/lms/teams/views.py new file mode 100644 index 0000000000..998b0ee2f8 --- /dev/null +++ b/sys_path_hacks/lms/teams/views.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing teams.views instead of lms.djangoapps.teams.views is deprecated", stacklevel=2) + +from lms.djangoapps.teams.views import * diff --git a/sys_path_hacks/lms/teams/waffle.py b/sys_path_hacks/lms/teams/waffle.py new file mode 100644 index 0000000000..2bcbfcc3af --- /dev/null +++ b/sys_path_hacks/lms/teams/waffle.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing teams.waffle instead of lms.djangoapps.teams.waffle is deprecated", stacklevel=2) + +from lms.djangoapps.teams.waffle import * diff --git a/sys_path_hacks/lms/tests/__init__.py b/sys_path_hacks/lms/tests/__init__.py new file mode 100644 index 0000000000..97900588aa --- /dev/null +++ b/sys_path_hacks/lms/tests/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing tests instead of lms.djangoapps.tests is deprecated", stacklevel=2) + +from lms.djangoapps.tests import * diff --git a/sys_path_hacks/lms/tests/test_utils.py b/sys_path_hacks/lms/tests/test_utils.py new file mode 100644 index 0000000000..95436a515c --- /dev/null +++ b/sys_path_hacks/lms/tests/test_utils.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing tests.test_utils instead of lms.djangoapps.tests.test_utils is deprecated", stacklevel=2) + +from lms.djangoapps.tests.test_utils import * diff --git a/sys_path_hacks/lms/utils.py b/sys_path_hacks/lms/utils.py new file mode 100644 index 0000000000..3fa7dd414b --- /dev/null +++ b/sys_path_hacks/lms/utils.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing utils instead of lms.djangoapps.utils is deprecated", stacklevel=2) + +from lms.djangoapps.utils import * diff --git a/sys_path_hacks/lms/verify_student/__init__.py b/sys_path_hacks/lms/verify_student/__init__.py new file mode 100644 index 0000000000..522328de77 --- /dev/null +++ b/sys_path_hacks/lms/verify_student/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing verify_student instead of lms.djangoapps.verify_student is deprecated", stacklevel=2) + +from lms.djangoapps.verify_student import * diff --git a/sys_path_hacks/lms/verify_student/admin.py b/sys_path_hacks/lms/verify_student/admin.py new file mode 100644 index 0000000000..4a3d64ab13 --- /dev/null +++ b/sys_path_hacks/lms/verify_student/admin.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing verify_student.admin instead of lms.djangoapps.verify_student.admin is deprecated", stacklevel=2) + +from lms.djangoapps.verify_student.admin import * diff --git a/sys_path_hacks/lms/verify_student/api.py b/sys_path_hacks/lms/verify_student/api.py new file mode 100644 index 0000000000..729a8b7f91 --- /dev/null +++ b/sys_path_hacks/lms/verify_student/api.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing verify_student.api instead of lms.djangoapps.verify_student.api is deprecated", stacklevel=2) + +from lms.djangoapps.verify_student.api import * diff --git a/sys_path_hacks/lms/verify_student/apps.py b/sys_path_hacks/lms/verify_student/apps.py new file mode 100644 index 0000000000..0c4be54ecd --- /dev/null +++ b/sys_path_hacks/lms/verify_student/apps.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing verify_student.apps instead of lms.djangoapps.verify_student.apps is deprecated", stacklevel=2) + +from lms.djangoapps.verify_student.apps import * diff --git a/sys_path_hacks/lms/verify_student/emails.py b/sys_path_hacks/lms/verify_student/emails.py new file mode 100644 index 0000000000..a93543a3ad --- /dev/null +++ b/sys_path_hacks/lms/verify_student/emails.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing verify_student.emails instead of lms.djangoapps.verify_student.emails is deprecated", stacklevel=2) + +from lms.djangoapps.verify_student.emails import * diff --git a/sys_path_hacks/lms/verify_student/exceptions.py b/sys_path_hacks/lms/verify_student/exceptions.py new file mode 100644 index 0000000000..2634c4e4c6 --- /dev/null +++ b/sys_path_hacks/lms/verify_student/exceptions.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing verify_student.exceptions instead of lms.djangoapps.verify_student.exceptions is deprecated", stacklevel=2) + +from lms.djangoapps.verify_student.exceptions import * diff --git a/sys_path_hacks/lms/verify_student/image.py b/sys_path_hacks/lms/verify_student/image.py new file mode 100644 index 0000000000..476ea57183 --- /dev/null +++ b/sys_path_hacks/lms/verify_student/image.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing verify_student.image instead of lms.djangoapps.verify_student.image is deprecated", stacklevel=2) + +from lms.djangoapps.verify_student.image import * diff --git a/sys_path_hacks/lms/verify_student/management/__init__.py b/sys_path_hacks/lms/verify_student/management/__init__.py new file mode 100644 index 0000000000..77b12811f6 --- /dev/null +++ b/sys_path_hacks/lms/verify_student/management/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing verify_student.management instead of lms.djangoapps.verify_student.management is deprecated", stacklevel=2) + +from lms.djangoapps.verify_student.management import * diff --git a/sys_path_hacks/lms/verify_student/management/commands/__init__.py b/sys_path_hacks/lms/verify_student/management/commands/__init__.py new file mode 100644 index 0000000000..bb7ce6c4d8 --- /dev/null +++ b/sys_path_hacks/lms/verify_student/management/commands/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing verify_student.management.commands instead of lms.djangoapps.verify_student.management.commands is deprecated", stacklevel=2) + +from lms.djangoapps.verify_student.management.commands import * diff --git a/sys_path_hacks/lms/verify_student/management/commands/backfill_sso_verifications_for_old_account_links.py b/sys_path_hacks/lms/verify_student/management/commands/backfill_sso_verifications_for_old_account_links.py new file mode 100644 index 0000000000..40a1f73679 --- /dev/null +++ b/sys_path_hacks/lms/verify_student/management/commands/backfill_sso_verifications_for_old_account_links.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing verify_student.management.commands.backfill_sso_verifications_for_old_account_links instead of lms.djangoapps.verify_student.management.commands.backfill_sso_verifications_for_old_account_links is deprecated", stacklevel=2) + +from lms.djangoapps.verify_student.management.commands.backfill_sso_verifications_for_old_account_links import * diff --git a/sys_path_hacks/lms/verify_student/management/commands/manual_verifications.py b/sys_path_hacks/lms/verify_student/management/commands/manual_verifications.py new file mode 100644 index 0000000000..98a163e1a7 --- /dev/null +++ b/sys_path_hacks/lms/verify_student/management/commands/manual_verifications.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing verify_student.management.commands.manual_verifications instead of lms.djangoapps.verify_student.management.commands.manual_verifications is deprecated", stacklevel=2) + +from lms.djangoapps.verify_student.management.commands.manual_verifications import * diff --git a/sys_path_hacks/lms/verify_student/management/commands/populate_expiry_date.py b/sys_path_hacks/lms/verify_student/management/commands/populate_expiry_date.py new file mode 100644 index 0000000000..14742b7672 --- /dev/null +++ b/sys_path_hacks/lms/verify_student/management/commands/populate_expiry_date.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing verify_student.management.commands.populate_expiry_date instead of lms.djangoapps.verify_student.management.commands.populate_expiry_date is deprecated", stacklevel=2) + +from lms.djangoapps.verify_student.management.commands.populate_expiry_date import * diff --git a/sys_path_hacks/lms/verify_student/management/commands/retry_failed_photo_verifications.py b/sys_path_hacks/lms/verify_student/management/commands/retry_failed_photo_verifications.py new file mode 100644 index 0000000000..13d5161c89 --- /dev/null +++ b/sys_path_hacks/lms/verify_student/management/commands/retry_failed_photo_verifications.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing verify_student.management.commands.retry_failed_photo_verifications instead of lms.djangoapps.verify_student.management.commands.retry_failed_photo_verifications is deprecated", stacklevel=2) + +from lms.djangoapps.verify_student.management.commands.retry_failed_photo_verifications import * diff --git a/sys_path_hacks/lms/verify_student/management/commands/send_verification_expiry_email.py b/sys_path_hacks/lms/verify_student/management/commands/send_verification_expiry_email.py new file mode 100644 index 0000000000..22121f16ba --- /dev/null +++ b/sys_path_hacks/lms/verify_student/management/commands/send_verification_expiry_email.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing verify_student.management.commands.send_verification_expiry_email instead of lms.djangoapps.verify_student.management.commands.send_verification_expiry_email is deprecated", stacklevel=2) + +from lms.djangoapps.verify_student.management.commands.send_verification_expiry_email import * diff --git a/sys_path_hacks/lms/verify_student/management/commands/tests/__init__.py b/sys_path_hacks/lms/verify_student/management/commands/tests/__init__.py new file mode 100644 index 0000000000..35e9b05c5f --- /dev/null +++ b/sys_path_hacks/lms/verify_student/management/commands/tests/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing verify_student.management.commands.tests instead of lms.djangoapps.verify_student.management.commands.tests is deprecated", stacklevel=2) + +from lms.djangoapps.verify_student.management.commands.tests import * diff --git a/sys_path_hacks/lms/verify_student/management/commands/tests/test_backfill_sso_verifications_for_old_account_links.py b/sys_path_hacks/lms/verify_student/management/commands/tests/test_backfill_sso_verifications_for_old_account_links.py new file mode 100644 index 0000000000..8c30249c42 --- /dev/null +++ b/sys_path_hacks/lms/verify_student/management/commands/tests/test_backfill_sso_verifications_for_old_account_links.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing verify_student.management.commands.tests.test_backfill_sso_verifications_for_old_account_links instead of lms.djangoapps.verify_student.management.commands.tests.test_backfill_sso_verifications_for_old_account_links is deprecated", stacklevel=2) + +from lms.djangoapps.verify_student.management.commands.tests.test_backfill_sso_verifications_for_old_account_links import * diff --git a/sys_path_hacks/lms/verify_student/management/commands/tests/test_manual_verify_student.py b/sys_path_hacks/lms/verify_student/management/commands/tests/test_manual_verify_student.py new file mode 100644 index 0000000000..87cfd1c1a2 --- /dev/null +++ b/sys_path_hacks/lms/verify_student/management/commands/tests/test_manual_verify_student.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing verify_student.management.commands.tests.test_manual_verify_student instead of lms.djangoapps.verify_student.management.commands.tests.test_manual_verify_student is deprecated", stacklevel=2) + +from lms.djangoapps.verify_student.management.commands.tests.test_manual_verify_student import * diff --git a/sys_path_hacks/lms/verify_student/management/commands/tests/test_populate_expiry_date.py b/sys_path_hacks/lms/verify_student/management/commands/tests/test_populate_expiry_date.py new file mode 100644 index 0000000000..b67a988ddd --- /dev/null +++ b/sys_path_hacks/lms/verify_student/management/commands/tests/test_populate_expiry_date.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing verify_student.management.commands.tests.test_populate_expiry_date instead of lms.djangoapps.verify_student.management.commands.tests.test_populate_expiry_date is deprecated", stacklevel=2) + +from lms.djangoapps.verify_student.management.commands.tests.test_populate_expiry_date import * diff --git a/sys_path_hacks/lms/verify_student/management/commands/tests/test_send_verification_expiry_email.py b/sys_path_hacks/lms/verify_student/management/commands/tests/test_send_verification_expiry_email.py new file mode 100644 index 0000000000..eb9be74b9e --- /dev/null +++ b/sys_path_hacks/lms/verify_student/management/commands/tests/test_send_verification_expiry_email.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing verify_student.management.commands.tests.test_send_verification_expiry_email instead of lms.djangoapps.verify_student.management.commands.tests.test_send_verification_expiry_email is deprecated", stacklevel=2) + +from lms.djangoapps.verify_student.management.commands.tests.test_send_verification_expiry_email import * diff --git a/sys_path_hacks/lms/verify_student/management/commands/tests/test_verify_student.py b/sys_path_hacks/lms/verify_student/management/commands/tests/test_verify_student.py new file mode 100644 index 0000000000..e631ab170c --- /dev/null +++ b/sys_path_hacks/lms/verify_student/management/commands/tests/test_verify_student.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing verify_student.management.commands.tests.test_verify_student instead of lms.djangoapps.verify_student.management.commands.tests.test_verify_student is deprecated", stacklevel=2) + +from lms.djangoapps.verify_student.management.commands.tests.test_verify_student import * diff --git a/sys_path_hacks/lms/verify_student/message_types.py b/sys_path_hacks/lms/verify_student/message_types.py new file mode 100644 index 0000000000..b604d483d7 --- /dev/null +++ b/sys_path_hacks/lms/verify_student/message_types.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing verify_student.message_types instead of lms.djangoapps.verify_student.message_types is deprecated", stacklevel=2) + +from lms.djangoapps.verify_student.message_types import * diff --git a/sys_path_hacks/lms/verify_student/models.py b/sys_path_hacks/lms/verify_student/models.py new file mode 100644 index 0000000000..a5b7ae7b63 --- /dev/null +++ b/sys_path_hacks/lms/verify_student/models.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing verify_student.models instead of lms.djangoapps.verify_student.models is deprecated", stacklevel=2) + +from lms.djangoapps.verify_student.models import * diff --git a/sys_path_hacks/lms/verify_student/services.py b/sys_path_hacks/lms/verify_student/services.py new file mode 100644 index 0000000000..cecbd4092c --- /dev/null +++ b/sys_path_hacks/lms/verify_student/services.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing verify_student.services instead of lms.djangoapps.verify_student.services is deprecated", stacklevel=2) + +from lms.djangoapps.verify_student.services import * diff --git a/sys_path_hacks/lms/verify_student/signals.py b/sys_path_hacks/lms/verify_student/signals.py new file mode 100644 index 0000000000..af0c3ae873 --- /dev/null +++ b/sys_path_hacks/lms/verify_student/signals.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing verify_student.signals instead of lms.djangoapps.verify_student.signals is deprecated", stacklevel=2) + +from lms.djangoapps.verify_student.signals import * diff --git a/sys_path_hacks/lms/verify_student/ssencrypt.py b/sys_path_hacks/lms/verify_student/ssencrypt.py new file mode 100644 index 0000000000..11745c49f4 --- /dev/null +++ b/sys_path_hacks/lms/verify_student/ssencrypt.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing verify_student.ssencrypt instead of lms.djangoapps.verify_student.ssencrypt is deprecated", stacklevel=2) + +from lms.djangoapps.verify_student.ssencrypt import * diff --git a/sys_path_hacks/lms/verify_student/tasks.py b/sys_path_hacks/lms/verify_student/tasks.py new file mode 100644 index 0000000000..25ac2564c3 --- /dev/null +++ b/sys_path_hacks/lms/verify_student/tasks.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing verify_student.tasks instead of lms.djangoapps.verify_student.tasks is deprecated", stacklevel=2) + +from lms.djangoapps.verify_student.tasks import * diff --git a/sys_path_hacks/lms/verify_student/tests/__init__.py b/sys_path_hacks/lms/verify_student/tests/__init__.py new file mode 100644 index 0000000000..a0d8f03092 --- /dev/null +++ b/sys_path_hacks/lms/verify_student/tests/__init__.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing verify_student.tests instead of lms.djangoapps.verify_student.tests is deprecated", stacklevel=2) + +from lms.djangoapps.verify_student.tests import * diff --git a/sys_path_hacks/lms/verify_student/tests/factories.py b/sys_path_hacks/lms/verify_student/tests/factories.py new file mode 100644 index 0000000000..2e79a5d231 --- /dev/null +++ b/sys_path_hacks/lms/verify_student/tests/factories.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing verify_student.tests.factories instead of lms.djangoapps.verify_student.tests.factories is deprecated", stacklevel=2) + +from lms.djangoapps.verify_student.tests.factories import * diff --git a/sys_path_hacks/lms/verify_student/tests/fake_software_secure.py b/sys_path_hacks/lms/verify_student/tests/fake_software_secure.py new file mode 100644 index 0000000000..7bdc341dcd --- /dev/null +++ b/sys_path_hacks/lms/verify_student/tests/fake_software_secure.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing verify_student.tests.fake_software_secure instead of lms.djangoapps.verify_student.tests.fake_software_secure is deprecated", stacklevel=2) + +from lms.djangoapps.verify_student.tests.fake_software_secure import * diff --git a/sys_path_hacks/lms/verify_student/tests/test_fake_software_secure.py b/sys_path_hacks/lms/verify_student/tests/test_fake_software_secure.py new file mode 100644 index 0000000000..74653aa74b --- /dev/null +++ b/sys_path_hacks/lms/verify_student/tests/test_fake_software_secure.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing verify_student.tests.test_fake_software_secure instead of lms.djangoapps.verify_student.tests.test_fake_software_secure is deprecated", stacklevel=2) + +from lms.djangoapps.verify_student.tests.test_fake_software_secure import * diff --git a/sys_path_hacks/lms/verify_student/tests/test_integration.py b/sys_path_hacks/lms/verify_student/tests/test_integration.py new file mode 100644 index 0000000000..095f8346b3 --- /dev/null +++ b/sys_path_hacks/lms/verify_student/tests/test_integration.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing verify_student.tests.test_integration instead of lms.djangoapps.verify_student.tests.test_integration is deprecated", stacklevel=2) + +from lms.djangoapps.verify_student.tests.test_integration import * diff --git a/sys_path_hacks/lms/verify_student/tests/test_models.py b/sys_path_hacks/lms/verify_student/tests/test_models.py new file mode 100644 index 0000000000..8936665fc2 --- /dev/null +++ b/sys_path_hacks/lms/verify_student/tests/test_models.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing verify_student.tests.test_models instead of lms.djangoapps.verify_student.tests.test_models is deprecated", stacklevel=2) + +from lms.djangoapps.verify_student.tests.test_models import * diff --git a/sys_path_hacks/lms/verify_student/tests/test_services.py b/sys_path_hacks/lms/verify_student/tests/test_services.py new file mode 100644 index 0000000000..d30447afee --- /dev/null +++ b/sys_path_hacks/lms/verify_student/tests/test_services.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing verify_student.tests.test_services instead of lms.djangoapps.verify_student.tests.test_services is deprecated", stacklevel=2) + +from lms.djangoapps.verify_student.tests.test_services import * diff --git a/sys_path_hacks/lms/verify_student/tests/test_signals.py b/sys_path_hacks/lms/verify_student/tests/test_signals.py new file mode 100644 index 0000000000..ae93a07a78 --- /dev/null +++ b/sys_path_hacks/lms/verify_student/tests/test_signals.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing verify_student.tests.test_signals instead of lms.djangoapps.verify_student.tests.test_signals is deprecated", stacklevel=2) + +from lms.djangoapps.verify_student.tests.test_signals import * diff --git a/sys_path_hacks/lms/verify_student/tests/test_ssencrypt.py b/sys_path_hacks/lms/verify_student/tests/test_ssencrypt.py new file mode 100644 index 0000000000..464bdc64e5 --- /dev/null +++ b/sys_path_hacks/lms/verify_student/tests/test_ssencrypt.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing verify_student.tests.test_ssencrypt instead of lms.djangoapps.verify_student.tests.test_ssencrypt is deprecated", stacklevel=2) + +from lms.djangoapps.verify_student.tests.test_ssencrypt import * diff --git a/sys_path_hacks/lms/verify_student/tests/test_tasks.py b/sys_path_hacks/lms/verify_student/tests/test_tasks.py new file mode 100644 index 0000000000..207d5da1f5 --- /dev/null +++ b/sys_path_hacks/lms/verify_student/tests/test_tasks.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing verify_student.tests.test_tasks instead of lms.djangoapps.verify_student.tests.test_tasks is deprecated", stacklevel=2) + +from lms.djangoapps.verify_student.tests.test_tasks import * diff --git a/sys_path_hacks/lms/verify_student/tests/test_utils.py b/sys_path_hacks/lms/verify_student/tests/test_utils.py new file mode 100644 index 0000000000..a10c102f12 --- /dev/null +++ b/sys_path_hacks/lms/verify_student/tests/test_utils.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing verify_student.tests.test_utils instead of lms.djangoapps.verify_student.tests.test_utils is deprecated", stacklevel=2) + +from lms.djangoapps.verify_student.tests.test_utils import * diff --git a/sys_path_hacks/lms/verify_student/tests/test_views.py b/sys_path_hacks/lms/verify_student/tests/test_views.py new file mode 100644 index 0000000000..da44033d43 --- /dev/null +++ b/sys_path_hacks/lms/verify_student/tests/test_views.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing verify_student.tests.test_views instead of lms.djangoapps.verify_student.tests.test_views is deprecated", stacklevel=2) + +from lms.djangoapps.verify_student.tests.test_views import * diff --git a/sys_path_hacks/lms/verify_student/toggles.py b/sys_path_hacks/lms/verify_student/toggles.py new file mode 100644 index 0000000000..ffe9608be8 --- /dev/null +++ b/sys_path_hacks/lms/verify_student/toggles.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing verify_student.toggles instead of lms.djangoapps.verify_student.toggles is deprecated", stacklevel=2) + +from lms.djangoapps.verify_student.toggles import * diff --git a/sys_path_hacks/lms/verify_student/urls.py b/sys_path_hacks/lms/verify_student/urls.py new file mode 100644 index 0000000000..c636d3663e --- /dev/null +++ b/sys_path_hacks/lms/verify_student/urls.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing verify_student.urls instead of lms.djangoapps.verify_student.urls is deprecated", stacklevel=2) + +from lms.djangoapps.verify_student.urls import * diff --git a/sys_path_hacks/lms/verify_student/utils.py b/sys_path_hacks/lms/verify_student/utils.py new file mode 100644 index 0000000000..9b228b3f3b --- /dev/null +++ b/sys_path_hacks/lms/verify_student/utils.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing verify_student.utils instead of lms.djangoapps.verify_student.utils is deprecated", stacklevel=2) + +from lms.djangoapps.verify_student.utils import * diff --git a/sys_path_hacks/lms/verify_student/views.py b/sys_path_hacks/lms/verify_student/views.py new file mode 100644 index 0000000000..57218f78af --- /dev/null +++ b/sys_path_hacks/lms/verify_student/views.py @@ -0,0 +1,4 @@ +import warnings +warnings.warn("Importing verify_student.views instead of lms.djangoapps.verify_student.views is deprecated", stacklevel=2) + +from lms.djangoapps.verify_student.views import *