educommon 3.12.0__py3-none-any.whl → 3.13.2__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 (221) hide show
  1. educommon/__init__.py +0 -1
  2. educommon/about/ui/actions.py +16 -30
  3. educommon/about/ui/ui.py +3 -12
  4. educommon/about/utils.py +6 -5
  5. educommon/async_task/__init__.py +0 -1
  6. educommon/async_task/actions.py +18 -13
  7. educommon/async_task/apps.py +4 -0
  8. educommon/async_task/locker.py +2 -5
  9. educommon/async_task/migrations/0001_initial.py +55 -9
  10. educommon/async_task/migrations/0002_task_type_and_status_data.py +94 -89
  11. educommon/async_task/migrations/0003_alter_runningtask_options.py +0 -1
  12. educommon/async_task/models.py +9 -6
  13. educommon/async_task/tasks.py +11 -7
  14. educommon/async_task/ui.py +16 -35
  15. educommon/async_tasks/__init__.py +0 -1
  16. educommon/async_tasks/apps.py +4 -0
  17. educommon/async_tasks/locks.py +11 -21
  18. educommon/async_tasks/migrations/0001_initial.py +68 -8
  19. educommon/async_tasks/migrations/0002_load_initial_data.py +0 -1
  20. educommon/async_tasks/models.py +9 -29
  21. educommon/async_tasks/tasks.py +25 -54
  22. educommon/audit_log/__init__.py +1 -0
  23. educommon/audit_log/actions.py +27 -36
  24. educommon/audit_log/app_meta.py +7 -4
  25. educommon/audit_log/apps.py +44 -29
  26. educommon/audit_log/constants.py +7 -4
  27. educommon/audit_log/error_log/actions.py +1 -3
  28. educommon/audit_log/helpers.py +2 -4
  29. educommon/audit_log/management/commands/reinstall_audit_log.py +11 -7
  30. educommon/audit_log/migrations/0001_initial.py +91 -16
  31. educommon/audit_log/migrations/0002_install_audit_log.py +13 -13
  32. educommon/audit_log/migrations/0003_logproxy.py +1 -3
  33. educommon/audit_log/migrations/0004_reinstall_audit_log.py +1 -4
  34. educommon/audit_log/migrations/0005_postgresql_error.py +4 -2
  35. educommon/audit_log/migrations/0006_auto_20200806_1707.py +3 -4
  36. educommon/audit_log/migrations/0007_create_selective_tables_function.py +8 -5
  37. educommon/audit_log/migrations/0008_table_logged.py +0 -1
  38. educommon/audit_log/migrations/0009_reinstall_audit_log.py +0 -1
  39. educommon/audit_log/models.py +36 -42
  40. educommon/audit_log/permissions.py +11 -9
  41. educommon/audit_log/proxies.py +12 -23
  42. educommon/audit_log/ui.py +18 -15
  43. educommon/audit_log/utils/__init__.py +28 -60
  44. educommon/audit_log/utils/operations.py +16 -2
  45. educommon/auth/__init__.py +0 -3
  46. educommon/auth/rbac/__init__.py +2 -4
  47. educommon/auth/rbac/actions.py +148 -145
  48. educommon/auth/rbac/app_meta.py +9 -6
  49. educommon/auth/rbac/backends/base.py +2 -8
  50. educommon/auth/rbac/backends/caching.py +27 -37
  51. educommon/auth/rbac/backends/simple.py +1 -4
  52. educommon/auth/rbac/checker.py +1 -3
  53. educommon/auth/rbac/management/commands/rbac.py +6 -11
  54. educommon/auth/rbac/manager.py +18 -47
  55. educommon/auth/rbac/migrations/0001_initial.py +73 -12
  56. educommon/auth/rbac/migrations/0002_model_modifier_metaclass_fix.py +7 -6
  57. educommon/auth/rbac/migrations/0003_permission_hidden.py +1 -5
  58. educommon/auth/rbac/migrations/0004_auto_20171024_1245.py +26 -19
  59. educommon/auth/rbac/models.py +63 -68
  60. educommon/auth/rbac/permissions.py +6 -7
  61. educommon/auth/rbac/ui.py +83 -84
  62. educommon/auth/rbac/utils.py +10 -11
  63. educommon/auth/rbac/validators.py +4 -5
  64. educommon/auth/simple_auth/__init__.py +1 -5
  65. educommon/auth/simple_auth/actions.py +79 -92
  66. educommon/auth/simple_auth/app_meta.py +2 -9
  67. educommon/auth/simple_auth/checkers.py +3 -3
  68. educommon/auth/simple_auth/migrations/0001_initial.py +23 -4
  69. educommon/auth/simple_auth/validators.py +0 -1
  70. educommon/contingent/actions.py +7 -7
  71. educommon/contingent/app_meta.py +1 -4
  72. educommon/contingent/base.py +10 -15
  73. educommon/contingent/catalogs.py +424 -540
  74. educommon/contingent/contingent_plugin/actions.py +4 -15
  75. educommon/contingent/contingent_plugin/apps.py +10 -4
  76. educommon/contingent/contingent_plugin/migrations/0001_initial.py +5 -6
  77. educommon/contingent/contingent_plugin/migrations/0002_add_contingent_model_deleted.py +6 -11
  78. educommon/contingent/contingent_plugin/model_views.py +2 -12
  79. educommon/contingent/contingent_plugin/models.py +2 -7
  80. educommon/contingent/contingent_plugin/observer.py +14 -13
  81. educommon/contingent/contingent_plugin/plugin_meta.py +1 -3
  82. educommon/contingent/contingent_plugin/storage.py +8 -7
  83. educommon/contingent/contingent_plugin/utils.py +6 -6
  84. educommon/django/db/fields.py +72 -86
  85. educommon/django/db/migration/__init__.py +3 -7
  86. educommon/django/db/migration/operations.py +29 -51
  87. educommon/django/db/mixins/__init__.py +16 -10
  88. educommon/django/db/mixins/date_interval.py +47 -75
  89. educommon/django/db/mixins/validation.py +26 -26
  90. educommon/django/db/model_view/__init__.py +18 -22
  91. educommon/django/db/models.py +9 -8
  92. educommon/django/db/observer.py +9 -27
  93. educommon/django/db/partitioning/__init__.py +66 -92
  94. educommon/django/db/partitioning/management/commands/apply_partitioning.py +3 -13
  95. educommon/django/db/partitioning/management/commands/clear_table.py +18 -14
  96. educommon/django/db/partitioning/management/commands/split_table.py +18 -13
  97. educommon/django/db/routers.py +6 -15
  98. educommon/django/db/signals.py +149 -2
  99. educommon/django/db/utils.py +14 -19
  100. educommon/django/db/validators/__init__.py +1 -0
  101. educommon/django/db/validators/simple.py +72 -100
  102. educommon/django/storages/atcfs/api.py +39 -53
  103. educommon/django/storages/atcfs/app_meta.py +1 -1
  104. educommon/django/storages/atcfs/management/commands/atcfs_migrate.py +42 -55
  105. educommon/django/storages/atcfs/models.py +0 -3
  106. educommon/django/storages/atcfs/monkey_patching.py +18 -12
  107. educommon/django/storages/atcfs/storage.py +14 -23
  108. educommon/extjs/fields/input_params.py +15 -45
  109. educommon/importer/XLSReader.py +143 -241
  110. educommon/importer/__init__.py +86 -4
  111. educommon/importer/api.py +53 -84
  112. educommon/importer/constants.py +4 -14
  113. educommon/importer/loggers.py +16 -26
  114. educommon/importer/proxy.py +131 -176
  115. educommon/importer/proxy_import.py +11 -12
  116. educommon/importer/report.py +4 -6
  117. educommon/importer/ui.py +32 -26
  118. educommon/importer/validators.py +4 -7
  119. educommon/integration_entities/helpers.py +14 -18
  120. educommon/ioc/__init__.py +3 -6
  121. educommon/logger/loggers.py +10 -14
  122. educommon/m3/__init__.py +20 -38
  123. educommon/m3/extensions/__init__.py +1 -0
  124. educommon/m3/extensions/listeners/__init__.py +22 -38
  125. educommon/m3/extensions/listeners/delete_check/listeners.py +31 -41
  126. educommon/m3/extensions/listeners/delete_check/mixins.py +20 -25
  127. educommon/m3/extensions/listeners/delete_check/signals.py +2 -2
  128. educommon/m3/extensions/listeners/delete_check/ui.py +15 -14
  129. educommon/m3/extensions/listeners/delete_check/utils.py +9 -11
  130. educommon/m3/extensions/ui.py +15 -33
  131. educommon/m3/transaction_context.py +17 -19
  132. educommon/objectpack/actions.py +70 -88
  133. educommon/objectpack/apps.py +5 -0
  134. educommon/objectpack/filters.py +9 -15
  135. educommon/objectpack/ui.py +59 -77
  136. educommon/report/__init__.py +9 -5
  137. educommon/report/actions.py +29 -32
  138. educommon/report/constructor/__init__.py +5 -8
  139. educommon/report/constructor/app_meta.py +1 -3
  140. educommon/report/constructor/apps.py +1 -0
  141. educommon/report/constructor/base.py +33 -80
  142. educommon/report/constructor/builders/excel/_base.py +138 -286
  143. educommon/report/constructor/builders/excel/_header.py +2 -9
  144. educommon/report/constructor/builders/excel/product.py +13 -34
  145. educommon/report/constructor/builders/excel/with_merged_cells.py +18 -14
  146. educommon/report/constructor/config.py +2 -0
  147. educommon/report/constructor/editor/actions.py +101 -215
  148. educommon/report/constructor/editor/ui.py +71 -93
  149. educommon/report/constructor/exceptions.py +6 -12
  150. educommon/report/constructor/migrations/0001_initial.py +36 -44
  151. educommon/report/constructor/migrations/0002_report_filters.py +86 -72
  152. educommon/report/constructor/migrations/0003_reportfilter_exclude.py +5 -5
  153. educommon/report/constructor/migrations/0004_reportfilter_fields.py +22 -18
  154. educommon/report/constructor/migrations/0005_reportcolumn_visible.py +5 -4
  155. educommon/report/constructor/migrations/0006_reportsorting.py +21 -17
  156. educommon/report/constructor/migrations/0007_include_available_units.py +14 -14
  157. educommon/report/constructor/migrations/0008_auto_20170407_1318.py +4 -5
  158. educommon/report/constructor/migrations/0009_auto_20180405_0642.py +1 -4
  159. educommon/report/constructor/migrations/0010_add_aggregate_fields.py +7 -8
  160. educommon/report/constructor/mixins.py +14 -15
  161. educommon/report/constructor/models.py +76 -124
  162. educommon/report/constructor/utils.py +3 -8
  163. educommon/report/constructor/validators.py +1 -3
  164. educommon/report/reporter.py +25 -43
  165. educommon/report/utils.py +14 -40
  166. educommon/rest/actions.py +7 -11
  167. educommon/rest/context.py +6 -16
  168. educommon/rest/controllers.py +10 -10
  169. educommon/rest/mixins.py +29 -27
  170. educommon/secure_media/app_meta.py +9 -9
  171. educommon/utils/__init__.py +3 -2
  172. educommon/utils/caching.py +1 -3
  173. educommon/utils/conversion.py +1 -3
  174. educommon/utils/crypto.py +1 -2
  175. educommon/utils/date.py +13 -26
  176. educommon/utils/db/__init__.py +17 -26
  177. educommon/utils/db/postgresql.py +1 -4
  178. educommon/utils/fonts/__init__.py +3 -4
  179. educommon/utils/licence/__init__.py +5 -16
  180. educommon/utils/misc.py +9 -18
  181. educommon/utils/object_grid.py +55 -62
  182. educommon/utils/phone_number/modelfields.py +1 -3
  183. educommon/utils/phone_number/phone_number.py +5 -8
  184. educommon/utils/phone_number/validators.py +8 -23
  185. educommon/utils/plugins.py +15 -28
  186. educommon/utils/registry.py +2 -1
  187. educommon/utils/seqtools.py +1 -3
  188. educommon/utils/serializer.py +9 -16
  189. educommon/utils/storage.py +3 -2
  190. educommon/utils/system.py +1 -3
  191. educommon/utils/system_app/management/commands/delete_objects.py +17 -34
  192. educommon/utils/ui.py +87 -84
  193. educommon/utils/xml/__init__.py +2 -7
  194. educommon/utils/xml/resolver.py +1 -0
  195. educommon/ws_log/actions.py +31 -76
  196. educommon/ws_log/base.py +6 -20
  197. educommon/ws_log/migrations/0001_initial.py +25 -8
  198. educommon/ws_log/migrations/0002_auto_20160628_1334.py +0 -1
  199. educommon/ws_log/migrations/0003_add_fields_to_smev_logs.py +20 -4
  200. educommon/ws_log/migrations/0004_auto_20160727_1600.py +7 -6
  201. educommon/ws_log/migrations/0005_auto_20161130_1615.py +14 -4
  202. educommon/ws_log/migrations/0006_auto_20170327_1027.py +3 -2
  203. educommon/ws_log/migrations/0007_auto_20180607_1040.py +8 -9
  204. educommon/ws_log/migrations/0008_auto_20180713_1445.py +23 -10
  205. educommon/ws_log/migrations/0009_auto_20201130_1553.py +7 -2
  206. educommon/ws_log/models.py +21 -35
  207. educommon/ws_log/provider.py +2 -1
  208. educommon/ws_log/report.py +8 -13
  209. educommon/ws_log/smev/applications.py +12 -27
  210. educommon/ws_log/smev/exceptions.py +2 -3
  211. educommon/ws_log/ui.py +32 -32
  212. educommon/ws_log/utils.py +1 -3
  213. educommon-3.13.2.dist-info/METADATA +57 -0
  214. educommon-3.13.2.dist-info/RECORD +354 -0
  215. {educommon-3.12.0.dist-info → educommon-3.13.2.dist-info}/WHEEL +1 -1
  216. educommon/utils/patches.py +0 -27
  217. educommon/version.conf +0 -11
  218. educommon-3.12.0.dist-info/METADATA +0 -47
  219. educommon-3.12.0.dist-info/RECORD +0 -357
  220. educommon-3.12.0.dist-info/dependency_links.txt +0 -1
  221. {educommon-3.12.0.dist-info → educommon-3.13.2.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,354 @@
1
+ educommon/__init__.py,sha256=8Eg0Fe-t9W-jJ7TxAlJN7UHIfxOCr2Hx-SukzPYhv2U,418
2
+ educommon/thread_data.py,sha256=n0XtdesP9H92O3rJ8K6fVnJLiHqyJEfh2xpuT36wzxs,61
3
+ educommon/about/README.rst,sha256=U48UW5jv-8qHyaV56atzzkNMvzHKXVcWSb_NR06PnMo,2685
4
+ educommon/about/__init__.py,sha256=H1W0IgW-qX9LCZ49GOJzHdmQGHhh-MA6U1xmNx7WnfM,132
5
+ educommon/about/apps.py,sha256=GrpJAOE2sF0ukWsqugP_WJS88DO4aL-T3kTLprrJrcA,259
6
+ educommon/about/utils.py,sha256=r0PUXcyPxC20bX7ODjGzUl0G-7N4QUiiq5VJ5k0y0CQ,619
7
+ educommon/about/static/edu_about/barsgroup.png,sha256=WGmgL7P-gN516_sz8QdYC96kPPkfd2wqUY_UfIYzUQk,8382
8
+ educommon/about/ui/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
9
+ educommon/about/ui/about-window.js,sha256=IdItT3uimrz4r_7q96rjhwtUBk6jYdp3bll0KQ6pxYQ,535
10
+ educommon/about/ui/actions.py,sha256=Bh_XiE3TeAIQOx2y0gOPr5rMhbLPa6PdHx0Lw4d2PeY,5811
11
+ educommon/about/ui/common-tab.html,sha256=5T4yKE-yDN3vD0sjCPT13hjQXxd08SVeZcZx5JDlm0Y,700
12
+ educommon/about/ui/packages-tab.js,sha256=67e7MNKA7d5yr6wb8-C_RziAnlSHClvCBwd9QId0KkU,11192
13
+ educommon/about/ui/postgresql-extensions-tab.js,sha256=JOzStPqMqTq3bANlka-WRWH7cbh1X90SH1KXkpWdfP4,129
14
+ educommon/about/ui/ui.py,sha256=8XgQ_lxZvlcN83gAf2RbdZz7Fntah9WP9nZj7eVInSg,5197
15
+ educommon/async_task/__init__.py,sha256=iM9NdcuLAiz79tWyuBRT1jlvi4tvuNpjvt1fQkcRKCw,109
16
+ educommon/async_task/actions.py,sha256=RoD4DD9Wx9v_p4XddyqahIEo1_fKdmBNHiPK7XQtgIE,6757
17
+ educommon/async_task/apps.py,sha256=xvMwADs3kt09LaUXNtYZNTsmsomuc8RPK60yENAw5Tg,367
18
+ educommon/async_task/consts.py,sha256=LulbNKSlS_T8sNjFqMS7DtaotVI0HibD1a0Iz9iDo8M,242
19
+ educommon/async_task/exceptions.py,sha256=PaaG2nqP0G2eZ-p0yssca2hhxIccil6MYKH6ZteezP8,117
20
+ educommon/async_task/helpers.py,sha256=HihuIHrszhVQAb-Cs6-l4npnlNAgctItGBJ-oIPQX74,2706
21
+ educommon/async_task/locker.py,sha256=2r6tAWo6-5mKWeX152yeVYkLkRmuZncgMmyqrxhjaqU,3810
22
+ educommon/async_task/models.py,sha256=d2hlIVDSRieCILSl7pu7einYufAoIFOLFbdY21ugSO0,7424
23
+ educommon/async_task/tasks.py,sha256=_nBE2ENx7uvim73X1H3vRuHjkY4f7cy0lW_UJyI6hJo,12968
24
+ educommon/async_task/ui.py,sha256=ovPREZQO4rVg7K7toMj9hbLMwH6tY639CS92cpog3j0,5608
25
+ educommon/async_task/migrations/0001_initial.py,sha256=6hJc52I13p4fsqNGz6U0OQTEmisEhazISxoKE6OwNMc,4689
26
+ educommon/async_task/migrations/0002_task_type_and_status_data.py,sha256=Y0eBgc2kQ0W9qNrkm3zq9wBXbkaMTe6G2kFq-6S6EF8,3748
27
+ educommon/async_task/migrations/0003_alter_runningtask_options.py,sha256=cVxBmIOLTCYqTGRV3zUm7CL0vU7yOkM9TrLW6yujDD4,479
28
+ educommon/async_task/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
29
+ educommon/async_task/templates/ui-js/async-task-list-win.js,sha256=hjVV7S7HcJcpFkeToGAPQh_Icg63QC4jqGAyGOlilK8,749
30
+ educommon/async_task/templates/ui-js/async-task-revoke.js,sha256=xKDi60ZH6X9CDkauYL27Ry6msmmJ1v14Cm1kv0lMkxg,1257
31
+ educommon/async_task/templates/ui-js/async-task-view-win.js,sha256=EUTK1XhgPxNgJmQ2tB8oGvJt9XHVkdDv7FXAGD4cAUQ,260
32
+ educommon/async_tasks/__init__.py,sha256=iM9NdcuLAiz79tWyuBRT1jlvi4tvuNpjvt1fQkcRKCw,109
33
+ educommon/async_tasks/apps.py,sha256=qvzGA33zIcOIH0UtTJe0Ep0lZD89Mc4UNlSanSZW61g,362
34
+ educommon/async_tasks/exceptions.py,sha256=qPFa1MVHIRSjXwGXcOPeWQqtgRe-1APaDs_X8exImKA,251
35
+ educommon/async_tasks/locks.py,sha256=oovlCrDy8yVo7nuhGp7p5ZHXriZPXRynHqi2fsgKvMk,3275
36
+ educommon/async_tasks/models.py,sha256=LpylEQpGSKcG_b5p4aDc1AKCA6uqd9qjT2ZcvD9udqQ,3376
37
+ educommon/async_tasks/statuses.py,sha256=aFm_fdrnN6kNyv46J90xH-RBDGdQQCcVgFyf1sbl9ow,1413
38
+ educommon/async_tasks/tasks.py,sha256=3ucFdR9TUC46lh61yEKbRy0k4l51f8TS2uHVdzY04AA,10924
39
+ educommon/async_tasks/fixtures/initial_data.json,sha256=d5EGMoCY8CVJL80C8ZaPwVVUZNfYelNmBIr7On4yZbg,303
40
+ educommon/async_tasks/migrations/0001_initial.py,sha256=ohWQK9rzMdM6kSWs7IPmlOA5amkWdaWZ7u3MBl1uWd0,5632
41
+ educommon/async_tasks/migrations/0002_load_initial_data.py,sha256=MMLyXnEl9KFb1jYNfDfunwoLrTLyZfSqmcUQUhr2V-M,477
42
+ educommon/async_tasks/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
43
+ educommon/audit_log/__init__.py,sha256=fNpKUKim4ybYWxSXjJ77G0YsvtFiZcWb0x6SDT3GxMo,2773
44
+ educommon/audit_log/actions.py,sha256=iC9kREnAtaMmBRJLIOcwzATBjceGojeeDUkCd5Po3GM,6231
45
+ educommon/audit_log/app_meta.py,sha256=eIEgpxkZ5MTD6h1j1GrWMxyWdyoKk7rSWzHlQ6UKKEM,399
46
+ educommon/audit_log/apps.py,sha256=A27iSAEWAVr7LmBmexVDrbWm3eQ-zFq1FYGQRClMJVM,6278
47
+ educommon/audit_log/constants.py,sha256=8C1SCiwD1s_ED9C3Hh50LMAnToGvZmF21nrv18hRLEg,903
48
+ educommon/audit_log/helpers.py,sha256=Dp1DvuzVkhD-P37yoXGd1tvXKPJz2ZQzROS97VURrcY,727
49
+ educommon/audit_log/middleware.py,sha256=HkxBh-1RQJnhKqckkXaMbFjJ34WgZGJssbk04wiS3ts,1140
50
+ educommon/audit_log/models.py,sha256=LLKbnpvz89ZzZ__ZDYBXqh_Klp3z_XfSo69s-MsX-6g,13066
51
+ educommon/audit_log/permissions.py,sha256=_0ntlLKUbJ1kYR2_YpgOxYMJNopZkrdIgxgPiHgL780,1273
52
+ educommon/audit_log/proxies.py,sha256=cyNUCt8057S0I6Hj0s02av_-SuUkDVHERd35KzNQEKI,8230
53
+ educommon/audit_log/routers.py,sha256=FF3KLvf6_WWFuZ9VRI8AZyKDfWp_lyd0i6bcVFfIehQ,204
54
+ educommon/audit_log/ui.py,sha256=E0O1JpafNO8oI67u4uKQS_gPE6WpoW-h1ZIPbe5K44w,2584
55
+ educommon/audit_log/error_log/__init__.py,sha256=lfAIm5GTGQ1-kRFxH1s0agSt2Oeguwj2906XNBC0qH4,97
56
+ educommon/audit_log/error_log/actions.py,sha256=-KSy3RrBsbPWCML-gl5Hl5UGQdEsPZhoKrHq16LRmm8,2305
57
+ educommon/audit_log/management/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
58
+ educommon/audit_log/management/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
59
+ educommon/audit_log/management/commands/reinstall_audit_log.py,sha256=o7deAmr2DXcqprjrnfs7pfHtqbyO8fUwYFlwqGwE5wM,3013
60
+ educommon/audit_log/migrations/0001_initial.py,sha256=HDhvBNyVSx_NlFmyA-t_ooFo_TiKf0UHNCZp1GOpLA8,6115
61
+ educommon/audit_log/migrations/0002_install_audit_log.py,sha256=kAhtd1Xz8b6g33wmxBQyRBJIl-LGJdOc7yFy5yhoRJ8,2825
62
+ educommon/audit_log/migrations/0003_logproxy.py,sha256=fx6nCoDtr3bZTtlwiOKP4QTVPxnnqyYDPMAT20Bv4n8,391
63
+ educommon/audit_log/migrations/0004_reinstall_audit_log.py,sha256=r_uF9txct8VDv3EaDERgW_qujunZ3XRmBuHKkPutmak,267
64
+ educommon/audit_log/migrations/0005_postgresql_error.py,sha256=8XrC4FBBGgL8fFpkR74fuWt5g3iLrDyGjBUqW4punZM,755
65
+ educommon/audit_log/migrations/0006_auto_20200806_1707.py,sha256=as1GDzH6UBF8_8gbBZi6bdqQNn8pApnfXydf30VFpXY,603
66
+ educommon/audit_log/migrations/0007_create_selective_tables_function.py,sha256=h65nZHknxORAArKXTtblaRHH9iEmUMT8t4dAtEp6ii0,871
67
+ educommon/audit_log/migrations/0008_table_logged.py,sha256=mvBPtLGxgtwOIImIZ616yifmcUsEFbCjWo5NkhTX3Q4,476
68
+ educommon/audit_log/migrations/0009_reinstall_audit_log.py,sha256=c95H2yamWyrCoGDby6M_VGh41p2MuftC_xjmk_nqqQ8,286
69
+ educommon/audit_log/migrations/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
70
+ educommon/audit_log/sql/configure_audit_log.sql,sha256=M3QxNKTZbn-uNRxGDvNxE9iJh1EOQUTIho7rvc3yhlY,1511
71
+ educommon/audit_log/sql/install_audit_log.sql,sha256=SHrZ7WaYxawUKQEpZnj9k4HTU25NvBlxX_POqZ95HU0,14107
72
+ educommon/audit_log/utils/__init__.py,sha256=Mx6yOVUTE5bqoeEmZp4QOvKQg1qG2wTjSvUvzKsEcus,15731
73
+ educommon/audit_log/utils/operations.py,sha256=skxL7wE4Jx1XlNdPx-Pl3SfiZ1G9jBmcZrXKSQDUGzw,2555
74
+ educommon/auth/__init__.py,sha256=xkGJgqQ5QaEU86n6tJV77ux-2bMTAKbjpVYBCDhcS0E,79
75
+ educommon/auth/rbac/__init__.py,sha256=guO7sOX6e1Z-dqptsqXjbnMdgbSdKp2suDKJa5_pdVU,317
76
+ educommon/auth/rbac/actions.py,sha256=LwHARkVAfi4s5fPkEvNV1Enyw_T_8wLNu3w0JpA1EVo,29221
77
+ educommon/auth/rbac/app_meta.py,sha256=IprrnLlW5tYVew3h0RhIqByQmvsd6huZAdEcrvYbBPY,485
78
+ educommon/auth/rbac/checker.py,sha256=1Iu3RNzf2VGWV-7DSPXQnECQxJjNOu-vq79eQ52uHwo,2927
79
+ educommon/auth/rbac/config.py,sha256=mRpOzD29ZHc0zX-CxhUyyICj3h0xj9gUM6N1OoLEWm0,1074
80
+ educommon/auth/rbac/constants.py,sha256=Hm4kuG7HZ9krTwF6HIj3eMe8v98ui3EMueToBTeOh4A,502
81
+ educommon/auth/rbac/manager.py,sha256=aHPCO9EIzLVIj81kH9mMXmALhGXaEYX7j0sjWb-t8EU,15727
82
+ educommon/auth/rbac/models.py,sha256=Gg4o0gyuUuPsaQMvgnvgmxx1-iccye0d5Hk1CbQfYQA,16198
83
+ educommon/auth/rbac/permissions.py,sha256=S3P-q6wFI_ZDawYgfgFg3gcMk68Pvm-X3wnzERgmc_M,868
84
+ educommon/auth/rbac/ui.py,sha256=RuPPJAhOird0idLEtd4ybSJxEIGMXuqcPpBOzh9NMTI,16298
85
+ educommon/auth/rbac/utils.py,sha256=NYvyoQlultlBw5jAF1T4xpLwUer8ZREYjMhBzbHlo5o,7739
86
+ educommon/auth/rbac/validators.py,sha256=8KoW9IdVY_QFqoJm1WQd21tsLEj2yfQH5djwb0eAPX4,451
87
+ educommon/auth/rbac/backends/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
88
+ educommon/auth/rbac/backends/base.py,sha256=Ng02zDjgzvouoVqXVPcleDBwL-c3eUeIeTMxilvP0kk,2913
89
+ educommon/auth/rbac/backends/caching.py,sha256=7Ds3IDjngVCbcTLoNQw2XY9QmswuFrltBd9JhgM30lg,10448
90
+ educommon/auth/rbac/backends/simple.py,sha256=kJfSqFrS25RGhY1nCZpTzLE9fCsnPoBHj8kmizAlCa0,5015
91
+ educommon/auth/rbac/management/__init__.py,sha256=4SvPFcSTlvQFsFT8RfibO_bfX-9b3rHugdZ6HhS0YOo,71
92
+ educommon/auth/rbac/management/commands/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
93
+ educommon/auth/rbac/management/commands/rbac.py,sha256=skXTBlWC_H68TUYZsUEHp2d1V4kzdktXPY26QBFrl6A,5444
94
+ educommon/auth/rbac/migrations/0001_initial.py,sha256=WIfuDGsOphZO7oFrUuXcY29uWm9Rq3gxZzLbi0Ed6dM,6808
95
+ educommon/auth/rbac/migrations/0002_model_modifier_metaclass_fix.py,sha256=5xUlMpiY6_MYE9OLf3SptTpHAVZj89Fzo9k26LjZyKI,571
96
+ educommon/auth/rbac/migrations/0003_permission_hidden.py,sha256=UVFoRepViO-f2M-3GDNF406Y_Mdu8dL41b06eXIspc8,423
97
+ educommon/auth/rbac/migrations/0004_auto_20171024_1245.py,sha256=7Bt0yLAguVY-xjOKJ07MXSIGsi83AojcL_7GyTyN9Q8,2227
98
+ educommon/auth/rbac/migrations/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
99
+ educommon/auth/rbac/templates/rbac/role-add-window.js,sha256=5l1B38sfPp89nyky_Bpnf5GE8wSv6xLgHpJsqDwMCNc,335
100
+ educommon/auth/rbac/templates/rbac/role-edit-window.js,sha256=5MueeeqykEdsW6BceIj_YOGCGs4g9dDL36mmmXwbSQg,7914
101
+ educommon/auth/rbac/templates/rbac/roles-list-window.js,sha256=q7QqjsRyFtr1qk0dOJ9zn708SzCR9t_uN03ureIcqNQ,3768
102
+ educommon/auth/rbac/templates/rbac/roles-view-list-window.js,sha256=gRkVvd-Wak57q9mNgDSXzzy-Pv-ZQokwQIlmhlFLys0,536
103
+ educommon/auth/simple_auth/__init__.py,sha256=GvXC6lP94ADiTg5k9JmDI1FkG8tlJxBum5e4_6zbJHI,237
104
+ educommon/auth/simple_auth/actions.py,sha256=09AMooNi-m8y5nUJPGXCYjxmxBnbjqAKeqq0W8gpq-U,13110
105
+ educommon/auth/simple_auth/app_meta.py,sha256=RAj9kQt30gje_qqF0ZwoOcqqGjXjYInJiw50xwfekT8,1017
106
+ educommon/auth/simple_auth/checkers.py,sha256=cFGjmCc_YkXaK0m7rMjlnUid8VnyGKRtM7vELc3eFvA,2496
107
+ educommon/auth/simple_auth/const.py,sha256=vizOnXnOVzY5CkgilnwBmhc3vO4biYKUu4VnzM7XsL4,396
108
+ educommon/auth/simple_auth/models.py,sha256=HhyXs0krIIxtkPIeK8skjbRAdSMrfQ1sAL1Tuoe5vZU,700
109
+ educommon/auth/simple_auth/ui.py,sha256=30S7T_UxqtTrN-KBYSsEPRZ8AYQr6IXPimArVeewhtQ,4620
110
+ educommon/auth/simple_auth/validators.py,sha256=eJ2EG3bcoo66A7j09a7TiroN-8KxIrs7PW6PF3z3wD0,203
111
+ educommon/auth/simple_auth/migrations/0001_initial.py,sha256=uAzQRYeOxJImYx0NwDrKLAQ4z9W4u5X9Vm21ynV7g-w,1832
112
+ educommon/auth/simple_auth/migrations/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
113
+ educommon/auth/simple_auth/static/simple_auth/simple_auth.css,sha256=NqCIy9dIq389L7xnefNYAi2_vksJnsV1CRL8ZItTrKc,123
114
+ educommon/auth/simple_auth/templates/simple_auth/change_reset_password_page.html,sha256=G6lrS61ZMFZzpZ3Jt1ZwpIGOCUky6R9W1K7QrVubIdU,1577
115
+ educommon/auth/simple_auth/templates/simple_auth/login_page.html,sha256=BN0rx5mSmyCwVqa9uWbDRgtsojg6COQ6vZWbz0LDPm4,1444
116
+ educommon/auth/simple_auth/templates/simple_auth/reset_password_page.html,sha256=MRg0QfF6LMfpRxZUphhI5BO1ENrCKjMmDW3tkvCcFIQ,1340
117
+ educommon/auth/simple_auth/templates/simple_auth/email/reset_password.html,sha256=GuqE56sItB1Ar5vA5-jFkDnUlZbRK0cWDk2eWtDWcbg,635
118
+ educommon/contingent/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
119
+ educommon/contingent/actions.py,sha256=ErdE5_RWQmTk2rCRT07cpqOTkQpeSPoQ0o46bfJyaj0,3161
120
+ educommon/contingent/app_meta.py,sha256=UUI7mQDQWBF_-SsInNwnSwqLr5SPYFmjxu8xf-yUHRY,251
121
+ educommon/contingent/base.py,sha256=0ihN5-C0Bt3HCqQRtRvRAva76XWvI9lEJvcQGvMAqAg,6695
122
+ educommon/contingent/catalogs.py,sha256=jk-Wm1f3Jpo6ArA-ZQrPgUYmpP-Ck1n2jM9vts6AoAU,59435
123
+ educommon/contingent/contingent_plugin/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
124
+ educommon/contingent/contingent_plugin/actions.py,sha256=IfhnLnobknlFoFAcqtPt2kSICjXj2wxUXO81IGSCKrI,784
125
+ educommon/contingent/contingent_plugin/apps.py,sha256=zRXJ3CpQZH_an-m-DIUoKlag3NMTGW_CTG72iLE-4Nk,1198
126
+ educommon/contingent/contingent_plugin/model_views.py,sha256=2MZyZCUXDMryV7ihpTFLRHrleyq48L4W8mZwy3gy-x8,635
127
+ educommon/contingent/contingent_plugin/models.py,sha256=lAve0-NhoNSJQfulVFjzRz_zWbDZO9_n5ChSdMBNTVw,2445
128
+ educommon/contingent/contingent_plugin/observer.py,sha256=yJam6O8ykFWNw8DdPvK0urVsNXGTPXQcMsI6dFS0UtM,5538
129
+ educommon/contingent/contingent_plugin/plugin_meta.py,sha256=ULI_atyh1iN-z5cULxRnkXOJX_Nh-4P5wfVA8ynS5IM,134
130
+ educommon/contingent/contingent_plugin/storage.py,sha256=1Gl-Toh3Am-4l-vVKKNU5Sq8dY2PN15sqy_FQUZNTZk,3615
131
+ educommon/contingent/contingent_plugin/utils.py,sha256=Z3fZTOa0cyuHbe22NYGnRDkIyw4mcUKQuHbC-6f4PZE,7134
132
+ educommon/contingent/contingent_plugin/migrations/0001_initial.py,sha256=a4Li_bvIOjNXUabL1vEfUqmgshzPgYgFKmabDDuvnmE,1618
133
+ educommon/contingent/contingent_plugin/migrations/0002_add_contingent_model_deleted.py,sha256=6D2fLhP6XeGt9oe0LzkK8E22oEMaAVNW__Ve0H2YIwU,1046
134
+ educommon/contingent/contingent_plugin/migrations/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
135
+ educommon/contingent/json_data/icao.json,sha256=4XEN5fCjczAvs4sGZFeZJmGMdxk4wcfWZBxjAi2ECwk,20078
136
+ educommon/contingent/json_data/okogu.json,sha256=1yK8VWxivX5VeFQzkNSUWqHabu6RBy4VJW0VnOIlEsw,53540
137
+ educommon/contingent/json_data/oksm.json,sha256=kZIQPcdWhwtHKJGgfO79gCYtk6dEe2iAz3Lj5L_AZrU,41859
138
+ educommon/django/__init__.py,sha256=0Fe7dZFIVdw18JIpvl9P7q0GoqKN7ySr5D1rA9YaAzk,69
139
+ educommon/django/db/__init__.py,sha256=bkN8tB5vTllcTXYt8ERHn1wgUQCFXNUmZi068u1jBfU,73
140
+ educommon/django/db/fields.py,sha256=2HLYUbwVvqL9ZGET8rdwKBqtWafp_mADzdIiJBFtO8g,7630
141
+ educommon/django/db/models.py,sha256=9SyamhM0z4ym-IcN40yH0fqFg1QSRZNUzULJYCfGc7A,2516
142
+ educommon/django/db/observer.py,sha256=RTRp70uNeNVRdBwiHG0_Zja_2XCTS995OWkUlg6JWWM,10655
143
+ educommon/django/db/routers.py,sha256=tq0nooDD8T5-qNyEpXWQXpsLUGAiPiEpOT3VEhisZtY,3178
144
+ educommon/django/db/signals.py,sha256=FMV2uX78Ff-LYHBw3iv8IEF0Cpb4Yz_edApTH4syZyA,5757
145
+ educommon/django/db/utils.py,sha256=-m1jv-bqgeyMXOyv6da2_g2BiszmUkDgPXAQgjDHe-4,9068
146
+ educommon/django/db/migration/__init__.py,sha256=OyZKMbIa_fh4xO8s09Pj2CH0jrHqvTVrQYdf-B1etOU,1847
147
+ educommon/django/db/migration/operations.py,sha256=Ca_e-nMHylxDJRyL5zcH8aYLylMuwLwKaLLQI02092s,9887
148
+ educommon/django/db/mixins/__init__.py,sha256=a_3r79k_47nHFMU3ABqDZVxhcQoCHH2biqjRimygADQ,14572
149
+ educommon/django/db/mixins/date_interval.py,sha256=QwUJgz79MJza2qTScuiiTavEITXe7amV2g50X9XyoZg,24163
150
+ educommon/django/db/mixins/validation.py,sha256=rcW-6TV4XfnJVX-gPzDU1qKfKzWIDSYflaSSEWcd8qw,12111
151
+ educommon/django/db/model_view/__init__.py,sha256=e9wYoAg3dWaFItTvMIUVeGPz_dJyjjaYXii6tyYMU7c,12165
152
+ educommon/django/db/model_view/table-view.html,sha256=EEz_tSJagl-mT-_bJaELshAEnFnuhPerpWegb3XeGO8,631
153
+ educommon/django/db/partitioning/README.md,sha256=OgmFZwK_wD1EFKRprnFkeF0Rt7igcEuBncsOF9CsBjI,6927
154
+ educommon/django/db/partitioning/__init__.py,sha256=zA6KgI9o9ACvXijLVrNREmTCRXj6fYU61FOmiReROrI,24035
155
+ educommon/django/db/partitioning/const.py,sha256=52Ue7NylmDUMfV0kbk5fqCaE045IhMIh5ZX9juedYbY,927
156
+ educommon/django/db/partitioning/partitioning.sql,sha256=UfPrtxy82tIr3XjXg_qTg-rUS0KqUyBexp3TBPdU0gk,21304
157
+ educommon/django/db/partitioning/partitioning_set_search_path.sql,sha256=oGlljp2A6xd3FctJAqPAO7RCBSar7C_nsXEu8Ssi0WM,342
158
+ educommon/django/db/partitioning/triggers.sql,sha256=OEwQqMwzRB79LcFM0-cWH8x_UdLKw-iZTSPILTGJ1Uk,3401
159
+ educommon/django/db/partitioning/management/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
160
+ educommon/django/db/partitioning/management/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
161
+ educommon/django/db/partitioning/management/commands/apply_partitioning.py,sha256=NuuIkBodEHaGS6j9weH3O-FYWUZ3LZRZA8Bdh3z2nPY,3058
162
+ educommon/django/db/partitioning/management/commands/clear_table.py,sha256=bJ9eHaKc6k7zRgyPRmWbLMlivkwfQ83gfEcaiHU0V0M,3143
163
+ educommon/django/db/partitioning/management/commands/split_table.py,sha256=qdIV4ASsQzM_2Ipe8zloI_eAUhph5nYfq21KthQZafY,3137
164
+ educommon/django/db/validators/__init__.py,sha256=TGo1GdoRn5LKK8T2EDpTG09TGe7843FZRtaiYv2L-O4,1987
165
+ educommon/django/db/validators/simple.py,sha256=CJDaWTrBtxBMWsi8NtXvtgWAMgInO6L799vSfnMIaYA,38956
166
+ educommon/django/storages/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
167
+ educommon/django/storages/atcfs/README.rst,sha256=yPy55jjKmSVL6Sg1LHzg_6wI7UAG4JDI6rjqaVxQfWs,2656
168
+ educommon/django/storages/atcfs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
169
+ educommon/django/storages/atcfs/api.py,sha256=tQ3xhTKOJfg6CnClwO3nLQTfQLThYAjCPMPxrBc3i5U,5756
170
+ educommon/django/storages/atcfs/app_meta.py,sha256=6ClIhjKdMWgA2oJiT04qgbUss46uD0GU3ekNbcqvfwA,353
171
+ educommon/django/storages/atcfs/exceptions.py,sha256=GD2yxSiZC9N8n3KusXY5bJilPlD6nGL1G3xOwV9aIXc,106
172
+ educommon/django/storages/atcfs/models.py,sha256=AEs4O-YS6C_QMc89cjgEqvTfeb63WFK2sRVnWZoorlM,121
173
+ educommon/django/storages/atcfs/monkey_patching.py,sha256=Zjb8CwMrxdBDtaRXHgQ_fHutWaWetvUkoxdrjHmCOFI,2924
174
+ educommon/django/storages/atcfs/settings.py,sha256=b1adPmpOaLq1uOm9vZaV9cHfKdhTlrtuO5tv0crV1j0,808
175
+ educommon/django/storages/atcfs/storage.py,sha256=d1hAih_nDrIy-l8SbkLDIQk4597Jb9UBLXSmy0U8rSw,4073
176
+ educommon/django/storages/atcfs/management/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
177
+ educommon/django/storages/atcfs/management/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
178
+ educommon/django/storages/atcfs/management/commands/atcfs_migrate.py,sha256=PfYA5BvQY64RGfQX_pNs2VMLTnITxOINNqgaFext74c,7151
179
+ educommon/django/storages/atcfs/templates/atcfs_unavailable.html,sha256=l5b0qFln7Cgv-oyzwk9Rk_ktNQlwSQ-fu1WQWuT6phY,196
180
+ educommon/extjs/__init__.py,sha256=42n25CtDUE3wN6w27AplLrQnLrP8074V7YwAiLdEwRU,87
181
+ educommon/extjs/fields/__init__.py,sha256=ZdfvHYPEO15R0dKOV7kpLudbdRe2vK4i9Hd20LDR3fM,110
182
+ educommon/extjs/fields/input_params.py,sha256=aYyAu62jI3EWoZJ4KzIgUl2JnlXmGcJ2cCpK7-3N6ys,3953
183
+ educommon/importer/XLSReader.py,sha256=eWu5wnL3gQk4rRtSDacB0F6Pz7HgInwmrtfwwptlEQc,35674
184
+ educommon/importer/__init__.py,sha256=dkACbZAbhaL72ihvDdPiODHiYqJmF57rOr8Fqh5wkzI,1780
185
+ educommon/importer/api.py,sha256=pEQwXZ9qCD4RqB4esjbW2G8shOdRmCGm5Ya0MQVBbSU,12861
186
+ educommon/importer/constants.py,sha256=Rz5jjqDriOlW5Dl_fmsJ761yj7HBNSzJM3zOnssaJrE,681
187
+ educommon/importer/loggers.py,sha256=8csmj0g8FMK8UIqkkhdg3nD9C-hvdZTItNtZF4KkzXg,10193
188
+ educommon/importer/proxy.py,sha256=g-eOsTe1oH6ymkBNOtpnzZ0NwhmNmv-L3xPB03bea0M,36322
189
+ educommon/importer/proxy_import.py,sha256=yxf2SDrJbtnfyJg7JSgQ_yh-mwza-7bqSgBH280kJj8,6209
190
+ educommon/importer/refactoring-notes.txt,sha256=_9EsZLLDrJI4fioQ6bzcOMWE0lCYLyMJDi5Phe4mPNo,2087
191
+ educommon/importer/report.py,sha256=hvrgS3ieG5_kQnVm4NnHO3PEg3jlRS2d1ERuKT0rXLQ,1481
192
+ educommon/importer/test_file.xls,sha256=eq18e1vYTEEM_t7Pa5WsDVo2qwpUxfSwI7VCqhdpe6I,8704
193
+ educommon/importer/ui.py,sha256=q-N1Xg1XWFwq_-uvNdPPlsUuwD-90XIQ8ycpSY4oA70,3670
194
+ educommon/importer/validators.py,sha256=8g9PPd25UXDh8ifjna-xVAca4iv63Lq-0SDC7KtAcl0,1163
195
+ educommon/integration_entities/README.rst,sha256=Vc5BYEHY8KfRZVHJg4GAAk0aKvJn52PJuShSxvDMa8g,158
196
+ educommon/integration_entities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
197
+ educommon/integration_entities/consts.py,sha256=XMSR-9Q5cLSXe6Bn0JWFQQ8UfTyJfs7LYT1klj0Xvsc,448
198
+ educommon/integration_entities/entities.py,sha256=v4QQPb8NeQJMdgxjfEcY9_NmPGasQbRPoA10gZEMAjU,2005
199
+ educommon/integration_entities/enums.py,sha256=MPS3F402TMUP9wDJXBgNHoktVOf-zM8lAD22QphnLtU,335
200
+ educommon/integration_entities/helpers.py,sha256=KEdLGfuBWHfMoPKP93sy2FewK6tsWvS9jFG6Gj8YtlQ,9892
201
+ educommon/integration_entities/mixins.py,sha256=pTZbuLMMsD4y513j-UoRKAjmPjCiwMp8d8I5xWoU33M,1115
202
+ educommon/ioc/__init__.py,sha256=kfQl0ju-DFbUfUynCndEfqUDXNaM3-3cO-y6QUg4K2U,3997
203
+ educommon/logger/__init__.py,sha256=KhXTyv0V96wX_6QShkVrRIk_mqJtDYpeBMBb8PtBl-A,822
204
+ educommon/logger/app_settings.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
205
+ educommon/logger/apps.py,sha256=wkGeOGuklNHp_HrTiK1WXOvhkK90mAea3Jp_7uJjQw4,944
206
+ educommon/logger/consts.py,sha256=uk_TFZteg3ghT1_pvP9nYALlyZBrsH8oMr6AXANFKAU,238
207
+ educommon/logger/formatters.py,sha256=uraIlYukVsyVngBPm9SqJHzCtgYKvg1xMcwBiUD8hd4,400
208
+ educommon/logger/helpers.py,sha256=6EsfkteuLt3S-AJTgl3V90KYNwiiBjDYTtuSqOq4kM8,1596
209
+ educommon/logger/loggers.py,sha256=fvhyJ9mb2az6sMBu9LlRQ5WFu4QsrLHuYLudGwIYR-0,3000
210
+ educommon/logger/records.py,sha256=rBVVIzdrs2x6T9e5QEpN6BZhwynneu7GfRexrUUTb9o,138
211
+ educommon/m3/__init__.py,sha256=YpZCXuE41CPBUji5Y7EoEu40JhmBn5qotOwgn8CPSy0,17124
212
+ educommon/m3/transaction_context.py,sha256=6ZRxDGakNSHXOzzFdaRDcsLDZxc-I6Eudh_TnfFskJE,5075
213
+ educommon/m3/extensions/__init__.py,sha256=-56SljPWNw5ypdTpwrR60vD-yymMVE1awhlRO7uWtYY,259
214
+ educommon/m3/extensions/ui.py,sha256=Wwgo7IwWCdPZlqJwlB4exwxgLtb1nwEStbLvCh0zdlc,6702
215
+ educommon/m3/extensions/listeners/__init__.py,sha256=9Z16H7Qph6oACuhPZihYvbNI77l2AupxRS5Rh8Y_rIg,8673
216
+ educommon/m3/extensions/listeners/delete_check/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
217
+ educommon/m3/extensions/listeners/delete_check/cancel-confirm-window.js,sha256=Xh0Rzk9ua9NtR9TR0x7oPn0Q96IKqBQF0XkkFzTOUVI,916
218
+ educommon/m3/extensions/listeners/delete_check/listeners.py,sha256=Vc-y0E3OaNI4MYhPY65hUo2p5m2qpp63F2H7mQABLeE,6340
219
+ educommon/m3/extensions/listeners/delete_check/mixins.py,sha256=OZCHFUqq6YI7V7-9NNp72kA40jxq3X9sp-89UN0gnSU,7938
220
+ educommon/m3/extensions/listeners/delete_check/related-objects-window.html,sha256=Do_SnmWfexnhDzgvr7o7JJubH4N8pvPNa268cd-JIcA,94
221
+ educommon/m3/extensions/listeners/delete_check/signals.py,sha256=fIfK2wPDUcgLYicE9cTo3JK0p0WaX9DGqednAJzC-tg,467
222
+ educommon/m3/extensions/listeners/delete_check/ui.py,sha256=3omrRxPt2PRL4rjzjXQQITwZYoR9xnmnvcyJYJn54Pk,3376
223
+ educommon/m3/extensions/listeners/delete_check/utils.py,sha256=RD7agHge_O-bxgpi1D7rke7PY6PAYodDTY19OIT6Zzc,3028
224
+ educommon/objectpack/__init__.py,sha256=TwmrbrumJoH9KjYhbLnKExWmo4A0UQeyNYTK__93Vr8,69
225
+ educommon/objectpack/actions.py,sha256=cMPI9wyNVPvpTl_x4MtJ9XnJ5VhhL4vnuh6ORsQV5oQ,14233
226
+ educommon/objectpack/apps.py,sha256=6Gk1Uqt_TOyLoCJ9tu-HCWy_BcDoSMhFOPpVBxnp98w,491
227
+ educommon/objectpack/filters.py,sha256=zBDhnXTQ31oQMcUKhOkiTBXkm5Appg755KNrEFwD3no,5020
228
+ educommon/objectpack/ui.py,sha256=qqzgKPFWVY9oJ86oJBXj3ToTw8o8LrBoVwkgrpz9pbA,14087
229
+ educommon/objectpack/templates/base-grid-window.js,sha256=kq49GGDGPScqLCouIy0-seOimt5eX_l2pAkQNJ0rNCw,437
230
+ educommon/objectpack/templates/filter-panel.js,sha256=vYw_AxOMRk0ylSBUT46qphilxKkKpaXzT5HfGwwoLYo,1408
231
+ educommon/objectpack/templates/grid-panel.js,sha256=o6qkZ9o1MbFJd0LGq3HIk_5YIwC4WHfQT5NNEYEGo2o,1544
232
+ educommon/objectpack/templates/multiSelectWindow.js,sha256=3yOdu0sPiirxrcUZtjg3oyjFEUVo9GQvfYSL2_6mE34,1842
233
+ educommon/objectpack/templates/multiselect-page-fix.js,sha256=c8AfGz6yakhWdDseB9P9m2poDzTxAQp_OY-G7ZgBNPM,6741
234
+ educommon/objectpack/templates/relations-check-mixin-template.html,sha256=HZETIVBZso0eC1l62atPfEyLMX3Gur_Sryvdsjv4mJk,1838
235
+ educommon/report/__init__.py,sha256=2JHOX_k_51imyGaHv_VqDr5vqBmo3DXHVtJF0_1rpRE,17798
236
+ educommon/report/actions.py,sha256=-PeQgdCciiVQ174S4EKOfTJBy3rFNS14vNR659Qm8lI,8610
237
+ educommon/report/reporter.py,sha256=AU9NnS9Wxw8d-AWnrbx9r-FSp-iow8-HdIrl4egKhUU,9758
238
+ educommon/report/utils.py,sha256=pzHH9HcTMfaE9jxpRjHpWlzS36BiOhqknMEqzCABiEE,9667
239
+ educommon/report/constructor/README.rst,sha256=M6bnt3eAdRMUSIbRXdbuleron11RajRmTQOAvbLNC4k,1138
240
+ educommon/report/constructor/__init__.py,sha256=3EXz2Ntl4nBFWSKdg7mmthqF7PcAg3eVBNhmjPpSncI,1237
241
+ educommon/report/constructor/app_meta.py,sha256=9J8VjcQ6GvJR3EjNJf2q95Tg9hxVN2O8Axe4NRkjPVA,186
242
+ educommon/report/constructor/apps.py,sha256=oAGeA1jG1GCBCd1M27H78Sk9DGtoy9UzBlzH7c6vXio,468
243
+ educommon/report/constructor/base.py,sha256=WPIJQ7znph9hOujkpXxKHwemLZbW1YqeRMLz9NKXKX0,26543
244
+ educommon/report/constructor/config.py,sha256=2kWlilm6LGXAbrVHnLbzhwp1pTBAz_eOf_B2BemOJdE,1060
245
+ educommon/report/constructor/constants.py,sha256=VF3tu6vEWrN37oPyipD3LGCElbaY2JHGaKy7AxUbQIU,3381
246
+ educommon/report/constructor/exceptions.py,sha256=4k2fHrMr-U74kjjE8hXDtG-MRaZBGqNir7-KPf4h_AY,1153
247
+ educommon/report/constructor/mixins.py,sha256=dMwBJJbkE4YeBSi49EMrNlDan4Mkqatbif8n11XcpqU,2788
248
+ educommon/report/constructor/models.py,sha256=Jq6Am19VUEabnImAT53VtuUkiwvZgVvWIv3GTS-aus0,17913
249
+ educommon/report/constructor/plugin_meta.py,sha256=52IdIKr7ArMiHOnyZlKV5Fn6PxMhSbttipXz_Vbfkmg,114
250
+ educommon/report/constructor/registries.py,sha256=aTFeW0htAeDYWd9HlLqn3GTK3mttjS8I8LddPc6Ea7M,1883
251
+ educommon/report/constructor/utils.py,sha256=kjiYBfC0-DmDk5kYOOevmc7SUcytljyemb1uy4qa4hA,6494
252
+ educommon/report/constructor/validators.py,sha256=LEXImENS2razAzdDaRA3egLVAZ0wYrTiiURGZXhh8HI,502
253
+ educommon/report/constructor/builders/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
254
+ educommon/report/constructor/builders/excel/__init__.py,sha256=ZjiilnR4FRJm0DM06G3yKHBEDAPXs5JvuPO3JOg2FB8,104
255
+ educommon/report/constructor/builders/excel/_base.py,sha256=OUQonzSkRJdX0o7wzXR5E1TAtg-_YYmG3pIpDf9r0z8,53520
256
+ educommon/report/constructor/builders/excel/_header.py,sha256=imtSojgvsjILnbcutl6RR1rSBKw2zJKsNt2r2CbHL4A,4622
257
+ educommon/report/constructor/builders/excel/constants.py,sha256=SM5OEkd7CMrGhuCpMWIdZGy-R1NAUB06973QnECayR0,28
258
+ educommon/report/constructor/builders/excel/product.py,sha256=pEBlN4uyAkFHi8ck1360BNgPKkd62fswsTCYLSc4DKc,5923
259
+ educommon/report/constructor/builders/excel/with_merged_cells.py,sha256=0QJyyXv-wskqOna6d_UZV0I5Awbxcf4xZvhHbbUvhkE,6138
260
+ educommon/report/constructor/editor/__init__.py,sha256=WS6vGDp9CjGE-e_-AgywqN-W67tv5F_WcPgebLHwKbg,41
261
+ educommon/report/constructor/editor/actions.py,sha256=c9AU6ae0F46eXeXdMarnHbp32Rwnb8D0O9MthdQLtfc,36914
262
+ educommon/report/constructor/editor/edit-window.js,sha256=AcbwuumR3k6Nzh8PNz8Rz35hREjl0cyenPI_3BcLq6o,39225
263
+ educommon/report/constructor/editor/list-window.js,sha256=S2KQGqg5GnFMMYmPNEm_Yf9nXTbfwvIfs4E3LgWO9-0,3247
264
+ educommon/report/constructor/editor/ui.py,sha256=VFyjuDX_Lf38Ruj9XYs2P554peeOhNBKZE4QAcLrTTQ,24367
265
+ educommon/report/constructor/migrations/0001_initial.py,sha256=BU1qmuTjpkPfUD6tduEuJBKqUp8X-Q2JCoiTdcniMCM,3219
266
+ educommon/report/constructor/migrations/0002_report_filters.py,sha256=YMKosNaZj-FiJtndepMQZ8iqsVYb81P5TyyQcSSbfjE,5298
267
+ educommon/report/constructor/migrations/0003_reportfilter_exclude.py,sha256=thdi4Ypz3YhxaIKj3UVqLpfoUdOCC9ffdT-NpUypOdc,459
268
+ educommon/report/constructor/migrations/0004_reportfilter_fields.py,sha256=fE0v2im8O_N238zg6cF-zN_lB1o6Sk87eI8kO95p4oc,1365
269
+ educommon/report/constructor/migrations/0005_reportcolumn_visible.py,sha256=cEii5WskMkzQ5yZPR-pNgEBFNXzSrTVDF9qEXHg6Ypw,434
270
+ educommon/report/constructor/migrations/0006_reportsorting.py,sha256=G0BNRgp8V4J1fTiTNjzlppYYs3RgmcS7-SOcbsXwqmI,1359
271
+ educommon/report/constructor/migrations/0007_include_available_units.py,sha256=eL3pkbwbY1QpSydxSIBQHArPL_K5ZLmI1QzeeHAfud8,1496
272
+ educommon/report/constructor/migrations/0008_auto_20170407_1318.py,sha256=jXGQZHKlJgc7LMTIPo7EV5Keh86_rm-52sSqwN8pYyU,555
273
+ educommon/report/constructor/migrations/0009_auto_20180405_0642.py,sha256=Skf1q8ONvLR_keNh4qZ5RRsORjFdyCDZJO4NbaGWl8U,485
274
+ educommon/report/constructor/migrations/0010_add_aggregate_fields.py,sha256=DyY52puOKq9rDABEHLwgylTxWSS1hE6zgaTp5GiMqaY,922
275
+ educommon/report/constructor/migrations/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
276
+ educommon/rest/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
277
+ educommon/rest/actions.py,sha256=LpFtNDuxIDQ2GG6hBqkLrINrW087tLjlfyUHv85AUGA,1255
278
+ educommon/rest/context.py,sha256=nd1H8Md9LqP_WMk2EhrumA74j12G4jveXLf6abCb1Ho,3771
279
+ educommon/rest/controllers.py,sha256=6s7GJ7Vuj5foaXQz-fSFy4_StJ2RZXSkhbGhJ5BAIlk,2390
280
+ educommon/rest/misc.py,sha256=NFYw-WXYpUvH6FnL78EwzJXAtnTtQRnxqdvnRTg_qX0,475
281
+ educommon/rest/mixins.py,sha256=imaceNp5c1xF7LhBCTkEHe4uX1CVvwzJ-mKanGxYk8Q,4656
282
+ educommon/secure_media/README.rst,sha256=Hi96RDL5T8FIuG3zaR2Fmxex2mE4lLu0F6t9_98_BHA,4001
283
+ educommon/secure_media/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
284
+ educommon/secure_media/app_meta.py,sha256=Ar_WAuBFtr0XpoQj2mE_Q2KCwHMBIxA3ILwXqcBB7WE,1337
285
+ educommon/utils/__init__.py,sha256=B1XHAOLDmFrTkGUuVvpFLMlIylGkjqnQ13tPriJl-zs,2406
286
+ educommon/utils/caching.py,sha256=eHf4xa6loSCCv9Is5XE8G4Fvi3_bzmwKIUHv9tyPDDw,4041
287
+ educommon/utils/conversion.py,sha256=C7FHCQQG5eVbeFRulWv_WvBzIq10hsHjZB3VchlbDiY,1960
288
+ educommon/utils/crypto.py,sha256=kmoX1ntu8tYeobbSxLmyj5kKFabCRQriEfZIxCI7fuM,2139
289
+ educommon/utils/date.py,sha256=bnwEBMUDR3GYnGLEAYBZnnt-7M2toA1jZAba9Lk1J_A,16676
290
+ educommon/utils/misc.py,sha256=6gMFsLoSTktuIv96-6-oouLLdMkSZQyKITz4sXlh-nM,4392
291
+ educommon/utils/object_grid.py,sha256=2ap8593I7Rs_-H3cTrQcIfEa57lrQ0AtcD119-xEwTU,8705
292
+ educommon/utils/plugins.py,sha256=F1A1JLSi-7aBxw2kEk5Gstvx4_rIpgY1D5M4bmbK2AA,9344
293
+ educommon/utils/registry.py,sha256=ZJFtSNRaAyEJYq1KgB3Aa82n5svYU1tscCHUtYMGCwc,1970
294
+ educommon/utils/seqtools.py,sha256=SRPlgn9KB-0cWCESfqeywfsdIbTjUopFmZYbcDQca88,496
295
+ educommon/utils/serializer.py,sha256=R-72kNjLa5izLXy3qLmzrBWDk-feTnJR7FwNRvGG77Y,8653
296
+ educommon/utils/storage.py,sha256=RcWAR7vxc0uZ2PODdpcNoBQGKilSaQnxxGwa0rfwlm8,2887
297
+ educommon/utils/system.py,sha256=34mUlk7OV5pgcxAucWVWe9xQ--I_u40ZByWGLtkoGdQ,2804
298
+ educommon/utils/ui.py,sha256=N_v44tYryB66uZF-k8V5fxsnVds3FMvEFKxMzb8Ph6c,16344
299
+ educommon/utils/db/__init__.py,sha256=b2hyjR6PZgP9E0LFIl8yTHgCOKO7_WEeXPqPNdbqoTg,7624
300
+ educommon/utils/db/postgresql.py,sha256=HvSCxNy6ZuHsohckmNFbWxFBoeCh-AKSRRALAGfjEd0,2786
301
+ educommon/utils/fonts/Arial.ttf,sha256=NcDzVZ2NtWnjbDEJW4pg1EFkPZX1kTneQOI_ragZuDM,275572
302
+ educommon/utils/fonts/Calibri.ttf,sha256=Iv10aIYF7JjjjcObMimWVSmMxU-rqOiEYeeDIgwfkmE,811820
303
+ educommon/utils/fonts/Tahoma.ttf,sha256=bGmcQotghnnHrebZwP92ZkobWSdMOUzwq6DuLDP4mEg,265528
304
+ educommon/utils/fonts/__init__.py,sha256=k5peA7Xm4BIyBOpHq4Lt4nIxd5bBOo2sQqPOd7WKO0w,4783
305
+ educommon/utils/licence/__init__.py,sha256=WOyCqA6XeFCDPcVbMChPdo4WkHN6oHX1zjc9f9IjOm0,4948
306
+ educommon/utils/licence/converters.py,sha256=BLXjqy4kgBj78qqfiXtuz0Nwu5rVb_us3omNJkObTtA,1174
307
+ educommon/utils/phone_number/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
308
+ educommon/utils/phone_number/enums.py,sha256=EqTCTeCxYioKco07fkG25hq6lae63o0WZIuo-6fdNRg,1420
309
+ educommon/utils/phone_number/modelfields.py,sha256=RnM-vj0w9Pyk1pVrP0reQcOnKHPr1cVWcIYdUWWXA7Q,2916
310
+ educommon/utils/phone_number/phone_number.py,sha256=TMTZBUxoGzx_cNAag2gIrk_03Y7JzOTsmRqlnS40oB4,9764
311
+ educommon/utils/phone_number/validators.py,sha256=HZqn9oePq5pdg6UZI7EvrL7DGlUrVLnHDiULa4r-5FM,3127
312
+ educommon/utils/system_app/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
313
+ educommon/utils/system_app/management/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
314
+ educommon/utils/system_app/management/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
315
+ educommon/utils/system_app/management/commands/delete_objects.py,sha256=BkHyVKsC31Q6AoBjdrNWJVWCMPDofcsGqMs83xmmdSU,8959
316
+ educommon/utils/system_app/templatetags/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
317
+ educommon/utils/system_app/templatetags/educommon.py,sha256=_K5iM3LBnpCJJTIrC6PR5K6-ORIpm2NTQ7APlEu9FcQ,273
318
+ educommon/utils/xml/__init__.py,sha256=lr2Pa9Veo6ozsoXy0rFsJIrt-HIK8YEWRDcYsBd-Rmg,2160
319
+ educommon/utils/xml/catalog.json,sha256=WI4Fc_ir0EdykEdMARxnYCyI-z_aPFJOjVLt4aHIaU0,875
320
+ educommon/utils/xml/resolver.py,sha256=V459cvHFdmYvntcSaQskngTNUu_HyzdtQsz1ZLhnmGA,1751
321
+ educommon/utils/xml/saml-schema-assertion-2.0.xsd,sha256=AG63VThDy3uqmwjaKp1EQ0bA6YL7nZKTur4I7eaAkks,13160
322
+ educommon/utils/xml/saml-schema-protocol-2.0.xsd,sha256=SoFikUA-16-9j4-31qKqrZPoLImtkCouFu1oWbQ-k5U,13465
323
+ educommon/utils/xml/xenc-schema.xsd,sha256=XdV_B0hw4dkffrgUqpKWfO_M6QEahq314Sp2n88qI34,5234
324
+ educommon/utils/xml/xmldsig-core-schema.xsd,sha256=Nc-Bl9qBLIXkDVeJGzXJQYdWntR0otrIE85QkNr801w,10293
325
+ educommon/ws_log/README.rst,sha256=9_yONwf0om7MUaNohwEX848zpd2mkbKEApVelKPerfE,5467
326
+ educommon/ws_log/__init__.py,sha256=9VzXIVt7xpcgQBW6QWWc8np2PJpJfrkPqi5OmVG_Jo4,932
327
+ educommon/ws_log/actions.py,sha256=atIhYEen_m-qzuEWRlkaxIn00MCMu17LibpOQdhXd8M,8472
328
+ educommon/ws_log/app_meta.py,sha256=JG1hyk9JQwxL-CY7Z3gDhoZA1M9DtD6Z0jcXCQ9vNt8,94
329
+ educommon/ws_log/base.py,sha256=ToxxGS6iADLsY_ciCaCq-w8PiGYtYchPmOTJvEf-ZkQ,6834
330
+ educommon/ws_log/models.py,sha256=YDLoAxjQ2UX_GRHFe403vSUePPcvXsTlRE_pA4spXqM,5485
331
+ educommon/ws_log/provider.py,sha256=Z_uN2tS2tUIi_xcMbRHvhxUgBJA3Taj_KdyCfiAnEG0,861
332
+ educommon/ws_log/report.py,sha256=OYZYvyiJ_M2yOrkBtYMTRffL0guNymKUtBUxd_94IPY,3351
333
+ educommon/ws_log/ui.py,sha256=-BOl0HbgYu1EToZDzcbVBxdAY_Koh9SmpvuXlJpbumo,3746
334
+ educommon/ws_log/utils.py,sha256=n8IwgRuOeZkxotXk-aZG0qzJOr7dY3Sc-DyEZiytHVM,1731
335
+ educommon/ws_log/migrations/0001_initial.py,sha256=jEN9zrq9wreegQQGiUCBZIUCQRwCdSAp2thEsQz6MoU,3087
336
+ educommon/ws_log/migrations/0002_auto_20160628_1334.py,sha256=HKxP8boETbWxditgaBFbXdVAZoIJKRL_cN0BHHv1AG4,909
337
+ educommon/ws_log/migrations/0003_add_fields_to_smev_logs.py,sha256=2g1whrcrpmp4o1AolISUnurTpNCkoNd2YeVkeMP4peQ,1950
338
+ educommon/ws_log/migrations/0004_auto_20160727_1600.py,sha256=v6UVZBXGIgTTWWfRHpPTjSGsCzWX22E6XvQN8lT2YYw,946
339
+ educommon/ws_log/migrations/0005_auto_20161130_1615.py,sha256=tdz16FGq7bc0INMtHlxut_PcNJmtAOWKZa6B7lDPgJo,1757
340
+ educommon/ws_log/migrations/0006_auto_20170327_1027.py,sha256=wj9MsJTvvMYinpRATVVl3H5OVREkrSohETcMXxUAj-U,508
341
+ educommon/ws_log/migrations/0007_auto_20180607_1040.py,sha256=52-E91D5yPHIAEIyDLzgEDQ_roAEXuxZtHdcTbBaMoM,1114
342
+ educommon/ws_log/migrations/0008_auto_20180713_1445.py,sha256=1_f94BmGeLu3_u9X5pA-4mzs6L0YK89FumRDLqLtxEk,1495
343
+ educommon/ws_log/migrations/0009_auto_20201130_1553.py,sha256=RkHJ9CkrPLWRZultHM7uFDGcs1BjIB1OgNJRwVXENhc,610
344
+ educommon/ws_log/migrations/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
345
+ educommon/ws_log/smev/__init__.py,sha256=fH-sq4dxJ0KCZs8o7uOZdG3qgivRsQbH5-Km5LUJFko,84
346
+ educommon/ws_log/smev/applications.py,sha256=-nzJP_gCIqkioA-l6aeUBMFr4-u60y_EX6RZkrciRsY,5592
347
+ educommon/ws_log/smev/exceptions.py,sha256=VNfzNHlj5Pz8D4979d_msTkxC-RQVoMctsgoJnXRQqo,548
348
+ educommon/ws_log/templates/report/smev_logs.xlsx,sha256=nnYgB0Z_ix8HoxsRICjsZfFRQBdra-5Gd8nWhCxTjYg,10439
349
+ educommon/ws_log/templates/ui-js/smev-logs-list-window.js,sha256=AGup3D8GTJSY9WdDPj0zBJeYQBFOmGgcbxPOJbKK-nY,513
350
+ educommon/ws_log/templates/ui-js/smev-logs-report-setting-window.js,sha256=nQ7QYK9frJcE7g7kIt6INg9TlEEJAPPayBJgRaoTePA,1103
351
+ educommon-3.13.2.dist-info/METADATA,sha256=7ZDIplBEd913ZsEizOh6ys-LRZQN1Qmv2JGWY0jooV4,2379
352
+ educommon-3.13.2.dist-info/WHEEL,sha256=1tXe9gY0PYatrMPMDd6jXqjfpz_B-Wqm32CPfRC58XU,91
353
+ educommon-3.13.2.dist-info/top_level.txt,sha256=z5fbW7bz_0V1foUm_FGcZ9_MTpW3N1dBN7-kEmMowl4,10
354
+ educommon-3.13.2.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (75.8.0)
2
+ Generator: setuptools (77.0.3)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5
 
@@ -1,27 +0,0 @@
1
- """Патчи для встроенных и библиотечных объектов."""
2
- import sys
3
-
4
-
5
- class AssertionError(__builtins__['AssertionError']):
6
-
7
- __doc__ = __builtins__['AssertionError'].__doc__
8
-
9
- def __init__(self, message='', *args, **kwargs):
10
- """Кодирует unicode сообщение в utf-8."""
11
- if isinstance(message, str):
12
- message = message.encode('utf-8')
13
- super(AssertionError, self).__init__(message, *args, **kwargs)
14
-
15
-
16
- def patch_utf8_assertion_error():
17
- """Кодирует сообщения AssertionError в utf-8.
18
-
19
- Т.к. обычно используемая кодировка в терминале utf-8, а python по
20
- какой-то причине не кодирует сообщения в кодировку stderr, то сообщения
21
- исключений выводятся в виде кодов символов.
22
-
23
- Чтобы избежать этого, мы принудительно конвертируем unicode строки
24
- в utf-8.
25
- """
26
- if sys.version_info.major == 2:
27
- __builtins__['AssertionError'] = AssertionError
educommon/version.conf DELETED
@@ -1,11 +0,0 @@
1
-
2
- # Параметры этого файла управляют идентификацией версии проекта.
3
- # Ручное изменение этих параметров приведет к невозможности
4
- # нормальной установки обновлений.
5
-
6
- [version]
7
- BRANCH = tags/3.12.0^0
8
- VERSION = 3.12.0
9
- REVISION = 77c8293bb54ede8a5d5f06d376cf771c28cada88
10
- VERSION_DATE = 11.03.2025
11
- REVISION_DATE = 11.03.2025
@@ -1,47 +0,0 @@
1
- Metadata-Version: 2.2
2
- Name: educommon
3
- Version: 3.12.0
4
- Summary: Общая кодовая база для проектов БЦ Образование
5
- Home-page: https://stash.bars-open.ru/projects/EDUBASE/repos/educommon
6
- Author: BARS Group
7
- Author-email: education_dev@bars-open.ru
8
- Classifier: Intended Audience :: Developers
9
- Classifier: Environment :: Web Environment
10
- Classifier: Natural Language :: Russian
11
- Classifier: Natural Language :: English
12
- Classifier: Operating System :: OS Independent
13
- Classifier: Development Status :: 5 - Production/Stable
14
- Classifier: Programming Language :: Python
15
- Classifier: Programming Language :: Python :: 3.7
16
- Classifier: Programming Language :: Python :: 3.8
17
- Classifier: Programming Language :: Python :: 3.9
18
- Classifier: Framework :: Django :: 2.2
19
- Classifier: Framework :: Django :: 3.0
20
- Classifier: Framework :: Django :: 3.1
21
- Classifier: Framework :: Django :: 3.2
22
- Requires-Dist: packaging<24,>=21.3
23
- Requires-Dist: Django<4,>=3.1
24
- Requires-Dist: django-mptt
25
- Requires-Dist: python-dateutil
26
- Requires-Dist: termcolor
27
- Requires-Dist: django-sendfile
28
- Requires-Dist: requests
29
- Requires-Dist: celery
30
- Requires-Dist: spyne
31
- Requires-Dist: xlsxwriter<1,>=0.9.3
32
- Requires-Dist: m3-builder<2,>=1.2
33
- Requires-Dist: m3-db-utils>=0.3.13
34
- Requires-Dist: m3-django-compat<2,>=1.10.2
35
- Requires-Dist: m3-core<3,>=2.2.16
36
- Requires-Dist: m3-ui<3,>=2.2.40
37
- Requires-Dist: m3-objectpack<3,>=2.2.49
38
- Requires-Dist: m3-simple-report<2,>=1.4.1
39
- Requires-Dist: m3-spyne-smev<2,>=0.2.4
40
- Requires-Dist: python-magic==0.4.15
41
- Requires-Dist: distro<2,>=1.3.0
42
- Dynamic: author
43
- Dynamic: author-email
44
- Dynamic: classifier
45
- Dynamic: home-page
46
- Dynamic: requires-dist
47
- Dynamic: summary