openedx-learning 0.30.1__py2.py3-none-any.whl → 0.31.0__py2.py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (131) hide show
  1. openedx_learning/__init__.py +1 -1
  2. openedx_learning/api/authoring.py +2 -9
  3. openedx_learning/api/authoring_models.py +7 -7
  4. openedx_learning/api/django.py +24 -0
  5. openedx_learning/apps/openedx_content/admin.py +13 -0
  6. openedx_learning/apps/openedx_content/api.py +16 -0
  7. openedx_learning/apps/{authoring → openedx_content/applets}/backup_restore/api.py +2 -2
  8. openedx_learning/apps/{authoring → openedx_content/applets}/backup_restore/serializers.py +1 -4
  9. openedx_learning/apps/{authoring → openedx_content/applets}/backup_restore/toml.py +4 -4
  10. openedx_learning/apps/{authoring → openedx_content/applets}/backup_restore/zipper.py +28 -14
  11. openedx_learning/apps/{authoring → openedx_content/applets}/collections/api.py +1 -1
  12. openedx_learning/apps/{authoring → openedx_content/applets}/collections/models.py +4 -1
  13. openedx_learning/apps/{authoring → openedx_content/applets}/components/admin.py +1 -1
  14. openedx_learning/apps/{authoring → openedx_content/applets}/components/api.py +1 -1
  15. openedx_learning/apps/{authoring → openedx_content/applets}/components/models.py +4 -2
  16. openedx_learning/apps/{authoring → openedx_content/applets}/contents/api.py +3 -2
  17. openedx_learning/apps/{authoring → openedx_content/applets}/contents/models.py +8 -2
  18. openedx_learning/apps/{authoring → openedx_content/applets}/publishing/api.py +1 -1
  19. openedx_learning/apps/{authoring → openedx_content/applets}/publishing/models/entity_list.py +1 -0
  20. openedx_learning/apps/{authoring → openedx_content/applets}/sections/api.py +1 -2
  21. openedx_learning/apps/{authoring → openedx_content/applets}/subsections/api.py +1 -2
  22. openedx_learning/apps/{authoring → openedx_content/applets}/units/api.py +1 -2
  23. openedx_learning/apps/openedx_content/apps.py +52 -0
  24. openedx_learning/apps/{authoring → openedx_content/backcompat}/backup_restore/apps.py +1 -1
  25. openedx_learning/apps/{authoring → openedx_content/backcompat}/collections/apps.py +1 -1
  26. openedx_learning/apps/openedx_content/backcompat/collections/migrations/0006_remove_all_field_state_for_move_to_applet.py +82 -0
  27. openedx_learning/apps/openedx_content/backcompat/collections/models.py +9 -0
  28. openedx_learning/apps/openedx_content/backcompat/components/apps.py +15 -0
  29. openedx_learning/apps/openedx_content/backcompat/components/migrations/0005_remove_all_field_state_for_move_to_applet.py +72 -0
  30. openedx_learning/apps/openedx_content/backcompat/components/models.py +11 -0
  31. openedx_learning/apps/{authoring → openedx_content/backcompat}/contents/apps.py +1 -1
  32. openedx_learning/apps/openedx_content/backcompat/contents/migrations/0002_remove_all_field_state_for_move_to_applet.py +26 -0
  33. openedx_learning/apps/openedx_content/backcompat/publishing/apps.py +15 -0
  34. openedx_learning/apps/openedx_content/backcompat/publishing/migrations/0010_backfill_dependencies.py +432 -0
  35. openedx_learning/apps/openedx_content/backcompat/publishing/migrations/0011_remove_all_field_state_for_move_to_applet.py +288 -0
  36. openedx_learning/apps/openedx_content/backcompat/publishing/models.py +27 -0
  37. openedx_learning/apps/openedx_content/backcompat/sections/__init__.py +0 -0
  38. openedx_learning/apps/openedx_content/backcompat/sections/apps.py +16 -0
  39. openedx_learning/apps/openedx_content/backcompat/sections/migrations/0002_remove_all_field_state_for_move_to_applet.py +29 -0
  40. openedx_learning/apps/openedx_content/backcompat/sections/migrations/__init__.py +0 -0
  41. openedx_learning/apps/openedx_content/backcompat/subsections/__init__.py +0 -0
  42. openedx_learning/apps/openedx_content/backcompat/subsections/apps.py +16 -0
  43. openedx_learning/apps/openedx_content/backcompat/subsections/migrations/0002_remove_all_field_state_for_move_to_applet.py +29 -0
  44. openedx_learning/apps/openedx_content/backcompat/subsections/migrations/__init__.py +0 -0
  45. openedx_learning/apps/openedx_content/backcompat/units/__init__.py +0 -0
  46. openedx_learning/apps/openedx_content/backcompat/units/apps.py +16 -0
  47. openedx_learning/apps/openedx_content/backcompat/units/migrations/0002_remove_all_field_state_for_move_to_applet.py +29 -0
  48. openedx_learning/apps/openedx_content/backcompat/units/migrations/__init__.py +0 -0
  49. openedx_learning/apps/openedx_content/management/__init__.py +0 -0
  50. openedx_learning/apps/openedx_content/management/commands/__init__.py +0 -0
  51. openedx_learning/apps/{authoring/components → openedx_content}/management/commands/add_assets_to_component.py +1 -2
  52. openedx_learning/apps/{authoring/backup_restore → openedx_content}/management/commands/lp_dump.py +2 -2
  53. openedx_learning/apps/{authoring/backup_restore → openedx_content}/management/commands/lp_load.py +1 -1
  54. openedx_learning/apps/openedx_content/migrations/0001_initial.py +654 -0
  55. openedx_learning/apps/openedx_content/migrations/0002_rename_tables_to_openedx_content.py +138 -0
  56. openedx_learning/apps/openedx_content/migrations/__init__.py +0 -0
  57. openedx_learning/apps/openedx_content/models.py +17 -0
  58. openedx_learning/contrib/media_server/views.py +1 -1
  59. {openedx_learning-0.30.1.dist-info → openedx_learning-0.31.0.dist-info}/METADATA +6 -6
  60. openedx_learning-0.31.0.dist-info/RECORD +194 -0
  61. {openedx_learning-0.30.1.dist-info → openedx_learning-0.31.0.dist-info}/WHEEL +1 -1
  62. openedx_learning/apps/authoring/components/apps.py +0 -24
  63. openedx_learning/apps/authoring/publishing/apps.py +0 -25
  64. openedx_learning/apps/authoring/publishing/migrations/0010_backfill_dependencies.py +0 -149
  65. openedx_learning/apps/authoring/sections/apps.py +0 -25
  66. openedx_learning/apps/authoring/subsections/apps.py +0 -25
  67. openedx_learning/apps/authoring/units/apps.py +0 -25
  68. openedx_learning-0.30.1.dist-info/RECORD +0 -168
  69. /openedx_learning/apps/{authoring → openedx_content}/__init__.py +0 -0
  70. /openedx_learning/apps/{authoring/backup_restore → openedx_content/applets}/__init__.py +0 -0
  71. /openedx_learning/apps/{authoring/backup_restore/management → openedx_content/applets/backup_restore}/__init__.py +0 -0
  72. /openedx_learning/apps/{authoring → openedx_content/applets}/backup_restore/admin.py +0 -0
  73. /openedx_learning/apps/{authoring → openedx_content/applets}/backup_restore/models.py +0 -0
  74. /openedx_learning/apps/{authoring/backup_restore/management/commands → openedx_content/applets/collections}/__init__.py +0 -0
  75. /openedx_learning/apps/{authoring → openedx_content/applets}/collections/admin.py +0 -0
  76. /openedx_learning/apps/{authoring/backup_restore/migrations → openedx_content/applets/components}/__init__.py +0 -0
  77. /openedx_learning/apps/{authoring/collections → openedx_content/applets/contents}/__init__.py +0 -0
  78. /openedx_learning/apps/{authoring → openedx_content/applets}/contents/admin.py +0 -0
  79. /openedx_learning/apps/{authoring/collections/migrations → openedx_content/applets/publishing}/__init__.py +0 -0
  80. /openedx_learning/apps/{authoring → openedx_content/applets}/publishing/admin.py +0 -0
  81. /openedx_learning/apps/{authoring → openedx_content/applets}/publishing/contextmanagers.py +0 -0
  82. /openedx_learning/apps/{authoring → openedx_content/applets}/publishing/models/__init__.py +0 -0
  83. /openedx_learning/apps/{authoring → openedx_content/applets}/publishing/models/container.py +0 -0
  84. /openedx_learning/apps/{authoring → openedx_content/applets}/publishing/models/draft_log.py +0 -0
  85. /openedx_learning/apps/{authoring → openedx_content/applets}/publishing/models/learning_package.py +0 -0
  86. /openedx_learning/apps/{authoring → openedx_content/applets}/publishing/models/publish_log.py +0 -0
  87. /openedx_learning/apps/{authoring → openedx_content/applets}/publishing/models/publishable_entity.py +0 -0
  88. /openedx_learning/apps/{authoring/components → openedx_content/applets/sections}/__init__.py +0 -0
  89. /openedx_learning/apps/{authoring → openedx_content/applets}/sections/admin.py +0 -0
  90. /openedx_learning/apps/{authoring → openedx_content/applets}/sections/models.py +0 -0
  91. /openedx_learning/apps/{authoring/components/management → openedx_content/applets/subsections}/__init__.py +0 -0
  92. /openedx_learning/apps/{authoring → openedx_content/applets}/subsections/admin.py +0 -0
  93. /openedx_learning/apps/{authoring → openedx_content/applets}/subsections/models.py +0 -0
  94. /openedx_learning/apps/{authoring/components/management/commands → openedx_content/applets/units}/__init__.py +0 -0
  95. /openedx_learning/apps/{authoring → openedx_content/applets}/units/admin.py +0 -0
  96. /openedx_learning/apps/{authoring → openedx_content/applets}/units/models.py +0 -0
  97. /openedx_learning/apps/{authoring/components/migrations → openedx_content/backcompat}/__init__.py +0 -0
  98. /openedx_learning/apps/{authoring/contents → openedx_content/backcompat/backup_restore}/__init__.py +0 -0
  99. /openedx_learning/apps/{authoring/contents → openedx_content/backcompat/backup_restore}/migrations/__init__.py +0 -0
  100. /openedx_learning/apps/{authoring/publishing → openedx_content/backcompat/collections}/__init__.py +0 -0
  101. /openedx_learning/apps/{authoring → openedx_content/backcompat}/collections/migrations/0001_initial.py +0 -0
  102. /openedx_learning/apps/{authoring → openedx_content/backcompat}/collections/migrations/0002_remove_collection_name_collection_created_by_and_more.py +0 -0
  103. /openedx_learning/apps/{authoring → openedx_content/backcompat}/collections/migrations/0003_collection_entities.py +0 -0
  104. /openedx_learning/apps/{authoring → openedx_content/backcompat}/collections/migrations/0004_collection_key.py +0 -0
  105. /openedx_learning/apps/{authoring → openedx_content/backcompat}/collections/migrations/0005_alter_collection_options_alter_collection_enabled.py +0 -0
  106. /openedx_learning/apps/{authoring/publishing → openedx_content/backcompat/collections}/migrations/__init__.py +0 -0
  107. /openedx_learning/apps/{authoring/sections → openedx_content/backcompat/components}/__init__.py +0 -0
  108. /openedx_learning/apps/{authoring → openedx_content/backcompat}/components/migrations/0001_initial.py +0 -0
  109. /openedx_learning/apps/{authoring → openedx_content/backcompat}/components/migrations/0002_alter_componentversioncontent_key.py +0 -0
  110. /openedx_learning/apps/{authoring → openedx_content/backcompat}/components/migrations/0003_remove_componentversioncontent_learner_downloadable.py +0 -0
  111. /openedx_learning/apps/{authoring → openedx_content/backcompat}/components/migrations/0004_remove_componentversioncontent_uuid.py +0 -0
  112. /openedx_learning/apps/{authoring/sections → openedx_content/backcompat/components}/migrations/__init__.py +0 -0
  113. /openedx_learning/apps/{authoring/subsections → openedx_content/backcompat/contents}/__init__.py +0 -0
  114. /openedx_learning/apps/{authoring → openedx_content/backcompat}/contents/migrations/0001_initial.py +0 -0
  115. /openedx_learning/apps/{authoring/subsections → openedx_content/backcompat/contents}/migrations/__init__.py +0 -0
  116. /openedx_learning/apps/{authoring/units → openedx_content/backcompat/publishing}/__init__.py +0 -0
  117. /openedx_learning/apps/{authoring → openedx_content/backcompat}/publishing/migrations/0001_initial.py +0 -0
  118. /openedx_learning/apps/{authoring → openedx_content/backcompat}/publishing/migrations/0002_alter_learningpackage_key_and_more.py +0 -0
  119. /openedx_learning/apps/{authoring → openedx_content/backcompat}/publishing/migrations/0003_containers.py +0 -0
  120. /openedx_learning/apps/{authoring → openedx_content/backcompat}/publishing/migrations/0004_publishableentity_can_stand_alone.py +0 -0
  121. /openedx_learning/apps/{authoring → openedx_content/backcompat}/publishing/migrations/0005_alter_entitylistrow_options.py +0 -0
  122. /openedx_learning/apps/{authoring → openedx_content/backcompat}/publishing/migrations/0006_draftchangelog.py +0 -0
  123. /openedx_learning/apps/{authoring → openedx_content/backcompat}/publishing/migrations/0007_bootstrap_draftchangelog.py +0 -0
  124. /openedx_learning/apps/{authoring → openedx_content/backcompat}/publishing/migrations/0008_alter_draftchangelogrecord_options_and_more.py +0 -0
  125. /openedx_learning/apps/{authoring → openedx_content/backcompat}/publishing/migrations/0009_dependencies_and_hashing.py +0 -0
  126. /openedx_learning/apps/{authoring/units → openedx_content/backcompat/publishing}/migrations/__init__.py +0 -0
  127. /openedx_learning/apps/{authoring → openedx_content/backcompat}/sections/migrations/0001_initial.py +0 -0
  128. /openedx_learning/apps/{authoring → openedx_content/backcompat}/subsections/migrations/0001_initial.py +0 -0
  129. /openedx_learning/apps/{authoring → openedx_content/backcompat}/units/migrations/0001_initial.py +0 -0
  130. {openedx_learning-0.30.1.dist-info → openedx_learning-0.31.0.dist-info}/licenses/LICENSE.txt +0 -0
  131. {openedx_learning-0.30.1.dist-info → openedx_learning-0.31.0.dist-info}/top_level.txt +0 -0
@@ -1,25 +0,0 @@
1
- """
2
- Subsection Django application initialization.
3
- """
4
-
5
- from django.apps import AppConfig
6
-
7
-
8
- class SubsectionsConfig(AppConfig):
9
- """
10
- Configuration for the subsections Django application.
11
- """
12
-
13
- name = "openedx_learning.apps.authoring.subsections"
14
- verbose_name = "Learning Core > Authoring > Subsections"
15
- default_auto_field = "django.db.models.BigAutoField"
16
- label = "oel_subsections"
17
-
18
- def ready(self):
19
- """
20
- Register Subsection and SubsectionVersion.
21
- """
22
- from ..publishing.api import register_publishable_models # pylint: disable=import-outside-toplevel
23
- from .models import Subsection, SubsectionVersion # pylint: disable=import-outside-toplevel
24
-
25
- register_publishable_models(Subsection, SubsectionVersion)
@@ -1,25 +0,0 @@
1
- """
2
- Unit Django application initialization.
3
- """
4
-
5
- from django.apps import AppConfig
6
-
7
-
8
- class UnitsConfig(AppConfig):
9
- """
10
- Configuration for the units Django application.
11
- """
12
-
13
- name = "openedx_learning.apps.authoring.units"
14
- verbose_name = "Learning Core > Authoring > Units"
15
- default_auto_field = "django.db.models.BigAutoField"
16
- label = "oel_units"
17
-
18
- def ready(self):
19
- """
20
- Register Unit and UnitVersion.
21
- """
22
- from ..publishing.api import register_publishable_models # pylint: disable=import-outside-toplevel
23
- from .models import Unit, UnitVersion # pylint: disable=import-outside-toplevel
24
-
25
- register_publishable_models(Unit, UnitVersion)
@@ -1,168 +0,0 @@
1
- openedx_learning/__init__.py,sha256=kMiAEA0yqVhIndXG4Qewan7mbU20wii2EFxiH6tGD1M,69
2
- openedx_learning/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
3
- openedx_learning/api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
4
- openedx_learning/api/authoring.py,sha256=EDWTY_JDKtjD9nFrrijzWuVccs3LZeDLEdzTUNanR4I,1111
5
- openedx_learning/api/authoring_models.py,sha256=lA500-C7LBlVzeaEVqmCiQMAPPmeoDMi8wS0TbzgdGw,778
6
- openedx_learning/apps/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
7
- openedx_learning/apps/authoring/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
8
- openedx_learning/apps/authoring/backup_restore/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
9
- openedx_learning/apps/authoring/backup_restore/admin.py,sha256=OnEixkOuysPRr-F6C_CMwPkiXawkqgSEF46n3yiUK0o,59
10
- openedx_learning/apps/authoring/backup_restore/api.py,sha256=jX6shgWLlPqBeHrhPq-r8IkN_0OizLXk0Pb0CxzNEPM,1292
11
- openedx_learning/apps/authoring/backup_restore/apps.py,sha256=UnExBA7jhd3qI30_87JMvzVhS_k82t89qDVKSMpvg_A,340
12
- openedx_learning/apps/authoring/backup_restore/models.py,sha256=jlr0ppxW0IOW3HPHoJNChHvDrYVnKMb5_3uC2itxqQk,45
13
- openedx_learning/apps/authoring/backup_restore/serializers.py,sha256=LBWrlWmA0Aok-XSfwiGBqNTU-1ig4hnEX_AxFaAjaoY,6487
14
- openedx_learning/apps/authoring/backup_restore/toml.py,sha256=4QFKDoFXsEF3xr1gvRXKQien-4_GezH6Gn1BdYQF8yU,8286
15
- openedx_learning/apps/authoring/backup_restore/zipper.py,sha256=TMwwqSy2hWJhWthR3e1Lt2s9q1hW96P1piopDRVTW-c,47665
16
- openedx_learning/apps/authoring/backup_restore/management/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
17
- openedx_learning/apps/authoring/backup_restore/management/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
18
- openedx_learning/apps/authoring/backup_restore/management/commands/lp_dump.py,sha256=kNr3luMjKrzxzGbJI7GiE9W0Wf_Kb8x6H71XsyGt6b4,2561
19
- openedx_learning/apps/authoring/backup_restore/management/commands/lp_load.py,sha256=z-glaYCulllcptqFbX5cb0UL_b9NslaaHK-0kOmPLa4,2205
20
- openedx_learning/apps/authoring/backup_restore/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
21
- openedx_learning/apps/authoring/collections/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
22
- openedx_learning/apps/authoring/collections/admin.py,sha256=f0hySjDMfIphVDEGkCSMIUHoEiqHRA7EE2NiO7lvL4g,1156
23
- openedx_learning/apps/authoring/collections/api.py,sha256=DaGg73iom7fN9fODajo8B2e9Jkx2syfLEVjip0cAzlQ,7747
24
- openedx_learning/apps/authoring/collections/apps.py,sha256=67imy9vnyXml4cfLNGFJhuZr2yx1q92-xz4ih3yJgNU,416
25
- openedx_learning/apps/authoring/collections/models.py,sha256=os8EKUVZ2IhMfFo2XN9tklByCUXphEtzAkKAOc0KyW8,8451
26
- openedx_learning/apps/authoring/collections/migrations/0001_initial.py,sha256=xcJoqMLROW9FTILYrz6UsyotVu9wBN5tRBwRoAWG6dg,1496
27
- openedx_learning/apps/authoring/collections/migrations/0002_remove_collection_name_collection_created_by_and_more.py,sha256=NRl-_-EkE-w4JLeJsZf6lHxYNV3TIAJVIWbv_-xytGo,2162
28
- openedx_learning/apps/authoring/collections/migrations/0003_collection_entities.py,sha256=-YddfCFS0HW3JsEcpatjakOyeGVklOmba9uRQ-0zIxQ,1805
29
- openedx_learning/apps/authoring/collections/migrations/0004_collection_key.py,sha256=G1STMrsCjU8Ykp0Zm_nIf5YqZCBy1TRTVX7q7zrly8c,2021
30
- openedx_learning/apps/authoring/collections/migrations/0005_alter_collection_options_alter_collection_enabled.py,sha256=HdU_3zxN32nzzvOFpiVpQXleHleJhnq2d8k7jAxhUTM,504
31
- openedx_learning/apps/authoring/collections/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
32
- openedx_learning/apps/authoring/components/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
33
- openedx_learning/apps/authoring/components/admin.py,sha256=zfEpuBEySMYpUZzygaE2MDoI8SH-2H3xIL20YCSCMLo,4582
34
- openedx_learning/apps/authoring/components/api.py,sha256=fnc7PaxaQFsTkJHfQMsxu62V4wHGXt4I5fjJHT9xDsU,25386
35
- openedx_learning/apps/authoring/components/apps.py,sha256=hi1SF2Z8Ex0hgE82wJK5Z_vYYfbcRhtaUW1zWZCdJYI,786
36
- openedx_learning/apps/authoring/components/models.py,sha256=j0AXjCDSBqqBlhP_06aGEuLFiJkhsolA0FdA41NbCmg,10830
37
- openedx_learning/apps/authoring/components/management/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
38
- openedx_learning/apps/authoring/components/management/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
39
- openedx_learning/apps/authoring/components/management/commands/add_assets_to_component.py,sha256=0dJ77NZZoNzYheOdFPXtJrjdL_Z-pCNg3l1rbEGnMCY,3175
40
- openedx_learning/apps/authoring/components/migrations/0001_initial.py,sha256=446LkJSFeK8J_-l-bxakZ_BVx_CiJIllGcBYqWcEenA,4664
41
- openedx_learning/apps/authoring/components/migrations/0002_alter_componentversioncontent_key.py,sha256=98724dtucRjJCRyLt5p45qXYb2d6-ouVGp7PB6zTG6E,539
42
- openedx_learning/apps/authoring/components/migrations/0003_remove_componentversioncontent_learner_downloadable.py,sha256=hDAkKdBvKULepML9pVMqkZg31nAyCeszQHJsFJ4qGws,382
43
- openedx_learning/apps/authoring/components/migrations/0004_remove_componentversioncontent_uuid.py,sha256=hmCUt9VkiisGPckXjVY_qDNNkyj3r6KMK-MpasgOf6w,384
44
- openedx_learning/apps/authoring/components/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
45
- openedx_learning/apps/authoring/contents/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
46
- openedx_learning/apps/authoring/contents/admin.py,sha256=9Njd_lje1emcd168KBWUTGf0mVJ6K-dMYMcqHNjRU4k,1761
47
- openedx_learning/apps/authoring/contents/api.py,sha256=bXb9yQjPfoP1Ynf1aAYz3BEPffK7H5cnba6KdPFSiG0,8818
48
- openedx_learning/apps/authoring/contents/apps.py,sha256=EEUZEnww7TcYcyxMovZthG2muNxd7j7nxBIf21gKrp4,398
49
- openedx_learning/apps/authoring/contents/models.py,sha256=8CYrHK7CZ4U3F7Den4ZV_al7zdoi5ba6X2C0LRinA68,17606
50
- openedx_learning/apps/authoring/contents/migrations/0001_initial.py,sha256=FtOTmIGX2KHpjw-PHbfRjxkFEomI5CEDhNKCZ7IpFeE,3060
51
- openedx_learning/apps/authoring/contents/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
52
- openedx_learning/apps/authoring/publishing/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
53
- openedx_learning/apps/authoring/publishing/admin.py,sha256=NDH4Mm2pYIJ6xG496l8DIDB1YW1cn68H2INUmiV9SAY,19398
54
- openedx_learning/apps/authoring/publishing/api.py,sha256=_NaO2egKNrdV2MziP3tvxSrdQ4QYfxnLQBcLraT15Uw,81472
55
- openedx_learning/apps/authoring/publishing/apps.py,sha256=PXYIx-TwN7a8dDudodX80Z7hNV9bWzrMZnpDET8lCGE,758
56
- openedx_learning/apps/authoring/publishing/contextmanagers.py,sha256=AH5zhr0Tz_gUG9--dfr_oZAu8DMy94n6mnOJuPbWkeU,6723
57
- openedx_learning/apps/authoring/publishing/migrations/0001_initial.py,sha256=wvekNV19YRSdxRmQaFnLSn_nCsQlHIucPDVMmgKf_OE,9272
58
- openedx_learning/apps/authoring/publishing/migrations/0002_alter_learningpackage_key_and_more.py,sha256=toI7qJhNukk6hirKfFx9EpqTpzF2O2Yq1VpFJusDn2M,806
59
- openedx_learning/apps/authoring/publishing/migrations/0003_containers.py,sha256=k5P1LFkjQT-42yyHE2f57dAMQKafLuJCTRaCBMKWcjc,2519
60
- openedx_learning/apps/authoring/publishing/migrations/0004_publishableentity_can_stand_alone.py,sha256=RapDZKcjTp5QGgob9DUaf-zl_pQgg-5nz8PZWoXMlVA,549
61
- openedx_learning/apps/authoring/publishing/migrations/0005_alter_entitylistrow_options.py,sha256=Pp4O-VSI75n3UTZZW6CU4TOVIVc5lZvUg5YfMvZyrYM,377
62
- openedx_learning/apps/authoring/publishing/migrations/0006_draftchangelog.py,sha256=TdioE59_fXCf4ykWhXJfEjyxdDmqbbbLCwLeT1C9irA,3497
63
- openedx_learning/apps/authoring/publishing/migrations/0007_bootstrap_draftchangelog.py,sha256=EoFFSv52CeiuMGf3KmBvr34sx9N-tv8afdXWVR8wPFA,4154
64
- openedx_learning/apps/authoring/publishing/migrations/0008_alter_draftchangelogrecord_options_and_more.py,sha256=m_UjGSYcdYBRIMAlxwXEdO4kVgQOQyr1VjufbssldhI,1206
65
- openedx_learning/apps/authoring/publishing/migrations/0009_dependencies_and_hashing.py,sha256=FzAQ9enWWjc8virAxX-IxJo4Iw39wWbzOjdODFBm6dQ,2946
66
- openedx_learning/apps/authoring/publishing/migrations/0010_backfill_dependencies.py,sha256=KOSjvLH-cnfE-fV2CUzf8Z_avPgajKaBmVLn41VAHN0,5736
67
- openedx_learning/apps/authoring/publishing/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
68
- openedx_learning/apps/authoring/publishing/models/__init__.py,sha256=0IghI3i9T3d0qu5zXaqnP9InlxtK9YsX6Q3znrL8Oxk,1167
69
- openedx_learning/apps/authoring/publishing/models/container.py,sha256=GCUD3WTlgvgZSQOKcoOsfhNAfc5pz3Wbs9ClE9mhtB0,2594
70
- openedx_learning/apps/authoring/publishing/models/draft_log.py,sha256=n-EpEMO582bdEM9qtSSLiz6-mgB14C40tAWDhwNzoI0,17512
71
- openedx_learning/apps/authoring/publishing/models/entity_list.py,sha256=K9RhtGmiCl25RVTRbC-t8cWHo5AjsYDlMokspZckrQY,3673
72
- openedx_learning/apps/authoring/publishing/models/learning_package.py,sha256=1fuNLHD6k0qGuL0jXYGf4-TA5WczgxJrXUdAIM_JNBI,2688
73
- openedx_learning/apps/authoring/publishing/models/publish_log.py,sha256=qgtuu5DB3yz4BbExIoeJb-GuogzHOMmSDvzsCoo6_NE,9155
74
- openedx_learning/apps/authoring/publishing/models/publishable_entity.py,sha256=2mTy-BOchoq9sTzQOaqAogbKuRBtLlQQLjRWk9tAl9k,27683
75
- openedx_learning/apps/authoring/sections/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
76
- openedx_learning/apps/authoring/sections/admin.py,sha256=OQOTtXYM-Zj8BBb1wNBkOxgkF2Pv3JdUrZ45VOEmThM,1757
77
- openedx_learning/apps/authoring/sections/api.py,sha256=DXFHCjR8hauJK0Cmwxtk-PQLQpoVPpna-USOYNeRenI,11405
78
- openedx_learning/apps/authoring/sections/apps.py,sha256=vbLhC3WIKmG1MD0mvxX01IjoF6xPiJoutJar-h_bH7Y,746
79
- openedx_learning/apps/authoring/sections/models.py,sha256=2GK-dDMJwNRw_9gNFho8iKcDV-iYz_zBzqGMDmQ_jbc,1450
80
- openedx_learning/apps/authoring/sections/migrations/0001_initial.py,sha256=iW5AFhC26mfZNWEVNu8cTsr32Ca4htL4CUanHoXfaeY,1152
81
- openedx_learning/apps/authoring/sections/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
82
- openedx_learning/apps/authoring/subsections/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
83
- openedx_learning/apps/authoring/subsections/admin.py,sha256=vPfOeTzh10aRhtZjXAzYsbwfw4Hc5yuySbpjAvtDH98,1795
84
- openedx_learning/apps/authoring/subsections/api.py,sha256=aoGLjSbf9cUcAFbPvENThKhbJvZlAuzYP-P6Q0G5duw,11309
85
- openedx_learning/apps/authoring/subsections/apps.py,sha256=awpHVtg6bwIF1sEMeVcaGMwvrVzckfEHOFA9eFt5900,781
86
- openedx_learning/apps/authoring/subsections/models.py,sha256=1uhdpS9Eg6keSqkzQaE8-XSVLAQlmi0llIIU2V7Nl44,1492
87
- openedx_learning/apps/authoring/subsections/migrations/0001_initial.py,sha256=7kEHIC-EwG2KvlW4hg5tnl45--dW4Yv5gqV5SDqNYNo,1158
88
- openedx_learning/apps/authoring/subsections/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
89
- openedx_learning/apps/authoring/units/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
90
- openedx_learning/apps/authoring/units/admin.py,sha256=chp-bTfufBiQ3uycVF1DBEFSPvwXaROJnyyY8AaH_yw,1717
91
- openedx_learning/apps/authoring/units/api.py,sha256=8HqD5vdDrMZplvnwp5TBdSo3JCE1QafimviO_yDpO9I,10864
92
- openedx_learning/apps/authoring/units/apps.py,sha256=AlKOUoC5zPrRrEedLvGzMf31ujWyhcaaoCNS4LI-u50,709
93
- openedx_learning/apps/authoring/units/models.py,sha256=eTOwFWC9coQLf0ovx08Mj7zi8mPAWCw9QOznybajRk0,1418
94
- openedx_learning/apps/authoring/units/migrations/0001_initial.py,sha256=qM_0JGffxECVgXzncHXfgSE-g8u3L3a14R0M1Bnj_Ys,1129
95
- openedx_learning/apps/authoring/units/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
96
- openedx_learning/contrib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
97
- openedx_learning/contrib/media_server/__init__.py,sha256=iYijWFCl5RNR9omSu22kMl49EfponoqXBqXr0HMp4QI,56
98
- openedx_learning/contrib/media_server/apps.py,sha256=GicFBN3N6wzVs5i3RgrQFJZeMlS55gyf4Iq_4cSdI9U,824
99
- openedx_learning/contrib/media_server/urls.py,sha256=newNjV41sM9A9Oy_rgnZSXdkTFxSHiupIiAsVIGE2CE,365
100
- openedx_learning/contrib/media_server/views.py,sha256=qZPhdEW_oYj1MEdgLVP6Cq3tRiZtp7dTb7ASaSKZ2HY,1350
101
- openedx_learning/lib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
102
- openedx_learning/lib/admin_utils.py,sha256=dQ02NrgXIJL6kx9LFBgEYc1Pr_xtFdr7NVXx01VOIE0,4514
103
- openedx_learning/lib/cache.py,sha256=ppT36KiPLdsAF3GfZCF0IdiHodckd2gLiF1sNhjSJuk,958
104
- openedx_learning/lib/collations.py,sha256=f65575r3BfAvFWU6pdBMsqrxPwFijB2SbJtDXq4UVc4,2401
105
- openedx_learning/lib/fields.py,sha256=FwS2e5FYNGqbG9PJoDFvBsBlkfWCYbZ6G8BPAKbufLc,7701
106
- openedx_learning/lib/managers.py,sha256=-Q3gxalSqyPZ9Im4DTROW5tF8wVTZLlmfTe62_xmowY,1643
107
- openedx_learning/lib/test_utils.py,sha256=g3KLuepIZbaDBCsaj9711YuqyUx7LD4gXDcfNC-mWdc,527
108
- openedx_learning/lib/validators.py,sha256=iqEdEAvFV2tC7Ecssx69kjecpdU8nE87AlDJYrqrsnc,404
109
- openedx_learning-0.30.1.dist-info/licenses/LICENSE.txt,sha256=QTW2QN7q3XszgUAXm9Dzgtu5LXYKbR1SGnqMa7ufEuY,35139
110
- openedx_tagging/__init__.py,sha256=V9N8M7f9LYlAbA_DdPUsHzTnWjYRXKGa5qHw9P1JnNI,30
111
- openedx_tagging/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
112
- openedx_tagging/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
113
- openedx_tagging/core/tagging/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
114
- openedx_tagging/core/tagging/admin.py,sha256=Ngc2l9Mf6gkzmqu7aOwq-d0mgV8szx0GzSeuWFX7Kyg,1080
115
- openedx_tagging/core/tagging/api.py,sha256=zOYBy5hm4Sza6vcXRjMZt0DsVOIxZqfo_tilaFLqIJs,20095
116
- openedx_tagging/core/tagging/apps.py,sha256=-gp0VYqX4XQzwjjd-G68Ev2Op0INLh9Byz5UOqF5_7k,345
117
- openedx_tagging/core/tagging/data.py,sha256=421EvmDzdM7H523dBVQk4J0W_UwTT4U5syqPRXUYK4g,1353
118
- openedx_tagging/core/tagging/rules.py,sha256=GkQLMYX8EPAIzFodTRTxtNI6rDNMyFWGu3NS9G33AyQ,6657
119
- openedx_tagging/core/tagging/urls.py,sha256=-0Nzmh0mlF9-GgEuocwBdSJn6n8EINnxR4m4pmPou44,159
120
- openedx_tagging/core/tagging/import_export/__init__.py,sha256=q5K4JalFQlJxAFUFyqhLY5zQtAskDnRM1H_aVuP_E3Q,83
121
- openedx_tagging/core/tagging/import_export/actions.py,sha256=n007-M59D0mXYcwi9CDldDDy5JHAaGCVv9dQbiY4pZ4,13275
122
- openedx_tagging/core/tagging/import_export/api.py,sha256=cZj3F7_nzLQi73RHURW1YoTWB8K_aXk6GqKvnRcdmbc,7162
123
- openedx_tagging/core/tagging/import_export/exceptions.py,sha256=GGBldoW0tjYBrSlqDDwKkl6N0FIg1Yt5xcl7efxfo20,3116
124
- openedx_tagging/core/tagging/import_export/import_plan.py,sha256=ol9mLfqqR0t1q0Om7D-iC9zKw1EI9MX3yAEKL8q6ias,6824
125
- openedx_tagging/core/tagging/import_export/parsers.py,sha256=eXjMPfMfqcCUKSaXc5xfPEI5PFEK1tNJNGnKHz51tY8,9864
126
- openedx_tagging/core/tagging/import_export/tasks.py,sha256=ZNtCGZuWn7z5E5o6OskrKjeV3vzzVa_yHaa-KlCnaEs,924
127
- openedx_tagging/core/tagging/import_export/template.csv,sha256=HbmXyW94oyfqfVyiaPv1uBEyul9qb8oPmbk9UiMQYo4,1559
128
- openedx_tagging/core/tagging/import_export/template.json,sha256=o8wBSMVtO2n5NokFFWNE99NQyYkeqz0Y_YImxMlZUOM,3491
129
- openedx_tagging/core/tagging/migrations/0001_initial.py,sha256=Co9qmy8c_BUOvRgf-RTpUcYqHEKolj3wBfYhPPuE-vw,8556
130
- openedx_tagging/core/tagging/migrations/0001_squashed.py,sha256=QUkQDRH3qm_-IrJbG6qIEVeLoAMawAsBMf4SO3WFbzQ,9150
131
- openedx_tagging/core/tagging/migrations/0002_auto_20230718_2026.py,sha256=UG_q6UBmbcH92HTdC8yhO9IJRBUzSazoGG6Sm6Q90cc,2832
132
- openedx_tagging/core/tagging/migrations/0003_auto_20230721_1238.py,sha256=c8q2apdZPNcr9U4VstFaLSO5z1k0ZlzL87qObobN7Mw,2109
133
- openedx_tagging/core/tagging/migrations/0004_auto_20230723_2001.py,sha256=bPq4oZn7Mj2CHKNKH51ae4i7JApsWs0QNNtK_cwAlcU,1081
134
- openedx_tagging/core/tagging/migrations/0005_language_taxonomy.py,sha256=R72BxxlDcxqLtFKfZh5XcvCpj-XVeUpuysNPAa_LZPs,754
135
- openedx_tagging/core/tagging/migrations/0006_alter_objecttag_unique_together.py,sha256=Jx7B8ZQ5u8sZksKEkpZFrcaQpBXkaJVBtTXa-k3c4xY,376
136
- openedx_tagging/core/tagging/migrations/0006_auto_20230802_1631.py,sha256=s4sAmjNbEfdqu87JlCqPdgtmQt8Mhb-L7CYPGjivnmA,3104
137
- openedx_tagging/core/tagging/migrations/0007_tag_import_task_log_null_fix.py,sha256=mQLh5O6VE945obKYh2-JdegO-G881yjGSNe0U3U281Y,470
138
- openedx_tagging/core/tagging/migrations/0008_taxonomy_description_not_null.py,sha256=POhWX-qu5BHdpzu-kGeTzO2Q-Efv3edYqtqo3_eOAK8,683
139
- openedx_tagging/core/tagging/migrations/0009_alter_objecttag_object_id.py,sha256=-b0IE3vlJWhXj2ajW6G2b91e5NW-UgvglWz27NR7tKo,615
140
- openedx_tagging/core/tagging/migrations/0010_cleanups.py,sha256=KrVg3L_RGZGVALX243LJcZmgTiM0ESF8d94Oxpx9hvU,1028
141
- openedx_tagging/core/tagging/migrations/0011_remove_required.py,sha256=bcqrdiKTrejQwnQHy9gUoKOIXXv991vRBMIdypiiPX0,588
142
- openedx_tagging/core/tagging/migrations/0012_language_taxonomy.py,sha256=asxUvOlEWJIc9N3eNsQvkBAQP-b2cAf_FIXy0CILuPc,1347
143
- openedx_tagging/core/tagging/migrations/0013_tag_parent_blank.py,sha256=N0Bk_p_l38t6syyJxNKHB95D5MkZqUgr90ISRbBOCKA,619
144
- openedx_tagging/core/tagging/migrations/0014_minor_fixes.py,sha256=46_F-el1UylSRnIRbY2DHeZpA9GJLrmGpEuF-urAtt4,1406
145
- openedx_tagging/core/tagging/migrations/0015_taxonomy_export_id.py,sha256=jhS-T8o2mwu61E7hPbjjE_6MPLKRPQFAVu7pJHZNRz4,1454
146
- openedx_tagging/core/tagging/migrations/0016_object_tag_export_id.py,sha256=X62sThGNv_0_wCBhWPcYRcs90EJwz9km9Nszr9yMVkM,2371
147
- openedx_tagging/core/tagging/migrations/0017_alter_tagimporttask_status.py,sha256=ljxONZOAGRW-tvPUIFmc0cNXN4Hoo3GJiyzGMncN6LI,567
148
- openedx_tagging/core/tagging/migrations/0018_objecttag_is_copied.py,sha256=zmr4b65T0vX6fYc8MpvSmQnYkAiNMpx3RKEd5tudsl8,517
149
- openedx_tagging/core/tagging/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
150
- openedx_tagging/core/tagging/models/__init__.py,sha256=yYdOnthuc7EUdfEULtZgqRwn5Y4bbYQmJCjVZqR5GTM,236
151
- openedx_tagging/core/tagging/models/base.py,sha256=V2Qyp4L2QhTs6lZwB05_H54W6yWvyIEHhTcAGJAq-BY,39845
152
- openedx_tagging/core/tagging/models/import_export.py,sha256=Aj0pleh0nh2LNS6zmdB1P4bpdgUMmvmobTkqBerORAI,4570
153
- openedx_tagging/core/tagging/models/system_defined.py,sha256=_6LfvUZGEltvQMtm2OXy6TOLh3C8GnVTqtZDSAZW6K4,9062
154
- openedx_tagging/core/tagging/models/utils.py,sha256=VhNL2cUTbCuxhsEsLXEDcgdV2tK2amUwVdWxmeZDr2w,2925
155
- openedx_tagging/core/tagging/rest_api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
156
- openedx_tagging/core/tagging/rest_api/paginators.py,sha256=BUIAg3taihHx7uAjpTZAGK1xSZzZY9G0aib4OKv5c0k,2651
157
- openedx_tagging/core/tagging/rest_api/urls.py,sha256=egXaRQv1EAgF04ThgVZBQuvLK1LimuyUKKBD2Hbqb10,148
158
- openedx_tagging/core/tagging/rest_api/utils.py,sha256=XZXixZ44vpNlxiyFplW8Lktyh_m1EfR3Y-tnyvA7acc,3620
159
- openedx_tagging/core/tagging/rest_api/v1/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
160
- openedx_tagging/core/tagging/rest_api/v1/permissions.py,sha256=eD-RFK29vIqPOEQ_QXR4uOV4Jz0fQkNTy8KdVQDE2ak,2419
161
- openedx_tagging/core/tagging/rest_api/v1/serializers.py,sha256=0HQD_Jrf6-YpocYfzGs74YBYjXe9Yo7cXU0A4VKr5Dw,13876
162
- openedx_tagging/core/tagging/rest_api/v1/urls.py,sha256=dNUKCtUCx_YzrwlbEbpDfjGVQbb2QdJ1VuJCkladj6E,752
163
- openedx_tagging/core/tagging/rest_api/v1/views.py,sha256=Hf92cy-tE767DE9FgsZcPKiCYrf5ihfETz8qGKBnuiU,36278
164
- openedx_tagging/core/tagging/rest_api/v1/views_import.py,sha256=kbHUPe5A6WaaJ3J1lFIcYCt876ecLNQfd19m7YYub6c,1470
165
- openedx_learning-0.30.1.dist-info/METADATA,sha256=3HzP3Q78vbE3hQ9mdAHthzmp_9XtKeu_3XhgbLGKE0Q,9372
166
- openedx_learning-0.30.1.dist-info/WHEEL,sha256=JNWh1Fm1UdwIQV075glCn4MVuCRs0sotJIq-J6rbxCU,109
167
- openedx_learning-0.30.1.dist-info/top_level.txt,sha256=IYFbr5mgiEHd-LOtZmXj3q3a0bkGK1M9LY7GXgnfi4M,33
168
- openedx_learning-0.30.1.dist-info/RECORD,,