From bc8987f6850c233d2343224f8b98865d4d606562 Mon Sep 17 00:00:00 2001 From: Kyle McCormick <kmccormick@edx.org> Date: Sun, 18 Oct 2020 18:41:09 -0400 Subject: [PATCH] Generate sys_path_hacks/ modules for cms/djangoapps Run 'sys_path_hacks/un_sys_path.sh cms/djangoapps studio' --- sys_path_hacks/studio/api/__init__.py | 5 +++++ sys_path_hacks/studio/api/apps.py | 5 +++++ sys_path_hacks/studio/api/urls.py | 5 +++++ sys_path_hacks/studio/api/v1/__init__.py | 5 +++++ sys_path_hacks/studio/api/v1/serializers/__init__.py | 5 +++++ sys_path_hacks/studio/api/v1/serializers/course_runs.py | 5 +++++ sys_path_hacks/studio/api/v1/tests/__init__.py | 5 +++++ .../studio/api/v1/tests/test_serializers/__init__.py | 5 +++++ .../studio/api/v1/tests/test_serializers/test_course_runs.py | 5 +++++ sys_path_hacks/studio/api/v1/tests/test_views/__init__.py | 5 +++++ .../studio/api/v1/tests/test_views/test_course_runs.py | 5 +++++ sys_path_hacks/studio/api/v1/tests/utils.py | 5 +++++ sys_path_hacks/studio/api/v1/urls.py | 5 +++++ sys_path_hacks/studio/api/v1/views/__init__.py | 5 +++++ sys_path_hacks/studio/api/v1/views/course_runs.py | 5 +++++ sys_path_hacks/studio/cms_user_tasks/__init__.py | 5 +++++ sys_path_hacks/studio/cms_user_tasks/apps.py | 5 +++++ sys_path_hacks/studio/cms_user_tasks/signals.py | 5 +++++ sys_path_hacks/studio/cms_user_tasks/tasks.py | 5 +++++ sys_path_hacks/studio/cms_user_tasks/tests.py | 5 +++++ sys_path_hacks/studio/contentstore/__init__.py | 5 +++++ sys_path_hacks/studio/contentstore/admin.py | 5 +++++ sys_path_hacks/studio/contentstore/api/__init__.py | 5 +++++ sys_path_hacks/studio/contentstore/api/tests/__init__.py | 5 +++++ sys_path_hacks/studio/contentstore/api/tests/base.py | 5 +++++ sys_path_hacks/studio/contentstore/api/tests/test_import.py | 5 +++++ sys_path_hacks/studio/contentstore/api/tests/test_quality.py | 5 +++++ .../studio/contentstore/api/tests/test_validation.py | 5 +++++ sys_path_hacks/studio/contentstore/api/urls.py | 5 +++++ sys_path_hacks/studio/contentstore/api/views/__init__.py | 5 +++++ .../studio/contentstore/api/views/course_import.py | 5 +++++ .../studio/contentstore/api/views/course_quality.py | 5 +++++ .../studio/contentstore/api/views/course_validation.py | 5 +++++ sys_path_hacks/studio/contentstore/api/views/utils.py | 5 +++++ sys_path_hacks/studio/contentstore/apps.py | 5 +++++ sys_path_hacks/studio/contentstore/config/__init__.py | 5 +++++ sys_path_hacks/studio/contentstore/config/tests/__init__.py | 5 +++++ sys_path_hacks/studio/contentstore/config/waffle.py | 5 +++++ sys_path_hacks/studio/contentstore/config/waffle_utils.py | 5 +++++ sys_path_hacks/studio/contentstore/course_group_config.py | 5 +++++ sys_path_hacks/studio/contentstore/course_info_model.py | 5 +++++ sys_path_hacks/studio/contentstore/courseware_index.py | 5 +++++ sys_path_hacks/studio/contentstore/debug_file_uploader.py | 5 +++++ sys_path_hacks/studio/contentstore/git_export_utils.py | 5 +++++ sys_path_hacks/studio/contentstore/management/__init__.py | 5 +++++ .../studio/contentstore/management/commands/__init__.py | 5 +++++ .../contentstore/management/commands/clean_cert_name.py | 5 +++++ .../contentstore/management/commands/cleanup_assets.py | 5 +++++ .../studio/contentstore/management/commands/create_course.py | 5 +++++ .../studio/contentstore/management/commands/delete_course.py | 5 +++++ .../contentstore/management/commands/delete_orphans.py | 5 +++++ .../contentstore/management/commands/edit_course_tabs.py | 5 +++++ .../contentstore/management/commands/empty_asset_trashcan.py | 5 +++++ .../studio/contentstore/management/commands/export.py | 5 +++++ .../contentstore/management/commands/export_all_courses.py | 5 +++++ .../management/commands/export_content_library.py | 5 +++++ .../studio/contentstore/management/commands/export_olx.py | 5 +++++ .../studio/contentstore/management/commands/fix_not_found.py | 5 +++++ .../studio/contentstore/management/commands/force_publish.py | 5 +++++ .../contentstore/management/commands/generate_courses.py | 5 +++++ .../studio/contentstore/management/commands/git_export.py | 5 +++++ .../management/commands/import_content_library.py | 5 +++++ .../contentstore/management/commands/migrate_to_split.py | 5 +++++ .../studio/contentstore/management/commands/prompt.py | 5 +++++ .../contentstore/management/commands/reindex_course.py | 5 +++++ .../contentstore/management/commands/reindex_library.py | 5 +++++ .../management/commands/restore_asset_from_trashcan.py | 5 +++++ .../studio/contentstore/management/commands/sync_courses.py | 5 +++++ .../contentstore/management/commands/tests/__init__.py | 5 +++++ .../management/commands/tests/test_cleanup_assets.py | 5 +++++ .../management/commands/tests/test_create_course.py | 5 +++++ .../management/commands/tests/test_delete_course.py | 5 +++++ .../management/commands/tests/test_delete_orphans.py | 5 +++++ .../contentstore/management/commands/tests/test_export.py | 5 +++++ .../management/commands/tests/test_export_all_courses.py | 5 +++++ .../management/commands/tests/test_export_olx.py | 5 +++++ .../management/commands/tests/test_fix_not_found.py | 5 +++++ .../management/commands/tests/test_force_publish.py | 5 +++++ .../management/commands/tests/test_generate_courses.py | 5 +++++ .../management/commands/tests/test_git_export.py | 5 +++++ .../contentstore/management/commands/tests/test_import.py | 5 +++++ .../management/commands/tests/test_migrate_to_split.py | 5 +++++ .../management/commands/tests/test_reindex_courses.py | 5 +++++ .../management/commands/tests/test_reindex_library.py | 5 +++++ .../management/commands/tests/test_sync_courses.py | 5 +++++ .../studio/contentstore/management/commands/utils.py | 5 +++++ .../studio/contentstore/management/commands/xlint.py | 5 +++++ sys_path_hacks/studio/contentstore/models.py | 5 +++++ sys_path_hacks/studio/contentstore/proctoring.py | 5 +++++ sys_path_hacks/studio/contentstore/rest_api/__init__.py | 5 +++++ sys_path_hacks/studio/contentstore/rest_api/urls.py | 5 +++++ .../studio/contentstore/rest_api/v1/serializers.py | 5 +++++ .../studio/contentstore/rest_api/v1/tests/__init__.py | 5 +++++ .../studio/contentstore/rest_api/v1/tests/test_views.py | 5 +++++ sys_path_hacks/studio/contentstore/rest_api/v1/urls.py | 5 +++++ sys_path_hacks/studio/contentstore/rest_api/v1/views.py | 5 +++++ sys_path_hacks/studio/contentstore/rules.py | 5 +++++ sys_path_hacks/studio/contentstore/signals/__init__.py | 5 +++++ sys_path_hacks/studio/contentstore/signals/handlers.py | 5 +++++ sys_path_hacks/studio/contentstore/signals/signals.py | 5 +++++ sys_path_hacks/studio/contentstore/storage.py | 5 +++++ sys_path_hacks/studio/contentstore/tasks.py | 5 +++++ sys_path_hacks/studio/contentstore/tests/__init__.py | 5 +++++ .../studio/contentstore/tests/test_clone_course.py | 5 +++++ .../studio/contentstore/tests/test_contentstore.py | 5 +++++ .../studio/contentstore/tests/test_core_caching.py | 5 +++++ .../studio/contentstore/tests/test_course_create_rerun.py | 5 +++++ .../studio/contentstore/tests/test_course_listing.py | 5 +++++ .../studio/contentstore/tests/test_course_settings.py | 5 +++++ .../studio/contentstore/tests/test_courseware_index.py | 5 +++++ sys_path_hacks/studio/contentstore/tests/test_crud.py | 5 +++++ sys_path_hacks/studio/contentstore/tests/test_export_git.py | 5 +++++ sys_path_hacks/studio/contentstore/tests/test_gating.py | 5 +++++ sys_path_hacks/studio/contentstore/tests/test_i18n.py | 5 +++++ sys_path_hacks/studio/contentstore/tests/test_import.py | 5 +++++ .../studio/contentstore/tests/test_import_draft_order.py | 5 +++++ .../studio/contentstore/tests/test_import_pure_xblock.py | 5 +++++ sys_path_hacks/studio/contentstore/tests/test_libraries.py | 5 +++++ sys_path_hacks/studio/contentstore/tests/test_orphan.py | 5 +++++ sys_path_hacks/studio/contentstore/tests/test_permissions.py | 5 +++++ sys_path_hacks/studio/contentstore/tests/test_proctoring.py | 5 +++++ .../studio/contentstore/tests/test_request_event.py | 5 +++++ sys_path_hacks/studio/contentstore/tests/test_signals.py | 5 +++++ sys_path_hacks/studio/contentstore/tests/test_tasks.py | 5 +++++ .../studio/contentstore/tests/test_transcripts_utils.py | 5 +++++ .../studio/contentstore/tests/test_users_default_role.py | 5 +++++ sys_path_hacks/studio/contentstore/tests/test_utils.py | 5 +++++ sys_path_hacks/studio/contentstore/tests/test_video_utils.py | 5 +++++ sys_path_hacks/studio/contentstore/tests/tests.py | 5 +++++ sys_path_hacks/studio/contentstore/tests/utils.py | 5 +++++ sys_path_hacks/studio/contentstore/utils.py | 5 +++++ sys_path_hacks/studio/contentstore/video_utils.py | 5 +++++ sys_path_hacks/studio/contentstore/views/__init__.py | 5 +++++ sys_path_hacks/studio/contentstore/views/access.py | 5 +++++ sys_path_hacks/studio/contentstore/views/assets.py | 5 +++++ sys_path_hacks/studio/contentstore/views/certificates.py | 5 +++++ sys_path_hacks/studio/contentstore/views/checklists.py | 5 +++++ sys_path_hacks/studio/contentstore/views/component.py | 5 +++++ sys_path_hacks/studio/contentstore/views/course.py | 5 +++++ sys_path_hacks/studio/contentstore/views/dev.py | 5 +++++ sys_path_hacks/studio/contentstore/views/entrance_exam.py | 5 +++++ sys_path_hacks/studio/contentstore/views/error.py | 5 +++++ sys_path_hacks/studio/contentstore/views/exception.py | 5 +++++ sys_path_hacks/studio/contentstore/views/export_git.py | 5 +++++ sys_path_hacks/studio/contentstore/views/helpers.py | 5 +++++ sys_path_hacks/studio/contentstore/views/import_export.py | 5 +++++ sys_path_hacks/studio/contentstore/views/item.py | 5 +++++ sys_path_hacks/studio/contentstore/views/library.py | 5 +++++ sys_path_hacks/studio/contentstore/views/organization.py | 5 +++++ sys_path_hacks/studio/contentstore/views/preview.py | 5 +++++ sys_path_hacks/studio/contentstore/views/public.py | 5 +++++ sys_path_hacks/studio/contentstore/views/session_kv_store.py | 5 +++++ sys_path_hacks/studio/contentstore/views/tabs.py | 5 +++++ sys_path_hacks/studio/contentstore/views/tests/__init__.py | 5 +++++ .../studio/contentstore/views/tests/test_access.py | 5 +++++ .../studio/contentstore/views/tests/test_assets.py | 5 +++++ .../studio/contentstore/views/tests/test_certificates.py | 5 +++++ .../studio/contentstore/views/tests/test_container_page.py | 5 +++++ .../studio/contentstore/views/tests/test_course_index.py | 5 +++++ .../studio/contentstore/views/tests/test_course_updates.py | 5 +++++ .../contentstore/views/tests/test_credit_eligibility.py | 5 +++++ .../studio/contentstore/views/tests/test_entrance_exam.py | 5 +++++ .../contentstore/views/tests/test_exam_settings_view.py | 5 +++++ .../studio/contentstore/views/tests/test_gating.py | 5 +++++ .../contentstore/views/tests/test_group_configurations.py | 5 +++++ .../studio/contentstore/views/tests/test_header_menu.py | 5 +++++ .../studio/contentstore/views/tests/test_helpers.py | 5 +++++ .../studio/contentstore/views/tests/test_import_export.py | 5 +++++ sys_path_hacks/studio/contentstore/views/tests/test_item.py | 5 +++++ .../studio/contentstore/views/tests/test_library.py | 5 +++++ .../studio/contentstore/views/tests/test_organizations.py | 5 +++++ .../studio/contentstore/views/tests/test_preview.py | 5 +++++ sys_path_hacks/studio/contentstore/views/tests/test_tabs.py | 5 +++++ .../studio/contentstore/views/tests/test_textbooks.py | 5 +++++ .../contentstore/views/tests/test_transcript_settings.py | 5 +++++ .../studio/contentstore/views/tests/test_transcripts.py | 5 +++++ .../studio/contentstore/views/tests/test_unit_page.py | 5 +++++ sys_path_hacks/studio/contentstore/views/tests/test_user.py | 5 +++++ .../studio/contentstore/views/tests/test_videos.py | 5 +++++ sys_path_hacks/studio/contentstore/views/tests/utils.py | 5 +++++ .../studio/contentstore/views/transcript_settings.py | 5 +++++ sys_path_hacks/studio/contentstore/views/transcripts_ajax.py | 5 +++++ sys_path_hacks/studio/contentstore/views/user.py | 5 +++++ sys_path_hacks/studio/contentstore/views/videos.py | 5 +++++ sys_path_hacks/studio/course_creators/__init__.py | 5 +++++ sys_path_hacks/studio/course_creators/admin.py | 5 +++++ sys_path_hacks/studio/course_creators/models.py | 5 +++++ sys_path_hacks/studio/course_creators/tests/__init__.py | 5 +++++ sys_path_hacks/studio/course_creators/tests/test_admin.py | 5 +++++ sys_path_hacks/studio/course_creators/tests/test_views.py | 5 +++++ sys_path_hacks/studio/course_creators/views.py | 5 +++++ sys_path_hacks/studio/maintenance/__init__.py | 5 +++++ sys_path_hacks/studio/maintenance/tests.py | 5 +++++ sys_path_hacks/studio/maintenance/urls.py | 5 +++++ sys_path_hacks/studio/maintenance/views.py | 5 +++++ sys_path_hacks/studio/models/__init__.py | 5 +++++ sys_path_hacks/studio/models/settings/__init__.py | 5 +++++ sys_path_hacks/studio/models/settings/course_grading.py | 5 +++++ sys_path_hacks/studio/models/settings/course_metadata.py | 5 +++++ sys_path_hacks/studio/models/settings/encoder.py | 5 +++++ sys_path_hacks/studio/models/settings/tests/test_settings.py | 5 +++++ sys_path_hacks/studio/models/settings/waffle.py | 5 +++++ sys_path_hacks/studio/pipeline_js/__init__.py | 5 +++++ sys_path_hacks/studio/pipeline_js/utils.py | 5 +++++ sys_path_hacks/studio/xblock_config/__init__.py | 5 +++++ sys_path_hacks/studio/xblock_config/admin.py | 5 +++++ sys_path_hacks/studio/xblock_config/apps.py | 5 +++++ sys_path_hacks/studio/xblock_config/forms.py | 5 +++++ sys_path_hacks/studio/xblock_config/models.py | 5 +++++ sys_path_hacks/studio/xblock_config/tests/__init__.py | 5 +++++ sys_path_hacks/studio/xblock_config/tests/test_models.py | 5 +++++ 211 files changed, 1055 insertions(+) create mode 100644 sys_path_hacks/studio/api/__init__.py create mode 100644 sys_path_hacks/studio/api/apps.py create mode 100644 sys_path_hacks/studio/api/urls.py create mode 100644 sys_path_hacks/studio/api/v1/__init__.py create mode 100644 sys_path_hacks/studio/api/v1/serializers/__init__.py create mode 100644 sys_path_hacks/studio/api/v1/serializers/course_runs.py create mode 100644 sys_path_hacks/studio/api/v1/tests/__init__.py create mode 100644 sys_path_hacks/studio/api/v1/tests/test_serializers/__init__.py create mode 100644 sys_path_hacks/studio/api/v1/tests/test_serializers/test_course_runs.py create mode 100644 sys_path_hacks/studio/api/v1/tests/test_views/__init__.py create mode 100644 sys_path_hacks/studio/api/v1/tests/test_views/test_course_runs.py create mode 100644 sys_path_hacks/studio/api/v1/tests/utils.py create mode 100644 sys_path_hacks/studio/api/v1/urls.py create mode 100644 sys_path_hacks/studio/api/v1/views/__init__.py create mode 100644 sys_path_hacks/studio/api/v1/views/course_runs.py create mode 100644 sys_path_hacks/studio/cms_user_tasks/__init__.py create mode 100644 sys_path_hacks/studio/cms_user_tasks/apps.py create mode 100644 sys_path_hacks/studio/cms_user_tasks/signals.py create mode 100644 sys_path_hacks/studio/cms_user_tasks/tasks.py create mode 100644 sys_path_hacks/studio/cms_user_tasks/tests.py create mode 100644 sys_path_hacks/studio/contentstore/__init__.py create mode 100644 sys_path_hacks/studio/contentstore/admin.py create mode 100644 sys_path_hacks/studio/contentstore/api/__init__.py create mode 100644 sys_path_hacks/studio/contentstore/api/tests/__init__.py create mode 100644 sys_path_hacks/studio/contentstore/api/tests/base.py create mode 100644 sys_path_hacks/studio/contentstore/api/tests/test_import.py create mode 100644 sys_path_hacks/studio/contentstore/api/tests/test_quality.py create mode 100644 sys_path_hacks/studio/contentstore/api/tests/test_validation.py create mode 100644 sys_path_hacks/studio/contentstore/api/urls.py create mode 100644 sys_path_hacks/studio/contentstore/api/views/__init__.py create mode 100644 sys_path_hacks/studio/contentstore/api/views/course_import.py create mode 100644 sys_path_hacks/studio/contentstore/api/views/course_quality.py create mode 100644 sys_path_hacks/studio/contentstore/api/views/course_validation.py create mode 100644 sys_path_hacks/studio/contentstore/api/views/utils.py create mode 100644 sys_path_hacks/studio/contentstore/apps.py create mode 100644 sys_path_hacks/studio/contentstore/config/__init__.py create mode 100644 sys_path_hacks/studio/contentstore/config/tests/__init__.py create mode 100644 sys_path_hacks/studio/contentstore/config/waffle.py create mode 100644 sys_path_hacks/studio/contentstore/config/waffle_utils.py create mode 100644 sys_path_hacks/studio/contentstore/course_group_config.py create mode 100644 sys_path_hacks/studio/contentstore/course_info_model.py create mode 100644 sys_path_hacks/studio/contentstore/courseware_index.py create mode 100644 sys_path_hacks/studio/contentstore/debug_file_uploader.py create mode 100644 sys_path_hacks/studio/contentstore/git_export_utils.py create mode 100644 sys_path_hacks/studio/contentstore/management/__init__.py create mode 100644 sys_path_hacks/studio/contentstore/management/commands/__init__.py create mode 100644 sys_path_hacks/studio/contentstore/management/commands/clean_cert_name.py create mode 100644 sys_path_hacks/studio/contentstore/management/commands/cleanup_assets.py create mode 100644 sys_path_hacks/studio/contentstore/management/commands/create_course.py create mode 100644 sys_path_hacks/studio/contentstore/management/commands/delete_course.py create mode 100644 sys_path_hacks/studio/contentstore/management/commands/delete_orphans.py create mode 100644 sys_path_hacks/studio/contentstore/management/commands/edit_course_tabs.py create mode 100644 sys_path_hacks/studio/contentstore/management/commands/empty_asset_trashcan.py create mode 100644 sys_path_hacks/studio/contentstore/management/commands/export.py create mode 100644 sys_path_hacks/studio/contentstore/management/commands/export_all_courses.py create mode 100644 sys_path_hacks/studio/contentstore/management/commands/export_content_library.py create mode 100644 sys_path_hacks/studio/contentstore/management/commands/export_olx.py create mode 100644 sys_path_hacks/studio/contentstore/management/commands/fix_not_found.py create mode 100644 sys_path_hacks/studio/contentstore/management/commands/force_publish.py create mode 100644 sys_path_hacks/studio/contentstore/management/commands/generate_courses.py create mode 100644 sys_path_hacks/studio/contentstore/management/commands/git_export.py create mode 100644 sys_path_hacks/studio/contentstore/management/commands/import_content_library.py create mode 100644 sys_path_hacks/studio/contentstore/management/commands/migrate_to_split.py create mode 100644 sys_path_hacks/studio/contentstore/management/commands/prompt.py create mode 100644 sys_path_hacks/studio/contentstore/management/commands/reindex_course.py create mode 100644 sys_path_hacks/studio/contentstore/management/commands/reindex_library.py create mode 100644 sys_path_hacks/studio/contentstore/management/commands/restore_asset_from_trashcan.py create mode 100644 sys_path_hacks/studio/contentstore/management/commands/sync_courses.py create mode 100644 sys_path_hacks/studio/contentstore/management/commands/tests/__init__.py create mode 100644 sys_path_hacks/studio/contentstore/management/commands/tests/test_cleanup_assets.py create mode 100644 sys_path_hacks/studio/contentstore/management/commands/tests/test_create_course.py create mode 100644 sys_path_hacks/studio/contentstore/management/commands/tests/test_delete_course.py create mode 100644 sys_path_hacks/studio/contentstore/management/commands/tests/test_delete_orphans.py create mode 100644 sys_path_hacks/studio/contentstore/management/commands/tests/test_export.py create mode 100644 sys_path_hacks/studio/contentstore/management/commands/tests/test_export_all_courses.py create mode 100644 sys_path_hacks/studio/contentstore/management/commands/tests/test_export_olx.py create mode 100644 sys_path_hacks/studio/contentstore/management/commands/tests/test_fix_not_found.py create mode 100644 sys_path_hacks/studio/contentstore/management/commands/tests/test_force_publish.py create mode 100644 sys_path_hacks/studio/contentstore/management/commands/tests/test_generate_courses.py create mode 100644 sys_path_hacks/studio/contentstore/management/commands/tests/test_git_export.py create mode 100644 sys_path_hacks/studio/contentstore/management/commands/tests/test_import.py create mode 100644 sys_path_hacks/studio/contentstore/management/commands/tests/test_migrate_to_split.py create mode 100644 sys_path_hacks/studio/contentstore/management/commands/tests/test_reindex_courses.py create mode 100644 sys_path_hacks/studio/contentstore/management/commands/tests/test_reindex_library.py create mode 100644 sys_path_hacks/studio/contentstore/management/commands/tests/test_sync_courses.py create mode 100644 sys_path_hacks/studio/contentstore/management/commands/utils.py create mode 100644 sys_path_hacks/studio/contentstore/management/commands/xlint.py create mode 100644 sys_path_hacks/studio/contentstore/models.py create mode 100644 sys_path_hacks/studio/contentstore/proctoring.py create mode 100644 sys_path_hacks/studio/contentstore/rest_api/__init__.py create mode 100644 sys_path_hacks/studio/contentstore/rest_api/urls.py create mode 100644 sys_path_hacks/studio/contentstore/rest_api/v1/serializers.py create mode 100644 sys_path_hacks/studio/contentstore/rest_api/v1/tests/__init__.py create mode 100644 sys_path_hacks/studio/contentstore/rest_api/v1/tests/test_views.py create mode 100644 sys_path_hacks/studio/contentstore/rest_api/v1/urls.py create mode 100644 sys_path_hacks/studio/contentstore/rest_api/v1/views.py create mode 100644 sys_path_hacks/studio/contentstore/rules.py create mode 100644 sys_path_hacks/studio/contentstore/signals/__init__.py create mode 100644 sys_path_hacks/studio/contentstore/signals/handlers.py create mode 100644 sys_path_hacks/studio/contentstore/signals/signals.py create mode 100644 sys_path_hacks/studio/contentstore/storage.py create mode 100644 sys_path_hacks/studio/contentstore/tasks.py create mode 100644 sys_path_hacks/studio/contentstore/tests/__init__.py create mode 100644 sys_path_hacks/studio/contentstore/tests/test_clone_course.py create mode 100644 sys_path_hacks/studio/contentstore/tests/test_contentstore.py create mode 100644 sys_path_hacks/studio/contentstore/tests/test_core_caching.py create mode 100644 sys_path_hacks/studio/contentstore/tests/test_course_create_rerun.py create mode 100644 sys_path_hacks/studio/contentstore/tests/test_course_listing.py create mode 100644 sys_path_hacks/studio/contentstore/tests/test_course_settings.py create mode 100644 sys_path_hacks/studio/contentstore/tests/test_courseware_index.py create mode 100644 sys_path_hacks/studio/contentstore/tests/test_crud.py create mode 100644 sys_path_hacks/studio/contentstore/tests/test_export_git.py create mode 100644 sys_path_hacks/studio/contentstore/tests/test_gating.py create mode 100644 sys_path_hacks/studio/contentstore/tests/test_i18n.py create mode 100644 sys_path_hacks/studio/contentstore/tests/test_import.py create mode 100644 sys_path_hacks/studio/contentstore/tests/test_import_draft_order.py create mode 100644 sys_path_hacks/studio/contentstore/tests/test_import_pure_xblock.py create mode 100644 sys_path_hacks/studio/contentstore/tests/test_libraries.py create mode 100644 sys_path_hacks/studio/contentstore/tests/test_orphan.py create mode 100644 sys_path_hacks/studio/contentstore/tests/test_permissions.py create mode 100644 sys_path_hacks/studio/contentstore/tests/test_proctoring.py create mode 100644 sys_path_hacks/studio/contentstore/tests/test_request_event.py create mode 100644 sys_path_hacks/studio/contentstore/tests/test_signals.py create mode 100644 sys_path_hacks/studio/contentstore/tests/test_tasks.py create mode 100644 sys_path_hacks/studio/contentstore/tests/test_transcripts_utils.py create mode 100644 sys_path_hacks/studio/contentstore/tests/test_users_default_role.py create mode 100644 sys_path_hacks/studio/contentstore/tests/test_utils.py create mode 100644 sys_path_hacks/studio/contentstore/tests/test_video_utils.py create mode 100644 sys_path_hacks/studio/contentstore/tests/tests.py create mode 100644 sys_path_hacks/studio/contentstore/tests/utils.py create mode 100644 sys_path_hacks/studio/contentstore/utils.py create mode 100644 sys_path_hacks/studio/contentstore/video_utils.py create mode 100644 sys_path_hacks/studio/contentstore/views/__init__.py create mode 100644 sys_path_hacks/studio/contentstore/views/access.py create mode 100644 sys_path_hacks/studio/contentstore/views/assets.py create mode 100644 sys_path_hacks/studio/contentstore/views/certificates.py create mode 100644 sys_path_hacks/studio/contentstore/views/checklists.py create mode 100644 sys_path_hacks/studio/contentstore/views/component.py create mode 100644 sys_path_hacks/studio/contentstore/views/course.py create mode 100644 sys_path_hacks/studio/contentstore/views/dev.py create mode 100644 sys_path_hacks/studio/contentstore/views/entrance_exam.py create mode 100644 sys_path_hacks/studio/contentstore/views/error.py create mode 100644 sys_path_hacks/studio/contentstore/views/exception.py create mode 100644 sys_path_hacks/studio/contentstore/views/export_git.py create mode 100644 sys_path_hacks/studio/contentstore/views/helpers.py create mode 100644 sys_path_hacks/studio/contentstore/views/import_export.py create mode 100644 sys_path_hacks/studio/contentstore/views/item.py create mode 100644 sys_path_hacks/studio/contentstore/views/library.py create mode 100644 sys_path_hacks/studio/contentstore/views/organization.py create mode 100644 sys_path_hacks/studio/contentstore/views/preview.py create mode 100644 sys_path_hacks/studio/contentstore/views/public.py create mode 100644 sys_path_hacks/studio/contentstore/views/session_kv_store.py create mode 100644 sys_path_hacks/studio/contentstore/views/tabs.py create mode 100644 sys_path_hacks/studio/contentstore/views/tests/__init__.py create mode 100644 sys_path_hacks/studio/contentstore/views/tests/test_access.py create mode 100644 sys_path_hacks/studio/contentstore/views/tests/test_assets.py create mode 100644 sys_path_hacks/studio/contentstore/views/tests/test_certificates.py create mode 100644 sys_path_hacks/studio/contentstore/views/tests/test_container_page.py create mode 100644 sys_path_hacks/studio/contentstore/views/tests/test_course_index.py create mode 100644 sys_path_hacks/studio/contentstore/views/tests/test_course_updates.py create mode 100644 sys_path_hacks/studio/contentstore/views/tests/test_credit_eligibility.py create mode 100644 sys_path_hacks/studio/contentstore/views/tests/test_entrance_exam.py create mode 100644 sys_path_hacks/studio/contentstore/views/tests/test_exam_settings_view.py create mode 100644 sys_path_hacks/studio/contentstore/views/tests/test_gating.py create mode 100644 sys_path_hacks/studio/contentstore/views/tests/test_group_configurations.py create mode 100644 sys_path_hacks/studio/contentstore/views/tests/test_header_menu.py create mode 100644 sys_path_hacks/studio/contentstore/views/tests/test_helpers.py create mode 100644 sys_path_hacks/studio/contentstore/views/tests/test_import_export.py create mode 100644 sys_path_hacks/studio/contentstore/views/tests/test_item.py create mode 100644 sys_path_hacks/studio/contentstore/views/tests/test_library.py create mode 100644 sys_path_hacks/studio/contentstore/views/tests/test_organizations.py create mode 100644 sys_path_hacks/studio/contentstore/views/tests/test_preview.py create mode 100644 sys_path_hacks/studio/contentstore/views/tests/test_tabs.py create mode 100644 sys_path_hacks/studio/contentstore/views/tests/test_textbooks.py create mode 100644 sys_path_hacks/studio/contentstore/views/tests/test_transcript_settings.py create mode 100644 sys_path_hacks/studio/contentstore/views/tests/test_transcripts.py create mode 100644 sys_path_hacks/studio/contentstore/views/tests/test_unit_page.py create mode 100644 sys_path_hacks/studio/contentstore/views/tests/test_user.py create mode 100644 sys_path_hacks/studio/contentstore/views/tests/test_videos.py create mode 100644 sys_path_hacks/studio/contentstore/views/tests/utils.py create mode 100644 sys_path_hacks/studio/contentstore/views/transcript_settings.py create mode 100644 sys_path_hacks/studio/contentstore/views/transcripts_ajax.py create mode 100644 sys_path_hacks/studio/contentstore/views/user.py create mode 100644 sys_path_hacks/studio/contentstore/views/videos.py create mode 100644 sys_path_hacks/studio/course_creators/__init__.py create mode 100644 sys_path_hacks/studio/course_creators/admin.py create mode 100644 sys_path_hacks/studio/course_creators/models.py create mode 100644 sys_path_hacks/studio/course_creators/tests/__init__.py create mode 100644 sys_path_hacks/studio/course_creators/tests/test_admin.py create mode 100644 sys_path_hacks/studio/course_creators/tests/test_views.py create mode 100644 sys_path_hacks/studio/course_creators/views.py create mode 100644 sys_path_hacks/studio/maintenance/__init__.py create mode 100644 sys_path_hacks/studio/maintenance/tests.py create mode 100644 sys_path_hacks/studio/maintenance/urls.py create mode 100644 sys_path_hacks/studio/maintenance/views.py create mode 100644 sys_path_hacks/studio/models/__init__.py create mode 100644 sys_path_hacks/studio/models/settings/__init__.py create mode 100644 sys_path_hacks/studio/models/settings/course_grading.py create mode 100644 sys_path_hacks/studio/models/settings/course_metadata.py create mode 100644 sys_path_hacks/studio/models/settings/encoder.py create mode 100644 sys_path_hacks/studio/models/settings/tests/test_settings.py create mode 100644 sys_path_hacks/studio/models/settings/waffle.py create mode 100644 sys_path_hacks/studio/pipeline_js/__init__.py create mode 100644 sys_path_hacks/studio/pipeline_js/utils.py create mode 100644 sys_path_hacks/studio/xblock_config/__init__.py create mode 100644 sys_path_hacks/studio/xblock_config/admin.py create mode 100644 sys_path_hacks/studio/xblock_config/apps.py create mode 100644 sys_path_hacks/studio/xblock_config/forms.py create mode 100644 sys_path_hacks/studio/xblock_config/models.py create mode 100644 sys_path_hacks/studio/xblock_config/tests/__init__.py create mode 100644 sys_path_hacks/studio/xblock_config/tests/test_models.py diff --git a/sys_path_hacks/studio/api/__init__.py b/sys_path_hacks/studio/api/__init__.py new file mode 100644 index 00000000000..e3b3ad9865f --- /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 00000000000..bf5a87aa5d5 --- /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 00000000000..0382c7f7fa1 --- /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 00000000000..d627f9d95ae --- /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 00000000000..c299dfeaa1b --- /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 00000000000..926e1c7b2db --- /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 00000000000..dc802f0a3fc --- /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 00000000000..104aac3c77d --- /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 00000000000..754ccdda11b --- /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 00000000000..5ac64282644 --- /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 00000000000..51eb06636e9 --- /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 00000000000..69c9248130c --- /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 00000000000..38e4c68f5d5 --- /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 00000000000..436936712a2 --- /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 00000000000..1f9aabacbd5 --- /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 00000000000..84fe24c4a5b --- /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 00000000000..a397dec7df0 --- /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 00000000000..1ab57e3c2cc --- /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 00000000000..57f1ad446db --- /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 00000000000..47784ced9fe --- /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 00000000000..21c574c5827 --- /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 00000000000..71f7f7a6481 --- /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 00000000000..4d8320957b0 --- /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 00000000000..aee3afa8d7b --- /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 00000000000..4648d92e6c9 --- /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 00000000000..e6413b75d4a --- /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 00000000000..70c59caa4e3 --- /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 00000000000..254bbdeed78 --- /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 00000000000..6f3cc788a1f --- /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 00000000000..9bf6bf90f95 --- /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 00000000000..8aca643c5ef --- /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 00000000000..b378e641d82 --- /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 00000000000..2b3aa8f6f40 --- /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 00000000000..fc3c33ea18d --- /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 00000000000..0cab01d0742 --- /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 00000000000..9157015c7ad --- /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 00000000000..5a9aa234c1f --- /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 00000000000..7007c3b7f8c --- /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 00000000000..f8921dae957 --- /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 00000000000..25fe0110a83 --- /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 00000000000..07c8a977351 --- /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 00000000000..ebca336ff77 --- /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 00000000000..c5214a64f3f --- /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 00000000000..d73fa95f7ca --- /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 00000000000..2b16ae68eef --- /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 00000000000..fff73c9ba07 --- /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 00000000000..206f36b7dcf --- /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 00000000000..0a047d29de2 --- /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 00000000000..ed3423ed8ff --- /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 00000000000..3392213b0f4 --- /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 00000000000..d64ac4e54e6 --- /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 00000000000..c18357774f5 --- /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 00000000000..ff801636ef1 --- /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 00000000000..121da9ff89f --- /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 00000000000..26d2c30d32c --- /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 00000000000..7568f5219f7 --- /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 00000000000..b9209b83dc2 --- /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 00000000000..3c8bf68e11b --- /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 00000000000..57c34ba2a02 --- /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 00000000000..3601ff75968 --- /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 00000000000..7abd8cd2324 --- /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 00000000000..b10911c618e --- /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 00000000000..909721360ce --- /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 00000000000..beba1c4b334 --- /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 00000000000..e5ad06e07c2 --- /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 00000000000..023ad678af6 --- /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 00000000000..fced09b5a3e --- /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 00000000000..02a6dd825ba --- /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 00000000000..e24cf89b8e7 --- /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 00000000000..8e807973406 --- /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 00000000000..ddb1d15f03d --- /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 00000000000..261187de53c --- /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 00000000000..50d61654144 --- /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 00000000000..aac029c26fe --- /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 00000000000..5514f539143 --- /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 00000000000..3d45b3fc936 --- /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 00000000000..b2d3908461f --- /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 00000000000..dbc685cb37c --- /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 00000000000..979a45ba8f1 --- /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 00000000000..e740cdedae8 --- /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 00000000000..9019c2ee87b --- /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 00000000000..7bc9c7887ac --- /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 00000000000..e71941caef3 --- /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 00000000000..8d18dfdd6bd --- /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 00000000000..0ca2910fca1 --- /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 00000000000..fb6879aab14 --- /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 00000000000..596edb093f3 --- /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 00000000000..637cbece69c --- /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 00000000000..eeda5073eab --- /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 00000000000..0e6b8bf60d2 --- /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 00000000000..d5ba2410453 --- /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 00000000000..2815259f36e --- /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 00000000000..67049fdf904 --- /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 00000000000..30ad100ef24 --- /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 00000000000..da2d2725764 --- /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 00000000000..1b8971238a8 --- /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 00000000000..d05a82bbda5 --- /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 00000000000..a0db4e23e16 --- /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 00000000000..a3b899f6509 --- /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 00000000000..8e1d26bffc2 --- /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 00000000000..609fcbb435e --- /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 00000000000..31e2ae6ac25 --- /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 00000000000..82fe98e8325 --- /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 00000000000..472a57366cb --- /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 00000000000..d2682b41fcd --- /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 00000000000..ab6a6738da5 --- /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 00000000000..5c2357564df --- /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 00000000000..3945ae7aa52 --- /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 00000000000..bbfb0b6ffda --- /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 00000000000..a44adceec03 --- /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 00000000000..f7222be0255 --- /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 00000000000..5980aa970d7 --- /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 00000000000..5c9f6ab9af3 --- /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 00000000000..efdda9a439e --- /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 00000000000..26dbf60d5f7 --- /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 00000000000..2a5ac21a421 --- /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 00000000000..882b01a550e --- /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 00000000000..b89a4f0aab0 --- /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 00000000000..f9fec503033 --- /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 00000000000..65e28ef1e65 --- /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 00000000000..9aab593810f --- /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 00000000000..d44dbd3c885 --- /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 00000000000..47916c188d2 --- /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 00000000000..f29b4581f7a --- /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 00000000000..299566da072 --- /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 00000000000..7bc5142e2e5 --- /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 00000000000..e536235cfc2 --- /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 00000000000..578f3028c94 --- /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 00000000000..3737be50841 --- /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 00000000000..7fdbd4717c8 --- /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 00000000000..17ce0658ef5 --- /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 00000000000..915d1287e67 --- /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 00000000000..83dfafec700 --- /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 00000000000..1fb76b68f23 --- /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 00000000000..87373f76c31 --- /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 00000000000..65a38b533e8 --- /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 00000000000..98ffb755ac5 --- /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 00000000000..452ec574cad --- /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 00000000000..d71b9fd198e --- /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 00000000000..60e3442b62b --- /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 00000000000..92d66d72492 --- /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 00000000000..fa1b6c27679 --- /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 00000000000..ee790ee98a6 --- /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 00000000000..91f35e51971 --- /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 00000000000..9591975042f --- /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 00000000000..3e41e99c692 --- /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 00000000000..cc7d83acd6b --- /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 00000000000..8adabe61d8d --- /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 00000000000..ab08006a336 --- /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 00000000000..2886d9ef16c --- /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 00000000000..2b5c45e0287 --- /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 00000000000..313a249a7ed --- /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 00000000000..2965857154a --- /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 00000000000..6902d910a9e --- /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 00000000000..be0de443ec4 --- /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 00000000000..28a7c5402de --- /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 00000000000..f3a4d1f01ba --- /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 00000000000..05f7173f3da --- /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 00000000000..4ba23d7b9e7 --- /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 00000000000..0ddb0d0cae7 --- /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 00000000000..5dd70de927b --- /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 00000000000..188d71d526d --- /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 00000000000..0c9476b2059 --- /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 00000000000..a45c18f6409 --- /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 00000000000..24ab27dfe47 --- /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 00000000000..0baaf969f4c --- /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 00000000000..390d8f0514f --- /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 00000000000..bafd3658eec --- /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 00000000000..80855751293 --- /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 00000000000..e7370aa2cbd --- /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 00000000000..c68647a8d41 --- /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 00000000000..db6e5ea2bda --- /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 00000000000..433940a5a5e --- /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 00000000000..049b47466f0 --- /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 00000000000..f985190ec5b --- /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 00000000000..2c6a4ae7f7a --- /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 00000000000..11af6c2fe54 --- /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 00000000000..a3b5609ffb2 --- /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 00000000000..4a64e738c3f --- /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 00000000000..2170d0a5f75 --- /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 00000000000..358d7852bc7 --- /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 00000000000..a66dcf72e87 --- /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 00000000000..5284657469a --- /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 00000000000..c9a70facb95 --- /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 00000000000..efa33f81664 --- /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 00000000000..a2070a0ea10 --- /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 00000000000..6da0d1e522d --- /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 00000000000..4e4ba40b989 --- /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 00000000000..6381a6a73e4 --- /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 00000000000..922ee43f7fa --- /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 00000000000..5e6c3e3be18 --- /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 00000000000..f440425969f --- /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 00000000000..8d733cc5901 --- /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 00000000000..97a925210e8 --- /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 00000000000..dc745f496ed --- /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 00000000000..2a594c5da6c --- /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 00000000000..951f5ddac9c --- /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 00000000000..045cf55b971 --- /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 00000000000..6e5a528495c --- /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 00000000000..807262a3d78 --- /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 00000000000..aa34a444c12 --- /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 00000000000..6729d04edcc --- /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 00000000000..55b3d11f392 --- /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 00000000000..e225509172b --- /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 00000000000..7ddbe458342 --- /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 00000000000..737dda1d56f --- /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 00000000000..94b88469788 --- /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 00000000000..22f9962cc14 --- /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 00000000000..a39b37f504b --- /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 00000000000..f7aeb3746d3 --- /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 00000000000..f709528efba --- /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 * -- GitLab