diff --git a/sys_path_hacks/studio/api/__init__.py b/sys_path_hacks/studio/api/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..e3b3ad9865f44ddab05959c993e860d0ff88272d --- /dev/null +++ b/sys_path_hacks/studio/api/__init__.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'api') + +from cms.djangoapps.api import * diff --git a/sys_path_hacks/studio/api/apps.py b/sys_path_hacks/studio/api/apps.py new file mode 100644 index 0000000000000000000000000000000000000000..bf5a87aa5d5ece692dd9588e6eb568a5927d9281 --- /dev/null +++ b/sys_path_hacks/studio/api/apps.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'api.apps') + +from cms.djangoapps.api.apps import * diff --git a/sys_path_hacks/studio/api/urls.py b/sys_path_hacks/studio/api/urls.py new file mode 100644 index 0000000000000000000000000000000000000000..0382c7f7fa19b8f24c594f63c7fbfb806f25e3dc --- /dev/null +++ b/sys_path_hacks/studio/api/urls.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'api.urls') + +from cms.djangoapps.api.urls import * diff --git a/sys_path_hacks/studio/api/v1/__init__.py b/sys_path_hacks/studio/api/v1/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..d627f9d95ae711da3e0f36df9d563cec8646900a --- /dev/null +++ b/sys_path_hacks/studio/api/v1/__init__.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'api.v1') + +from cms.djangoapps.api.v1 import * diff --git a/sys_path_hacks/studio/api/v1/serializers/__init__.py b/sys_path_hacks/studio/api/v1/serializers/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..c299dfeaa1b3ce7e956978c1c2270650d6d4a5ad --- /dev/null +++ b/sys_path_hacks/studio/api/v1/serializers/__init__.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'api.v1.serializers') + +from cms.djangoapps.api.v1.serializers import * diff --git a/sys_path_hacks/studio/api/v1/serializers/course_runs.py b/sys_path_hacks/studio/api/v1/serializers/course_runs.py new file mode 100644 index 0000000000000000000000000000000000000000..926e1c7b2db02244983a963a29a8fe606a31b814 --- /dev/null +++ b/sys_path_hacks/studio/api/v1/serializers/course_runs.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'api.v1.serializers.course_runs') + +from cms.djangoapps.api.v1.serializers.course_runs import * diff --git a/sys_path_hacks/studio/api/v1/tests/__init__.py b/sys_path_hacks/studio/api/v1/tests/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..dc802f0a3fcf6fd55ade9adf1713662d69107e18 --- /dev/null +++ b/sys_path_hacks/studio/api/v1/tests/__init__.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'api.v1.tests') + +from cms.djangoapps.api.v1.tests import * diff --git a/sys_path_hacks/studio/api/v1/tests/test_serializers/__init__.py b/sys_path_hacks/studio/api/v1/tests/test_serializers/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..104aac3c77d76aed5cbd7da70b3b4bfedeacdc29 --- /dev/null +++ b/sys_path_hacks/studio/api/v1/tests/test_serializers/__init__.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'api.v1.tests.test_serializers') + +from cms.djangoapps.api.v1.tests.test_serializers import * diff --git a/sys_path_hacks/studio/api/v1/tests/test_serializers/test_course_runs.py b/sys_path_hacks/studio/api/v1/tests/test_serializers/test_course_runs.py new file mode 100644 index 0000000000000000000000000000000000000000..754ccdda11bf91d1054250175ef16f232fe4919c --- /dev/null +++ b/sys_path_hacks/studio/api/v1/tests/test_serializers/test_course_runs.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'api.v1.tests.test_serializers.test_course_runs') + +from cms.djangoapps.api.v1.tests.test_serializers.test_course_runs import * diff --git a/sys_path_hacks/studio/api/v1/tests/test_views/__init__.py b/sys_path_hacks/studio/api/v1/tests/test_views/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..5ac64282644e13e6dacf774fa6911484cdf4a4c0 --- /dev/null +++ b/sys_path_hacks/studio/api/v1/tests/test_views/__init__.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'api.v1.tests.test_views') + +from cms.djangoapps.api.v1.tests.test_views import * diff --git a/sys_path_hacks/studio/api/v1/tests/test_views/test_course_runs.py b/sys_path_hacks/studio/api/v1/tests/test_views/test_course_runs.py new file mode 100644 index 0000000000000000000000000000000000000000..51eb06636e9df1266882e20ecb3727da04b05dc8 --- /dev/null +++ b/sys_path_hacks/studio/api/v1/tests/test_views/test_course_runs.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'api.v1.tests.test_views.test_course_runs') + +from cms.djangoapps.api.v1.tests.test_views.test_course_runs import * diff --git a/sys_path_hacks/studio/api/v1/tests/utils.py b/sys_path_hacks/studio/api/v1/tests/utils.py new file mode 100644 index 0000000000000000000000000000000000000000..69c9248130cb6080e4e1a2f8817e12fd76b75089 --- /dev/null +++ b/sys_path_hacks/studio/api/v1/tests/utils.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'api.v1.tests.utils') + +from cms.djangoapps.api.v1.tests.utils import * diff --git a/sys_path_hacks/studio/api/v1/urls.py b/sys_path_hacks/studio/api/v1/urls.py new file mode 100644 index 0000000000000000000000000000000000000000..38e4c68f5d5268261f86d6e9bd00b518febd9352 --- /dev/null +++ b/sys_path_hacks/studio/api/v1/urls.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'api.v1.urls') + +from cms.djangoapps.api.v1.urls import * diff --git a/sys_path_hacks/studio/api/v1/views/__init__.py b/sys_path_hacks/studio/api/v1/views/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..436936712a26ce2de16c72fe9a8e35f419348c46 --- /dev/null +++ b/sys_path_hacks/studio/api/v1/views/__init__.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'api.v1.views') + +from cms.djangoapps.api.v1.views import * diff --git a/sys_path_hacks/studio/api/v1/views/course_runs.py b/sys_path_hacks/studio/api/v1/views/course_runs.py new file mode 100644 index 0000000000000000000000000000000000000000..1f9aabacbd5b064969e1e1e3d300fd1a9895530e --- /dev/null +++ b/sys_path_hacks/studio/api/v1/views/course_runs.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'api.v1.views.course_runs') + +from cms.djangoapps.api.v1.views.course_runs import * diff --git a/sys_path_hacks/studio/cms_user_tasks/__init__.py b/sys_path_hacks/studio/cms_user_tasks/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..84fe24c4a5b553ef5c22a88a68d68728ff5ab99a --- /dev/null +++ b/sys_path_hacks/studio/cms_user_tasks/__init__.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'cms_user_tasks') + +from cms.djangoapps.cms_user_tasks import * diff --git a/sys_path_hacks/studio/cms_user_tasks/apps.py b/sys_path_hacks/studio/cms_user_tasks/apps.py new file mode 100644 index 0000000000000000000000000000000000000000..a397dec7df02704efd96d5bcc2dd01cc5dfa472f --- /dev/null +++ b/sys_path_hacks/studio/cms_user_tasks/apps.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'cms_user_tasks.apps') + +from cms.djangoapps.cms_user_tasks.apps import * diff --git a/sys_path_hacks/studio/cms_user_tasks/signals.py b/sys_path_hacks/studio/cms_user_tasks/signals.py new file mode 100644 index 0000000000000000000000000000000000000000..1ab57e3c2cc1300b86ec1f97f6f710c3a689e8d5 --- /dev/null +++ b/sys_path_hacks/studio/cms_user_tasks/signals.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'cms_user_tasks.signals') + +from cms.djangoapps.cms_user_tasks.signals import * diff --git a/sys_path_hacks/studio/cms_user_tasks/tasks.py b/sys_path_hacks/studio/cms_user_tasks/tasks.py new file mode 100644 index 0000000000000000000000000000000000000000..57f1ad446dbab1687aeb56a152b205ec9d56b44b --- /dev/null +++ b/sys_path_hacks/studio/cms_user_tasks/tasks.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'cms_user_tasks.tasks') + +from cms.djangoapps.cms_user_tasks.tasks import * diff --git a/sys_path_hacks/studio/cms_user_tasks/tests.py b/sys_path_hacks/studio/cms_user_tasks/tests.py new file mode 100644 index 0000000000000000000000000000000000000000..47784ced9fe4342be809d00de32c6b759122bcb3 --- /dev/null +++ b/sys_path_hacks/studio/cms_user_tasks/tests.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'cms_user_tasks.tests') + +from cms.djangoapps.cms_user_tasks.tests import * diff --git a/sys_path_hacks/studio/contentstore/__init__.py b/sys_path_hacks/studio/contentstore/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..21c574c5827f12a72799d5bdbbefde2af033699d --- /dev/null +++ b/sys_path_hacks/studio/contentstore/__init__.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore') + +from cms.djangoapps.contentstore import * diff --git a/sys_path_hacks/studio/contentstore/admin.py b/sys_path_hacks/studio/contentstore/admin.py new file mode 100644 index 0000000000000000000000000000000000000000..71f7f7a6481e9377dbb120d7398ae0719148b48a --- /dev/null +++ b/sys_path_hacks/studio/contentstore/admin.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.admin') + +from cms.djangoapps.contentstore.admin import * diff --git a/sys_path_hacks/studio/contentstore/api/__init__.py b/sys_path_hacks/studio/contentstore/api/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..4d8320957b04765f4aaac5c1a8ba20bd570cbdee --- /dev/null +++ b/sys_path_hacks/studio/contentstore/api/__init__.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.api') + +from cms.djangoapps.contentstore.api import * diff --git a/sys_path_hacks/studio/contentstore/api/tests/__init__.py b/sys_path_hacks/studio/contentstore/api/tests/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..aee3afa8d7b9dbf4bc05bbbf49b9423f73efbbd3 --- /dev/null +++ b/sys_path_hacks/studio/contentstore/api/tests/__init__.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.api.tests') + +from cms.djangoapps.contentstore.api.tests import * diff --git a/sys_path_hacks/studio/contentstore/api/tests/base.py b/sys_path_hacks/studio/contentstore/api/tests/base.py new file mode 100644 index 0000000000000000000000000000000000000000..4648d92e6c97fb338db0891a2ca9f686cbfc0240 --- /dev/null +++ b/sys_path_hacks/studio/contentstore/api/tests/base.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.api.tests.base') + +from cms.djangoapps.contentstore.api.tests.base import * diff --git a/sys_path_hacks/studio/contentstore/api/tests/test_import.py b/sys_path_hacks/studio/contentstore/api/tests/test_import.py new file mode 100644 index 0000000000000000000000000000000000000000..e6413b75d4a6f29466d9c0a39d3846897dde33db --- /dev/null +++ b/sys_path_hacks/studio/contentstore/api/tests/test_import.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.api.tests.test_import') + +from cms.djangoapps.contentstore.api.tests.test_import import * diff --git a/sys_path_hacks/studio/contentstore/api/tests/test_quality.py b/sys_path_hacks/studio/contentstore/api/tests/test_quality.py new file mode 100644 index 0000000000000000000000000000000000000000..70c59caa4e3e80c7b1829eeb8f07dabb9e72d43e --- /dev/null +++ b/sys_path_hacks/studio/contentstore/api/tests/test_quality.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.api.tests.test_quality') + +from cms.djangoapps.contentstore.api.tests.test_quality import * diff --git a/sys_path_hacks/studio/contentstore/api/tests/test_validation.py b/sys_path_hacks/studio/contentstore/api/tests/test_validation.py new file mode 100644 index 0000000000000000000000000000000000000000..254bbdeed78bd46b39f8e8103ab8e9a20fa94af8 --- /dev/null +++ b/sys_path_hacks/studio/contentstore/api/tests/test_validation.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.api.tests.test_validation') + +from cms.djangoapps.contentstore.api.tests.test_validation import * diff --git a/sys_path_hacks/studio/contentstore/api/urls.py b/sys_path_hacks/studio/contentstore/api/urls.py new file mode 100644 index 0000000000000000000000000000000000000000..6f3cc788a1f07a63518d86aa4d60cf1e27910ff8 --- /dev/null +++ b/sys_path_hacks/studio/contentstore/api/urls.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.api.urls') + +from cms.djangoapps.contentstore.api.urls import * diff --git a/sys_path_hacks/studio/contentstore/api/views/__init__.py b/sys_path_hacks/studio/contentstore/api/views/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..9bf6bf90f95aed8cd0a6545261809dae1e7a0321 --- /dev/null +++ b/sys_path_hacks/studio/contentstore/api/views/__init__.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.api.views') + +from cms.djangoapps.contentstore.api.views import * diff --git a/sys_path_hacks/studio/contentstore/api/views/course_import.py b/sys_path_hacks/studio/contentstore/api/views/course_import.py new file mode 100644 index 0000000000000000000000000000000000000000..8aca643c5efbc11e68309795a42790a6564de5a8 --- /dev/null +++ b/sys_path_hacks/studio/contentstore/api/views/course_import.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.api.views.course_import') + +from cms.djangoapps.contentstore.api.views.course_import import * diff --git a/sys_path_hacks/studio/contentstore/api/views/course_quality.py b/sys_path_hacks/studio/contentstore/api/views/course_quality.py new file mode 100644 index 0000000000000000000000000000000000000000..b378e641d82f0450c5f788c76aecfa55bdc2157d --- /dev/null +++ b/sys_path_hacks/studio/contentstore/api/views/course_quality.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.api.views.course_quality') + +from cms.djangoapps.contentstore.api.views.course_quality import * diff --git a/sys_path_hacks/studio/contentstore/api/views/course_validation.py b/sys_path_hacks/studio/contentstore/api/views/course_validation.py new file mode 100644 index 0000000000000000000000000000000000000000..2b3aa8f6f407f219260edb927013fe658086019f --- /dev/null +++ b/sys_path_hacks/studio/contentstore/api/views/course_validation.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.api.views.course_validation') + +from cms.djangoapps.contentstore.api.views.course_validation import * diff --git a/sys_path_hacks/studio/contentstore/api/views/utils.py b/sys_path_hacks/studio/contentstore/api/views/utils.py new file mode 100644 index 0000000000000000000000000000000000000000..fc3c33ea18dd0cfdac07e8faac37a4eb21796a18 --- /dev/null +++ b/sys_path_hacks/studio/contentstore/api/views/utils.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.api.views.utils') + +from cms.djangoapps.contentstore.api.views.utils import * diff --git a/sys_path_hacks/studio/contentstore/apps.py b/sys_path_hacks/studio/contentstore/apps.py new file mode 100644 index 0000000000000000000000000000000000000000..0cab01d0742e68a56d99080b87daea8b771d4d47 --- /dev/null +++ b/sys_path_hacks/studio/contentstore/apps.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.apps') + +from cms.djangoapps.contentstore.apps import * diff --git a/sys_path_hacks/studio/contentstore/config/__init__.py b/sys_path_hacks/studio/contentstore/config/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..9157015c7ad174cbd5dfef10f35bc1765d8b32e6 --- /dev/null +++ b/sys_path_hacks/studio/contentstore/config/__init__.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.config') + +from cms.djangoapps.contentstore.config import * diff --git a/sys_path_hacks/studio/contentstore/config/tests/__init__.py b/sys_path_hacks/studio/contentstore/config/tests/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..5a9aa234c1ffb6b291e5630ddadad5c4733a37e8 --- /dev/null +++ b/sys_path_hacks/studio/contentstore/config/tests/__init__.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.config.tests') + +from cms.djangoapps.contentstore.config.tests import * diff --git a/sys_path_hacks/studio/contentstore/config/waffle.py b/sys_path_hacks/studio/contentstore/config/waffle.py new file mode 100644 index 0000000000000000000000000000000000000000..7007c3b7f8c01564a4b54cf3a1a6bb5e79d1bf91 --- /dev/null +++ b/sys_path_hacks/studio/contentstore/config/waffle.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.config.waffle') + +from cms.djangoapps.contentstore.config.waffle import * diff --git a/sys_path_hacks/studio/contentstore/config/waffle_utils.py b/sys_path_hacks/studio/contentstore/config/waffle_utils.py new file mode 100644 index 0000000000000000000000000000000000000000..f8921dae957634bc71d366ca2cf9a613f5e7d972 --- /dev/null +++ b/sys_path_hacks/studio/contentstore/config/waffle_utils.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.config.waffle_utils') + +from cms.djangoapps.contentstore.config.waffle_utils import * diff --git a/sys_path_hacks/studio/contentstore/course_group_config.py b/sys_path_hacks/studio/contentstore/course_group_config.py new file mode 100644 index 0000000000000000000000000000000000000000..25fe0110a83019ce8b8171d1841713e30c707801 --- /dev/null +++ b/sys_path_hacks/studio/contentstore/course_group_config.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.course_group_config') + +from cms.djangoapps.contentstore.course_group_config import * diff --git a/sys_path_hacks/studio/contentstore/course_info_model.py b/sys_path_hacks/studio/contentstore/course_info_model.py new file mode 100644 index 0000000000000000000000000000000000000000..07c8a97735194dced38c9ce849cfceb2feb564dc --- /dev/null +++ b/sys_path_hacks/studio/contentstore/course_info_model.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.course_info_model') + +from cms.djangoapps.contentstore.course_info_model import * diff --git a/sys_path_hacks/studio/contentstore/courseware_index.py b/sys_path_hacks/studio/contentstore/courseware_index.py new file mode 100644 index 0000000000000000000000000000000000000000..ebca336ff773de7a5c11f47db80ec5e975173f5d --- /dev/null +++ b/sys_path_hacks/studio/contentstore/courseware_index.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.courseware_index') + +from cms.djangoapps.contentstore.courseware_index import * diff --git a/sys_path_hacks/studio/contentstore/debug_file_uploader.py b/sys_path_hacks/studio/contentstore/debug_file_uploader.py new file mode 100644 index 0000000000000000000000000000000000000000..c5214a64f3ff1a307e0fc09bc86b3cecbf6db957 --- /dev/null +++ b/sys_path_hacks/studio/contentstore/debug_file_uploader.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.debug_file_uploader') + +from cms.djangoapps.contentstore.debug_file_uploader import * diff --git a/sys_path_hacks/studio/contentstore/git_export_utils.py b/sys_path_hacks/studio/contentstore/git_export_utils.py new file mode 100644 index 0000000000000000000000000000000000000000..d73fa95f7ca9cb6dab832bb5914ca72cc0f7d69c --- /dev/null +++ b/sys_path_hacks/studio/contentstore/git_export_utils.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.git_export_utils') + +from cms.djangoapps.contentstore.git_export_utils import * diff --git a/sys_path_hacks/studio/contentstore/management/__init__.py b/sys_path_hacks/studio/contentstore/management/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..2b16ae68eefcddd5850c0104dbcdaf309417a85a --- /dev/null +++ b/sys_path_hacks/studio/contentstore/management/__init__.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.management') + +from cms.djangoapps.contentstore.management import * diff --git a/sys_path_hacks/studio/contentstore/management/commands/__init__.py b/sys_path_hacks/studio/contentstore/management/commands/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..fff73c9ba07c538a068242c5f3dd605f90273a2b --- /dev/null +++ b/sys_path_hacks/studio/contentstore/management/commands/__init__.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.management.commands') + +from cms.djangoapps.contentstore.management.commands import * diff --git a/sys_path_hacks/studio/contentstore/management/commands/clean_cert_name.py b/sys_path_hacks/studio/contentstore/management/commands/clean_cert_name.py new file mode 100644 index 0000000000000000000000000000000000000000..206f36b7dcffdf677ce6c1d31a7f52b64b3b17f7 --- /dev/null +++ b/sys_path_hacks/studio/contentstore/management/commands/clean_cert_name.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.management.commands.clean_cert_name') + +from cms.djangoapps.contentstore.management.commands.clean_cert_name import * diff --git a/sys_path_hacks/studio/contentstore/management/commands/cleanup_assets.py b/sys_path_hacks/studio/contentstore/management/commands/cleanup_assets.py new file mode 100644 index 0000000000000000000000000000000000000000..0a047d29de28eced02e1cabb50130250c683b331 --- /dev/null +++ b/sys_path_hacks/studio/contentstore/management/commands/cleanup_assets.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.management.commands.cleanup_assets') + +from cms.djangoapps.contentstore.management.commands.cleanup_assets import * diff --git a/sys_path_hacks/studio/contentstore/management/commands/create_course.py b/sys_path_hacks/studio/contentstore/management/commands/create_course.py new file mode 100644 index 0000000000000000000000000000000000000000..ed3423ed8ff975fa167e881484a307078b8c88c7 --- /dev/null +++ b/sys_path_hacks/studio/contentstore/management/commands/create_course.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.management.commands.create_course') + +from cms.djangoapps.contentstore.management.commands.create_course import * diff --git a/sys_path_hacks/studio/contentstore/management/commands/delete_course.py b/sys_path_hacks/studio/contentstore/management/commands/delete_course.py new file mode 100644 index 0000000000000000000000000000000000000000..3392213b0f4d1c05de069df77ff93396d575fe87 --- /dev/null +++ b/sys_path_hacks/studio/contentstore/management/commands/delete_course.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.management.commands.delete_course') + +from cms.djangoapps.contentstore.management.commands.delete_course import * diff --git a/sys_path_hacks/studio/contentstore/management/commands/delete_orphans.py b/sys_path_hacks/studio/contentstore/management/commands/delete_orphans.py new file mode 100644 index 0000000000000000000000000000000000000000..d64ac4e54e6ff6dee4bac3a9dcef889d1fb1fbbb --- /dev/null +++ b/sys_path_hacks/studio/contentstore/management/commands/delete_orphans.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.management.commands.delete_orphans') + +from cms.djangoapps.contentstore.management.commands.delete_orphans import * diff --git a/sys_path_hacks/studio/contentstore/management/commands/edit_course_tabs.py b/sys_path_hacks/studio/contentstore/management/commands/edit_course_tabs.py new file mode 100644 index 0000000000000000000000000000000000000000..c18357774f5a811a9634f07a2224d3cef8d28e82 --- /dev/null +++ b/sys_path_hacks/studio/contentstore/management/commands/edit_course_tabs.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.management.commands.edit_course_tabs') + +from cms.djangoapps.contentstore.management.commands.edit_course_tabs import * diff --git a/sys_path_hacks/studio/contentstore/management/commands/empty_asset_trashcan.py b/sys_path_hacks/studio/contentstore/management/commands/empty_asset_trashcan.py new file mode 100644 index 0000000000000000000000000000000000000000..ff801636ef1bd48bedf7045aedda80a6668c6279 --- /dev/null +++ b/sys_path_hacks/studio/contentstore/management/commands/empty_asset_trashcan.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.management.commands.empty_asset_trashcan') + +from cms.djangoapps.contentstore.management.commands.empty_asset_trashcan import * diff --git a/sys_path_hacks/studio/contentstore/management/commands/export.py b/sys_path_hacks/studio/contentstore/management/commands/export.py new file mode 100644 index 0000000000000000000000000000000000000000..121da9ff89f4ee47661658e66415176aebe44a59 --- /dev/null +++ b/sys_path_hacks/studio/contentstore/management/commands/export.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.management.commands.export') + +from cms.djangoapps.contentstore.management.commands.export import * diff --git a/sys_path_hacks/studio/contentstore/management/commands/export_all_courses.py b/sys_path_hacks/studio/contentstore/management/commands/export_all_courses.py new file mode 100644 index 0000000000000000000000000000000000000000..26d2c30d32c8a40f71cbf4ba7f1f49a77b046f28 --- /dev/null +++ b/sys_path_hacks/studio/contentstore/management/commands/export_all_courses.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.management.commands.export_all_courses') + +from cms.djangoapps.contentstore.management.commands.export_all_courses import * diff --git a/sys_path_hacks/studio/contentstore/management/commands/export_content_library.py b/sys_path_hacks/studio/contentstore/management/commands/export_content_library.py new file mode 100644 index 0000000000000000000000000000000000000000..7568f5219f70ebfe52c9b98084ed7d6a24ea512e --- /dev/null +++ b/sys_path_hacks/studio/contentstore/management/commands/export_content_library.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.management.commands.export_content_library') + +from cms.djangoapps.contentstore.management.commands.export_content_library import * diff --git a/sys_path_hacks/studio/contentstore/management/commands/export_olx.py b/sys_path_hacks/studio/contentstore/management/commands/export_olx.py new file mode 100644 index 0000000000000000000000000000000000000000..b9209b83dc25e6f87b412ac46d0fa1d6fcd35304 --- /dev/null +++ b/sys_path_hacks/studio/contentstore/management/commands/export_olx.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.management.commands.export_olx') + +from cms.djangoapps.contentstore.management.commands.export_olx import * diff --git a/sys_path_hacks/studio/contentstore/management/commands/fix_not_found.py b/sys_path_hacks/studio/contentstore/management/commands/fix_not_found.py new file mode 100644 index 0000000000000000000000000000000000000000..3c8bf68e11b3a545c0b543d49321b9a81a5d100c --- /dev/null +++ b/sys_path_hacks/studio/contentstore/management/commands/fix_not_found.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.management.commands.fix_not_found') + +from cms.djangoapps.contentstore.management.commands.fix_not_found import * diff --git a/sys_path_hacks/studio/contentstore/management/commands/force_publish.py b/sys_path_hacks/studio/contentstore/management/commands/force_publish.py new file mode 100644 index 0000000000000000000000000000000000000000..57c34ba2a023632bf5a760867d09d5750e021989 --- /dev/null +++ b/sys_path_hacks/studio/contentstore/management/commands/force_publish.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.management.commands.force_publish') + +from cms.djangoapps.contentstore.management.commands.force_publish import * diff --git a/sys_path_hacks/studio/contentstore/management/commands/generate_courses.py b/sys_path_hacks/studio/contentstore/management/commands/generate_courses.py new file mode 100644 index 0000000000000000000000000000000000000000..3601ff75968465fbcf0be09c96a4e4053a937e76 --- /dev/null +++ b/sys_path_hacks/studio/contentstore/management/commands/generate_courses.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.management.commands.generate_courses') + +from cms.djangoapps.contentstore.management.commands.generate_courses import * diff --git a/sys_path_hacks/studio/contentstore/management/commands/git_export.py b/sys_path_hacks/studio/contentstore/management/commands/git_export.py new file mode 100644 index 0000000000000000000000000000000000000000..7abd8cd2324b1eeba2480086a9e1990eb8460072 --- /dev/null +++ b/sys_path_hacks/studio/contentstore/management/commands/git_export.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.management.commands.git_export') + +from cms.djangoapps.contentstore.management.commands.git_export import * diff --git a/sys_path_hacks/studio/contentstore/management/commands/import_content_library.py b/sys_path_hacks/studio/contentstore/management/commands/import_content_library.py new file mode 100644 index 0000000000000000000000000000000000000000..b10911c618eaecf418bbde2d5e1d6ad7cbf39ab8 --- /dev/null +++ b/sys_path_hacks/studio/contentstore/management/commands/import_content_library.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.management.commands.import_content_library') + +from cms.djangoapps.contentstore.management.commands.import_content_library import * diff --git a/sys_path_hacks/studio/contentstore/management/commands/migrate_to_split.py b/sys_path_hacks/studio/contentstore/management/commands/migrate_to_split.py new file mode 100644 index 0000000000000000000000000000000000000000..909721360cef5eb25a011c88f0b14f67aa3e8b84 --- /dev/null +++ b/sys_path_hacks/studio/contentstore/management/commands/migrate_to_split.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.management.commands.migrate_to_split') + +from cms.djangoapps.contentstore.management.commands.migrate_to_split import * diff --git a/sys_path_hacks/studio/contentstore/management/commands/prompt.py b/sys_path_hacks/studio/contentstore/management/commands/prompt.py new file mode 100644 index 0000000000000000000000000000000000000000..beba1c4b3342c091ba665faa14ed7dddc3366b29 --- /dev/null +++ b/sys_path_hacks/studio/contentstore/management/commands/prompt.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.management.commands.prompt') + +from cms.djangoapps.contentstore.management.commands.prompt import * diff --git a/sys_path_hacks/studio/contentstore/management/commands/reindex_course.py b/sys_path_hacks/studio/contentstore/management/commands/reindex_course.py new file mode 100644 index 0000000000000000000000000000000000000000..e5ad06e07c2118dbc36e5f6d23ac418ca5e1793b --- /dev/null +++ b/sys_path_hacks/studio/contentstore/management/commands/reindex_course.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.management.commands.reindex_course') + +from cms.djangoapps.contentstore.management.commands.reindex_course import * diff --git a/sys_path_hacks/studio/contentstore/management/commands/reindex_library.py b/sys_path_hacks/studio/contentstore/management/commands/reindex_library.py new file mode 100644 index 0000000000000000000000000000000000000000..023ad678af6d59f803804a24e3d9e6d698b14060 --- /dev/null +++ b/sys_path_hacks/studio/contentstore/management/commands/reindex_library.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.management.commands.reindex_library') + +from cms.djangoapps.contentstore.management.commands.reindex_library import * diff --git a/sys_path_hacks/studio/contentstore/management/commands/restore_asset_from_trashcan.py b/sys_path_hacks/studio/contentstore/management/commands/restore_asset_from_trashcan.py new file mode 100644 index 0000000000000000000000000000000000000000..fced09b5a3e015709be1e827c1c203acdc74856e --- /dev/null +++ b/sys_path_hacks/studio/contentstore/management/commands/restore_asset_from_trashcan.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.management.commands.restore_asset_from_trashcan') + +from cms.djangoapps.contentstore.management.commands.restore_asset_from_trashcan import * diff --git a/sys_path_hacks/studio/contentstore/management/commands/sync_courses.py b/sys_path_hacks/studio/contentstore/management/commands/sync_courses.py new file mode 100644 index 0000000000000000000000000000000000000000..02a6dd825ba399aa76fd9a6016511b199e23fdb4 --- /dev/null +++ b/sys_path_hacks/studio/contentstore/management/commands/sync_courses.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.management.commands.sync_courses') + +from cms.djangoapps.contentstore.management.commands.sync_courses import * diff --git a/sys_path_hacks/studio/contentstore/management/commands/tests/__init__.py b/sys_path_hacks/studio/contentstore/management/commands/tests/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..e24cf89b8e73568438c801e8014b03ad30d0e26d --- /dev/null +++ b/sys_path_hacks/studio/contentstore/management/commands/tests/__init__.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.management.commands.tests') + +from cms.djangoapps.contentstore.management.commands.tests import * diff --git a/sys_path_hacks/studio/contentstore/management/commands/tests/test_cleanup_assets.py b/sys_path_hacks/studio/contentstore/management/commands/tests/test_cleanup_assets.py new file mode 100644 index 0000000000000000000000000000000000000000..8e807973406f24095b6e2505a2ff16b6b194347a --- /dev/null +++ b/sys_path_hacks/studio/contentstore/management/commands/tests/test_cleanup_assets.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.management.commands.tests.test_cleanup_assets') + +from cms.djangoapps.contentstore.management.commands.tests.test_cleanup_assets import * diff --git a/sys_path_hacks/studio/contentstore/management/commands/tests/test_create_course.py b/sys_path_hacks/studio/contentstore/management/commands/tests/test_create_course.py new file mode 100644 index 0000000000000000000000000000000000000000..ddb1d15f03dfac11cd652170269b3f336e122648 --- /dev/null +++ b/sys_path_hacks/studio/contentstore/management/commands/tests/test_create_course.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.management.commands.tests.test_create_course') + +from cms.djangoapps.contentstore.management.commands.tests.test_create_course import * diff --git a/sys_path_hacks/studio/contentstore/management/commands/tests/test_delete_course.py b/sys_path_hacks/studio/contentstore/management/commands/tests/test_delete_course.py new file mode 100644 index 0000000000000000000000000000000000000000..261187de53c15b55b3d4dc49bcadace9a83d807e --- /dev/null +++ b/sys_path_hacks/studio/contentstore/management/commands/tests/test_delete_course.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.management.commands.tests.test_delete_course') + +from cms.djangoapps.contentstore.management.commands.tests.test_delete_course import * diff --git a/sys_path_hacks/studio/contentstore/management/commands/tests/test_delete_orphans.py b/sys_path_hacks/studio/contentstore/management/commands/tests/test_delete_orphans.py new file mode 100644 index 0000000000000000000000000000000000000000..50d616541443cccb551c26268ec62c4bee0017f8 --- /dev/null +++ b/sys_path_hacks/studio/contentstore/management/commands/tests/test_delete_orphans.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.management.commands.tests.test_delete_orphans') + +from cms.djangoapps.contentstore.management.commands.tests.test_delete_orphans import * diff --git a/sys_path_hacks/studio/contentstore/management/commands/tests/test_export.py b/sys_path_hacks/studio/contentstore/management/commands/tests/test_export.py new file mode 100644 index 0000000000000000000000000000000000000000..aac029c26fe199691c62fb4c9657102aa3267992 --- /dev/null +++ b/sys_path_hacks/studio/contentstore/management/commands/tests/test_export.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.management.commands.tests.test_export') + +from cms.djangoapps.contentstore.management.commands.tests.test_export import * diff --git a/sys_path_hacks/studio/contentstore/management/commands/tests/test_export_all_courses.py b/sys_path_hacks/studio/contentstore/management/commands/tests/test_export_all_courses.py new file mode 100644 index 0000000000000000000000000000000000000000..5514f5391431aa6a343d49280b2a137b344073bc --- /dev/null +++ b/sys_path_hacks/studio/contentstore/management/commands/tests/test_export_all_courses.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.management.commands.tests.test_export_all_courses') + +from cms.djangoapps.contentstore.management.commands.tests.test_export_all_courses import * diff --git a/sys_path_hacks/studio/contentstore/management/commands/tests/test_export_olx.py b/sys_path_hacks/studio/contentstore/management/commands/tests/test_export_olx.py new file mode 100644 index 0000000000000000000000000000000000000000..3d45b3fc936ba29bc576c8d9b8a4c1a93bb31822 --- /dev/null +++ b/sys_path_hacks/studio/contentstore/management/commands/tests/test_export_olx.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.management.commands.tests.test_export_olx') + +from cms.djangoapps.contentstore.management.commands.tests.test_export_olx import * diff --git a/sys_path_hacks/studio/contentstore/management/commands/tests/test_fix_not_found.py b/sys_path_hacks/studio/contentstore/management/commands/tests/test_fix_not_found.py new file mode 100644 index 0000000000000000000000000000000000000000..b2d3908461f7abbff5be402d3f35dc410f5e1069 --- /dev/null +++ b/sys_path_hacks/studio/contentstore/management/commands/tests/test_fix_not_found.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.management.commands.tests.test_fix_not_found') + +from cms.djangoapps.contentstore.management.commands.tests.test_fix_not_found import * diff --git a/sys_path_hacks/studio/contentstore/management/commands/tests/test_force_publish.py b/sys_path_hacks/studio/contentstore/management/commands/tests/test_force_publish.py new file mode 100644 index 0000000000000000000000000000000000000000..dbc685cb37c9dc665d44ff58ed7e48662284a658 --- /dev/null +++ b/sys_path_hacks/studio/contentstore/management/commands/tests/test_force_publish.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.management.commands.tests.test_force_publish') + +from cms.djangoapps.contentstore.management.commands.tests.test_force_publish import * diff --git a/sys_path_hacks/studio/contentstore/management/commands/tests/test_generate_courses.py b/sys_path_hacks/studio/contentstore/management/commands/tests/test_generate_courses.py new file mode 100644 index 0000000000000000000000000000000000000000..979a45ba8f1b8a04f76bc58aa68b3a6f3c4321d3 --- /dev/null +++ b/sys_path_hacks/studio/contentstore/management/commands/tests/test_generate_courses.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.management.commands.tests.test_generate_courses') + +from cms.djangoapps.contentstore.management.commands.tests.test_generate_courses import * diff --git a/sys_path_hacks/studio/contentstore/management/commands/tests/test_git_export.py b/sys_path_hacks/studio/contentstore/management/commands/tests/test_git_export.py new file mode 100644 index 0000000000000000000000000000000000000000..e740cdedae898353f34c5f51f1cac853a1326fa4 --- /dev/null +++ b/sys_path_hacks/studio/contentstore/management/commands/tests/test_git_export.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.management.commands.tests.test_git_export') + +from cms.djangoapps.contentstore.management.commands.tests.test_git_export import * diff --git a/sys_path_hacks/studio/contentstore/management/commands/tests/test_import.py b/sys_path_hacks/studio/contentstore/management/commands/tests/test_import.py new file mode 100644 index 0000000000000000000000000000000000000000..9019c2ee87bb53aa3a3143598370c654d5042b1d --- /dev/null +++ b/sys_path_hacks/studio/contentstore/management/commands/tests/test_import.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.management.commands.tests.test_import') + +from cms.djangoapps.contentstore.management.commands.tests.test_import import * diff --git a/sys_path_hacks/studio/contentstore/management/commands/tests/test_migrate_to_split.py b/sys_path_hacks/studio/contentstore/management/commands/tests/test_migrate_to_split.py new file mode 100644 index 0000000000000000000000000000000000000000..7bc9c7887aca155d8539f5f0e16336b41cd4833b --- /dev/null +++ b/sys_path_hacks/studio/contentstore/management/commands/tests/test_migrate_to_split.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.management.commands.tests.test_migrate_to_split') + +from cms.djangoapps.contentstore.management.commands.tests.test_migrate_to_split import * diff --git a/sys_path_hacks/studio/contentstore/management/commands/tests/test_reindex_courses.py b/sys_path_hacks/studio/contentstore/management/commands/tests/test_reindex_courses.py new file mode 100644 index 0000000000000000000000000000000000000000..e71941caef372c2d6424dba7ecbe5e30f031037b --- /dev/null +++ b/sys_path_hacks/studio/contentstore/management/commands/tests/test_reindex_courses.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.management.commands.tests.test_reindex_courses') + +from cms.djangoapps.contentstore.management.commands.tests.test_reindex_courses import * diff --git a/sys_path_hacks/studio/contentstore/management/commands/tests/test_reindex_library.py b/sys_path_hacks/studio/contentstore/management/commands/tests/test_reindex_library.py new file mode 100644 index 0000000000000000000000000000000000000000..8d18dfdd6bd506497bb7ef529aea715597bf7059 --- /dev/null +++ b/sys_path_hacks/studio/contentstore/management/commands/tests/test_reindex_library.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.management.commands.tests.test_reindex_library') + +from cms.djangoapps.contentstore.management.commands.tests.test_reindex_library import * diff --git a/sys_path_hacks/studio/contentstore/management/commands/tests/test_sync_courses.py b/sys_path_hacks/studio/contentstore/management/commands/tests/test_sync_courses.py new file mode 100644 index 0000000000000000000000000000000000000000..0ca2910fca14625ad79e81468971178df4e4147e --- /dev/null +++ b/sys_path_hacks/studio/contentstore/management/commands/tests/test_sync_courses.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.management.commands.tests.test_sync_courses') + +from cms.djangoapps.contentstore.management.commands.tests.test_sync_courses import * diff --git a/sys_path_hacks/studio/contentstore/management/commands/utils.py b/sys_path_hacks/studio/contentstore/management/commands/utils.py new file mode 100644 index 0000000000000000000000000000000000000000..fb6879aab14987f0242ed0b8d108ba5172df7925 --- /dev/null +++ b/sys_path_hacks/studio/contentstore/management/commands/utils.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.management.commands.utils') + +from cms.djangoapps.contentstore.management.commands.utils import * diff --git a/sys_path_hacks/studio/contentstore/management/commands/xlint.py b/sys_path_hacks/studio/contentstore/management/commands/xlint.py new file mode 100644 index 0000000000000000000000000000000000000000..596edb093f3a3b5bf229ce109a3818141040c203 --- /dev/null +++ b/sys_path_hacks/studio/contentstore/management/commands/xlint.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.management.commands.xlint') + +from cms.djangoapps.contentstore.management.commands.xlint import * diff --git a/sys_path_hacks/studio/contentstore/models.py b/sys_path_hacks/studio/contentstore/models.py new file mode 100644 index 0000000000000000000000000000000000000000..637cbece69cd2179c474ce9bb04d623929bf05f4 --- /dev/null +++ b/sys_path_hacks/studio/contentstore/models.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.models') + +from cms.djangoapps.contentstore.models import * diff --git a/sys_path_hacks/studio/contentstore/proctoring.py b/sys_path_hacks/studio/contentstore/proctoring.py new file mode 100644 index 0000000000000000000000000000000000000000..eeda5073eabf0ba1c616a97782c027a90f31a47a --- /dev/null +++ b/sys_path_hacks/studio/contentstore/proctoring.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.proctoring') + +from cms.djangoapps.contentstore.proctoring import * diff --git a/sys_path_hacks/studio/contentstore/rest_api/__init__.py b/sys_path_hacks/studio/contentstore/rest_api/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..0e6b8bf60d2ce910113adf8b9204dcb0cecaadb6 --- /dev/null +++ b/sys_path_hacks/studio/contentstore/rest_api/__init__.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.rest_api') + +from cms.djangoapps.contentstore.rest_api import * diff --git a/sys_path_hacks/studio/contentstore/rest_api/urls.py b/sys_path_hacks/studio/contentstore/rest_api/urls.py new file mode 100644 index 0000000000000000000000000000000000000000..d5ba2410453121ee7ccccca300e2752115a8614b --- /dev/null +++ b/sys_path_hacks/studio/contentstore/rest_api/urls.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.rest_api.urls') + +from cms.djangoapps.contentstore.rest_api.urls import * diff --git a/sys_path_hacks/studio/contentstore/rest_api/v1/serializers.py b/sys_path_hacks/studio/contentstore/rest_api/v1/serializers.py new file mode 100644 index 0000000000000000000000000000000000000000..2815259f36ec81ca9de944b27ffc21f67a62128a --- /dev/null +++ b/sys_path_hacks/studio/contentstore/rest_api/v1/serializers.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.rest_api.v1.serializers') + +from cms.djangoapps.contentstore.rest_api.v1.serializers import * diff --git a/sys_path_hacks/studio/contentstore/rest_api/v1/tests/__init__.py b/sys_path_hacks/studio/contentstore/rest_api/v1/tests/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..67049fdf904b0b0671b80bc798e1f1aab369ef34 --- /dev/null +++ b/sys_path_hacks/studio/contentstore/rest_api/v1/tests/__init__.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.rest_api.v1.tests') + +from cms.djangoapps.contentstore.rest_api.v1.tests import * diff --git a/sys_path_hacks/studio/contentstore/rest_api/v1/tests/test_views.py b/sys_path_hacks/studio/contentstore/rest_api/v1/tests/test_views.py new file mode 100644 index 0000000000000000000000000000000000000000..30ad100ef247d0181e5945c615081a50b6876876 --- /dev/null +++ b/sys_path_hacks/studio/contentstore/rest_api/v1/tests/test_views.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.rest_api.v1.tests.test_views') + +from cms.djangoapps.contentstore.rest_api.v1.tests.test_views import * diff --git a/sys_path_hacks/studio/contentstore/rest_api/v1/urls.py b/sys_path_hacks/studio/contentstore/rest_api/v1/urls.py new file mode 100644 index 0000000000000000000000000000000000000000..da2d272576447c18948295f21d806715ae33d8ed --- /dev/null +++ b/sys_path_hacks/studio/contentstore/rest_api/v1/urls.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.rest_api.v1.urls') + +from cms.djangoapps.contentstore.rest_api.v1.urls import * diff --git a/sys_path_hacks/studio/contentstore/rest_api/v1/views.py b/sys_path_hacks/studio/contentstore/rest_api/v1/views.py new file mode 100644 index 0000000000000000000000000000000000000000..1b8971238a82adafdddd206bab6f8fcf78996198 --- /dev/null +++ b/sys_path_hacks/studio/contentstore/rest_api/v1/views.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.rest_api.v1.views') + +from cms.djangoapps.contentstore.rest_api.v1.views import * diff --git a/sys_path_hacks/studio/contentstore/rules.py b/sys_path_hacks/studio/contentstore/rules.py new file mode 100644 index 0000000000000000000000000000000000000000..d05a82bbda5c0b8cb5b87b6a3460677fcb381e22 --- /dev/null +++ b/sys_path_hacks/studio/contentstore/rules.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.rules') + +from cms.djangoapps.contentstore.rules import * diff --git a/sys_path_hacks/studio/contentstore/signals/__init__.py b/sys_path_hacks/studio/contentstore/signals/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..a0db4e23e167ac236e9681d31a28e10a99a24a64 --- /dev/null +++ b/sys_path_hacks/studio/contentstore/signals/__init__.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.signals') + +from cms.djangoapps.contentstore.signals import * diff --git a/sys_path_hacks/studio/contentstore/signals/handlers.py b/sys_path_hacks/studio/contentstore/signals/handlers.py new file mode 100644 index 0000000000000000000000000000000000000000..a3b899f650983991472422554702607e57ad6118 --- /dev/null +++ b/sys_path_hacks/studio/contentstore/signals/handlers.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.signals.handlers') + +from cms.djangoapps.contentstore.signals.handlers import * diff --git a/sys_path_hacks/studio/contentstore/signals/signals.py b/sys_path_hacks/studio/contentstore/signals/signals.py new file mode 100644 index 0000000000000000000000000000000000000000..8e1d26bffc222157473b4f7183854b4c91c7cf63 --- /dev/null +++ b/sys_path_hacks/studio/contentstore/signals/signals.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.signals.signals') + +from cms.djangoapps.contentstore.signals.signals import * diff --git a/sys_path_hacks/studio/contentstore/storage.py b/sys_path_hacks/studio/contentstore/storage.py new file mode 100644 index 0000000000000000000000000000000000000000..609fcbb435e7ac2a827af60820012f6b190d8603 --- /dev/null +++ b/sys_path_hacks/studio/contentstore/storage.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.storage') + +from cms.djangoapps.contentstore.storage import * diff --git a/sys_path_hacks/studio/contentstore/tasks.py b/sys_path_hacks/studio/contentstore/tasks.py new file mode 100644 index 0000000000000000000000000000000000000000..31e2ae6ac25ef5230570203b44d12be2281239b2 --- /dev/null +++ b/sys_path_hacks/studio/contentstore/tasks.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.tasks') + +from cms.djangoapps.contentstore.tasks import * diff --git a/sys_path_hacks/studio/contentstore/tests/__init__.py b/sys_path_hacks/studio/contentstore/tests/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..82fe98e8325fa717905fb9291bcae7c0829e87b5 --- /dev/null +++ b/sys_path_hacks/studio/contentstore/tests/__init__.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.tests') + +from cms.djangoapps.contentstore.tests import * diff --git a/sys_path_hacks/studio/contentstore/tests/test_clone_course.py b/sys_path_hacks/studio/contentstore/tests/test_clone_course.py new file mode 100644 index 0000000000000000000000000000000000000000..472a57366cbb45b7084f4efde7582f49b4b3b170 --- /dev/null +++ b/sys_path_hacks/studio/contentstore/tests/test_clone_course.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.tests.test_clone_course') + +from cms.djangoapps.contentstore.tests.test_clone_course import * diff --git a/sys_path_hacks/studio/contentstore/tests/test_contentstore.py b/sys_path_hacks/studio/contentstore/tests/test_contentstore.py new file mode 100644 index 0000000000000000000000000000000000000000..d2682b41fcd02ddc4a4aa035f985df6940259d82 --- /dev/null +++ b/sys_path_hacks/studio/contentstore/tests/test_contentstore.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.tests.test_contentstore') + +from cms.djangoapps.contentstore.tests.test_contentstore import * diff --git a/sys_path_hacks/studio/contentstore/tests/test_core_caching.py b/sys_path_hacks/studio/contentstore/tests/test_core_caching.py new file mode 100644 index 0000000000000000000000000000000000000000..ab6a6738da5ab79e1d33c097cc545d9a829c214f --- /dev/null +++ b/sys_path_hacks/studio/contentstore/tests/test_core_caching.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.tests.test_core_caching') + +from cms.djangoapps.contentstore.tests.test_core_caching import * diff --git a/sys_path_hacks/studio/contentstore/tests/test_course_create_rerun.py b/sys_path_hacks/studio/contentstore/tests/test_course_create_rerun.py new file mode 100644 index 0000000000000000000000000000000000000000..5c2357564df3185713539bbfb25723feab54cdc6 --- /dev/null +++ b/sys_path_hacks/studio/contentstore/tests/test_course_create_rerun.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.tests.test_course_create_rerun') + +from cms.djangoapps.contentstore.tests.test_course_create_rerun import * diff --git a/sys_path_hacks/studio/contentstore/tests/test_course_listing.py b/sys_path_hacks/studio/contentstore/tests/test_course_listing.py new file mode 100644 index 0000000000000000000000000000000000000000..3945ae7aa52931d66c24e25cc472ae3c0727a7e5 --- /dev/null +++ b/sys_path_hacks/studio/contentstore/tests/test_course_listing.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.tests.test_course_listing') + +from cms.djangoapps.contentstore.tests.test_course_listing import * diff --git a/sys_path_hacks/studio/contentstore/tests/test_course_settings.py b/sys_path_hacks/studio/contentstore/tests/test_course_settings.py new file mode 100644 index 0000000000000000000000000000000000000000..bbfb0b6ffda55da04adbead33088a0acc99f50c0 --- /dev/null +++ b/sys_path_hacks/studio/contentstore/tests/test_course_settings.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.tests.test_course_settings') + +from cms.djangoapps.contentstore.tests.test_course_settings import * diff --git a/sys_path_hacks/studio/contentstore/tests/test_courseware_index.py b/sys_path_hacks/studio/contentstore/tests/test_courseware_index.py new file mode 100644 index 0000000000000000000000000000000000000000..a44adceec0314febafa78da09e65e86f0dadaae2 --- /dev/null +++ b/sys_path_hacks/studio/contentstore/tests/test_courseware_index.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.tests.test_courseware_index') + +from cms.djangoapps.contentstore.tests.test_courseware_index import * diff --git a/sys_path_hacks/studio/contentstore/tests/test_crud.py b/sys_path_hacks/studio/contentstore/tests/test_crud.py new file mode 100644 index 0000000000000000000000000000000000000000..f7222be02559d2f873b548405233606ea92350d3 --- /dev/null +++ b/sys_path_hacks/studio/contentstore/tests/test_crud.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.tests.test_crud') + +from cms.djangoapps.contentstore.tests.test_crud import * diff --git a/sys_path_hacks/studio/contentstore/tests/test_export_git.py b/sys_path_hacks/studio/contentstore/tests/test_export_git.py new file mode 100644 index 0000000000000000000000000000000000000000..5980aa970d79de31dc55319990f4794f18cff8d1 --- /dev/null +++ b/sys_path_hacks/studio/contentstore/tests/test_export_git.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.tests.test_export_git') + +from cms.djangoapps.contentstore.tests.test_export_git import * diff --git a/sys_path_hacks/studio/contentstore/tests/test_gating.py b/sys_path_hacks/studio/contentstore/tests/test_gating.py new file mode 100644 index 0000000000000000000000000000000000000000..5c9f6ab9af34bd824dff119becd58aab14576274 --- /dev/null +++ b/sys_path_hacks/studio/contentstore/tests/test_gating.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.tests.test_gating') + +from cms.djangoapps.contentstore.tests.test_gating import * diff --git a/sys_path_hacks/studio/contentstore/tests/test_i18n.py b/sys_path_hacks/studio/contentstore/tests/test_i18n.py new file mode 100644 index 0000000000000000000000000000000000000000..efdda9a439e6a9eda465d005dfafeb5f0de880f1 --- /dev/null +++ b/sys_path_hacks/studio/contentstore/tests/test_i18n.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.tests.test_i18n') + +from cms.djangoapps.contentstore.tests.test_i18n import * diff --git a/sys_path_hacks/studio/contentstore/tests/test_import.py b/sys_path_hacks/studio/contentstore/tests/test_import.py new file mode 100644 index 0000000000000000000000000000000000000000..26dbf60d5f706a7e0000392f20cfd927628ad586 --- /dev/null +++ b/sys_path_hacks/studio/contentstore/tests/test_import.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.tests.test_import') + +from cms.djangoapps.contentstore.tests.test_import import * diff --git a/sys_path_hacks/studio/contentstore/tests/test_import_draft_order.py b/sys_path_hacks/studio/contentstore/tests/test_import_draft_order.py new file mode 100644 index 0000000000000000000000000000000000000000..2a5ac21a421d0fa4809d6ec54ace8abfc335ec91 --- /dev/null +++ b/sys_path_hacks/studio/contentstore/tests/test_import_draft_order.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.tests.test_import_draft_order') + +from cms.djangoapps.contentstore.tests.test_import_draft_order import * diff --git a/sys_path_hacks/studio/contentstore/tests/test_import_pure_xblock.py b/sys_path_hacks/studio/contentstore/tests/test_import_pure_xblock.py new file mode 100644 index 0000000000000000000000000000000000000000..882b01a550e771172e8f889d3e7b528024c59249 --- /dev/null +++ b/sys_path_hacks/studio/contentstore/tests/test_import_pure_xblock.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.tests.test_import_pure_xblock') + +from cms.djangoapps.contentstore.tests.test_import_pure_xblock import * diff --git a/sys_path_hacks/studio/contentstore/tests/test_libraries.py b/sys_path_hacks/studio/contentstore/tests/test_libraries.py new file mode 100644 index 0000000000000000000000000000000000000000..b89a4f0aab0b36f3a7189ef53f3893cfe7951260 --- /dev/null +++ b/sys_path_hacks/studio/contentstore/tests/test_libraries.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.tests.test_libraries') + +from cms.djangoapps.contentstore.tests.test_libraries import * diff --git a/sys_path_hacks/studio/contentstore/tests/test_orphan.py b/sys_path_hacks/studio/contentstore/tests/test_orphan.py new file mode 100644 index 0000000000000000000000000000000000000000..f9fec503033039d60aaebda11bd0cbbe2383fc0a --- /dev/null +++ b/sys_path_hacks/studio/contentstore/tests/test_orphan.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.tests.test_orphan') + +from cms.djangoapps.contentstore.tests.test_orphan import * diff --git a/sys_path_hacks/studio/contentstore/tests/test_permissions.py b/sys_path_hacks/studio/contentstore/tests/test_permissions.py new file mode 100644 index 0000000000000000000000000000000000000000..65e28ef1e65c2f9b40a88bbfedae4ebd695257fa --- /dev/null +++ b/sys_path_hacks/studio/contentstore/tests/test_permissions.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.tests.test_permissions') + +from cms.djangoapps.contentstore.tests.test_permissions import * diff --git a/sys_path_hacks/studio/contentstore/tests/test_proctoring.py b/sys_path_hacks/studio/contentstore/tests/test_proctoring.py new file mode 100644 index 0000000000000000000000000000000000000000..9aab593810f65a99f01f4c412e440a80773c6052 --- /dev/null +++ b/sys_path_hacks/studio/contentstore/tests/test_proctoring.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.tests.test_proctoring') + +from cms.djangoapps.contentstore.tests.test_proctoring import * diff --git a/sys_path_hacks/studio/contentstore/tests/test_request_event.py b/sys_path_hacks/studio/contentstore/tests/test_request_event.py new file mode 100644 index 0000000000000000000000000000000000000000..d44dbd3c88550b782fa789a4255abfe28bc661dd --- /dev/null +++ b/sys_path_hacks/studio/contentstore/tests/test_request_event.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.tests.test_request_event') + +from cms.djangoapps.contentstore.tests.test_request_event import * diff --git a/sys_path_hacks/studio/contentstore/tests/test_signals.py b/sys_path_hacks/studio/contentstore/tests/test_signals.py new file mode 100644 index 0000000000000000000000000000000000000000..47916c188d26fbed3fe7b234c10f691cf3810242 --- /dev/null +++ b/sys_path_hacks/studio/contentstore/tests/test_signals.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.tests.test_signals') + +from cms.djangoapps.contentstore.tests.test_signals import * diff --git a/sys_path_hacks/studio/contentstore/tests/test_tasks.py b/sys_path_hacks/studio/contentstore/tests/test_tasks.py new file mode 100644 index 0000000000000000000000000000000000000000..f29b4581f7a5e37084a593d175ce6084611cbfc0 --- /dev/null +++ b/sys_path_hacks/studio/contentstore/tests/test_tasks.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.tests.test_tasks') + +from cms.djangoapps.contentstore.tests.test_tasks import * diff --git a/sys_path_hacks/studio/contentstore/tests/test_transcripts_utils.py b/sys_path_hacks/studio/contentstore/tests/test_transcripts_utils.py new file mode 100644 index 0000000000000000000000000000000000000000..299566da072e9e50668c4ff2658ebfb40ba5d519 --- /dev/null +++ b/sys_path_hacks/studio/contentstore/tests/test_transcripts_utils.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.tests.test_transcripts_utils') + +from cms.djangoapps.contentstore.tests.test_transcripts_utils import * diff --git a/sys_path_hacks/studio/contentstore/tests/test_users_default_role.py b/sys_path_hacks/studio/contentstore/tests/test_users_default_role.py new file mode 100644 index 0000000000000000000000000000000000000000..7bc5142e2e5e7a400d8096c653330785ae8c541b --- /dev/null +++ b/sys_path_hacks/studio/contentstore/tests/test_users_default_role.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.tests.test_users_default_role') + +from cms.djangoapps.contentstore.tests.test_users_default_role import * diff --git a/sys_path_hacks/studio/contentstore/tests/test_utils.py b/sys_path_hacks/studio/contentstore/tests/test_utils.py new file mode 100644 index 0000000000000000000000000000000000000000..e536235cfc2ad39e923a143da70952d653a65c75 --- /dev/null +++ b/sys_path_hacks/studio/contentstore/tests/test_utils.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.tests.test_utils') + +from cms.djangoapps.contentstore.tests.test_utils import * diff --git a/sys_path_hacks/studio/contentstore/tests/test_video_utils.py b/sys_path_hacks/studio/contentstore/tests/test_video_utils.py new file mode 100644 index 0000000000000000000000000000000000000000..578f3028c94b66e5c546bea9e2b1ff0a0878d2a1 --- /dev/null +++ b/sys_path_hacks/studio/contentstore/tests/test_video_utils.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.tests.test_video_utils') + +from cms.djangoapps.contentstore.tests.test_video_utils import * diff --git a/sys_path_hacks/studio/contentstore/tests/tests.py b/sys_path_hacks/studio/contentstore/tests/tests.py new file mode 100644 index 0000000000000000000000000000000000000000..3737be5084155f0d6bc6df007d5da09fecb18d11 --- /dev/null +++ b/sys_path_hacks/studio/contentstore/tests/tests.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.tests.tests') + +from cms.djangoapps.contentstore.tests.tests import * diff --git a/sys_path_hacks/studio/contentstore/tests/utils.py b/sys_path_hacks/studio/contentstore/tests/utils.py new file mode 100644 index 0000000000000000000000000000000000000000..7fdbd4717c8f2a55bb799bdeb8ba71d968574ae8 --- /dev/null +++ b/sys_path_hacks/studio/contentstore/tests/utils.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.tests.utils') + +from cms.djangoapps.contentstore.tests.utils import * diff --git a/sys_path_hacks/studio/contentstore/utils.py b/sys_path_hacks/studio/contentstore/utils.py new file mode 100644 index 0000000000000000000000000000000000000000..17ce0658ef518555ba63da58c5d3acff57cb0876 --- /dev/null +++ b/sys_path_hacks/studio/contentstore/utils.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.utils') + +from cms.djangoapps.contentstore.utils import * diff --git a/sys_path_hacks/studio/contentstore/video_utils.py b/sys_path_hacks/studio/contentstore/video_utils.py new file mode 100644 index 0000000000000000000000000000000000000000..915d1287e67a669c35c2034034e743bf1cc143db --- /dev/null +++ b/sys_path_hacks/studio/contentstore/video_utils.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.video_utils') + +from cms.djangoapps.contentstore.video_utils import * diff --git a/sys_path_hacks/studio/contentstore/views/__init__.py b/sys_path_hacks/studio/contentstore/views/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..83dfafec700509e8b2cd743304352aee7dbbefc8 --- /dev/null +++ b/sys_path_hacks/studio/contentstore/views/__init__.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.views') + +from cms.djangoapps.contentstore.views import * diff --git a/sys_path_hacks/studio/contentstore/views/access.py b/sys_path_hacks/studio/contentstore/views/access.py new file mode 100644 index 0000000000000000000000000000000000000000..1fb76b68f233ad3bbd70c4ce151d46eb55840fda --- /dev/null +++ b/sys_path_hacks/studio/contentstore/views/access.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.views.access') + +from cms.djangoapps.contentstore.views.access import * diff --git a/sys_path_hacks/studio/contentstore/views/assets.py b/sys_path_hacks/studio/contentstore/views/assets.py new file mode 100644 index 0000000000000000000000000000000000000000..87373f76c31544361577cfd973dd59a1e1a17fd1 --- /dev/null +++ b/sys_path_hacks/studio/contentstore/views/assets.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.views.assets') + +from cms.djangoapps.contentstore.views.assets import * diff --git a/sys_path_hacks/studio/contentstore/views/certificates.py b/sys_path_hacks/studio/contentstore/views/certificates.py new file mode 100644 index 0000000000000000000000000000000000000000..65a38b533e8495c739746e03f43b2493fef90ca7 --- /dev/null +++ b/sys_path_hacks/studio/contentstore/views/certificates.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.views.certificates') + +from cms.djangoapps.contentstore.views.certificates import * diff --git a/sys_path_hacks/studio/contentstore/views/checklists.py b/sys_path_hacks/studio/contentstore/views/checklists.py new file mode 100644 index 0000000000000000000000000000000000000000..98ffb755ac566a7bfe4e164c4caed16be2f67e52 --- /dev/null +++ b/sys_path_hacks/studio/contentstore/views/checklists.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.views.checklists') + +from cms.djangoapps.contentstore.views.checklists import * diff --git a/sys_path_hacks/studio/contentstore/views/component.py b/sys_path_hacks/studio/contentstore/views/component.py new file mode 100644 index 0000000000000000000000000000000000000000..452ec574cad3505af740fa72083f6720067fa520 --- /dev/null +++ b/sys_path_hacks/studio/contentstore/views/component.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.views.component') + +from cms.djangoapps.contentstore.views.component import * diff --git a/sys_path_hacks/studio/contentstore/views/course.py b/sys_path_hacks/studio/contentstore/views/course.py new file mode 100644 index 0000000000000000000000000000000000000000..d71b9fd198e5c0d8cd92678fa9a3833ab4ca6aa1 --- /dev/null +++ b/sys_path_hacks/studio/contentstore/views/course.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.views.course') + +from cms.djangoapps.contentstore.views.course import * diff --git a/sys_path_hacks/studio/contentstore/views/dev.py b/sys_path_hacks/studio/contentstore/views/dev.py new file mode 100644 index 0000000000000000000000000000000000000000..60e3442b62b71fbe742635966c6905a65c861d78 --- /dev/null +++ b/sys_path_hacks/studio/contentstore/views/dev.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.views.dev') + +from cms.djangoapps.contentstore.views.dev import * diff --git a/sys_path_hacks/studio/contentstore/views/entrance_exam.py b/sys_path_hacks/studio/contentstore/views/entrance_exam.py new file mode 100644 index 0000000000000000000000000000000000000000..92d66d724926fa914e914f67b697388425380d4d --- /dev/null +++ b/sys_path_hacks/studio/contentstore/views/entrance_exam.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.views.entrance_exam') + +from cms.djangoapps.contentstore.views.entrance_exam import * diff --git a/sys_path_hacks/studio/contentstore/views/error.py b/sys_path_hacks/studio/contentstore/views/error.py new file mode 100644 index 0000000000000000000000000000000000000000..fa1b6c27679f12734c6fc0843c1906c8e5e3e378 --- /dev/null +++ b/sys_path_hacks/studio/contentstore/views/error.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.views.error') + +from cms.djangoapps.contentstore.views.error import * diff --git a/sys_path_hacks/studio/contentstore/views/exception.py b/sys_path_hacks/studio/contentstore/views/exception.py new file mode 100644 index 0000000000000000000000000000000000000000..ee790ee98a6476fe50e52e1c20843f569c1cebf5 --- /dev/null +++ b/sys_path_hacks/studio/contentstore/views/exception.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.views.exception') + +from cms.djangoapps.contentstore.views.exception import * diff --git a/sys_path_hacks/studio/contentstore/views/export_git.py b/sys_path_hacks/studio/contentstore/views/export_git.py new file mode 100644 index 0000000000000000000000000000000000000000..91f35e51971737bed189c11c6361db0451970d2c --- /dev/null +++ b/sys_path_hacks/studio/contentstore/views/export_git.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.views.export_git') + +from cms.djangoapps.contentstore.views.export_git import * diff --git a/sys_path_hacks/studio/contentstore/views/helpers.py b/sys_path_hacks/studio/contentstore/views/helpers.py new file mode 100644 index 0000000000000000000000000000000000000000..9591975042f356e47714f301e7817a7d60dc48ba --- /dev/null +++ b/sys_path_hacks/studio/contentstore/views/helpers.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.views.helpers') + +from cms.djangoapps.contentstore.views.helpers import * diff --git a/sys_path_hacks/studio/contentstore/views/import_export.py b/sys_path_hacks/studio/contentstore/views/import_export.py new file mode 100644 index 0000000000000000000000000000000000000000..3e41e99c69266e56420bd11b569e4d8c62ff27f2 --- /dev/null +++ b/sys_path_hacks/studio/contentstore/views/import_export.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.views.import_export') + +from cms.djangoapps.contentstore.views.import_export import * diff --git a/sys_path_hacks/studio/contentstore/views/item.py b/sys_path_hacks/studio/contentstore/views/item.py new file mode 100644 index 0000000000000000000000000000000000000000..cc7d83acd6b5b0ecee31888037a6d666c88c7596 --- /dev/null +++ b/sys_path_hacks/studio/contentstore/views/item.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.views.item') + +from cms.djangoapps.contentstore.views.item import * diff --git a/sys_path_hacks/studio/contentstore/views/library.py b/sys_path_hacks/studio/contentstore/views/library.py new file mode 100644 index 0000000000000000000000000000000000000000..8adabe61d8d9983b225ece6793aaf65ab7b6bdcb --- /dev/null +++ b/sys_path_hacks/studio/contentstore/views/library.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.views.library') + +from cms.djangoapps.contentstore.views.library import * diff --git a/sys_path_hacks/studio/contentstore/views/organization.py b/sys_path_hacks/studio/contentstore/views/organization.py new file mode 100644 index 0000000000000000000000000000000000000000..ab08006a336be962161cd8c5fc05b4e5df77aea7 --- /dev/null +++ b/sys_path_hacks/studio/contentstore/views/organization.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.views.organization') + +from cms.djangoapps.contentstore.views.organization import * diff --git a/sys_path_hacks/studio/contentstore/views/preview.py b/sys_path_hacks/studio/contentstore/views/preview.py new file mode 100644 index 0000000000000000000000000000000000000000..2886d9ef16ce0de7f413b140e482c29d5913bf9e --- /dev/null +++ b/sys_path_hacks/studio/contentstore/views/preview.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.views.preview') + +from cms.djangoapps.contentstore.views.preview import * diff --git a/sys_path_hacks/studio/contentstore/views/public.py b/sys_path_hacks/studio/contentstore/views/public.py new file mode 100644 index 0000000000000000000000000000000000000000..2b5c45e02873cba7871c7a381fdde6f98d52d0ca --- /dev/null +++ b/sys_path_hacks/studio/contentstore/views/public.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.views.public') + +from cms.djangoapps.contentstore.views.public import * diff --git a/sys_path_hacks/studio/contentstore/views/session_kv_store.py b/sys_path_hacks/studio/contentstore/views/session_kv_store.py new file mode 100644 index 0000000000000000000000000000000000000000..313a249a7ed944a98bec756ab0348ca224eef272 --- /dev/null +++ b/sys_path_hacks/studio/contentstore/views/session_kv_store.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.views.session_kv_store') + +from cms.djangoapps.contentstore.views.session_kv_store import * diff --git a/sys_path_hacks/studio/contentstore/views/tabs.py b/sys_path_hacks/studio/contentstore/views/tabs.py new file mode 100644 index 0000000000000000000000000000000000000000..2965857154ae22156d16cb63c73c443a36f7d86b --- /dev/null +++ b/sys_path_hacks/studio/contentstore/views/tabs.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.views.tabs') + +from cms.djangoapps.contentstore.views.tabs import * diff --git a/sys_path_hacks/studio/contentstore/views/tests/__init__.py b/sys_path_hacks/studio/contentstore/views/tests/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..6902d910a9e9545083afddd10acb1ee9cd762dc6 --- /dev/null +++ b/sys_path_hacks/studio/contentstore/views/tests/__init__.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.views.tests') + +from cms.djangoapps.contentstore.views.tests import * diff --git a/sys_path_hacks/studio/contentstore/views/tests/test_access.py b/sys_path_hacks/studio/contentstore/views/tests/test_access.py new file mode 100644 index 0000000000000000000000000000000000000000..be0de443ec4e089ac04efd1a50f4f7cdf973cd4b --- /dev/null +++ b/sys_path_hacks/studio/contentstore/views/tests/test_access.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.views.tests.test_access') + +from cms.djangoapps.contentstore.views.tests.test_access import * diff --git a/sys_path_hacks/studio/contentstore/views/tests/test_assets.py b/sys_path_hacks/studio/contentstore/views/tests/test_assets.py new file mode 100644 index 0000000000000000000000000000000000000000..28a7c5402de7e5b5feac40e2bc78c2283fb91ca7 --- /dev/null +++ b/sys_path_hacks/studio/contentstore/views/tests/test_assets.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.views.tests.test_assets') + +from cms.djangoapps.contentstore.views.tests.test_assets import * diff --git a/sys_path_hacks/studio/contentstore/views/tests/test_certificates.py b/sys_path_hacks/studio/contentstore/views/tests/test_certificates.py new file mode 100644 index 0000000000000000000000000000000000000000..f3a4d1f01ba90d87d852fa9aa44d780a84521627 --- /dev/null +++ b/sys_path_hacks/studio/contentstore/views/tests/test_certificates.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.views.tests.test_certificates') + +from cms.djangoapps.contentstore.views.tests.test_certificates import * diff --git a/sys_path_hacks/studio/contentstore/views/tests/test_container_page.py b/sys_path_hacks/studio/contentstore/views/tests/test_container_page.py new file mode 100644 index 0000000000000000000000000000000000000000..05f7173f3da7c3b1cc02d1f7b9890d361afa859c --- /dev/null +++ b/sys_path_hacks/studio/contentstore/views/tests/test_container_page.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.views.tests.test_container_page') + +from cms.djangoapps.contentstore.views.tests.test_container_page import * diff --git a/sys_path_hacks/studio/contentstore/views/tests/test_course_index.py b/sys_path_hacks/studio/contentstore/views/tests/test_course_index.py new file mode 100644 index 0000000000000000000000000000000000000000..4ba23d7b9e7294b41a33d3a2e7cd3027c53b7ecc --- /dev/null +++ b/sys_path_hacks/studio/contentstore/views/tests/test_course_index.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.views.tests.test_course_index') + +from cms.djangoapps.contentstore.views.tests.test_course_index import * diff --git a/sys_path_hacks/studio/contentstore/views/tests/test_course_updates.py b/sys_path_hacks/studio/contentstore/views/tests/test_course_updates.py new file mode 100644 index 0000000000000000000000000000000000000000..0ddb0d0cae71d396489f89c99fe21e1a8e049f89 --- /dev/null +++ b/sys_path_hacks/studio/contentstore/views/tests/test_course_updates.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.views.tests.test_course_updates') + +from cms.djangoapps.contentstore.views.tests.test_course_updates import * diff --git a/sys_path_hacks/studio/contentstore/views/tests/test_credit_eligibility.py b/sys_path_hacks/studio/contentstore/views/tests/test_credit_eligibility.py new file mode 100644 index 0000000000000000000000000000000000000000..5dd70de927bd2b8905f237d3898ece8c084ce5f7 --- /dev/null +++ b/sys_path_hacks/studio/contentstore/views/tests/test_credit_eligibility.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.views.tests.test_credit_eligibility') + +from cms.djangoapps.contentstore.views.tests.test_credit_eligibility import * diff --git a/sys_path_hacks/studio/contentstore/views/tests/test_entrance_exam.py b/sys_path_hacks/studio/contentstore/views/tests/test_entrance_exam.py new file mode 100644 index 0000000000000000000000000000000000000000..188d71d526dda9f99f0353cbae6aace98e730700 --- /dev/null +++ b/sys_path_hacks/studio/contentstore/views/tests/test_entrance_exam.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.views.tests.test_entrance_exam') + +from cms.djangoapps.contentstore.views.tests.test_entrance_exam import * diff --git a/sys_path_hacks/studio/contentstore/views/tests/test_exam_settings_view.py b/sys_path_hacks/studio/contentstore/views/tests/test_exam_settings_view.py new file mode 100644 index 0000000000000000000000000000000000000000..0c9476b205900041a494a472b9742cfc482e64a7 --- /dev/null +++ b/sys_path_hacks/studio/contentstore/views/tests/test_exam_settings_view.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.views.tests.test_exam_settings_view') + +from cms.djangoapps.contentstore.views.tests.test_exam_settings_view import * diff --git a/sys_path_hacks/studio/contentstore/views/tests/test_gating.py b/sys_path_hacks/studio/contentstore/views/tests/test_gating.py new file mode 100644 index 0000000000000000000000000000000000000000..a45c18f6409b06fbd776bc7ca7abf7a82f6baa03 --- /dev/null +++ b/sys_path_hacks/studio/contentstore/views/tests/test_gating.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.views.tests.test_gating') + +from cms.djangoapps.contentstore.views.tests.test_gating import * diff --git a/sys_path_hacks/studio/contentstore/views/tests/test_group_configurations.py b/sys_path_hacks/studio/contentstore/views/tests/test_group_configurations.py new file mode 100644 index 0000000000000000000000000000000000000000..24ab27dfe4746c934766203845226ecb9560c78d --- /dev/null +++ b/sys_path_hacks/studio/contentstore/views/tests/test_group_configurations.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.views.tests.test_group_configurations') + +from cms.djangoapps.contentstore.views.tests.test_group_configurations import * diff --git a/sys_path_hacks/studio/contentstore/views/tests/test_header_menu.py b/sys_path_hacks/studio/contentstore/views/tests/test_header_menu.py new file mode 100644 index 0000000000000000000000000000000000000000..0baaf969f4c3ba737774b3ddf76f0e068d668ce0 --- /dev/null +++ b/sys_path_hacks/studio/contentstore/views/tests/test_header_menu.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.views.tests.test_header_menu') + +from cms.djangoapps.contentstore.views.tests.test_header_menu import * diff --git a/sys_path_hacks/studio/contentstore/views/tests/test_helpers.py b/sys_path_hacks/studio/contentstore/views/tests/test_helpers.py new file mode 100644 index 0000000000000000000000000000000000000000..390d8f0514fdc592d93283bfd08053ae95ac463a --- /dev/null +++ b/sys_path_hacks/studio/contentstore/views/tests/test_helpers.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.views.tests.test_helpers') + +from cms.djangoapps.contentstore.views.tests.test_helpers import * diff --git a/sys_path_hacks/studio/contentstore/views/tests/test_import_export.py b/sys_path_hacks/studio/contentstore/views/tests/test_import_export.py new file mode 100644 index 0000000000000000000000000000000000000000..bafd3658eec0f9a5c4f68c8d918eb7e1697f6fff --- /dev/null +++ b/sys_path_hacks/studio/contentstore/views/tests/test_import_export.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.views.tests.test_import_export') + +from cms.djangoapps.contentstore.views.tests.test_import_export import * diff --git a/sys_path_hacks/studio/contentstore/views/tests/test_item.py b/sys_path_hacks/studio/contentstore/views/tests/test_item.py new file mode 100644 index 0000000000000000000000000000000000000000..80855751293939671f4b2de86ae101db1d1a2253 --- /dev/null +++ b/sys_path_hacks/studio/contentstore/views/tests/test_item.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.views.tests.test_item') + +from cms.djangoapps.contentstore.views.tests.test_item import * diff --git a/sys_path_hacks/studio/contentstore/views/tests/test_library.py b/sys_path_hacks/studio/contentstore/views/tests/test_library.py new file mode 100644 index 0000000000000000000000000000000000000000..e7370aa2cbd68a5aa167b56852942fa4f075beb7 --- /dev/null +++ b/sys_path_hacks/studio/contentstore/views/tests/test_library.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.views.tests.test_library') + +from cms.djangoapps.contentstore.views.tests.test_library import * diff --git a/sys_path_hacks/studio/contentstore/views/tests/test_organizations.py b/sys_path_hacks/studio/contentstore/views/tests/test_organizations.py new file mode 100644 index 0000000000000000000000000000000000000000..c68647a8d4124c884587bb7a30ec46cc06806ff4 --- /dev/null +++ b/sys_path_hacks/studio/contentstore/views/tests/test_organizations.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.views.tests.test_organizations') + +from cms.djangoapps.contentstore.views.tests.test_organizations import * diff --git a/sys_path_hacks/studio/contentstore/views/tests/test_preview.py b/sys_path_hacks/studio/contentstore/views/tests/test_preview.py new file mode 100644 index 0000000000000000000000000000000000000000..db6e5ea2bdac91866dc9af87d7957a0c9d682566 --- /dev/null +++ b/sys_path_hacks/studio/contentstore/views/tests/test_preview.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.views.tests.test_preview') + +from cms.djangoapps.contentstore.views.tests.test_preview import * diff --git a/sys_path_hacks/studio/contentstore/views/tests/test_tabs.py b/sys_path_hacks/studio/contentstore/views/tests/test_tabs.py new file mode 100644 index 0000000000000000000000000000000000000000..433940a5a5e1b52f1ab9f64e5382faf80f9dca0e --- /dev/null +++ b/sys_path_hacks/studio/contentstore/views/tests/test_tabs.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.views.tests.test_tabs') + +from cms.djangoapps.contentstore.views.tests.test_tabs import * diff --git a/sys_path_hacks/studio/contentstore/views/tests/test_textbooks.py b/sys_path_hacks/studio/contentstore/views/tests/test_textbooks.py new file mode 100644 index 0000000000000000000000000000000000000000..049b47466f074a4c6bc9eb798267db6eddf7f55a --- /dev/null +++ b/sys_path_hacks/studio/contentstore/views/tests/test_textbooks.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.views.tests.test_textbooks') + +from cms.djangoapps.contentstore.views.tests.test_textbooks import * diff --git a/sys_path_hacks/studio/contentstore/views/tests/test_transcript_settings.py b/sys_path_hacks/studio/contentstore/views/tests/test_transcript_settings.py new file mode 100644 index 0000000000000000000000000000000000000000..f985190ec5bb644236f6e0f203f9c7bdaebe40d2 --- /dev/null +++ b/sys_path_hacks/studio/contentstore/views/tests/test_transcript_settings.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.views.tests.test_transcript_settings') + +from cms.djangoapps.contentstore.views.tests.test_transcript_settings import * diff --git a/sys_path_hacks/studio/contentstore/views/tests/test_transcripts.py b/sys_path_hacks/studio/contentstore/views/tests/test_transcripts.py new file mode 100644 index 0000000000000000000000000000000000000000..2c6a4ae7f7a09014e0b8f41916f03ea90c92cffe --- /dev/null +++ b/sys_path_hacks/studio/contentstore/views/tests/test_transcripts.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.views.tests.test_transcripts') + +from cms.djangoapps.contentstore.views.tests.test_transcripts import * diff --git a/sys_path_hacks/studio/contentstore/views/tests/test_unit_page.py b/sys_path_hacks/studio/contentstore/views/tests/test_unit_page.py new file mode 100644 index 0000000000000000000000000000000000000000..11af6c2fe541a8d26d92d3923b8512a3b1ef0115 --- /dev/null +++ b/sys_path_hacks/studio/contentstore/views/tests/test_unit_page.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.views.tests.test_unit_page') + +from cms.djangoapps.contentstore.views.tests.test_unit_page import * diff --git a/sys_path_hacks/studio/contentstore/views/tests/test_user.py b/sys_path_hacks/studio/contentstore/views/tests/test_user.py new file mode 100644 index 0000000000000000000000000000000000000000..a3b5609ffb290ac9e0c796f3dab3b105f2955f32 --- /dev/null +++ b/sys_path_hacks/studio/contentstore/views/tests/test_user.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.views.tests.test_user') + +from cms.djangoapps.contentstore.views.tests.test_user import * diff --git a/sys_path_hacks/studio/contentstore/views/tests/test_videos.py b/sys_path_hacks/studio/contentstore/views/tests/test_videos.py new file mode 100644 index 0000000000000000000000000000000000000000..4a64e738c3fd1224d4bfb6993358c08836a92c01 --- /dev/null +++ b/sys_path_hacks/studio/contentstore/views/tests/test_videos.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.views.tests.test_videos') + +from cms.djangoapps.contentstore.views.tests.test_videos import * diff --git a/sys_path_hacks/studio/contentstore/views/tests/utils.py b/sys_path_hacks/studio/contentstore/views/tests/utils.py new file mode 100644 index 0000000000000000000000000000000000000000..2170d0a5f750a97aed8330bebde8de7e0d4743ab --- /dev/null +++ b/sys_path_hacks/studio/contentstore/views/tests/utils.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.views.tests.utils') + +from cms.djangoapps.contentstore.views.tests.utils import * diff --git a/sys_path_hacks/studio/contentstore/views/transcript_settings.py b/sys_path_hacks/studio/contentstore/views/transcript_settings.py new file mode 100644 index 0000000000000000000000000000000000000000..358d7852bc7b640968cf5faabdb072764001a8b7 --- /dev/null +++ b/sys_path_hacks/studio/contentstore/views/transcript_settings.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.views.transcript_settings') + +from cms.djangoapps.contentstore.views.transcript_settings import * diff --git a/sys_path_hacks/studio/contentstore/views/transcripts_ajax.py b/sys_path_hacks/studio/contentstore/views/transcripts_ajax.py new file mode 100644 index 0000000000000000000000000000000000000000..a66dcf72e8765c52a4d7420570bd18c9d609e4d0 --- /dev/null +++ b/sys_path_hacks/studio/contentstore/views/transcripts_ajax.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.views.transcripts_ajax') + +from cms.djangoapps.contentstore.views.transcripts_ajax import * diff --git a/sys_path_hacks/studio/contentstore/views/user.py b/sys_path_hacks/studio/contentstore/views/user.py new file mode 100644 index 0000000000000000000000000000000000000000..5284657469a79d59e5c1f4043832ff71abf9542e --- /dev/null +++ b/sys_path_hacks/studio/contentstore/views/user.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.views.user') + +from cms.djangoapps.contentstore.views.user import * diff --git a/sys_path_hacks/studio/contentstore/views/videos.py b/sys_path_hacks/studio/contentstore/views/videos.py new file mode 100644 index 0000000000000000000000000000000000000000..c9a70facb951d146e06321818b58bfdf397d112b --- /dev/null +++ b/sys_path_hacks/studio/contentstore/views/videos.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'contentstore.views.videos') + +from cms.djangoapps.contentstore.views.videos import * diff --git a/sys_path_hacks/studio/course_creators/__init__.py b/sys_path_hacks/studio/course_creators/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..efa33f81664b6561d0131b0970f600790574d181 --- /dev/null +++ b/sys_path_hacks/studio/course_creators/__init__.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'course_creators') + +from cms.djangoapps.course_creators import * diff --git a/sys_path_hacks/studio/course_creators/admin.py b/sys_path_hacks/studio/course_creators/admin.py new file mode 100644 index 0000000000000000000000000000000000000000..a2070a0ea105cbde4df11d4bf9148ac2cf4824a5 --- /dev/null +++ b/sys_path_hacks/studio/course_creators/admin.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'course_creators.admin') + +from cms.djangoapps.course_creators.admin import * diff --git a/sys_path_hacks/studio/course_creators/models.py b/sys_path_hacks/studio/course_creators/models.py new file mode 100644 index 0000000000000000000000000000000000000000..6da0d1e522dd2370fad5a8ac10a3c1c43ee32318 --- /dev/null +++ b/sys_path_hacks/studio/course_creators/models.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'course_creators.models') + +from cms.djangoapps.course_creators.models import * diff --git a/sys_path_hacks/studio/course_creators/tests/__init__.py b/sys_path_hacks/studio/course_creators/tests/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..4e4ba40b989891864b20198d150f06097fde3923 --- /dev/null +++ b/sys_path_hacks/studio/course_creators/tests/__init__.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'course_creators.tests') + +from cms.djangoapps.course_creators.tests import * diff --git a/sys_path_hacks/studio/course_creators/tests/test_admin.py b/sys_path_hacks/studio/course_creators/tests/test_admin.py new file mode 100644 index 0000000000000000000000000000000000000000..6381a6a73e4594d176895c038b494fe0e01604a7 --- /dev/null +++ b/sys_path_hacks/studio/course_creators/tests/test_admin.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'course_creators.tests.test_admin') + +from cms.djangoapps.course_creators.tests.test_admin import * diff --git a/sys_path_hacks/studio/course_creators/tests/test_views.py b/sys_path_hacks/studio/course_creators/tests/test_views.py new file mode 100644 index 0000000000000000000000000000000000000000..922ee43f7fa365bc31a5ecd32b41194aa67db24f --- /dev/null +++ b/sys_path_hacks/studio/course_creators/tests/test_views.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'course_creators.tests.test_views') + +from cms.djangoapps.course_creators.tests.test_views import * diff --git a/sys_path_hacks/studio/course_creators/views.py b/sys_path_hacks/studio/course_creators/views.py new file mode 100644 index 0000000000000000000000000000000000000000..5e6c3e3be184e6ebdbdd440349e9fc8a0a250fbc --- /dev/null +++ b/sys_path_hacks/studio/course_creators/views.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'course_creators.views') + +from cms.djangoapps.course_creators.views import * diff --git a/sys_path_hacks/studio/maintenance/__init__.py b/sys_path_hacks/studio/maintenance/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..f440425969f54d3d52d39de5bf98f37eb923b5df --- /dev/null +++ b/sys_path_hacks/studio/maintenance/__init__.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'maintenance') + +from cms.djangoapps.maintenance import * diff --git a/sys_path_hacks/studio/maintenance/tests.py b/sys_path_hacks/studio/maintenance/tests.py new file mode 100644 index 0000000000000000000000000000000000000000..8d733cc5901422df74b337c598c588d78d0eac42 --- /dev/null +++ b/sys_path_hacks/studio/maintenance/tests.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'maintenance.tests') + +from cms.djangoapps.maintenance.tests import * diff --git a/sys_path_hacks/studio/maintenance/urls.py b/sys_path_hacks/studio/maintenance/urls.py new file mode 100644 index 0000000000000000000000000000000000000000..97a925210e8e3b8b618e5f5c257167670c3ec48c --- /dev/null +++ b/sys_path_hacks/studio/maintenance/urls.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'maintenance.urls') + +from cms.djangoapps.maintenance.urls import * diff --git a/sys_path_hacks/studio/maintenance/views.py b/sys_path_hacks/studio/maintenance/views.py new file mode 100644 index 0000000000000000000000000000000000000000..dc745f496ed50fd7a340ff65b8db4adc1ce46612 --- /dev/null +++ b/sys_path_hacks/studio/maintenance/views.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'maintenance.views') + +from cms.djangoapps.maintenance.views import * diff --git a/sys_path_hacks/studio/models/__init__.py b/sys_path_hacks/studio/models/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..2a594c5da6c135661913557bd1da41b1c8256287 --- /dev/null +++ b/sys_path_hacks/studio/models/__init__.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'models') + +from cms.djangoapps.models import * diff --git a/sys_path_hacks/studio/models/settings/__init__.py b/sys_path_hacks/studio/models/settings/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..951f5ddac9c885e718f854f3e3d98ed7c2ae718c --- /dev/null +++ b/sys_path_hacks/studio/models/settings/__init__.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'models.settings') + +from cms.djangoapps.models.settings import * diff --git a/sys_path_hacks/studio/models/settings/course_grading.py b/sys_path_hacks/studio/models/settings/course_grading.py new file mode 100644 index 0000000000000000000000000000000000000000..045cf55b9714643251201dd5433f9e531feec23f --- /dev/null +++ b/sys_path_hacks/studio/models/settings/course_grading.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'models.settings.course_grading') + +from cms.djangoapps.models.settings.course_grading import * diff --git a/sys_path_hacks/studio/models/settings/course_metadata.py b/sys_path_hacks/studio/models/settings/course_metadata.py new file mode 100644 index 0000000000000000000000000000000000000000..6e5a528495cfd17e52ba2e61ee0fa822cc600592 --- /dev/null +++ b/sys_path_hacks/studio/models/settings/course_metadata.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'models.settings.course_metadata') + +from cms.djangoapps.models.settings.course_metadata import * diff --git a/sys_path_hacks/studio/models/settings/encoder.py b/sys_path_hacks/studio/models/settings/encoder.py new file mode 100644 index 0000000000000000000000000000000000000000..807262a3d7847a40c227d07093d9b863746f0bbb --- /dev/null +++ b/sys_path_hacks/studio/models/settings/encoder.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'models.settings.encoder') + +from cms.djangoapps.models.settings.encoder import * diff --git a/sys_path_hacks/studio/models/settings/tests/test_settings.py b/sys_path_hacks/studio/models/settings/tests/test_settings.py new file mode 100644 index 0000000000000000000000000000000000000000..aa34a444c12e3213f2e6e52fafc0419f252c2ad7 --- /dev/null +++ b/sys_path_hacks/studio/models/settings/tests/test_settings.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'models.settings.tests.test_settings') + +from cms.djangoapps.models.settings.tests.test_settings import * diff --git a/sys_path_hacks/studio/models/settings/waffle.py b/sys_path_hacks/studio/models/settings/waffle.py new file mode 100644 index 0000000000000000000000000000000000000000..6729d04edcc6f834bdc16662e5f8556b4cc8c2dd --- /dev/null +++ b/sys_path_hacks/studio/models/settings/waffle.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'models.settings.waffle') + +from cms.djangoapps.models.settings.waffle import * diff --git a/sys_path_hacks/studio/pipeline_js/__init__.py b/sys_path_hacks/studio/pipeline_js/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..55b3d11f3927cf04ab677c673ddd6f95d3fe7f6d --- /dev/null +++ b/sys_path_hacks/studio/pipeline_js/__init__.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'pipeline_js') + +from cms.djangoapps.pipeline_js import * diff --git a/sys_path_hacks/studio/pipeline_js/utils.py b/sys_path_hacks/studio/pipeline_js/utils.py new file mode 100644 index 0000000000000000000000000000000000000000..e225509172b91424419f7e2d5ef695c4bcdc1f01 --- /dev/null +++ b/sys_path_hacks/studio/pipeline_js/utils.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'pipeline_js.utils') + +from cms.djangoapps.pipeline_js.utils import * diff --git a/sys_path_hacks/studio/xblock_config/__init__.py b/sys_path_hacks/studio/xblock_config/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..7ddbe458342ae92686e9c3464905ad1384873fc6 --- /dev/null +++ b/sys_path_hacks/studio/xblock_config/__init__.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'xblock_config') + +from cms.djangoapps.xblock_config import * diff --git a/sys_path_hacks/studio/xblock_config/admin.py b/sys_path_hacks/studio/xblock_config/admin.py new file mode 100644 index 0000000000000000000000000000000000000000..737dda1d56fefb7c93c2523ef26683d79b316915 --- /dev/null +++ b/sys_path_hacks/studio/xblock_config/admin.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'xblock_config.admin') + +from cms.djangoapps.xblock_config.admin import * diff --git a/sys_path_hacks/studio/xblock_config/apps.py b/sys_path_hacks/studio/xblock_config/apps.py new file mode 100644 index 0000000000000000000000000000000000000000..94b884697884e60eb797625e97893d668b3bb057 --- /dev/null +++ b/sys_path_hacks/studio/xblock_config/apps.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'xblock_config.apps') + +from cms.djangoapps.xblock_config.apps import * diff --git a/sys_path_hacks/studio/xblock_config/forms.py b/sys_path_hacks/studio/xblock_config/forms.py new file mode 100644 index 0000000000000000000000000000000000000000..22f9962cc14d815b3205bc48b0ebbc6b95f19945 --- /dev/null +++ b/sys_path_hacks/studio/xblock_config/forms.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'xblock_config.forms') + +from cms.djangoapps.xblock_config.forms import * diff --git a/sys_path_hacks/studio/xblock_config/models.py b/sys_path_hacks/studio/xblock_config/models.py new file mode 100644 index 0000000000000000000000000000000000000000..a39b37f504b2e5f260790c3d7edc460094b5eb65 --- /dev/null +++ b/sys_path_hacks/studio/xblock_config/models.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'xblock_config.models') + +from cms.djangoapps.xblock_config.models import * diff --git a/sys_path_hacks/studio/xblock_config/tests/__init__.py b/sys_path_hacks/studio/xblock_config/tests/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..f7aeb3746d35c6fe303498bb8ccb075c67a5b081 --- /dev/null +++ b/sys_path_hacks/studio/xblock_config/tests/__init__.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'xblock_config.tests') + +from cms.djangoapps.xblock_config.tests import * diff --git a/sys_path_hacks/studio/xblock_config/tests/test_models.py b/sys_path_hacks/studio/xblock_config/tests/test_models.py new file mode 100644 index 0000000000000000000000000000000000000000..f709528efba338396715003665083a65f7d77569 --- /dev/null +++ b/sys_path_hacks/studio/xblock_config/tests/test_models.py @@ -0,0 +1,5 @@ +from sys_path_hacks.warn import warn_deprecated_import + +warn_deprecated_import('cms.djangoapps', 'xblock_config.tests.test_models') + +from cms.djangoapps.xblock_config.tests.test_models import *