wbcore 1.46.0__py2.py3-none-any.whl → 1.58.2__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.
- wbcore/cache/decorators.py +5 -3
- wbcore/cache/registry.py +14 -7
- wbcore/configs/__init__.py +1 -0
- wbcore/configs/configs.py +5 -0
- wbcore/configs/decorators.py +1 -1
- wbcore/configurations/configurations/apps.py +3 -2
- wbcore/configurations/configurations/authentication.py +1 -1
- wbcore/configurations/configurations/base.py +1 -1
- wbcore/configurations/configurations/cache.py +1 -1
- wbcore/configurations/configurations/i18nl10n.py +2 -1
- wbcore/configurations/configurations/maintenance.py +1 -1
- wbcore/configurations/configurations/media.py +1 -1
- wbcore/configurations/configurations/middleware.py +1 -1
- wbcore/configurations/configurations/rest_framework.py +1 -1
- wbcore/configurations/configurations/static.py +3 -3
- wbcore/configurations/configurations/wbcore.py +1 -1
- wbcore/content_type/serializers.py +13 -5
- wbcore/content_type/utils.py +3 -3
- wbcore/content_type/viewsets.py +2 -2
- wbcore/contrib/agenda/filters/calendar_item.py +5 -4
- wbcore/contrib/agenda/locale/de/LC_MESSAGES/django.po +145 -52
- wbcore/contrib/agenda/locale/de/LC_MESSAGES/django.po.translated +236 -0
- wbcore/contrib/agenda/locale/en/LC_MESSAGES/django.po +200 -0
- wbcore/contrib/agenda/locale/fr/LC_MESSAGES/django.po +201 -0
- wbcore/contrib/agenda/viewsets/calendar_items.py +7 -7
- wbcore/contrib/agenda/viewsets/menu/calendar_items.py +0 -6
- wbcore/contrib/ai/exceptions.py +5 -5
- wbcore/contrib/ai/llm/config.py +76 -27
- wbcore/contrib/ai/llm/mixins.py +5 -8
- wbcore/contrib/ai/llm/utils.py +50 -26
- wbcore/contrib/authentication/admin.py +2 -2
- wbcore/contrib/authentication/factories/__init__.py +8 -1
- wbcore/contrib/authentication/factories/users.py +19 -0
- wbcore/contrib/authentication/filters.py +1 -2
- wbcore/contrib/authentication/locale/de/LC_MESSAGES/django.po +209 -187
- wbcore/contrib/authentication/locale/de/LC_MESSAGES/django.po.translated +634 -0
- wbcore/contrib/authentication/locale/en/LC_MESSAGES/django.po +590 -0
- wbcore/contrib/authentication/locale/fr/LC_MESSAGES/django.po +592 -0
- wbcore/contrib/authentication/models/users.py +3 -3
- wbcore/contrib/authentication/models/users_activities.py +1 -1
- wbcore/contrib/authentication/serializers/users.py +2 -2
- wbcore/contrib/authentication/tests/test_tokens.py +3 -3
- wbcore/contrib/authentication/tests/test_users.py +0 -1
- wbcore/contrib/authentication/urls.py +0 -4
- wbcore/contrib/authentication/viewsets/endpoints/user_activities.py +2 -11
- wbcore/contrib/authentication/viewsets/endpoints/users.py +0 -3
- wbcore/contrib/authentication/viewsets/user_activities.py +2 -1
- wbcore/contrib/authentication/viewsets/users.py +6 -4
- wbcore/contrib/color/models.py +2 -1
- wbcore/contrib/currency/factories.py +1 -1
- wbcore/contrib/currency/import_export/backends/fixerio/currency_fx_rates.py +3 -1
- wbcore/contrib/currency/models.py +30 -8
- wbcore/contrib/currency/serializers.py +5 -1
- wbcore/contrib/currency/tests/test_serializers.py +7 -3
- wbcore/contrib/currency/tests/test_viewsets.py +1 -1
- wbcore/contrib/currency/viewsets/currency.py +2 -2
- wbcore/contrib/currency/viewsets/endpoints/currency_fx_rates.py +0 -9
- wbcore/contrib/dataloader/tests/test/dataloaders/protocols.py +1 -2
- wbcore/contrib/dataloader/utils.py +2 -2
- wbcore/contrib/directory/factories/__init__.py +1 -1
- wbcore/contrib/directory/factories/entries.py +2 -1
- wbcore/contrib/directory/filters/entries.py +9 -0
- wbcore/contrib/directory/locale/de/LC_MESSAGES/django.po +728 -714
- wbcore/contrib/directory/locale/de/LC_MESSAGES/django.po.translated +1779 -0
- wbcore/contrib/directory/locale/en/LC_MESSAGES/django.po +1652 -0
- wbcore/contrib/directory/locale/fr/LC_MESSAGES/django.po +1654 -0
- wbcore/contrib/directory/migrations/0011_person_description_person_i18n.py +24 -0
- wbcore/contrib/directory/migrations/0012_alter_person_managers.py +20 -0
- wbcore/contrib/directory/migrations/0013_alter_clientmanagerrelationship_options.py +17 -0
- wbcore/contrib/directory/models/contacts.py +2 -2
- wbcore/contrib/directory/models/entries.py +31 -5
- wbcore/contrib/directory/models/relationships.py +31 -35
- wbcore/contrib/directory/permissions.py +6 -0
- wbcore/contrib/directory/serializers/companies.py +16 -8
- wbcore/contrib/directory/serializers/contacts.py +8 -8
- wbcore/contrib/directory/serializers/entries.py +26 -15
- wbcore/contrib/directory/serializers/entry_representations.py +4 -2
- wbcore/contrib/directory/serializers/persons.py +12 -10
- wbcore/contrib/directory/serializers/relationships.py +2 -2
- wbcore/contrib/directory/tests/conftest.py +2 -0
- wbcore/contrib/directory/tests/disable_signals.py +11 -1
- wbcore/contrib/directory/tests/signals.py +2 -2
- wbcore/contrib/directory/tests/test_models.py +88 -66
- wbcore/contrib/directory/tests/test_serializers.py +1 -1
- wbcore/contrib/directory/tests/test_viewsets.py +8 -8
- wbcore/contrib/directory/viewsets/buttons/__init__.py +1 -1
- wbcore/contrib/directory/viewsets/buttons/relationships.py +32 -0
- wbcore/contrib/directory/viewsets/contacts.py +6 -6
- wbcore/contrib/directory/viewsets/display/__init__.py +1 -1
- wbcore/contrib/directory/viewsets/display/contacts.py +1 -14
- wbcore/contrib/directory/viewsets/display/entries.py +68 -38
- wbcore/contrib/directory/viewsets/display/relationships.py +26 -50
- wbcore/contrib/directory/viewsets/endpoints/relationships.py +1 -26
- wbcore/contrib/directory/viewsets/entries.py +8 -6
- wbcore/contrib/directory/viewsets/previews/entries.py +3 -3
- wbcore/contrib/directory/viewsets/relationships.py +16 -2
- wbcore/contrib/directory/viewsets/titles/relationships.py +2 -3
- wbcore/contrib/documents/filters.py +0 -2
- wbcore/contrib/documents/locale/de/LC_MESSAGES/django.po +103 -94
- wbcore/contrib/documents/locale/de/LC_MESSAGES/django.po.translated +285 -0
- wbcore/contrib/documents/locale/en/LC_MESSAGES/django.po +271 -0
- wbcore/contrib/documents/locale/fr/LC_MESSAGES/django.po +270 -0
- wbcore/contrib/documents/tests/test_models.py +32 -28
- wbcore/contrib/documents/viewsets/endpoints/shareable_links.py +2 -21
- wbcore/contrib/dynamic_preferences/types.py +108 -0
- wbcore/contrib/dynamic_preferences/viewsets.py +27 -0
- wbcore/contrib/example_app/filters/event.py +3 -1
- wbcore/contrib/example_app/filters/match.py +1 -1
- wbcore/contrib/example_app/models.py +91 -22
- wbcore/contrib/example_app/serializers/person_team.py +4 -4
- wbcore/contrib/example_app/templates/example_app/embedded_view.html +19 -0
- wbcore/contrib/example_app/tests/e2e/test_teams.py +1 -1
- wbcore/contrib/example_app/tests/test_models/test_match.py +17 -7
- wbcore/contrib/example_app/urls.py +2 -0
- wbcore/contrib/example_app/views.py +7 -0
- wbcore/contrib/example_app/viewsets/displays/team.py +23 -4
- wbcore/contrib/example_app/viewsets/menu/menus.py +1 -1
- wbcore/contrib/example_app/viewsets/menus.py +1 -1
- wbcore/contrib/geography/tests/conftest.py +14 -0
- wbcore/contrib/geography/tests/test_models.py +23 -8
- wbcore/contrib/geography/tests/test_viewsets.py +96 -2
- wbcore/contrib/guardian/tests/test_model_mixins.py +3 -4
- wbcore/contrib/guardian/tests/test_tasks.py +9 -9
- wbcore/contrib/guardian/tests/test_viewsets.py +2 -2
- wbcore/contrib/guardian/viewsets/configs/__init__.py +1 -1
- wbcore/contrib/guardian/viewsets/configs/buttons.py +9 -0
- wbcore/contrib/guardian/viewsets/configs/endpoints.py +7 -0
- wbcore/contrib/guardian/viewsets/viewsets.py +2 -0
- wbcore/contrib/i18n/__init__.py +2 -0
- wbcore/contrib/i18n/buttons.py +33 -0
- wbcore/contrib/i18n/serializers/__init__.py +0 -0
- wbcore/contrib/i18n/serializers/fields.py +20 -0
- wbcore/contrib/i18n/serializers/mixins.py +13 -0
- wbcore/contrib/i18n/tests/conftest.py +11 -0
- wbcore/contrib/i18n/tests/test_viewsets.py +67 -0
- wbcore/contrib/i18n/translation.py +140 -0
- wbcore/contrib/i18n/viewsets.py +36 -0
- wbcore/contrib/icons/backends/default.py +1 -0
- wbcore/contrib/icons/backends/material.py +1 -0
- wbcore/contrib/icons/icons.py +5 -8
- wbcore/contrib/io/admin.py +1 -0
- wbcore/contrib/io/backends/mail.py +3 -2
- wbcore/contrib/io/backends/utils.py +14 -17
- wbcore/contrib/io/exceptions.py +8 -0
- wbcore/contrib/io/factories.py +1 -1
- wbcore/contrib/io/import_export/backends/mail.py +1 -0
- wbcore/contrib/io/import_export/backends/sftp.py +29 -20
- wbcore/contrib/io/import_export/backends/stream.py +2 -2
- wbcore/contrib/io/import_export/parsers/__init__.py +0 -0
- wbcore/contrib/io/import_export/parsers/base_csv.py +36 -0
- wbcore/contrib/io/import_export/parsers/resources.py +50 -0
- wbcore/contrib/io/imports.py +33 -25
- wbcore/contrib/io/locale/de/LC_MESSAGES/django.po +114 -22
- wbcore/contrib/io/locale/de/LC_MESSAGES/django.po.translated +103 -0
- wbcore/contrib/io/locale/en/LC_MESSAGES/django.po +138 -0
- wbcore/contrib/io/locale/fr/LC_MESSAGES/django.po +138 -0
- wbcore/contrib/io/migrations/0008_importsource_resource_kwargs.py +18 -0
- wbcore/contrib/io/models.py +65 -45
- wbcore/contrib/io/resources.py +0 -6
- wbcore/contrib/io/serializers.py +2 -2
- wbcore/contrib/io/signals.py +4 -0
- wbcore/contrib/io/tests/test_backends.py +19 -13
- wbcore/contrib/io/tests/test_exports.py +1 -1
- wbcore/contrib/io/tests/test_imports.py +1 -1
- wbcore/contrib/io/tests/test_models.py +47 -14
- wbcore/contrib/io/tests/test_viewsets.py +271 -0
- wbcore/contrib/io/viewset_mixins.py +41 -54
- wbcore/contrib/notifications/admin.py +1 -0
- wbcore/contrib/notifications/apps.py +2 -1
- wbcore/contrib/notifications/backends/abstract_backend.py +2 -4
- wbcore/contrib/notifications/backends/firebase/backends.py +5 -2
- wbcore/contrib/notifications/dispatch.py +18 -7
- wbcore/contrib/notifications/factories/notification_types.py +1 -0
- wbcore/contrib/notifications/locale/de/LC_MESSAGES/django.po +25 -19
- wbcore/contrib/notifications/locale/de/LC_MESSAGES/django.po.translated +63 -0
- wbcore/contrib/notifications/locale/en/LC_MESSAGES/django.po +61 -0
- wbcore/contrib/notifications/locale/fr/LC_MESSAGES/django.po +62 -0
- wbcore/contrib/notifications/migrations/0008_notificationtype_is_lock.py +18 -0
- wbcore/contrib/notifications/migrations/0009_alter_notificationtypesetting_options_and_more.py +32 -0
- wbcore/contrib/notifications/models/notification_types.py +67 -24
- wbcore/contrib/notifications/serializers/notification_types.py +16 -1
- wbcore/contrib/notifications/tests/test_models/test_tokens.py +8 -0
- wbcore/contrib/notifications/tests/test_serializers/test_notification_types.py +5 -0
- wbcore/contrib/notifications/tests/test_viewsets/test_notification_types.py +3 -5
- wbcore/contrib/notifications/utils.py +3 -2
- wbcore/contrib/notifications/viewsets/configs/notification_types.py +28 -6
- wbcore/contrib/notifications/viewsets/menus.py +1 -1
- wbcore/contrib/notifications/viewsets/notification_types.py +12 -2
- wbcore/contrib/pandas/fields.py +38 -10
- wbcore/contrib/pandas/filters.py +4 -1
- wbcore/contrib/pandas/filterset.py +8 -7
- wbcore/contrib/pandas/tests/test_fields/test_number_fields.py +2 -7
- wbcore/contrib/pandas/utils.py +1 -1
- wbcore/contrib/pandas/views.py +14 -13
- wbcore/contrib/tags/models/tags.py +4 -1
- wbcore/contrib/workflow/factories/display.py +2 -2
- wbcore/contrib/workflow/factories/transition.py +16 -15
- wbcore/contrib/workflow/locale/de/LC_MESSAGES/django.po +457 -566
- wbcore/contrib/workflow/locale/de/LC_MESSAGES/django.po.translated +1326 -0
- wbcore/contrib/workflow/locale/en/LC_MESSAGES/django.po +1102 -0
- wbcore/contrib/workflow/locale/fr/LC_MESSAGES/django.po +1114 -0
- wbcore/contrib/workflow/models/data.py +7 -4
- wbcore/contrib/workflow/models/process.py +2 -2
- wbcore/contrib/workflow/models/step.py +57 -15
- wbcore/contrib/workflow/serializers/data.py +8 -8
- wbcore/contrib/workflow/serializers/process.py +3 -2
- wbcore/contrib/workflow/tests/conftest.py +224 -0
- wbcore/contrib/workflow/tests/test_dispatch.py +82 -77
- wbcore/contrib/workflow/tests/test_displays.py +10 -88
- wbcore/contrib/workflow/tests/test_filters.py +57 -40
- wbcore/contrib/workflow/tests/test_models/step/test_decision_step.py +71 -68
- wbcore/contrib/workflow/tests/test_models/step/test_email_step.py +78 -38
- wbcore/contrib/workflow/tests/test_models/step/test_finish_step.py +152 -90
- wbcore/contrib/workflow/tests/test_models/step/test_join_step.py +100 -110
- wbcore/contrib/workflow/tests/test_models/step/test_step.py +168 -33
- wbcore/contrib/workflow/tests/test_models/test_condition.py +1 -1
- wbcore/contrib/workflow/tests/test_models/test_workflow.py +3 -3
- wbcore/contrib/workflow/tests/test_serializers.py +172 -150
- wbcore/contrib/workflow/tests/test_viewsets.py +264 -323
- wbcore/contrib/workflow/tests/test_workflow_assignees.py +215 -205
- wbcore/contrib/workflow/viewsets/process.py +4 -1
- wbcore/contrib/workflow/workflows/assignees.py +12 -7
- wbcore/dynamic_preferences_registry.py +102 -0
- wbcore/enums.py +2 -51
- wbcore/filters/fields/choices.py +4 -6
- wbcore/filters/fields/content_type.py +15 -4
- wbcore/filters/fields/datetime.py +50 -25
- wbcore/filters/fields/models.py +18 -9
- wbcore/filters/fields/numbers.py +9 -8
- wbcore/filters/filterset.py +27 -6
- wbcore/filters/mixins.py +41 -42
- wbcore/forms.py +6 -6
- wbcore/fsm/markdown_extensions.py +1 -1
- wbcore/fsm/mixins.py +20 -6
- wbcore/locale/de/LC_MESSAGES/django.po +982 -397
- wbcore/locale/de/LC_MESSAGES/django.po.translated +1580 -0
- wbcore/locale/en/LC_MESSAGES/django.po +1234 -0
- wbcore/locale/fr/LC_MESSAGES/django.po +1235 -0
- wbcore/markdown/models.py +8 -5
- wbcore/markdown/views.py +1 -1
- wbcore/menus/menus.py +2 -2
- wbcore/metadata/configs/buttons/bases.py +10 -7
- wbcore/metadata/configs/buttons/buttons.py +2 -1
- wbcore/metadata/configs/buttons/enums.py +50 -0
- wbcore/metadata/configs/buttons/view_config.py +13 -46
- wbcore/metadata/configs/display/display.py +2 -2
- wbcore/metadata/configs/display/formatting.py +6 -9
- wbcore/metadata/configs/display/instance_display/display.py +5 -2
- wbcore/metadata/configs/display/instance_display/pages.py +1 -1
- wbcore/metadata/configs/display/instance_display/shortcuts.py +1 -1
- wbcore/metadata/configs/display/list_display.py +54 -40
- wbcore/metadata/configs/display/models.py +6 -0
- wbcore/metadata/configs/display/view_config.py +11 -9
- wbcore/metadata/configs/endpoints.py +11 -4
- wbcore/metadata/configs/fields.py +6 -1
- wbcore/metadata/configs/filter_fields.py +12 -13
- wbcore/metadata/configs/identifiers.py +3 -1
- wbcore/metadata/tests/test_buttons.py +13 -16
- wbcore/models/fields.py +2 -2
- wbcore/pagination.py +1 -2
- wbcore/permissions/permissions.py +2 -2
- wbcore/permissions/utils.py +2 -2
- wbcore/release_notes/display.py +2 -8
- wbcore/release_notes/serializers.py +2 -9
- wbcore/release_notes/viewsets.py +8 -2
- wbcore/reversion/viewsets/titles.py +4 -3
- wbcore/serializers/__init__.py +2 -0
- wbcore/serializers/fields/__init__.py +2 -1
- wbcore/serializers/fields/boolean.py +1 -1
- wbcore/serializers/fields/choice.py +28 -4
- wbcore/serializers/fields/datetime.py +45 -36
- wbcore/serializers/fields/fields.py +1 -1
- wbcore/serializers/fields/fsm.py +1 -1
- wbcore/serializers/fields/list.py +2 -5
- wbcore/serializers/fields/mixins.py +24 -11
- wbcore/serializers/fields/number.py +6 -23
- wbcore/serializers/fields/other.py +2 -10
- wbcore/serializers/fields/related.py +4 -6
- wbcore/serializers/fields/text.py +1 -1
- wbcore/serializers/fields/types.py +2 -0
- wbcore/serializers/serializers.py +12 -3
- wbcore/signals/__init__.py +1 -0
- wbcore/signals/clone.py +4 -0
- wbcore/signals/models.py +2 -6
- wbcore/tasks.py +2 -2
- wbcore/templates/wbcore/email_base_template.html +3 -3
- wbcore/test/e2e_helpers_methods/e2e_checks.py +10 -4
- wbcore/test/e2e_helpers_methods/e2e_helper_methods.py +4 -2
- wbcore/test/mixins.py +52 -102
- wbcore/test/tests.py +6 -9
- wbcore/test/utils.py +3 -4
- wbcore/tests/e2e/test_e2e.py +2 -2
- wbcore/tests/test_cache/test_decorators.py +4 -7
- wbcore/tests/test_configs.py +2 -5
- wbcore/tests/test_enums.py +2 -1
- wbcore/tests/test_fields/test_choice_fields.py +9 -1
- wbcore/tests/test_fields/test_number_fields.py +7 -15
- wbcore/tests/test_fields/test_other_fields.py +1 -2
- wbcore/tests/test_filters/test_mixins.py +35 -35
- wbcore/tests/test_list_display.py +0 -2
- wbcore/tests/test_models/test_mixins.py +1 -1
- wbcore/tests/test_utils/test_date.py +1 -1
- wbcore/tests/test_utils/test_date_builder.py +25 -1
- wbcore/tests/test_utils/test_primary.py +1 -1
- wbcore/urls.py +4 -0
- wbcore/utils/date.py +18 -2
- wbcore/utils/figures.py +2 -2
- wbcore/utils/models.py +21 -4
- wbcore/utils/reportlab.py +7 -0
- wbcore/utils/rrules.py +3 -1
- wbcore/utils/string_loader.py +1 -1
- wbcore/utils/strings.py +3 -3
- wbcore/utils/views.py +8 -3
- wbcore/viewsets/mixins.py +9 -4
- {wbcore-1.46.0.dist-info → wbcore-1.58.2.dist-info}/METADATA +9 -5
- {wbcore-1.46.0.dist-info → wbcore-1.58.2.dist-info}/RECORD +317 -271
- wbcore/contrib/geography/tests/test_serializers.py +0 -7
- wbcore/contrib/geography/tests/tests.py +0 -13
- wbcore/contrib/io/tests/tests.py +0 -19
- wbcore/contrib/workflow/tests/tests.py +0 -25
- {wbcore-1.46.0.dist-info → wbcore-1.58.2.dist-info}/WHEEL +0 -0
|
@@ -2,53 +2,53 @@ wbcore/__init__.py,sha256=J-j-u0itpEFT6irdmWmixQqYMadNl1X91TxUmoiLHMI,22
|
|
|
2
2
|
wbcore/admin.py,sha256=ES5cf6mX9dLeihMYnv9Ol6YTuD2zyexv3qr3nHEL5OI,6771
|
|
3
3
|
wbcore/apps.py,sha256=GbEGrRyFv6TSfo-rkvdxMnPU9J6RFpqhqU4ibE7rARw,482
|
|
4
4
|
wbcore/dispatch.py,sha256=QiLhugCp5FJzOWkiKittene8bVbYbPJbb-NDS7Y4Suo,2053
|
|
5
|
-
wbcore/dynamic_preferences_registry.py,sha256=
|
|
6
|
-
wbcore/enums.py,sha256=
|
|
7
|
-
wbcore/forms.py,sha256=
|
|
5
|
+
wbcore/dynamic_preferences_registry.py,sha256=maplz8DukWht052A6DwB0s-4ZfghtNIE2u9r2i8vhuo,3877
|
|
6
|
+
wbcore/enums.py,sha256=DUJzxDPvDBrjg_B1rqhKA6WMQ8bQfRcITMljG3yYKcQ,938
|
|
7
|
+
wbcore/forms.py,sha256=aUUT9XxZGSvpr3ZyhTv6AeydRayn7Jy1besKWybQa0A,3633
|
|
8
8
|
wbcore/frontend.py,sha256=TA2duYbgzRLrjmU2ImSGgJmGTu_J_w0n1Bh_b7s94uQ,856
|
|
9
9
|
wbcore/frontend_user_configuration.py,sha256=P4SQk9ALZLBs6gNTqGBkEB6Sr-w4RWDdcLUvgp9T1qo,3193
|
|
10
10
|
wbcore/messages.py,sha256=fSfELjXkastcd3gFiWGJrGI_dl0BzsKg8UfaApXf5nM,1967
|
|
11
|
-
wbcore/pagination.py,sha256=
|
|
11
|
+
wbcore/pagination.py,sha256=lOW1BzJwlATzfOHo4BJA23avrg_39-LCL6mHctsAoBk,2282
|
|
12
12
|
wbcore/routers.py,sha256=gLbQc8MRHuJax88FBDejtt3_MavE9KkwZMsQvAqJj0I,2174
|
|
13
|
-
wbcore/tasks.py,sha256=
|
|
14
|
-
wbcore/urls.py,sha256=
|
|
13
|
+
wbcore/tasks.py,sha256=AWwWhGro1_YJYcYWzJNSGTFHvBCzjHAB2iwGJGr-JB0,3913
|
|
14
|
+
wbcore/urls.py,sha256=mP7uSW_hmCEODYxbSrsh3uDYoYwmBRAI4Vq0XWXkfeo,4827
|
|
15
15
|
wbcore/views.py,sha256=6vfq4DfKmCJD27T_XvKdigMBy9NbpzcaBO3gYcq60tI,950
|
|
16
16
|
wbcore/cache/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
17
17
|
wbcore/cache/buttons.py,sha256=gyEizLHyWeWAiNxZ4fQ16pxiCy1sxfwIht928HBrOf8,970
|
|
18
|
-
wbcore/cache/decorators.py,sha256=
|
|
18
|
+
wbcore/cache/decorators.py,sha256=pfXnncxysUuKHFDoMX-oiPQ_eZfmi3i4qSrb0HDg3bA,1120
|
|
19
19
|
wbcore/cache/mixins.py,sha256=N8lCZEHh9u_RiKhRjqBwRTw8OJTMdcydM8BfND_q8Q0,1722
|
|
20
|
-
wbcore/cache/registry.py,sha256=
|
|
20
|
+
wbcore/cache/registry.py,sha256=wsvkFoeBSUhx9icnasrLWrDtdqdlFer2srQuxHwRojY,3672
|
|
21
21
|
wbcore/cache/views.py,sha256=Ehwglwlug2Z4285BPvTE5623sCAlHrDD3np1oZkw_gc,630
|
|
22
|
-
wbcore/configs/__init__.py,sha256=
|
|
23
|
-
wbcore/configs/configs.py,sha256=
|
|
24
|
-
wbcore/configs/decorators.py,sha256=
|
|
22
|
+
wbcore/configs/__init__.py,sha256=nCj33UcDo_vtzA8o-MA2R4Uqrd3wFoRcyRKhMS8kiEM,259
|
|
23
|
+
wbcore/configs/configs.py,sha256=Jdh8ataXCoBcm3p4QtOP2rf6-df4Wn8ak2xJ_TWJb80,2053
|
|
24
|
+
wbcore/configs/decorators.py,sha256=5kdwENMaiw6rzjqTj-D7ezx-9gj2FVg1P5NsFrO-fnc,387
|
|
25
25
|
wbcore/configs/registry.py,sha256=mBOETXfDdGPW7tpXRTyvvEzn4IvAWtPegN13-ml6Jy4,1287
|
|
26
26
|
wbcore/configs/views.py,sha256=GCf8jPF0hAgQ8oIle4jJMliWlWoXj4yBPsZAe7MZS1s,366
|
|
27
27
|
wbcore/configurations/__init__.py,sha256=H-vQTsjryzvwQ7FN4kGLywoGFV_VrPkbuNV4VRx1WHU,68
|
|
28
28
|
wbcore/configurations/base.py,sha256=woxAbHfAU6vMHu6oZp5eDJB97j-PjUVkA6UdItXNc8Q,1550
|
|
29
29
|
wbcore/configurations/configurations/__init__.py,sha256=mni_MM6rOHK1YwOC9i4xlrITumInHJuKCngc4k-pdpo,574
|
|
30
|
-
wbcore/configurations/configurations/apps.py,sha256=
|
|
31
|
-
wbcore/configurations/configurations/authentication.py,sha256=
|
|
32
|
-
wbcore/configurations/configurations/base.py,sha256=
|
|
33
|
-
wbcore/configurations/configurations/cache.py,sha256=
|
|
30
|
+
wbcore/configurations/configurations/apps.py,sha256=paEcFC0JNpJ50Ma-_0dAO3wumgGnaGIAEhErlNqc_jY,1591
|
|
31
|
+
wbcore/configurations/configurations/authentication.py,sha256=wRNQDvCOf2lPuOsxf7NugisC-fXYWD1lMyKKu2rZrDk,2115
|
|
32
|
+
wbcore/configurations/configurations/base.py,sha256=ETX3-jiJe1sJev9jcXUgUNkrOPANmWx9-ogob6sNZd0,453
|
|
33
|
+
wbcore/configurations/configurations/cache.py,sha256=UwqbhVQIouCK9SdXX4-SeaTR4HGQhHna7j38L6uGPXk,709
|
|
34
34
|
wbcore/configurations/configurations/celery.py,sha256=rIlfOFwTYv1z5AmEEyFu6hcIK0Jhs6UjWtVimprEl7U,1042
|
|
35
|
-
wbcore/configurations/configurations/i18nl10n.py,sha256=
|
|
35
|
+
wbcore/configurations/configurations/i18nl10n.py,sha256=EnzF4OFjUyxU6xQVvXC0oRogg-97GyTjNNh1i98s-bg,460
|
|
36
36
|
wbcore/configurations/configurations/mail.py,sha256=Ky8oUzSCqLTaRsWzPbJs2agu8M5YxnqEIiWvxFOu6fQ,89
|
|
37
|
-
wbcore/configurations/configurations/maintenance.py,sha256=
|
|
38
|
-
wbcore/configurations/configurations/media.py,sha256=
|
|
39
|
-
wbcore/configurations/configurations/middleware.py,sha256=
|
|
37
|
+
wbcore/configurations/configurations/maintenance.py,sha256=vNLy64RoCY-s665pCWQwaeI-dZ0VHN_6UrNVZwJ5Tfc,2593
|
|
38
|
+
wbcore/configurations/configurations/media.py,sha256=hRIDbB0ngL8ihq1myK1C2G5n7DVmrrM-s9XMua4QUng,753
|
|
39
|
+
wbcore/configurations/configurations/middleware.py,sha256=ITqS3loS2ottWLBLKDnaPuhZmXwyqlwrcpZ8IRD0000,1328
|
|
40
40
|
wbcore/configurations/configurations/network.py,sha256=seM15W9V1_id6X2Vxff_8mpQODB2v-hs8q5QFo2zeWM,822
|
|
41
|
-
wbcore/configurations/configurations/rest_framework.py,sha256=
|
|
42
|
-
wbcore/configurations/configurations/static.py,sha256
|
|
41
|
+
wbcore/configurations/configurations/rest_framework.py,sha256=u1c0cup3KnSr5CuWjxPYbnLxpTjIqeQ00zw9ADAx9hQ,2084
|
|
42
|
+
wbcore/configurations/configurations/static.py,sha256=-OZXJvFpSlPAYspkeq97PL1VdiV1nh5_BYPO0jGmiVk,690
|
|
43
43
|
wbcore/configurations/configurations/templates.py,sha256=Jjx6Pd8K4gAVhRXOM8sMq5PoVyB6Ll5HnOEQU6OeevY,591
|
|
44
44
|
wbcore/configurations/configurations/uvicorn.py,sha256=ZkklzlFwvMnOljNvr-Pl9QSGAGlNw-dYQjSiGx2GC-Y,368
|
|
45
|
-
wbcore/configurations/configurations/wbcore.py,sha256=
|
|
45
|
+
wbcore/configurations/configurations/wbcore.py,sha256=CXoKr5_iSAyoblXJLC_ZVnLXukd7liGiiE5rbKUlOyw,3125
|
|
46
46
|
wbcore/content_type/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
47
47
|
wbcore/content_type/admin.py,sha256=0o4M2ARAxW4qZ_lA8hIootT69GRyOih_-K_A5ouNkUw,255
|
|
48
48
|
wbcore/content_type/filters.py,sha256=s7GNjnesOcvNIKKa_w1XsTs21Rocp8Mo1tvVdVdbq3Q,629
|
|
49
|
-
wbcore/content_type/serializers.py,sha256=
|
|
50
|
-
wbcore/content_type/utils.py,sha256=
|
|
51
|
-
wbcore/content_type/viewsets.py,sha256=
|
|
49
|
+
wbcore/content_type/serializers.py,sha256=M6wPv0ibuicgHspDHYvrm3ztl7H3yJZlS1GI3URyfyw,3755
|
|
50
|
+
wbcore/content_type/utils.py,sha256=HRvOh5Qcts6u6N4DE39oJnyJp2H2gPNMuXkth7K61Ps,865
|
|
51
|
+
wbcore/content_type/viewsets.py,sha256=wI9WQyiYe_TBrg6wPWjPnQMphAjK9MVsRli6T_gBjrw,2940
|
|
52
52
|
wbcore/contrib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
53
53
|
wbcore/contrib/agenda/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
54
54
|
wbcore/contrib/agenda/apps.py,sha256=cDiiTECHI2F9DVEl0ypFRly3BORNlGVwcQ-YGZxfDJw,159
|
|
@@ -63,9 +63,12 @@ wbcore/contrib/agenda/factories/__init__.py,sha256=HtWkd-1NBWASbKiUGoRij02KaWKv5
|
|
|
63
63
|
wbcore/contrib/agenda/factories/calendar_item.py,sha256=D4OKNz6JN4vPoDZXJVSd6I3kaqlDPO1--BQCbRvw1BQ,1368
|
|
64
64
|
wbcore/contrib/agenda/factories/conference_room.py,sha256=XOuWhzkKIHp3ZXdMrKIpXoxoWilo7LJY5g9QPOQn0WY,525
|
|
65
65
|
wbcore/contrib/agenda/filters/__init__.py,sha256=RtsTRlUrL4dP0pA86ws_4u1-bqoU_YslwbnuJhe8NGU,145
|
|
66
|
-
wbcore/contrib/agenda/filters/calendar_item.py,sha256=
|
|
66
|
+
wbcore/contrib/agenda/filters/calendar_item.py,sha256=c0v0W8aTNUvG0a87kMwYc9LWRcyckWQUlcPGnIhCNmU,2697
|
|
67
67
|
wbcore/contrib/agenda/filters/conference_room.py,sha256=vr5MMUdr768x9KpxZXCIZjqTXNelZaJjft2DJOLW7DY,1371
|
|
68
|
-
wbcore/contrib/agenda/locale/de/LC_MESSAGES/django.po,sha256=
|
|
68
|
+
wbcore/contrib/agenda/locale/de/LC_MESSAGES/django.po,sha256=9rgx-Ms1SSLKt3wThZ2dvw4QltjddKmEZrURMjJCG3I,5303
|
|
69
|
+
wbcore/contrib/agenda/locale/de/LC_MESSAGES/django.po.translated,sha256=2l9jKXWDRo-82AnJwOQQBrNP-2Lcmss1UcRqNeMHipg,6334
|
|
70
|
+
wbcore/contrib/agenda/locale/en/LC_MESSAGES/django.po,sha256=oT2jXEm3igUD4fWvRf9BNM5Rac-_FonVjGyK3Y6yKlg,4929
|
|
71
|
+
wbcore/contrib/agenda/locale/fr/LC_MESSAGES/django.po,sha256=UrY0OX-erx9y1hxbEiAJkGh_0--rxev1e_6Ph49fAZ4,5030
|
|
69
72
|
wbcore/contrib/agenda/migrations/0001_initial.py,sha256=U2XBESw3umDVzJwEt7G7U_Wesvdjb5_2zXnZT6n84Vk,3290
|
|
70
73
|
wbcore/contrib/agenda/migrations/0002_initial.py,sha256=Xlt0LAHeo8Z5JysnuLvU5r3mrq30hts7bdYCNEYZ9g8,708
|
|
71
74
|
wbcore/contrib/agenda/migrations/0003_calendaritem_endpoint_basename.py,sha256=YDsn5yoZwQb2Z9Jyc6bwz7BDH5I8og3YS6CDC_hQ0xM,1302
|
|
@@ -93,7 +96,7 @@ wbcore/contrib/agenda/tests/test_models.py,sha256=fFFYAtP-kBq2Lsm9EaJSOa3rU3Gdlm
|
|
|
93
96
|
wbcore/contrib/agenda/tests/test_viewsets.py,sha256=URXoB5MovOj6-JeyLW53zkBNlIlxvoUFqXJwpszSK8M,7567
|
|
94
97
|
wbcore/contrib/agenda/tests/tests.py,sha256=ZPlf6f3zpbWZPrtzKdfhowCtP5MkROn-Yrun-zSDwDA,866
|
|
95
98
|
wbcore/contrib/agenda/viewsets/__init__.py,sha256=n7RcUSSx_6X7Ql49FnYZ3dhzi2vldRqjAJ6mPOxl_nQ,337
|
|
96
|
-
wbcore/contrib/agenda/viewsets/calendar_items.py,sha256=
|
|
99
|
+
wbcore/contrib/agenda/viewsets/calendar_items.py,sha256=vh5DQuCS-0uppIl-1NPFEKL2OHlbdh1D863VvX6cihE,6401
|
|
97
100
|
wbcore/contrib/agenda/viewsets/conference_room.py,sha256=42GsOBn1nwn_diqg_0mCp6wOrpBGPo41gnW2noZMIE0,1846
|
|
98
101
|
wbcore/contrib/agenda/viewsets/buttons/__init__.py,sha256=WpwfEo6gniHLqA_wa0zw3XuSOgJ0xJd3IcJbwWC35tQ,50
|
|
99
102
|
wbcore/contrib/agenda/viewsets/buttons/conference_room.py,sha256=DrPd841vFVIUymHDMnshWl4hNOTE37t_XT0GIVr3K3c,714
|
|
@@ -103,36 +106,39 @@ wbcore/contrib/agenda/viewsets/display/conference_room.py,sha256=8z-NZ4tb-o5PPLP
|
|
|
103
106
|
wbcore/contrib/agenda/viewsets/endpoints/__init__.py,sha256=jGfh-M2tuizBUZ1-uqHpYFZ8UQvSh84suSfGP9L7N-k,55
|
|
104
107
|
wbcore/contrib/agenda/viewsets/endpoints/calendar_items.py,sha256=VeSsIf0YsT16mV1I7dEkzjoBkOrLiNiCcRxAHa795jc,754
|
|
105
108
|
wbcore/contrib/agenda/viewsets/menu/__init__.py,sha256=HxdPpwcboVVcwhHLdmFjHcqVofQnFFbDV2pl_adMHME,119
|
|
106
|
-
wbcore/contrib/agenda/viewsets/menu/calendar_items.py,sha256=
|
|
109
|
+
wbcore/contrib/agenda/viewsets/menu/calendar_items.py,sha256=1wSws5NoTXWeUSky8pycZzeulStV3yKcZOo8L49f3UE,407
|
|
107
110
|
wbcore/contrib/agenda/viewsets/menu/conference_room.py,sha256=qqflU705L5TYmdekdx-CRtqzDx5Qo7o4d6YztQlLAX8,1246
|
|
108
111
|
wbcore/contrib/agenda/viewsets/titles/__init__.py,sha256=0nDvBCHl5ZAOxvDFqjhpycqzOZRKkZ6b4OKD55RjtHM,128
|
|
109
112
|
wbcore/contrib/agenda/viewsets/titles/calendar_items.py,sha256=5zDx2uH5UKJh-zop3ZAqNR15utAKtEt7xm_wnmM8ws8,219
|
|
110
113
|
wbcore/contrib/agenda/viewsets/titles/conference_room.py,sha256=NHbfJ3jkvJ5knaLgp8QNtRndbbovJ351ejWs-dLpvro,629
|
|
111
114
|
wbcore/contrib/ai/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
112
115
|
wbcore/contrib/ai/apps.py,sha256=nx-0Jd-jUjko4h1tBC1FXwuJI3KK9rdOkI7TNYKzWU8,97
|
|
113
|
-
wbcore/contrib/ai/exceptions.py,sha256=
|
|
116
|
+
wbcore/contrib/ai/exceptions.py,sha256=NEJ7syViGXoPM9ZQ8hBfGH0Q75e52hq3foKAnHXvLOQ,1075
|
|
114
117
|
wbcore/contrib/ai/llm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
115
|
-
wbcore/contrib/ai/llm/config.py,sha256=
|
|
118
|
+
wbcore/contrib/ai/llm/config.py,sha256=8pvKK4UjArM2Bl_TfWYiNUNa2AR-zjAckUvIGLrC1eU,5525
|
|
116
119
|
wbcore/contrib/ai/llm/decorators.py,sha256=u3AWbQjbCCeIp-X1aezhqeZJd8chbI1OhGnm8mDy5cY,198
|
|
117
|
-
wbcore/contrib/ai/llm/mixins.py,sha256=
|
|
118
|
-
wbcore/contrib/ai/llm/utils.py,sha256=
|
|
120
|
+
wbcore/contrib/ai/llm/mixins.py,sha256=4WBjHixLT05-_ZgWz_SHx7le4t2sqBalb-AkILkQnLE,986
|
|
121
|
+
wbcore/contrib/ai/llm/utils.py,sha256=B6iNt54x9ehN084wj-UvLUVEYrTPANSaITtl0AT3WJc,2503
|
|
119
122
|
wbcore/contrib/authentication/__init__.py,sha256=eQ3KJSYPoO4xc867RdcdayxaxZ8TLGLHMA3kY5H6UMg,313
|
|
120
|
-
wbcore/contrib/authentication/admin.py,sha256=
|
|
123
|
+
wbcore/contrib/authentication/admin.py,sha256=vWYNMx9woqROm_dOwraYqLKunUv0d46SOrY5J9pcqsI,9052
|
|
121
124
|
wbcore/contrib/authentication/apps.py,sha256=5ak0rx5M2P7r4Mq1XnP4-arEHIUq6CAYoBjzOU7lPs4,411
|
|
122
125
|
wbcore/contrib/authentication/authentication.py,sha256=DLWOsGlk88uegMnepEIRrc91B-HKePUuoo1_-IewMac,4311
|
|
123
126
|
wbcore/contrib/authentication/configs.py,sha256=Z3M2X6xzWhwJEEvHym6d9khriSdgyTmimbkxi7KAGuk,358
|
|
124
127
|
wbcore/contrib/authentication/configurations.py,sha256=N-631Y0kfJzacLcs926uom7SaoJC7RvhA7nsR5NV_hs,2362
|
|
125
128
|
wbcore/contrib/authentication/dynamic_preferences_registry.py,sha256=oWCqvR-lzduzOrwh5DlsTBfP-9NyjCERNpKLjfnkNzo,982
|
|
126
|
-
wbcore/contrib/authentication/filters.py,sha256=
|
|
129
|
+
wbcore/contrib/authentication/filters.py,sha256=UEIbxpFhjc2G8DFq0r0hWEoAASoNZDmBI3PZvPD8-Q8,424
|
|
127
130
|
wbcore/contrib/authentication/tasks.py,sha256=5h2dL3nbrfpkU6i6Qq51vk7PMh14_-YLlfvyskGOVO0,1201
|
|
128
|
-
wbcore/contrib/authentication/urls.py,sha256=
|
|
131
|
+
wbcore/contrib/authentication/urls.py,sha256=OUeLXEwuF6yS-oXeBpkC5aCviEC-nPbM3CSOcNpEImE,3974
|
|
129
132
|
wbcore/contrib/authentication/utils.py,sha256=jmOZtY_z6oW_r6npGPH00IbPcUjWZ1NchodMgcHXEbs,341
|
|
130
|
-
wbcore/contrib/authentication/factories/__init__.py,sha256=
|
|
133
|
+
wbcore/contrib/authentication/factories/__init__.py,sha256=hpYaVz57Ko4lh6rZex31HuO-pyJ-LmegzGH26hSrIqo,243
|
|
131
134
|
wbcore/contrib/authentication/factories/tokens.py,sha256=CX3HI3ynapYdknmiMrF7WikmF-LWMqKmYMMlLJgUDrI,414
|
|
132
|
-
wbcore/contrib/authentication/factories/users.py,sha256=
|
|
135
|
+
wbcore/contrib/authentication/factories/users.py,sha256=xPol5ufcoeeALBXVFSToVxyMYK21G-0L5e0dT2nzLLk,3724
|
|
133
136
|
wbcore/contrib/authentication/factories/users_activities.py,sha256=tbcpZyXokn6fDZ6fuZkGtYL7Jtm0aWIiZBY63urx_iw,480
|
|
134
137
|
wbcore/contrib/authentication/fixtures/authentication.json,sha256=9sRKzduD4j9-NYP-Ou9Lw1hIB3DWIPwAfO-T_JFebvI,1848
|
|
135
|
-
wbcore/contrib/authentication/locale/de/LC_MESSAGES/django.po,sha256=
|
|
138
|
+
wbcore/contrib/authentication/locale/de/LC_MESSAGES/django.po,sha256=f0xhk8zpD3ir1RaVGCoYaGwNpYJAiwhZgoZJ_cfxL90,20901
|
|
139
|
+
wbcore/contrib/authentication/locale/de/LC_MESSAGES/django.po.translated,sha256=sUgcHLFQktpSZbK3l-KXLvn0MhjeKvwJn0mpydaI1Lo,22002
|
|
140
|
+
wbcore/contrib/authentication/locale/en/LC_MESSAGES/django.po,sha256=otLSffRpW2GmSG3rbC2-MhuXCSCWtoqxLsI2rME2zYA,16067
|
|
141
|
+
wbcore/contrib/authentication/locale/fr/LC_MESSAGES/django.po,sha256=ZWD3KlC926dM9oP8-xw4U9lQC6oDofpyXw4u_lo50I4,16171
|
|
136
142
|
wbcore/contrib/authentication/management/__init__.py,sha256=-Y__XzIfe-QL1sNWr4SSLaoSHX0YRl7SLPQqCGKWZVE,635
|
|
137
143
|
wbcore/contrib/authentication/migrations/0001_initial_squashed.py,sha256=5cdHxjaM3hyqlxYMadCU5wXn4P-jqkgwQj8JqvvaIJE,6663
|
|
138
144
|
wbcore/contrib/authentication/migrations/0002_profile.py,sha256=QfkebUHcRFdjrkTEucXoU1YqDo-ygh1X2AWIhG8pH0I,692
|
|
@@ -143,12 +149,12 @@ wbcore/contrib/authentication/migrations/0006_auto_20231206_1422.py,sha256=jetLc
|
|
|
143
149
|
wbcore/contrib/authentication/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
144
150
|
wbcore/contrib/authentication/models/__init__.py,sha256=GhtPxWgZEUcbFQt2ArdB6OPjyEYav3F_XddlKnht0_w,125
|
|
145
151
|
wbcore/contrib/authentication/models/tokens.py,sha256=QGNz4Tejy6KqxOnrIGIGC4PPbKsP-CbGQ3AXNsN-zW4,5415
|
|
146
|
-
wbcore/contrib/authentication/models/users.py,sha256=
|
|
147
|
-
wbcore/contrib/authentication/models/users_activities.py,sha256=
|
|
152
|
+
wbcore/contrib/authentication/models/users.py,sha256=ShQjVpEKHCgwH1IajrYXMlDef13xinf2WqfV68aQf-A,7826
|
|
153
|
+
wbcore/contrib/authentication/models/users_activities.py,sha256=Jg1o3CGM4j7nOmk3O025Odn6sf6pZjZiivCcR3UEAWs,4224
|
|
148
154
|
wbcore/contrib/authentication/release_notes/1_0_0.md,sha256=pZ6rgeR5mTB3vabX3eaEJXMSfs7m4a1SEbYdpAmXwyI,170
|
|
149
155
|
wbcore/contrib/authentication/release_notes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
150
156
|
wbcore/contrib/authentication/serializers/__init__.py,sha256=pY77syWz4VtH1RlGMv5-0nlnneDshvNDmk-N52lBXIc,455
|
|
151
|
-
wbcore/contrib/authentication/serializers/users.py,sha256=
|
|
157
|
+
wbcore/contrib/authentication/serializers/users.py,sha256=3IXYsYYyPLz7UoHqfD7GuQMAv6BYr2DRDsPUnukjVDA,14347
|
|
152
158
|
wbcore/contrib/authentication/serializers/users_activites.py,sha256=BvhwOZg7izLDnCD5RN1fdaBoEJGQDA8nUacTj192krA,1234
|
|
153
159
|
wbcore/contrib/authentication/templates/activate_confirm.html,sha256=DP-3FfdLEPYu8svucdSe68DGjJyJNeVENcbZvf6hPtE,283
|
|
154
160
|
wbcore/contrib/authentication/templates/base.html,sha256=_fe2DDLtBphRbiyUUMhRS3qqQC3fudqN0afT2o06Z_E,3747
|
|
@@ -166,23 +172,23 @@ wbcore/contrib/authentication/tests/signals.py,sha256=3Vrb_z4u_XMI-pfcGAbO4aBwhU
|
|
|
166
172
|
wbcore/contrib/authentication/tests/test_configs.py,sha256=AJ2LmSgenIjG_9dp0bzPZj6mMG7hB_B3x2imXL7nFOY,217
|
|
167
173
|
wbcore/contrib/authentication/tests/test_serializers.py,sha256=yiF6x5IRbWKwndlZkVlFwQd-zCebAJVbqmfDbpI87dE,79
|
|
168
174
|
wbcore/contrib/authentication/tests/test_tasks.py,sha256=yiqt4U2yxh2uslu0l-nA2Zldoh-yjG5LYeg2jUWKu00,1355
|
|
169
|
-
wbcore/contrib/authentication/tests/test_tokens.py,sha256=
|
|
170
|
-
wbcore/contrib/authentication/tests/test_users.py,sha256=
|
|
175
|
+
wbcore/contrib/authentication/tests/test_tokens.py,sha256=MtLW2BDElaWFpiZIRmDc_MTLd3TedjJcjOR6G1DYNbE,6129
|
|
176
|
+
wbcore/contrib/authentication/tests/test_users.py,sha256=weBPLrDCEZtA9YTbNBNmQTBce3uIpT34k5Ow9B09Tbc,13024
|
|
171
177
|
wbcore/contrib/authentication/tests/test_viewsets.py,sha256=H_7mK6j3SoxM_MZioXUeWptAyxELZwutncuAniTFrH8,77
|
|
172
178
|
wbcore/contrib/authentication/tests/tests.py,sha256=kQnXhFqBaYOj1vsew70bDoNM2UF1sG92wecHROoHbkk,432
|
|
173
179
|
wbcore/contrib/authentication/tests/e2e/__init__.py,sha256=0QhVTsjMlR1BTGlRiaO5io2G6-T313zd6JNb1TesmyU,55
|
|
174
180
|
wbcore/contrib/authentication/tests/e2e/e2e_auth_utility.py,sha256=DNCAiaLGVZ964oGmdp1CYc1oU2AEDZdA_W1kLZv5Zn0,564
|
|
175
181
|
wbcore/contrib/authentication/viewsets/__init__.py,sha256=Kvt5ikqkg0_4P-DXvRBOpfQcUMHwDIE7vyGpGQ5uSbg,479
|
|
176
|
-
wbcore/contrib/authentication/viewsets/user_activities.py,sha256=
|
|
177
|
-
wbcore/contrib/authentication/viewsets/users.py,sha256=
|
|
182
|
+
wbcore/contrib/authentication/viewsets/user_activities.py,sha256=aJVtAnVYdbhc8iPOIMHcVripDJ2s0lU1lTQWSX_IyrI,8324
|
|
183
|
+
wbcore/contrib/authentication/viewsets/users.py,sha256=8oX0EY126o5FWiiBUHiUHbk2g1bEUTR9naWbQlLiUVs,12442
|
|
178
184
|
wbcore/contrib/authentication/viewsets/buttons/__init__.py,sha256=H2DLTgMil7mRmj-NtnBfJa-DrbMxT4lv8GbZNhe_76w,66
|
|
179
185
|
wbcore/contrib/authentication/viewsets/buttons/users.py,sha256=OHtuM4M-Um85-bXXnKNA0PZQEZVB51BCiXsoOjfFLIs,2359
|
|
180
186
|
wbcore/contrib/authentication/viewsets/display/__init__.py,sha256=iOKARtlVqcaMB80CZqFpCPbyjz4bKaOdjYqEmGYlIBs,222
|
|
181
187
|
wbcore/contrib/authentication/viewsets/display/user_activities.py,sha256=Vc4nu8p3k_6WyDOqZWIXaYQxrMdqijc-6Ghx5n1cM04,3461
|
|
182
188
|
wbcore/contrib/authentication/viewsets/display/users.py,sha256=b9RYAtbw5X1nlkD3z8je_J51-zpzoQY1NLhHdwskosg,2890
|
|
183
189
|
wbcore/contrib/authentication/viewsets/endpoints/__init__.py,sha256=i0M7ZkmEoTJLMLA3JR3gvF_1X3YLoz4YYZzZyvNJupc,234
|
|
184
|
-
wbcore/contrib/authentication/viewsets/endpoints/user_activities.py,sha256=
|
|
185
|
-
wbcore/contrib/authentication/viewsets/endpoints/users.py,sha256=
|
|
190
|
+
wbcore/contrib/authentication/viewsets/endpoints/user_activities.py,sha256=JUd61RhdjDmF-e-zg1TZ9AO9pXdbL1JUYcZ-9FXGKR8,354
|
|
191
|
+
wbcore/contrib/authentication/viewsets/endpoints/users.py,sha256=BCOTgGWbKN8uHAAk_A0MaQfwume_aejUaI4j3uZmiPI,623
|
|
186
192
|
wbcore/contrib/authentication/viewsets/menu/__init__.py,sha256=doXz5TNc2pWhG9YuZTZVsvQYzx8g8jOj1U4pbu_qrh0,162
|
|
187
193
|
wbcore/contrib/authentication/viewsets/menu/user_activities.py,sha256=NQR4bn86yPrmXFg1QgWLKk_mtU8lcGwyRajfzZAQ-qE,1204
|
|
188
194
|
wbcore/contrib/authentication/viewsets/menu/users.py,sha256=kkwG6YAzlqbnaHJGbb-Y2OMumyzbTaAteS1Xc5kYT4Y,589
|
|
@@ -195,7 +201,7 @@ wbcore/contrib/color/enums.py,sha256=yj1SqcQZdrcmXsY6VB1NT5d7aTZgkd2DamJt7jxiKAw
|
|
|
195
201
|
wbcore/contrib/color/factories.py,sha256=1J-0QnyhYFIpkD29aC5n8cPIY6SUdZti0Ra9GwgkX70,314
|
|
196
202
|
wbcore/contrib/color/fields.py,sha256=dPT1LyOyNujlgEKfh34pTPZS0nLQDOe63JhVrfH7KB0,806
|
|
197
203
|
wbcore/contrib/color/forms.py,sha256=FZxi4RzNnWYGJm9e9oYecxOSYAenB7XB9SEVW1AcIn4,435
|
|
198
|
-
wbcore/contrib/color/models.py,sha256=
|
|
204
|
+
wbcore/contrib/color/models.py,sha256=N-KqjNo1PPWQt82lhkmNOrd-5uJmHQwIT_FPAzDe55Y,1994
|
|
199
205
|
wbcore/contrib/color/migrations/0001_initial.py,sha256=DvS0kImKDdSeIN7sPVEiy2Bbuv4GvEES9I196KyKWS0,1082
|
|
200
206
|
wbcore/contrib/color/migrations/0002_alter_colorgradient_colors.py,sha256=s5Lub5wPnJwfDw8GRCq0zd5DU5STpBt9GVDxVHxKLBM,705
|
|
201
207
|
wbcore/contrib/color/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -206,9 +212,9 @@ wbcore/contrib/currency/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG
|
|
|
206
212
|
wbcore/contrib/currency/admin.py,sha256=40IS_gMyIXjYYUka35Olk3aYI3cLLb5NXpC_rWdsnb8,1081
|
|
207
213
|
wbcore/contrib/currency/apps.py,sha256=10grJHw9gyBLDfbVJ-gGGUFcU5AgTaH7uBFr8j0bshE,106
|
|
208
214
|
wbcore/contrib/currency/dynamic_preferences_registry.py,sha256=1f4tPjAf1OYyp4FPUZ9WCdh8cEcM_1OD_y5GWRCa6NA,1074
|
|
209
|
-
wbcore/contrib/currency/factories.py,sha256=
|
|
210
|
-
wbcore/contrib/currency/models.py,sha256=
|
|
211
|
-
wbcore/contrib/currency/serializers.py,sha256=
|
|
215
|
+
wbcore/contrib/currency/factories.py,sha256=DTFzyceTewYzj3IFyI3roJCwF1VWKZOZKLcsJg829mA,1211
|
|
216
|
+
wbcore/contrib/currency/models.py,sha256=Qxa_d-6oNL4VtCoAgXVvXqe9nO1IOeAb3f2aCnYASJg,6961
|
|
217
|
+
wbcore/contrib/currency/serializers.py,sha256=v9y5ldcxe9cm2rabwEI9yHIj2Sp0QKnVAs9eX6F60fY,1448
|
|
212
218
|
wbcore/contrib/currency/urls.py,sha256=kyM6mM-1wQtsdc58r7MsSgAGhVS-4U-xLPeC3-XPNys,685
|
|
213
219
|
wbcore/contrib/currency/fixtures/currency.yaml,sha256=lB0DyTrfSt96fym_fc8_13qsWIk09h-6jfVnjHIhVQs,17225
|
|
214
220
|
wbcore/contrib/currency/fixtures/currency_fx_rate.yaml,sha256=tzkBO-Vc-RYFCzbT2ys9MOQxhB0zBvseHaPjVerg3qY,1452692
|
|
@@ -216,7 +222,7 @@ wbcore/contrib/currency/import_export/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCe
|
|
|
216
222
|
wbcore/contrib/currency/import_export/backends/__init__.py,sha256=ebh7oqdM8U0t_u4_v7dZcCQrtNXIJbFkhBZLmi7EUeo,23
|
|
217
223
|
wbcore/contrib/currency/import_export/backends/utils.py,sha256=HV9KzSivUrNda83RQ9aHmwU3XikvE9qWklS1DA-ISg8,216
|
|
218
224
|
wbcore/contrib/currency/import_export/backends/fixerio/__init__.py,sha256=0cTmsR5hevUyrqvrwIgH3l-tk7xm3XXDm56qlZX_AYo,43
|
|
219
|
-
wbcore/contrib/currency/import_export/backends/fixerio/currency_fx_rates.py,sha256=
|
|
225
|
+
wbcore/contrib/currency/import_export/backends/fixerio/currency_fx_rates.py,sha256=SbZZnvtt6Uy_o7RIg0sENWWShpCe0NUb8_M5HFdJfE8,2987
|
|
220
226
|
wbcore/contrib/currency/import_export/handlers/__init__.py,sha256=jlqc5rPD-cxofp2XkJMUcDJiGpBYjwfGZ8x3xpqsGt8,104
|
|
221
227
|
wbcore/contrib/currency/import_export/handlers/currency.py,sha256=GQaPjT2L1vPZbfNJLi2Vw2UoVbFjVHQGiO1c1to3Cf4,838
|
|
222
228
|
wbcore/contrib/currency/import_export/handlers/currency_fx_rates.py,sha256=LKRkOgbStOHd0k7ZrbjsgfOpFdS7-CrjbjnVClW_qqk,1203
|
|
@@ -230,17 +236,17 @@ wbcore/contrib/currency/release_notes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCe
|
|
|
230
236
|
wbcore/contrib/currency/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
231
237
|
wbcore/contrib/currency/tests/conftest.py,sha256=WVsiPAsvPDwt9SsCSrUjM-jg5uc02Nqor8xQFltoZm8,200
|
|
232
238
|
wbcore/contrib/currency/tests/test_models.py,sha256=BWvcy8de3hXqo1-SlilVS4L5RHEZ9g3cPCyfZk-WFiI,4720
|
|
233
|
-
wbcore/contrib/currency/tests/test_serializers.py,sha256=
|
|
234
|
-
wbcore/contrib/currency/tests/test_viewsets.py,sha256=
|
|
239
|
+
wbcore/contrib/currency/tests/test_serializers.py,sha256=5AIH6thmG76bjBTuVFnB4_izfDrXZIsDZ7xsOvXi4lw,2928
|
|
240
|
+
wbcore/contrib/currency/tests/test_viewsets.py,sha256=aGuKRY9UE-1JIDBWQMWbhZUAg1Envh7JNa4AgnMhqTw,7198
|
|
235
241
|
wbcore/contrib/currency/viewsets/__init__.py,sha256=uPP607FDQ8gdiZq898RfRAmhMJ-zQgzBrejbc9kVf_E,141
|
|
236
|
-
wbcore/contrib/currency/viewsets/currency.py,sha256
|
|
242
|
+
wbcore/contrib/currency/viewsets/currency.py,sha256=LcSZponETU62YkRPLk5Omj5Lu6GHMLnxblPaGKfN6HQ,1929
|
|
237
243
|
wbcore/contrib/currency/viewsets/currency_fx_rates.py,sha256=p9trRNGbaaOyrG68sp-ef0T38eKnOXcaT0TBwdC6UMs,1217
|
|
238
244
|
wbcore/contrib/currency/viewsets/buttons/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
239
245
|
wbcore/contrib/currency/viewsets/display/__init__.py,sha256=5TGu-Uz_bbUA67zaktMY-DRjuws1tHAtfTVEzA5hPlg,112
|
|
240
246
|
wbcore/contrib/currency/viewsets/display/currency.py,sha256=T0uRjD1Z1jwQ7zk5m8RkeHo6LQ-udLbZJXxdEEFpPFc,1327
|
|
241
247
|
wbcore/contrib/currency/viewsets/display/currency_fx_rates.py,sha256=cVIwV4ns6Zwya8GBVk93Z9eBN3UZTr-bW_9kehtJpkM,391
|
|
242
248
|
wbcore/contrib/currency/viewsets/endpoints/__init__.py,sha256=ZYbYIrfa1BD1JsMqDS6P6NakuGwDQ8KklVC-UCWUCFM,69
|
|
243
|
-
wbcore/contrib/currency/viewsets/endpoints/currency_fx_rates.py,sha256=
|
|
249
|
+
wbcore/contrib/currency/viewsets/endpoints/currency_fx_rates.py,sha256=lIIVe9OEl4Mnt4dSnTk0ECJN7pir9e_1O1AloVic7E0,190
|
|
244
250
|
wbcore/contrib/currency/viewsets/menu/__init__.py,sha256=bfxdbZA_fCUVlpuk1UcaCRDck6GrD54ibltgIv661as,40
|
|
245
251
|
wbcore/contrib/currency/viewsets/menu/currency.py,sha256=RteLphkb5Xiv_vuYr7m40VI-Xc4MVV8KP_aaZa02bEw,310
|
|
246
252
|
wbcore/contrib/currency/viewsets/preview/__init__.py,sha256=G9VRhPUTHUgqT3QFJDmp4aSEuyyb5gOTMVkvL0jzBtQ,44
|
|
@@ -250,7 +256,7 @@ wbcore/contrib/currency/viewsets/titles/currency.py,sha256=95jTrkdmD-XUoT89Z4Pec
|
|
|
250
256
|
wbcore/contrib/currency/viewsets/titles/currency_fx_rates.py,sha256=SEQ_4YtXfMknpIE7n73sZFpPxZIk7Ui0IPVFfDjMdWw,341
|
|
251
257
|
wbcore/contrib/dataloader/__init__.py,sha256=J-j-u0itpEFT6irdmWmixQqYMadNl1X91TxUmoiLHMI,22
|
|
252
258
|
wbcore/contrib/dataloader/apps.py,sha256=_g2SvYI2mx7gQEKhDYqmnqd9MGRkJLtFk4L9nyoXwYU,109
|
|
253
|
-
wbcore/contrib/dataloader/utils.py,sha256=
|
|
259
|
+
wbcore/contrib/dataloader/utils.py,sha256=0ydcsy8wgMeVA-D0tkuEW8PK1vHS2UXlTsRFv5mmyy8,690
|
|
254
260
|
wbcore/contrib/dataloader/dataloaders/__init__.py,sha256=Ju9y7-j9p3-M0BbAwbZktV2-7SULxRnSsPL9XAothhQ,73
|
|
255
261
|
wbcore/contrib/dataloader/dataloaders/dataloaders.py,sha256=lPpOV1SZKoe0XLIMrBixcmTcRsBoIBx-5MAjEzJD1Ok,808
|
|
256
262
|
wbcore/contrib/dataloader/dataloaders/proxies.py,sha256=5pbyaDCjZVPwewAZ1rPftAej8Tuydnk5vN8Di84-kBE,3477
|
|
@@ -267,13 +273,14 @@ wbcore/contrib/dataloader/tests/test/factories.py,sha256=TRC7oa1lail4kGbBKumfVeW
|
|
|
267
273
|
wbcore/contrib/dataloader/tests/test/models.py,sha256=SNGIxMsb19daPnqBfshvvIAv6_4k0xv_53i5y-Rn_SY,299
|
|
268
274
|
wbcore/contrib/dataloader/tests/test/dataloaders/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
269
275
|
wbcore/contrib/dataloader/tests/test/dataloaders/dataloaders.py,sha256=MxNlxjESL0ITX7s_tKW2XgxTpGcRrsJ982FQk833QcI,573
|
|
270
|
-
wbcore/contrib/dataloader/tests/test/dataloaders/protocols.py,sha256=
|
|
276
|
+
wbcore/contrib/dataloader/tests/test/dataloaders/protocols.py,sha256=4M2fWQmGWYbqSY_xbAQT1dOaxVHMYmhx3cOFll_u9Gs,129
|
|
271
277
|
wbcore/contrib/dataloader/tests/test/dataloaders/proxies.py,sha256=AL7CunsWJW8G71zj-PxovSCqtkz2QLYpqMIkKLeVByk,349
|
|
272
278
|
wbcore/contrib/directory/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
273
279
|
wbcore/contrib/directory/apps.py,sha256=X-Cl9KtrSMSQIl4gejtQmjDX56BOCHS6K8qZLKqXu9I,165
|
|
274
280
|
wbcore/contrib/directory/configs.py,sha256=wFGQi3WO2L_xfeQ0MG8FxVaozR9vBAvISHjedlHw6fs,282
|
|
275
281
|
wbcore/contrib/directory/configurations.py,sha256=x-4Eh-T76Xi82IVefdsEOvKzzf-OKrmrJ3qW-jqSjwM,2801
|
|
276
282
|
wbcore/contrib/directory/dynamic_preferences_registry.py,sha256=ejEzrt-gqmvI3q1NbndsUtbfpeLC7tzKiGrhVtwY4w0,2098
|
|
283
|
+
wbcore/contrib/directory/permissions.py,sha256=3i1n4AzGzHAx0L0H00KZKd4AHo90OHRdYk34opPYIjo,248
|
|
277
284
|
wbcore/contrib/directory/preferences.py,sha256=B6J1Y5jqEPW6VrnbuxdA9Sq94XFdrwP68wnBdYoaRjs,423
|
|
278
285
|
wbcore/contrib/directory/signals.py,sha256=GGAH1dr2IbqYOgEUjFgUkstu3oxAeuKiBmZrrHDh0MA,102
|
|
279
286
|
wbcore/contrib/directory/typings.py,sha256=NQq6BNOeiGufba_DiQnCyq5UE9rs2TpQHfGxK66YPRo,392
|
|
@@ -282,16 +289,19 @@ wbcore/contrib/directory/admin/__init__.py,sha256=lvt9etqGBJQTuVxDWkayijyo7GRqVF
|
|
|
282
289
|
wbcore/contrib/directory/admin/contacts.py,sha256=eFKJZCq506ybMMp2as8rZhYd7rvzg8L86IpsLBc7Bz8,1505
|
|
283
290
|
wbcore/contrib/directory/admin/entries.py,sha256=A5WfBpRaHtZOHVlU6_ficp3CIOzB_pTwT-qbLii0TFE,7124
|
|
284
291
|
wbcore/contrib/directory/admin/relationships.py,sha256=-reoYuU4ZnM24wRZ3ny55ZGu3esPn7cl-qYAdnBPD2I,2312
|
|
285
|
-
wbcore/contrib/directory/factories/__init__.py,sha256=
|
|
292
|
+
wbcore/contrib/directory/factories/__init__.py,sha256=KIjvlqpnFetFpSEjYM1VKHO9FOWDhsIGueM3Framm7I,892
|
|
286
293
|
wbcore/contrib/directory/factories/contacts.py,sha256=M3CvWESxaZ_KDmQUfn0tsQBY0rUjSrIOVNE8D3lfgnM,1950
|
|
287
|
-
wbcore/contrib/directory/factories/entries.py,sha256=
|
|
294
|
+
wbcore/contrib/directory/factories/entries.py,sha256=qdXUPqRcK7RLOfIlhHcvZUNnDpZD6-d5YKCqlI-_zFw,5084
|
|
288
295
|
wbcore/contrib/directory/factories/relationships.py,sha256=7IheRchJbDgB7mqy8LADcTtNB89cjodMoOSk1dAi_ww,2282
|
|
289
296
|
wbcore/contrib/directory/filters/__init__.py,sha256=uGgFoX06eC7P354m2q-29Ct5ijO3kCowh6Hqkpf_Pk8,670
|
|
290
297
|
wbcore/contrib/directory/filters/contacts.py,sha256=Ig9Qw4ZPStm121iLW1oLXWb9pW97Ydb3rNKYWrtQ3UU,7448
|
|
291
|
-
wbcore/contrib/directory/filters/entries.py,sha256
|
|
298
|
+
wbcore/contrib/directory/filters/entries.py,sha256=-0I0Q1ABKGcwXQadYD2R7mgOanAsOC_MziRN0oKh7Ao,10315
|
|
292
299
|
wbcore/contrib/directory/filters/relationships.py,sha256=ViY3cIsVYBPgJC3TXum034cW79Yaq70x9Hzitl0yIQQ,2997
|
|
293
300
|
wbcore/contrib/directory/fixtures/directory.json,sha256=os6Mh6zQ0expDqnYITNukS8VAfgxsjEXmBlztu8S3Q0,103580
|
|
294
|
-
wbcore/contrib/directory/locale/de/LC_MESSAGES/django.po,sha256=
|
|
301
|
+
wbcore/contrib/directory/locale/de/LC_MESSAGES/django.po,sha256=oqjk1IklxbtvP-nTgoEK5n8ddTFULsPenwyY_oCStD0,53419
|
|
302
|
+
wbcore/contrib/directory/locale/de/LC_MESSAGES/django.po.translated,sha256=I0mvMYysm5Pssq9MpIe4Hb7LZa90pE_Le8ywM2B-f18,59757
|
|
303
|
+
wbcore/contrib/directory/locale/en/LC_MESSAGES/django.po,sha256=FRl8GM4sCnNpmENxkjuGK59PWs4VfOS10OIHabWrZhg,45212
|
|
304
|
+
wbcore/contrib/directory/locale/fr/LC_MESSAGES/django.po,sha256=htnLdFmSN0MQRl4rt2M43yJEtpjWy_cYS9LqKuJtgvg,45316
|
|
295
305
|
wbcore/contrib/directory/migrations/0001_initial.py,sha256=KU4W2-R1ErwbJrYy_FzKXFP7dbKEoL4Aa4nyTMW-Ae4,34702
|
|
296
306
|
wbcore/contrib/directory/migrations/0002_auto_20230414_1553.py,sha256=O51CDBcFwUzuwAHJxIiwXpZzBecs8nzn0Ib4FfWiQ6w,1216
|
|
297
307
|
wbcore/contrib/directory/migrations/0003_remove_entry_last_event.py,sha256=5PmZTNLd3QVXUSo_2_rg_UmldsiT7bu3TORMpbdHpSE,332
|
|
@@ -302,21 +312,24 @@ wbcore/contrib/directory/migrations/0007_alter_bankingcontact_options.py,sha256=
|
|
|
302
312
|
wbcore/contrib/directory/migrations/0008_bankingcontact_access.py,sha256=Rl6vDwHk5KDl4g2PrqMJTKxOzENqBTFN9yuGkIbq9po,469
|
|
303
313
|
wbcore/contrib/directory/migrations/0009_remove_entry_external_identfier_and_more.py,sha256=G9-JtdrLl56H1ehIlSVYpdEln855NT4cSdY2kI8vePY,601
|
|
304
314
|
wbcore/contrib/directory/migrations/0010_remove_addresscontact_city.py,sha256=Xudb9DCvQkLeliqGjJYgvqssz4FIdWnjf-n0pqtLHfg,1119
|
|
315
|
+
wbcore/contrib/directory/migrations/0011_person_description_person_i18n.py,sha256=1L-KnvbOkPl3MQk4Jco0TnmyDML-LkdOzk6PA193VHs,654
|
|
316
|
+
wbcore/contrib/directory/migrations/0012_alter_person_managers.py,sha256=Y-GWOA5-qXLZowsPQdvuXVcPDHkw9Pg40dEn11kdjEI,456
|
|
317
|
+
wbcore/contrib/directory/migrations/0013_alter_clientmanagerrelationship_options.py,sha256=sj9-aCqnzwqKyfYAyLfc1TW2o9X_oVVtNkT30fRuVdQ,560
|
|
305
318
|
wbcore/contrib/directory/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
306
319
|
wbcore/contrib/directory/models/__init__.py,sha256=XtnmU5YUr3SGig6PsSfGsWUaiBaX6kaHShBv3sbxZ14,526
|
|
307
|
-
wbcore/contrib/directory/models/contacts.py,sha256=
|
|
308
|
-
wbcore/contrib/directory/models/entries.py,sha256=
|
|
309
|
-
wbcore/contrib/directory/models/relationships.py,sha256=
|
|
320
|
+
wbcore/contrib/directory/models/contacts.py,sha256=8KVCmzNARTzeQgRtXe78QKhJr0SvEJ-aZcsRuYaMIbE,18322
|
|
321
|
+
wbcore/contrib/directory/models/entries.py,sha256=XXEWJ3UOvs8CgN0AekY7FOy4sNOww5jTpPTdDedYYb0,32365
|
|
322
|
+
wbcore/contrib/directory/models/relationships.py,sha256=7SZFo1tA7NRzS7_gv_fKwMsPPhawu90eWSrEvij_0rk,22108
|
|
310
323
|
wbcore/contrib/directory/release_notes/1_0_0.md,sha256=Twbl9RMLO6dbbm5dVoKorw8BecRqAYsKeobcNmDWHu8,165
|
|
311
324
|
wbcore/contrib/directory/release_notes/1_0_1.md,sha256=yHolV-HwBmIavaPn9pg0ABRgxQ-eKIuiAs-phKb_ix0,285
|
|
312
325
|
wbcore/contrib/directory/release_notes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
313
326
|
wbcore/contrib/directory/serializers/__init__.py,sha256=36WcX6aHrBuZXVWR0JSCeCCvJin_jOEaiwuSYBSs5eo,2131
|
|
314
|
-
wbcore/contrib/directory/serializers/companies.py,sha256=
|
|
315
|
-
wbcore/contrib/directory/serializers/contacts.py,sha256=
|
|
316
|
-
wbcore/contrib/directory/serializers/entries.py,sha256=
|
|
317
|
-
wbcore/contrib/directory/serializers/entry_representations.py,sha256=
|
|
318
|
-
wbcore/contrib/directory/serializers/persons.py,sha256=
|
|
319
|
-
wbcore/contrib/directory/serializers/relationships.py,sha256=
|
|
327
|
+
wbcore/contrib/directory/serializers/companies.py,sha256=Bvxex_tq5lyR3k9Ox_Z2AnRQVyhPM0l1bdClJAjeEdo,5747
|
|
328
|
+
wbcore/contrib/directory/serializers/contacts.py,sha256=Q-3lmivmS4ci9XP-65lO1d06Gm6cQMgPH3YA8FY71ZE,15205
|
|
329
|
+
wbcore/contrib/directory/serializers/entries.py,sha256=QV_hlstwFWvhp-uiVPn3xMt0bES_6gKJs4rf_CVHIn0,13584
|
|
330
|
+
wbcore/contrib/directory/serializers/entry_representations.py,sha256=Pj8j4HYDINvXlLZ7onBypF2ZOK_GGzFZevd-yzESqoU,1397
|
|
331
|
+
wbcore/contrib/directory/serializers/persons.py,sha256=YtUgKKeijvV87JLtgeQtxmyk21COLQjSrb5klBw_EXQ,7641
|
|
332
|
+
wbcore/contrib/directory/serializers/relationships.py,sha256=jGrjy8M8kaxNRHHJ0HiDMdD_-wZFwioRJabCpCwHZ4U,12390
|
|
320
333
|
wbcore/contrib/directory/static/directory/markdown/documentation/address.md,sha256=gfUVi2PZh5uQ5sWkLG-AxYV9ULWeswRp3E2Me4fEs88,1865
|
|
321
334
|
wbcore/contrib/directory/static/directory/markdown/documentation/banking.md,sha256=5jgF1tqTGdr4fRaXCtobtpFEx0xcSmVYkKvzVALp4L8,28387
|
|
322
335
|
wbcore/contrib/directory/static/directory/markdown/documentation/bankingentry.md,sha256=RdfNbTXxpZG8kO-31d9c1QURlDcZRzMS2lEXHddiUbQ,1921
|
|
@@ -339,36 +352,36 @@ wbcore/contrib/directory/static/directory/markdown/documentation/userisclient.md
|
|
|
339
352
|
wbcore/contrib/directory/static/directory/markdown/documentation/userismanager.md,sha256=I3ojIVTFZ_bEk8-67jO2Jrctk90kSzX-WrREDfplwpg,1037
|
|
340
353
|
wbcore/contrib/directory/static/directory/markdown/documentation/website.md,sha256=n8VAXbgxQh9zslLfLB0UhRgliMCvNS2N6gR-K0oTrkY,1453
|
|
341
354
|
wbcore/contrib/directory/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
342
|
-
wbcore/contrib/directory/tests/conftest.py,sha256=
|
|
343
|
-
wbcore/contrib/directory/tests/disable_signals.py,sha256=
|
|
344
|
-
wbcore/contrib/directory/tests/signals.py,sha256=
|
|
355
|
+
wbcore/contrib/directory/tests/conftest.py,sha256=54xK711IfBc6Cj7MweNOGNdkP-ojjMcfqjP1G2XrSn0,1826
|
|
356
|
+
wbcore/contrib/directory/tests/disable_signals.py,sha256=kgVeTtzItEtLJ7MOVo9KdnRABsMvKBTub-vhHIMKO_M,1727
|
|
357
|
+
wbcore/contrib/directory/tests/signals.py,sha256=DqQkJWnq2Y0wTTLh3ICY3qZJLUpGJqiTTSV6YypqsDQ,3217
|
|
345
358
|
wbcore/contrib/directory/tests/test_configs.py,sha256=VouLg3TpDuxi_ljh8MtJGMhtW_h8OzCo15GyyApW16c,189
|
|
346
359
|
wbcore/contrib/directory/tests/test_filters.py,sha256=tc4G0XoUoDoiisECXtaftYCG69fdE42-EmkmLcjbN78,2492
|
|
347
|
-
wbcore/contrib/directory/tests/test_models.py,sha256=
|
|
360
|
+
wbcore/contrib/directory/tests/test_models.py,sha256=L2029y7pTUznRYHXJOKFpy_jdTBZvvbx3KwHMEcNSAM,19304
|
|
348
361
|
wbcore/contrib/directory/tests/test_permissions.py,sha256=lmGAiE0wtIDJkHEfNk_8NDwqN71FdPuu2qXvSMm0FbM,4231
|
|
349
|
-
wbcore/contrib/directory/tests/test_serializers.py,sha256=
|
|
350
|
-
wbcore/contrib/directory/tests/test_viewsets.py,sha256=
|
|
362
|
+
wbcore/contrib/directory/tests/test_serializers.py,sha256=AIa-Rktw4EG2eywMSCz-X1rYcBSmw7Zzx38CghBVGzo,9202
|
|
363
|
+
wbcore/contrib/directory/tests/test_viewsets.py,sha256=pZJ-D-pxRP1IWNZDrKML_6j4iBcFzv8qpo59qX9MpOU,32624
|
|
351
364
|
wbcore/contrib/directory/tests/e2e/__init__.py,sha256=9KFYfXVP_0BwaYFvKQS4P_UMIAO1CFiwnK9sA3bPGdw,175
|
|
352
365
|
wbcore/contrib/directory/tests/e2e/e2e_directory_utility.py,sha256=zX71WsMmxQNW9ZLI-TMuxHmiY8PEZoBLt1ztqFSUDSE,7252
|
|
353
366
|
wbcore/contrib/directory/viewsets/__init__.py,sha256=U6f6zuZCtv0ohtLkVYqNNqKl2vk7cugXXoxlPKULA9k,1878
|
|
354
|
-
wbcore/contrib/directory/viewsets/contacts.py,sha256=
|
|
355
|
-
wbcore/contrib/directory/viewsets/entries.py,sha256=
|
|
367
|
+
wbcore/contrib/directory/viewsets/contacts.py,sha256=LmQ_jK-SYG7u0A7DqBrNBTvRasvKtksE9JUVWLPW2OY,14428
|
|
368
|
+
wbcore/contrib/directory/viewsets/entries.py,sha256=U56N4abi7Eu4VbH2RAKpB-4fY7gZywmyxmY2s1bshVQ,6780
|
|
356
369
|
wbcore/contrib/directory/viewsets/mixins.py,sha256=8QI6mBpPxykVCvqABDZeQ0n7diHYoMafNH4ZMdCtC4c,353
|
|
357
|
-
wbcore/contrib/directory/viewsets/relationships.py,sha256=
|
|
370
|
+
wbcore/contrib/directory/viewsets/relationships.py,sha256=jy73aCven25PbLoy3-KTjnAxdItyYZdfkVoClz5ogc4,10045
|
|
358
371
|
wbcore/contrib/directory/viewsets/utils.py,sha256=2i7rIT8qMCD-ajT-uNN7Re4uMRwijrzvblokedJnwOw,3400
|
|
359
|
-
wbcore/contrib/directory/viewsets/buttons/__init__.py,sha256=
|
|
372
|
+
wbcore/contrib/directory/viewsets/buttons/__init__.py,sha256=dB3nD_NflX6U5muEMwtBcm3aNB0w65h42iYmtbMbFb4,270
|
|
360
373
|
wbcore/contrib/directory/viewsets/buttons/contacts.py,sha256=BECTH8ADx-Pz8kk11dpLGB2xRrkMI5emoIHcL8wdrJU,599
|
|
361
374
|
wbcore/contrib/directory/viewsets/buttons/entries.py,sha256=X7tH209qPojFNlBiE8hU5BrxQHa07WkBddVtvX-aCds,5660
|
|
362
|
-
wbcore/contrib/directory/viewsets/buttons/relationships.py,sha256=
|
|
363
|
-
wbcore/contrib/directory/viewsets/display/__init__.py,sha256=
|
|
364
|
-
wbcore/contrib/directory/viewsets/display/contacts.py,sha256=
|
|
365
|
-
wbcore/contrib/directory/viewsets/display/entries.py,sha256=
|
|
366
|
-
wbcore/contrib/directory/viewsets/display/relationships.py,sha256
|
|
375
|
+
wbcore/contrib/directory/viewsets/buttons/relationships.py,sha256=Q1vLLA9ZGt-s29Of8dj24IlMQzDzW_sMPU7n_F00DuY,2786
|
|
376
|
+
wbcore/contrib/directory/viewsets/display/__init__.py,sha256=NiC0d1-RjPIYEzkGAQzThNFQeYv5UAW3aKL9j_lFV38,945
|
|
377
|
+
wbcore/contrib/directory/viewsets/display/contacts.py,sha256=2PBSxVmbq_26LyhSTWrpjNv9cxKz7w086BqoVX7SDs4,13449
|
|
378
|
+
wbcore/contrib/directory/viewsets/display/entries.py,sha256=tK2tsiJvKy_SEWHq9TT30Nu1g158bpGv5z4EnFd9psQ,23548
|
|
379
|
+
wbcore/contrib/directory/viewsets/display/relationships.py,sha256=-s3ABMIGmbvmAOe8CRJqVv8RpKaMw7xeoy0HSvo0kRQ,11587
|
|
367
380
|
wbcore/contrib/directory/viewsets/display/utils.py,sha256=5sMFdEXUfanKp60IvTyO4YLqFlEUz9fGMldoqTYTnwU,830
|
|
368
381
|
wbcore/contrib/directory/viewsets/endpoints/__init__.py,sha256=0z1LYIrLQvIcs2qZEfD2SYB6tqycmSQjlJ4NwZgd0JY,647
|
|
369
382
|
wbcore/contrib/directory/viewsets/endpoints/contacts.py,sha256=Hnm4Iii5FMo8rDiv5tyqUvrKcSsG1w-b4GbjbIXk8TM,2036
|
|
370
383
|
wbcore/contrib/directory/viewsets/endpoints/entries.py,sha256=CdyzR0c49VQmFeJtlMHgC45lCbszBASu32HfTKBV0-s,1198
|
|
371
|
-
wbcore/contrib/directory/viewsets/endpoints/relationships.py,sha256=
|
|
384
|
+
wbcore/contrib/directory/viewsets/endpoints/relationships.py,sha256=JDC7YqxnbuQDWM4RdI7zL_zs0oBQ-oSsdnvdDJxdpKw,2909
|
|
372
385
|
wbcore/contrib/directory/viewsets/menu/__init__.py,sha256=PbGcs_uz2LCwBqEChMlZSEw_EMRV-UoS7PoQ5nre27E,465
|
|
373
386
|
wbcore/contrib/directory/viewsets/menu/contacts.py,sha256=u6LkJkK48L9_EUjx_S-1qFSz1tl_MZz4RJQyLoHWBM8,964
|
|
374
387
|
wbcore/contrib/directory/viewsets/menu/entries.py,sha256=RxyVby1TolT7IKJuKtiVRK_xUvKl4I9_6SuztMJzMgs,2169
|
|
@@ -376,20 +389,23 @@ wbcore/contrib/directory/viewsets/menu/relationships.py,sha256=hMb9Vl9GgXGjXnNn9
|
|
|
376
389
|
wbcore/contrib/directory/viewsets/menu/utils.py,sha256=GXxYHnmXszrtvVucWXRFBkqpOjzaGXqirQ13nzPewkg,2410
|
|
377
390
|
wbcore/contrib/directory/viewsets/previews/__init__.py,sha256=6rzSOQGwIwSq9X_Percy8iRkj8D83lxnW-oc1seawTo,83
|
|
378
391
|
wbcore/contrib/directory/viewsets/previews/contacts.py,sha256=b5fsLe5259lDWI6KHSDscCZ2MM7fbTNM7hgRJWil3s0,640
|
|
379
|
-
wbcore/contrib/directory/viewsets/previews/entries.py,sha256=
|
|
392
|
+
wbcore/contrib/directory/viewsets/previews/entries.py,sha256=1IrseYPMkzGj9tDhN7aW_KpJWJoWQI6al-sbzwAwcSs,967
|
|
380
393
|
wbcore/contrib/directory/viewsets/titles/__init__.py,sha256=RVscoQgPm49N4MXFzuETip5SMIAVIUl2AYiW4FagbOU,832
|
|
381
394
|
wbcore/contrib/directory/viewsets/titles/contacts.py,sha256=mYySsi9nJg__zL-gVdP2FK2GwgJ00K7qFgOCm3bQduw,4389
|
|
382
395
|
wbcore/contrib/directory/viewsets/titles/entries.py,sha256=QTRrjPPVtouCjOfN4oJJB5pDpumwRqWX7Xy99z9Atz0,761
|
|
383
|
-
wbcore/contrib/directory/viewsets/titles/relationships.py,sha256=
|
|
396
|
+
wbcore/contrib/directory/viewsets/titles/relationships.py,sha256=BWLGk6OQ29148BU3QZ1KdOf6KQ4LDQ1aYAzM7pQ6AHg,3627
|
|
384
397
|
wbcore/contrib/directory/viewsets/titles/utils.py,sha256=c9-63HB2rdbwDFYRtm9WTCglIq7ut5xZlRZ_YsHVKH0,1145
|
|
385
398
|
wbcore/contrib/documents/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
386
399
|
wbcore/contrib/documents/admin.py,sha256=vh7dhViQ63Ot_olFvJMcRLjxFnQOK8T8QNzB7gOCBro,2378
|
|
387
400
|
wbcore/contrib/documents/apps.py,sha256=z3pYGj-qPkkpe88MP_G7uO_sb2uEvD_KZriePPbtX2Y,161
|
|
388
401
|
wbcore/contrib/documents/factories.py,sha256=4VGupvQQGNk43c1pubCyJfHRqlWjFTKhiiq8y-5G3Q0,1053
|
|
389
|
-
wbcore/contrib/documents/filters.py,sha256=
|
|
402
|
+
wbcore/contrib/documents/filters.py,sha256=ZRw_uN_MdP28GMK_7hM1mgoW1ZViL3oGEe49CBJwZ5w,2477
|
|
390
403
|
wbcore/contrib/documents/urls.py,sha256=1i3xEygi5myhLWo6OSy7fCd_m_ze_stRf871WsCKiqI,1769
|
|
391
404
|
wbcore/contrib/documents/fixtures/docments.json,sha256=xGsdB7WZ-k_06yC_2OfcQCeBc3T8TlQwLp3ex9DcdIM,4025
|
|
392
|
-
wbcore/contrib/documents/locale/de/LC_MESSAGES/django.po,sha256=
|
|
405
|
+
wbcore/contrib/documents/locale/de/LC_MESSAGES/django.po,sha256=kmmIkwn_e-NZn5sJdZs2NMYmW8I7EBLCLHzCDQAbEcc,8104
|
|
406
|
+
wbcore/contrib/documents/locale/de/LC_MESSAGES/django.po.translated,sha256=Nps6T9rTb7pOW_Q8P5p-5rdHIZUmq5pQyHYZKEqqcdk,8585
|
|
407
|
+
wbcore/contrib/documents/locale/en/LC_MESSAGES/django.po,sha256=gQWCige3yeOhPJVzVKlg8uyHY1UHurRM8o1ttqtFE4c,6859
|
|
408
|
+
wbcore/contrib/documents/locale/fr/LC_MESSAGES/django.po,sha256=hfoDk_EyqtXH4gxX0e_ER2GG7ttPzXmbLoxwgi01wxs,6954
|
|
393
409
|
wbcore/contrib/documents/migrations/0001_initial.py,sha256=MaNZPABi8xxlPsBwwbVoyOFUzT4JsS3XRCPqrNSSscM,7614
|
|
394
410
|
wbcore/contrib/documents/migrations/0002_documentmodelrelationship_primary_and_more.py,sha256=pLs6mNJKbxd1cAYRnYiVRftDAXyOfr1bATLasO8lgpo,661
|
|
395
411
|
wbcore/contrib/documents/migrations/0003_alter_documentmodelrelationship_unique_together_and_more.py,sha256=J50o7pAHBbM2_c78lEeeXwZDCMZayZaw6XM7_MRHpfY,965
|
|
@@ -414,7 +430,7 @@ wbcore/contrib/documents/static/documents/markdown/documentation/documents.md,sh
|
|
|
414
430
|
wbcore/contrib/documents/static/documents/markdown/documentation/shareablelink.md,sha256=nsb21XNAB7eZiGnb6xiMzTy6uZyAzhaFUWtsSyU2x54,1121
|
|
415
431
|
wbcore/contrib/documents/static/documents/markdown/documentation/shareablelinkaccess.md,sha256=Bsd3AzJprSUqa8cS101LyUt-0muBt-ivBDS6wNHRHk8,932
|
|
416
432
|
wbcore/contrib/documents/tests/conftest.py,sha256=AP5whxYNsf77YBXRJEAV3V7bvkv7eX8KpXV-lMDyEUk,899
|
|
417
|
-
wbcore/contrib/documents/tests/test_models.py,sha256=
|
|
433
|
+
wbcore/contrib/documents/tests/test_models.py,sha256=OwJ5-tmvixA-7O28q6hmHhy46Y4Y_1dbSNIylVUwnrM,4973
|
|
418
434
|
wbcore/contrib/documents/viewsets/__init__.py,sha256=xo7GDVcZyBEQNrcOHydO-dFj68i8rBJ36Noxvgv_isY,461
|
|
419
435
|
wbcore/contrib/documents/viewsets/document_model_relationships.py,sha256=g7AeGHbA2wGyJfI8k4uXPIoICUMp34n9GnJ_QcNwjAs,975
|
|
420
436
|
wbcore/contrib/documents/viewsets/document_types.py,sha256=Vh17ppy3uWLV4dycjS0_WvjyNZkx3_3HqUExEKMPvdg,1416
|
|
@@ -432,7 +448,7 @@ wbcore/contrib/documents/viewsets/display/shareable_links.py,sha256=p8ZYt1N1Hoap
|
|
|
432
448
|
wbcore/contrib/documents/viewsets/endpoints/__init__.py,sha256=S-14SZ88A8-JGIi_rF4es5ngJ6GrivIUUkplqZkbKeE,151
|
|
433
449
|
wbcore/contrib/documents/viewsets/endpoints/documents.py,sha256=Yoee84rx1g35L8vCKZkn41Bvf_-QIfO3IZX3WXigpi0,790
|
|
434
450
|
wbcore/contrib/documents/viewsets/endpoints/documents_model_relationships.py,sha256=kn_t5h1fjjTRXB90o6SaKjrNq52PFbtctaECIO0m4KU,537
|
|
435
|
-
wbcore/contrib/documents/viewsets/endpoints/shareable_links.py,sha256=
|
|
451
|
+
wbcore/contrib/documents/viewsets/endpoints/shareable_links.py,sha256=oRuAhjyc10Xsjhe41LkrQYio9hbCjq52jY4db5AUSZ8,906
|
|
436
452
|
wbcore/contrib/documents/viewsets/menu/__init__.py,sha256=xHgejnbaCRzLAEGQegsJHiiDnw5vX1a6zm1XhXKHog0,60
|
|
437
453
|
wbcore/contrib/documents/viewsets/menu/documents.py,sha256=g39m1CErE6S8Ts03EGGPCab5ECmVsBkmuqpOL6MHbyg,865
|
|
438
454
|
wbcore/contrib/documents/viewsets/previews/__init__.py,sha256=t7CNvPWGU2bsDTQE9Z-EJISAFkr4PJuoABej_wIPEIU,45
|
|
@@ -442,13 +458,15 @@ wbcore/contrib/documents/viewsets/titles/document_types.py,sha256=5-wTGku3KcmWP-
|
|
|
442
458
|
wbcore/contrib/documents/viewsets/titles/documents.py,sha256=PXCSPaLSpG5WJG3MtZnJttKWUV4ygF_DnGelzitlHdo,1112
|
|
443
459
|
wbcore/contrib/documents/viewsets/titles/shareable_links.py,sha256=Sjtc3sna0ObHZXDx1teRTVxabGASNqecxRng7uPyx9c,374
|
|
444
460
|
wbcore/contrib/dynamic_preferences/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
445
|
-
wbcore/contrib/dynamic_preferences/types.py,sha256=
|
|
461
|
+
wbcore/contrib/dynamic_preferences/types.py,sha256=4YiYzRp9773Dcuc3tSMmiret4XYK-IJ2Oqva3kX2OaI,4293
|
|
462
|
+
wbcore/contrib/dynamic_preferences/viewsets.py,sha256=bM6_L1sAUzg6BQ--BkU4-OT6wqsbqL-eSnFM6JiMCJw,1276
|
|
446
463
|
wbcore/contrib/example_app/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
447
464
|
wbcore/contrib/example_app/admin.py,sha256=Eo9dnGvXdUEgfpzi2qmovfzJExFYd_ZgGVV2oOdsqKI,2686
|
|
448
465
|
wbcore/contrib/example_app/apps.py,sha256=h5pkRPxGGVlXFq95eGayfPL9XJAwFHGrsigYxFXLWN4,168
|
|
449
|
-
wbcore/contrib/example_app/models.py,sha256=
|
|
450
|
-
wbcore/contrib/example_app/urls.py,sha256=
|
|
466
|
+
wbcore/contrib/example_app/models.py,sha256=P1AyQnSD3Ze1WI4jHWCid6AVZJX6SW3hZ79Gs7NwP84,32681
|
|
467
|
+
wbcore/contrib/example_app/urls.py,sha256=KbHORgxYJc-w7415BSDf52eSsfjuvZV-0VKLLzRz90o,4813
|
|
451
468
|
wbcore/contrib/example_app/utils.py,sha256=zHEwC7IzIHpZoqFNVnuA75w0IIKKMR9xMpIYkNWKi5A,697
|
|
469
|
+
wbcore/contrib/example_app/views.py,sha256=1e8iMtBxclH9Vbi_z73pHgeb_kI3Gmaiq3KI6JmJKqI,287
|
|
452
470
|
wbcore/contrib/example_app/factories/__init__.py,sha256=eOak3Fa5SSIzUuBQxgozarS7ZXK5DMiws6z9pVJdAVc,318
|
|
453
471
|
wbcore/contrib/example_app/factories/event.py,sha256=BKlodLmQvVmq2cf0LIeriix9Agxznu-NHS1_Ns_AhWg,1049
|
|
454
472
|
wbcore/contrib/example_app/factories/league.py,sha256=xor6ZUBlNaJV_OTG8_NFjbJ7gc-n0k0Goj60p-jVqeg,648
|
|
@@ -459,9 +477,9 @@ wbcore/contrib/example_app/factories/sport.py,sha256=lnkL2ri9c8IExAZJpMiO7FvmE6V
|
|
|
459
477
|
wbcore/contrib/example_app/factories/stadium.py,sha256=ELQvxKIJVyzICXbvihqBhRK8a_DVGwLXF29fZiLBevY,461
|
|
460
478
|
wbcore/contrib/example_app/factories/team.py,sha256=tQ6SGCIhRSZFZVtdyvQa0F18Y7XVTmfXJuFpKE76Iz0,1303
|
|
461
479
|
wbcore/contrib/example_app/filters/__init__.py,sha256=01WWlH11C4ES6JSHeaKvJ3NqqVPw4i5B9VBUHYkOw_E,552
|
|
462
|
-
wbcore/contrib/example_app/filters/event.py,sha256=
|
|
480
|
+
wbcore/contrib/example_app/filters/event.py,sha256=Zj20x6zIPoPICrZOyXrUA9T71rAM42iVcKQCyg-629Y,2999
|
|
463
481
|
wbcore/contrib/example_app/filters/league.py,sha256=bLl8cywYR1elXBuXRWtK3DQoKpXGKiS5Skx_B-iA_M4,2824
|
|
464
|
-
wbcore/contrib/example_app/filters/match.py,sha256=
|
|
482
|
+
wbcore/contrib/example_app/filters/match.py,sha256=uJqLA_Te3ZN2wonPUyEyezBjUQgMGZQYX5bG5NXEP_I,3313
|
|
465
483
|
wbcore/contrib/example_app/filters/person.py,sha256=e8lEKsjsj2P6dOEti044k8Nq4quIDFuAcgfdCJqNAaU,2856
|
|
466
484
|
wbcore/contrib/example_app/filters/role.py,sha256=qtQLzqo_ZVqrQNiib7_oRdZUAwcxE2C2FNgjC4M_c_U,582
|
|
467
485
|
wbcore/contrib/example_app/filters/sport.py,sha256=H3xEcrAhOVPmXuix3J0FEjAjaJmb6o3vvCWEWcM_3vM,905
|
|
@@ -480,12 +498,13 @@ wbcore/contrib/example_app/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCe
|
|
|
480
498
|
wbcore/contrib/example_app/serializers/__init__.py,sha256=mP6q_a-YnigFFv1ZxyjnuyowXT9aknBHNn84ELIOjOI,1224
|
|
481
499
|
wbcore/contrib/example_app/serializers/league.py,sha256=JvN4CR4gSSOa8PJe4Cay5DVil2n1aBkJLJNaQX6kBxY,4443
|
|
482
500
|
wbcore/contrib/example_app/serializers/match_event.py,sha256=fIzH6sxHp8dZmlifOdKJufJntYLeFIzpPMOBUpkLdBY,11729
|
|
483
|
-
wbcore/contrib/example_app/serializers/person_team.py,sha256=
|
|
501
|
+
wbcore/contrib/example_app/serializers/person_team.py,sha256=6hx7TFM-SHmpu2ATUJCgW4MXYfA4gXPqxXMtIN2zRI8,10321
|
|
484
502
|
wbcore/contrib/example_app/serializers/role.py,sha256=RQ_RZM3SryxpFFzJkqCseSVtbYCUmc9Pk96NJJfFWpQ,443
|
|
485
503
|
wbcore/contrib/example_app/serializers/season.py,sha256=lQG5XpnwqvTbqpB-B6t3Uxj_vmNTDfdu8YN7Hgwa82s,1740
|
|
486
504
|
wbcore/contrib/example_app/serializers/sport.py,sha256=w6T-6inrBmWKY7OnqnP8EOn2WSctAmQcLeL3LOJJWpk,1299
|
|
487
505
|
wbcore/contrib/example_app/serializers/stadium.py,sha256=SkTDB92QC9ECwJePmu3tufkdG5nlwFw4u3Yle2HnkM8,2093
|
|
488
506
|
wbcore/contrib/example_app/serializers/teamresult.py,sha256=zCKFSP1RWHeh_OhAYr82zfY6a6TUxRMRdBVUifkQJ8A,1574
|
|
507
|
+
wbcore/contrib/example_app/templates/example_app/embedded_view.html,sha256=U5RD4jWD9T4LI2yhGiPyw0Jef3a4D5gbEdljILa2Iiw,1478
|
|
489
508
|
wbcore/contrib/example_app/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
490
509
|
wbcore/contrib/example_app/tests/conftest.py,sha256=QyZxcZOxi8gQR2lXyQ1G3Ag9OdJnNAQhoZ-DyqE7WzI,430
|
|
491
510
|
wbcore/contrib/example_app/tests/signals.py,sha256=KfPXtAHWC4lF3gDO8-PNFL_PkYZUnmOJMExwRcQ7SuU,238
|
|
@@ -496,9 +515,9 @@ wbcore/contrib/example_app/tests/e2e/__init__.py,sha256=ocedjDOqGoZJBujJMaP4uWMm
|
|
|
496
515
|
wbcore/contrib/example_app/tests/e2e/e2e_example_app_utility.py,sha256=0Kn70E_g3O1WN3L7J2t3CKyxJ-f0VGnpXgzN6Ii-5K0,1962
|
|
497
516
|
wbcore/contrib/example_app/tests/e2e/test_league.py,sha256=Rub0Cn9bk6DRJqHtc0vkl_5Pox2-xQ6BOundOHE-O9M,2799
|
|
498
517
|
wbcore/contrib/example_app/tests/e2e/test_person.py,sha256=1pNOYyKfKbppYbxRZ2xcRU0Wc0pJofmOTkXX2OiT4oA,2847
|
|
499
|
-
wbcore/contrib/example_app/tests/e2e/test_teams.py,sha256=
|
|
518
|
+
wbcore/contrib/example_app/tests/e2e/test_teams.py,sha256=h-YxPXe04CaT9YssRpCQbyI7mKPYtaDwwbbU1A5AGfA,2288
|
|
500
519
|
wbcore/contrib/example_app/tests/test_models/test_event.py,sha256=aThO0Z29vnwrUjZQpws6T6UWb6cpol0mjf8X93mR_pE,2912
|
|
501
|
-
wbcore/contrib/example_app/tests/test_models/test_match.py,sha256=
|
|
520
|
+
wbcore/contrib/example_app/tests/test_models/test_match.py,sha256=F0AA9uugisivjVK67kKCukBlmKtOqpe-bTkLyIZCJ0E,8510
|
|
502
521
|
wbcore/contrib/example_app/tests/test_models/test_others.py,sha256=SCJPT6yNyXHDyvmiOwL5MfX30fOPBgir7OEiiwhJvYo,5767
|
|
503
522
|
wbcore/contrib/example_app/tests/test_serializers/test_league_serializer.py,sha256=j-h6SJWgvb_PqBDhrWHuALkpaARhflABKjpXcBBlSdY,1413
|
|
504
523
|
wbcore/contrib/example_app/tests/test_serializers/test_match_serializer.py,sha256=gxQjSIuSGHopu70i2BqIynC0fXpYOBTEegiHcg8cLsk,5560
|
|
@@ -521,7 +540,7 @@ wbcore/contrib/example_app/viewsets/__init__.py,sha256=OSYKL4GYm6rIobWC4-ZTd1B0k
|
|
|
521
540
|
wbcore/contrib/example_app/viewsets/event.py,sha256=luXL6GilsVdb834Gk4YGWnsQS5Fnot-onBoXuRtBMnU,10130
|
|
522
541
|
wbcore/contrib/example_app/viewsets/league.py,sha256=hKt9ps4qq50pywP-nUG45-XMFYpmTJ9R9KRKCV4UmiI,2317
|
|
523
542
|
wbcore/contrib/example_app/viewsets/match.py,sha256=GZxujXaRQovaZ4vdS8JCLFk5ask6K6kRO3i4_qFdOqg,3993
|
|
524
|
-
wbcore/contrib/example_app/viewsets/menus.py,sha256=
|
|
543
|
+
wbcore/contrib/example_app/viewsets/menus.py,sha256=GUhB4GCQBSaD8j6irl5qEkVUyX5LOZiwRhqKluOHFqM,1482
|
|
525
544
|
wbcore/contrib/example_app/viewsets/person.py,sha256=YDaW8JWe5-Cia5iVTdHfIzWirxtKChc-lxp-KpwJTao,4998
|
|
526
545
|
wbcore/contrib/example_app/viewsets/role.py,sha256=f1h4WCpF0ndLl6akhiDLjrXZseZGUtHwi5hB9XKymsE,901
|
|
527
546
|
wbcore/contrib/example_app/viewsets/season.py,sha256=Z9VzSmLiW4sflM1ryffX8YL5D5IrX3Zx6Dn8qsRMMeg,836
|
|
@@ -541,12 +560,12 @@ wbcore/contrib/example_app/viewsets/displays/role.py,sha256=R3HQ9PgeXYy642xptwIK
|
|
|
541
560
|
wbcore/contrib/example_app/viewsets/displays/season.py,sha256=tMOgvcGf-XS4eV3FuxAmabdkCa7Dz_bFadqYFjsYLA4,2749
|
|
542
561
|
wbcore/contrib/example_app/viewsets/displays/sport.py,sha256=2b6ZzJuh5fg8GgzqfwHvy5psY9JlvQNlN7Lses74cM0,4767
|
|
543
562
|
wbcore/contrib/example_app/viewsets/displays/stadium.py,sha256=2jvx-kUC3737jM6fm3ZmVYlB-dvorj05TL0SPZ3Z8GE,6523
|
|
544
|
-
wbcore/contrib/example_app/viewsets/displays/team.py,sha256=
|
|
563
|
+
wbcore/contrib/example_app/viewsets/displays/team.py,sha256=12-zbVZJFplP4XAsWcRs4Rhy5yIc2SEi6HocUa9cOo8,10591
|
|
545
564
|
wbcore/contrib/example_app/viewsets/displays/teamresult.py,sha256=dJA9q2RS4jU-aebwAA32Eei9DRiaMMonJVUd2B-Apl0,1231
|
|
546
565
|
wbcore/contrib/example_app/viewsets/endpoints/__init__.py,sha256=SpA5fcitkl5DNVLCW2GX6HBAsuMGCMnRbchFgqwWi7I,338
|
|
547
566
|
wbcore/contrib/example_app/viewsets/endpoints/endpoints.py,sha256=w925E2IVOTeJPt75Z3vLDnAOKqiLZJJX023jvNeUh2E,2866
|
|
548
567
|
wbcore/contrib/example_app/viewsets/menu/__init__.py,sha256=TP9eq3Or6YUte8XIqeAEMt2nf8hucWSc4O_ZzlHR7B0,36
|
|
549
|
-
wbcore/contrib/example_app/viewsets/menu/menus.py,sha256=
|
|
568
|
+
wbcore/contrib/example_app/viewsets/menu/menus.py,sha256=b3F-k6bttwu091h3rQXV2HgEazfSgJqiiXDTsZp2q9k,2650
|
|
550
569
|
wbcore/contrib/example_app/viewsets/titles/__init__.py,sha256=DOLEEbTemMqxEkyBRdPH1a78Hv53ydBdfYej_ZVO8F4,596
|
|
551
570
|
wbcore/contrib/example_app/viewsets/titles/event.py,sha256=_qsqc1KkpiGcLJB3E2w2YUQ3oZ5u_WCDtMU_1cRocdE,1295
|
|
552
571
|
wbcore/contrib/example_app/viewsets/titles/league.py,sha256=zyG_7JpCMZk7Inl3A6gOp7X0eDEEmoybBmOg_Oi7st0,769
|
|
@@ -574,12 +593,10 @@ wbcore/contrib/geography/release_notes/1_0_0.md,sha256=NrP1LZ-N04QilS28vyPzokjfw
|
|
|
574
593
|
wbcore/contrib/geography/release_notes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
575
594
|
wbcore/contrib/geography/static/geography/markdown/documentation/geography.md,sha256=DngCyk0p45kocwkOSKVi0K6rA2AU0fRvkFaaHqlKhw8,1412
|
|
576
595
|
wbcore/contrib/geography/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
577
|
-
wbcore/contrib/geography/tests/conftest.py,sha256=
|
|
596
|
+
wbcore/contrib/geography/tests/conftest.py,sha256=PvdT2PEV9WNMgcZrcYr3fTpTe7DkXkcvKN8PPtQLX2U,635
|
|
578
597
|
wbcore/contrib/geography/tests/signals.py,sha256=KfPXtAHWC4lF3gDO8-PNFL_PkYZUnmOJMExwRcQ7SuU,238
|
|
579
|
-
wbcore/contrib/geography/tests/test_models.py,sha256=
|
|
580
|
-
wbcore/contrib/geography/tests/
|
|
581
|
-
wbcore/contrib/geography/tests/test_viewsets.py,sha256=H_7mK6j3SoxM_MZioXUeWptAyxELZwutncuAniTFrH8,77
|
|
582
|
-
wbcore/contrib/geography/tests/tests.py,sha256=Z2cGpBzWJE4MbhuPvrlLbxhaeoXxXaT9cClMnt9B13w,299
|
|
598
|
+
wbcore/contrib/geography/tests/test_models.py,sha256=bbu16tfQFfWPkSzR2pVzBLLwnzw57ttfVQdC-FCprMM,836
|
|
599
|
+
wbcore/contrib/geography/tests/test_viewsets.py,sha256=xCk6i8LU6tOt1FLw-1BsSiUNVTapJmRXn4IjWNy2PgE,3791
|
|
583
600
|
wbcore/contrib/geography/viewsets/__init__.py,sha256=vc5uxdC_r5H2weA2Nce65kkst_Hf8soBBN3St32NX5o,77
|
|
584
601
|
wbcore/contrib/geography/viewsets/geography.py,sha256=__hfMW2BoTIP8jDRAh8uQRpr3c10GHAlygkSSsvavH0,2071
|
|
585
602
|
wbcore/contrib/geography/viewsets/buttons/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -615,56 +632,72 @@ wbcore/contrib/guardian/models/mixins.py,sha256=n9CYPaYFqOZXawv0YJEZv9b-IsVqOvHR
|
|
|
615
632
|
wbcore/contrib/guardian/models/models.py,sha256=KlvruzHS6ogviEm_fklGKO6dzqZCpnE7cKNJxDmfy4Y,1121
|
|
616
633
|
wbcore/contrib/guardian/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
617
634
|
wbcore/contrib/guardian/tests/conftest.py,sha256=5HFVx8rTnexM2qlPyzDTmhngVZrKVO7ibSqm5i2KoFg,67
|
|
618
|
-
wbcore/contrib/guardian/tests/test_model_mixins.py,sha256=
|
|
619
|
-
wbcore/contrib/guardian/tests/test_tasks.py,sha256=
|
|
635
|
+
wbcore/contrib/guardian/tests/test_model_mixins.py,sha256=CdlCl19I4Fff8MIRgk06lwSGxKB6pu20dIRHAY3VkVg,4062
|
|
636
|
+
wbcore/contrib/guardian/tests/test_tasks.py,sha256=hrVyC_hXYIELlZqOszrK5PtfileTQZ86-q16Xz6k5cw,3305
|
|
620
637
|
wbcore/contrib/guardian/tests/test_utils.py,sha256=16NyD5bzFx6JqumIgHCDVvzbnkMFDIHKaG2ha_nGYKo,8166
|
|
621
|
-
wbcore/contrib/guardian/tests/test_viewsets.py,sha256=
|
|
638
|
+
wbcore/contrib/guardian/tests/test_viewsets.py,sha256=bRVHVtAZ06cZbpprJJKmJQHfTwzn7CT1w9Xq78QbiZ0,2308
|
|
622
639
|
wbcore/contrib/guardian/viewsets/__init__.py,sha256=Fc9L_HXR1AnSAKn8OdwBSrLu9Zg2F1Fh4l0C1Pt0e6Y,60
|
|
623
640
|
wbcore/contrib/guardian/viewsets/mixins.py,sha256=Nu0_7zFuudd-sUJy6eEIUTIWUE4JMCHUY-xJLo5onvQ,235
|
|
624
|
-
wbcore/contrib/guardian/viewsets/viewsets.py,sha256=
|
|
625
|
-
wbcore/contrib/guardian/viewsets/configs/__init__.py,sha256=
|
|
626
|
-
wbcore/contrib/guardian/viewsets/configs/buttons.py,sha256=
|
|
641
|
+
wbcore/contrib/guardian/viewsets/viewsets.py,sha256=GrICS2GGGhrQX9ds3pp3y2nkVCDXzBZdH7CX-H0Ns2s,5764
|
|
642
|
+
wbcore/contrib/guardian/viewsets/configs/__init__.py,sha256=XP5aJk3srxn7neISjnTvTHTHwHc53WAg77RyAUaFga4,286
|
|
643
|
+
wbcore/contrib/guardian/viewsets/configs/buttons.py,sha256=Vi2WL7ead8W7FgulcGgpsqei-rno0-rAqxIQjKWJoOw,1397
|
|
627
644
|
wbcore/contrib/guardian/viewsets/configs/displays.py,sha256=CtVHdBexRTm8qdMETNAvxSKwhEHofoKgqe_Hu9IP2MM,1558
|
|
628
|
-
wbcore/contrib/guardian/viewsets/configs/endpoints.py,sha256=
|
|
645
|
+
wbcore/contrib/guardian/viewsets/configs/endpoints.py,sha256=qsLsDPmR5sopKuDwnmhHGDN-qzbcCRt5BvP-JvMxSG0,1037
|
|
629
646
|
wbcore/contrib/guardian/viewsets/configs/titles.py,sha256=ASsOasxjqfMLGqguu8QDyYUwc4yvvKYZYQNU5gbH9kM,518
|
|
647
|
+
wbcore/contrib/i18n/__init__.py,sha256=StXJ-OqqI2M8rCbisUDrvRcYHHEG2J91Mja1Io8HgFo,96
|
|
648
|
+
wbcore/contrib/i18n/buttons.py,sha256=2sEPAUvjJTr5z7ts71Ai8d_9Oxyt8wjY-Z1XgCsoOsk,1490
|
|
649
|
+
wbcore/contrib/i18n/translation.py,sha256=IVj0xK1mJGeBBHlDaTpYZmBIbF3Kfmwddtf62ZsUI5I,4911
|
|
650
|
+
wbcore/contrib/i18n/viewsets.py,sha256=8bNkDBGBBUziDebHIPCFLs1TNLsj5xeYFPdDRtiB0Ns,1671
|
|
651
|
+
wbcore/contrib/i18n/serializers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
652
|
+
wbcore/contrib/i18n/serializers/fields.py,sha256=HhEN-I5fcMslMrZdiCQdYWyGfRGgOXQqzE9BR7b4pJM,760
|
|
653
|
+
wbcore/contrib/i18n/serializers/mixins.py,sha256=XBuvpVbtZE0LFuGvF972e1aLfzBkFSmHUxbJvy03NzY,486
|
|
654
|
+
wbcore/contrib/i18n/tests/conftest.py,sha256=S0kfCoA_Aq-05_75AXfPod0oWitji1un8_wZZU268Ac,464
|
|
655
|
+
wbcore/contrib/i18n/tests/test_viewsets.py,sha256=cWDwIdVwEmVMbidU6fLVxjFFJH8FF8VuiM-sp4d7slE,2060
|
|
630
656
|
wbcore/contrib/icons/__init__.py,sha256=zMehywxDfn8IvNcMW-6TSai6FpXE7Dd4m6X2GI5l4Bk,26
|
|
631
657
|
wbcore/contrib/icons/apps.py,sha256=CbfoZkSePdV9nlUwxtNk0qMiWIR8XtBSNCmUbH1Clg8,102
|
|
632
|
-
wbcore/contrib/icons/icons.py,sha256=
|
|
658
|
+
wbcore/contrib/icons/icons.py,sha256=4FlbgXlqa8G4wk_QSUIXx4UiR0EdC7mdKSsEHo55yrE,6715
|
|
633
659
|
wbcore/contrib/icons/models.py,sha256=CaLITnSbltSJTKd_kieT1FAK0vrvKURVElilzqFF4wE,304
|
|
634
660
|
wbcore/contrib/icons/serializers.py,sha256=C08Gr43K3dv2jB7DcAqnBz-RD9r6O9t2E_JIV8k-P-Q,582
|
|
635
661
|
wbcore/contrib/icons/backends/__init__.py,sha256=GrA72d_857UivZzBmLkqgqLEqccF0L2pjpAcDTsPWls,118
|
|
636
|
-
wbcore/contrib/icons/backends/default.py,sha256=
|
|
637
|
-
wbcore/contrib/icons/backends/material.py,sha256=
|
|
662
|
+
wbcore/contrib/icons/backends/default.py,sha256=bH1e6M1ThAHW2cYmKb0YaqWxjO0CPbmDRB9KWmrfkwY,14191
|
|
663
|
+
wbcore/contrib/icons/backends/material.py,sha256=hsj_KRjTgHDIFJh4BDWGkx75SmtxklQpjYURhcS7GL4,3806
|
|
638
664
|
wbcore/contrib/io/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
639
|
-
wbcore/contrib/io/admin.py,sha256=
|
|
665
|
+
wbcore/contrib/io/admin.py,sha256=Xd6LplibZI4azDt0GvS1-vHaMIGT2TDfBufU0LV2YEw,4813
|
|
640
666
|
wbcore/contrib/io/apps.py,sha256=6k6kj1S5ytYSg8YLWAkuRu39BpZJUuCd4RPH1PmaCng,1304
|
|
641
667
|
wbcore/contrib/io/dynamic_preferences_registry.py,sha256=8dyFqiacvwUZOgQl9gvKfGvsINXfcuyCvO7FBYxMRCA,514
|
|
642
668
|
wbcore/contrib/io/enums.py,sha256=9Ph2hUn-cjfvTIhPGxlC07qubPS6R3B9ilvC3tpMm8o,417
|
|
643
|
-
wbcore/contrib/io/exceptions.py,sha256
|
|
644
|
-
wbcore/contrib/io/factories.py,sha256=
|
|
645
|
-
wbcore/contrib/io/imports.py,sha256=
|
|
669
|
+
wbcore/contrib/io/exceptions.py,sha256=-9pTtBr4oj7qBpKwnsN7sabu5S6gpDkWTXkA4ZaW9EE,690
|
|
670
|
+
wbcore/contrib/io/factories.py,sha256=U5ppoOMM4yd6pla_bscWo9v7ug5W_bWV29ZL4PKLZsU,7053
|
|
671
|
+
wbcore/contrib/io/imports.py,sha256=Hu8ppai06SQ_CDQ2oUbFcwduAhekCp1l1DB89kTn2nQ,13087
|
|
646
672
|
wbcore/contrib/io/mixins.py,sha256=Sy_1mfdJzrIODCRcbfiA6miU8EqKEaJhL7mEjsRhOvY,1297
|
|
647
|
-
wbcore/contrib/io/models.py,sha256=
|
|
648
|
-
wbcore/contrib/io/resources.py,sha256=
|
|
649
|
-
wbcore/contrib/io/serializers.py,sha256=
|
|
673
|
+
wbcore/contrib/io/models.py,sha256=oYGMz0tbR5Eyul-J1tOSqjbMaNDjaOvB56YrZZhPYd8,40230
|
|
674
|
+
wbcore/contrib/io/resources.py,sha256=eGEpmyrtkB3DgFKV6m57OFzyu6jBZUIXkn5Jopeus9M,6953
|
|
675
|
+
wbcore/contrib/io/serializers.py,sha256=oS5od8ni8wUZml1zM_RAdW9VWrw226Ru4v3RBifOnFY,4639
|
|
676
|
+
wbcore/contrib/io/signals.py,sha256=jCGHjt5Qg2T1aIi4BzWYzWYb2YZT82gUMhG68v2rx58,145
|
|
650
677
|
wbcore/contrib/io/urls.py,sha256=v91WUMYKwQhI9mDnpScP6hvYdGSdQZg0yQzEljCZ4lk,1014
|
|
651
678
|
wbcore/contrib/io/utils.py,sha256=SMjQeUEg_cuBKQfnKGj-qjJDC8Z_xCOQ-t7VZxwCZt4,1359
|
|
652
|
-
wbcore/contrib/io/viewset_mixins.py,sha256=
|
|
679
|
+
wbcore/contrib/io/viewset_mixins.py,sha256=RhO8TE9RPQsubSd2H2XgIJLD92tHu-7_gO8JwROxtHI,11419
|
|
653
680
|
wbcore/contrib/io/viewsets.py,sha256=865N6VOzXVCg2KaGUbJ4KTVlwDuKDvLp7wI3nO4mMmA,4989
|
|
654
681
|
wbcore/contrib/io/backends/__init__.py,sha256=5QaSbVikVGaD3RHfBl0I7pFsyKm1YDZAxS4cvzfhPLs,90
|
|
655
682
|
wbcore/contrib/io/backends/abstract.py,sha256=PKhjS6Nr-FwZfCwNlMCWgXaMoGy0XzE-58x1T7JzNoM,2101
|
|
656
|
-
wbcore/contrib/io/backends/mail.py,sha256=
|
|
657
|
-
wbcore/contrib/io/backends/utils.py,sha256=
|
|
683
|
+
wbcore/contrib/io/backends/mail.py,sha256=arSuRTKeRqgXyrva6dUjnfxFiq4szbrExbw5bsiGxnI,1803
|
|
684
|
+
wbcore/contrib/io/backends/utils.py,sha256=tDmN-H6fr4u8r9fhwSOQ40jxno-3RDq2ebmT76cfHYg,1200
|
|
658
685
|
wbcore/contrib/io/configs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
659
686
|
wbcore/contrib/io/configs/endpoints.py,sha256=YEKFR58PoMguH4BJDsbIRsi6PtmA5OvI5_Z-pdaZ2HQ,479
|
|
660
687
|
wbcore/contrib/io/configurations/__init__.py,sha256=mFiv5r53ErMuTGSoATHNM0qf1Dy6XBKPI7GGeEK_PKE,48
|
|
661
688
|
wbcore/contrib/io/configurations/base.py,sha256=uQ0EI6wIYuF31x-a2VCXSkS_Sxp1_MCMCfjAbNqvw0Y,358
|
|
662
689
|
wbcore/contrib/io/fixtures/io.json,sha256=o75Rt9Mx8d_oAwJCKeWA6QYHSQfbgTFtndxYyj6HLio,4973
|
|
663
690
|
wbcore/contrib/io/import_export/backends/__init__.py,sha256=I9wpKRM0xrTPjmU1BjrrKLOALx3NhL-vPOvD23-N-O4,139
|
|
664
|
-
wbcore/contrib/io/import_export/backends/mail.py,sha256=
|
|
665
|
-
wbcore/contrib/io/import_export/backends/sftp.py,sha256=
|
|
666
|
-
wbcore/contrib/io/import_export/backends/stream.py,sha256=
|
|
667
|
-
wbcore/contrib/io/
|
|
691
|
+
wbcore/contrib/io/import_export/backends/mail.py,sha256=2O6HCi4NxQHpcktaiFzVA2VFdBCx_69eQdVyf3nVbCo,2172
|
|
692
|
+
wbcore/contrib/io/import_export/backends/sftp.py,sha256=va27MF_naWE2horVOGkrqBKfI8RnvBrrqdSZesO_neU,2614
|
|
693
|
+
wbcore/contrib/io/import_export/backends/stream.py,sha256=ywSZCm8ccC1kxB9CBt0PypshdZooAxo5eHZboPwzcnY,3090
|
|
694
|
+
wbcore/contrib/io/import_export/parsers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
695
|
+
wbcore/contrib/io/import_export/parsers/base_csv.py,sha256=6CPeV5j8VBeFOothav42kJEkY1F5d_ucVTRfnX8boiM,1250
|
|
696
|
+
wbcore/contrib/io/import_export/parsers/resources.py,sha256=pTLGDf23S4Q5iNQE782a9Zgxep_WrziMX8mWO3z3SbY,1886
|
|
697
|
+
wbcore/contrib/io/locale/de/LC_MESSAGES/django.po,sha256=98w3QBX3Evo7W8kRGx7fdedT3jJX_vF5go0c0TguNqU,3235
|
|
698
|
+
wbcore/contrib/io/locale/de/LC_MESSAGES/django.po.translated,sha256=KSVtjDxjCHfWg4Hq-sbkIKvGsOusXuOMFhEmOYkKFF4,2558
|
|
699
|
+
wbcore/contrib/io/locale/en/LC_MESSAGES/django.po,sha256=8QyjmE4MJoz10z3k6tLXpW-mF8988Uh0CEndIvtLSTw,2920
|
|
700
|
+
wbcore/contrib/io/locale/fr/LC_MESSAGES/django.po,sha256=BRPPhvww5KJVqmM7n1xCuXwCb6gR-ThKn0fnSGEr-WI,3012
|
|
668
701
|
wbcore/contrib/io/management/__init__.py,sha256=ZRCdDdhJ-oPQoKJj_NVRaSAXdQGNXVVCtUqfkbWE9hg,510
|
|
669
702
|
wbcore/contrib/io/migrations/0001_initial_squashed.py,sha256=mJXj5Yc2HsrRXIhsPVbyrK8j4YBF6zK3mGtwls1T0to,13061
|
|
670
703
|
wbcore/contrib/io/migrations/0002_importsource_creator.py,sha256=fhATF-pjLD2R6bnH1XQdZ6e6BYifbBArCOGrkBYFguE,720
|
|
@@ -673,37 +706,41 @@ wbcore/contrib/io/migrations/0004_alter_importsource_status_exportsource.py,sha2
|
|
|
673
706
|
wbcore/contrib/io/migrations/0005_exportsource_data_alter_exportsource_query_str_and_more.py,sha256=4Q3hbE-ghWHi2F9NZy9poydLa_1lNjttFo0eCrgqEQw,2402
|
|
674
707
|
wbcore/contrib/io/migrations/0006_alter_exportsource_query_params.py,sha256=JHnzz6C1Mr2kVcD5bBJMO6eNvqSFfvw6c0NoGL7pcqs,578
|
|
675
708
|
wbcore/contrib/io/migrations/0007_alter_exportsource_query_params.py,sha256=xHVM23caWAPjo1eTrfTm37G20j8r_AxapoEgb685c2Q,617
|
|
709
|
+
wbcore/contrib/io/migrations/0008_importsource_resource_kwargs.py,sha256=dZx4LUedW8I1Sf0JBMvWgauFbJlzw6HBT6WjhQUW72c,419
|
|
676
710
|
wbcore/contrib/io/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
677
711
|
wbcore/contrib/io/release_notes/1_0_0.md,sha256=1nJ-vnOKk4l5-gU8GTyKrvoz-YUKSGyX96KBoFDlKQc,238
|
|
678
712
|
wbcore/contrib/io/release_notes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
679
713
|
wbcore/contrib/io/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
680
714
|
wbcore/contrib/io/tests/conftest.py,sha256=ycb7GE_yHhF9ExUH5E5vdAsYtu_h_9ft-AITp5fOGVU,1193
|
|
681
|
-
wbcore/contrib/io/tests/test_backends.py,sha256=
|
|
682
|
-
wbcore/contrib/io/tests/test_exports.py,sha256=
|
|
683
|
-
wbcore/contrib/io/tests/test_imports.py,sha256=
|
|
684
|
-
wbcore/contrib/io/tests/test_models.py,sha256=
|
|
685
|
-
wbcore/contrib/io/tests/
|
|
715
|
+
wbcore/contrib/io/tests/test_backends.py,sha256=D4y4JcI_x6aTzz6CHRrFsCdz-DUAhI0ByyaQjIAhWpY,4670
|
|
716
|
+
wbcore/contrib/io/tests/test_exports.py,sha256=yIpGwUY0yWY7_0YQ0v62qxXN1xyo-BeM_yAgM1yt89Q,5300
|
|
717
|
+
wbcore/contrib/io/tests/test_imports.py,sha256=0n99vPnItSeXMlwubr9g1k8UODR73eYQSkCBp5EAKtQ,7641
|
|
718
|
+
wbcore/contrib/io/tests/test_models.py,sha256=QJGHTs7pa1gqNcPyqqp2EIN7SwBbGp-kbIcL6lFmgBk,14232
|
|
719
|
+
wbcore/contrib/io/tests/test_viewsets.py,sha256=Fzd1G5gOc03gxpPwCX8juHgeazlSadZPq56k4ZvgoSY,9178
|
|
686
720
|
wbcore/contrib/notifications/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
687
|
-
wbcore/contrib/notifications/admin.py,sha256=
|
|
688
|
-
wbcore/contrib/notifications/apps.py,sha256
|
|
721
|
+
wbcore/contrib/notifications/admin.py,sha256=aeLRLXw-5-fRXrrRAyFBtoFo8rzu8XSozM1_q-yWdV8,1672
|
|
722
|
+
wbcore/contrib/notifications/apps.py,sha256=O5rwHeCn3FBTE1rjJgNDahJcGXQqezvIEX7T1RtBsZ8,1883
|
|
689
723
|
wbcore/contrib/notifications/configs.py,sha256=Brt_79I8teg-sLzy6KBVsb0eXg-KFmgv_t-bNdznX5k,538
|
|
690
724
|
wbcore/contrib/notifications/configurations.py,sha256=ZoNd8cdbw8Y-rQIQtS2VgieUO8FQ-kdgZdzNMwqL484,327
|
|
691
|
-
wbcore/contrib/notifications/dispatch.py,sha256=
|
|
725
|
+
wbcore/contrib/notifications/dispatch.py,sha256=64LrSiZXk545QJ_PpOKqEQZO4Jep5-MRcPgtU_w5qaQ,3260
|
|
692
726
|
wbcore/contrib/notifications/tasks.py,sha256=ayNcO2WoPDdc9ktfPxdod7Odja5xhn1o7eVUyrSm1zE,2051
|
|
693
727
|
wbcore/contrib/notifications/urls.py,sha256=C764DdlQcJaPjzRKqKrLxKMhpZITZe-YLZaAQOFtzys,872
|
|
694
|
-
wbcore/contrib/notifications/utils.py,sha256=
|
|
728
|
+
wbcore/contrib/notifications/utils.py,sha256=Ou8JwrsDfJ_OHaz4qJuNrR5nhgKXAatRyFyWwAYrCaY,929
|
|
695
729
|
wbcore/contrib/notifications/views.py,sha256=kr7UNwSdQpiwc0-N2KB6zsqNXcodsAcu2wpPblHZoO0,2601
|
|
696
730
|
wbcore/contrib/notifications/backends/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
697
|
-
wbcore/contrib/notifications/backends/abstract_backend.py,sha256=
|
|
731
|
+
wbcore/contrib/notifications/backends/abstract_backend.py,sha256=gdCQn3YRoTGOy19N3TNfsBOmNbqDWZgeBRSmAEhCM2c,304
|
|
698
732
|
wbcore/contrib/notifications/backends/console/__init__.py,sha256=vgrN2iIcVZfFSRJ2A5ltDQYOCK0DCAkt79JU4ZSfwTQ,42
|
|
699
733
|
wbcore/contrib/notifications/backends/console/backends.py,sha256=3oCasfFwlSvW6KMFWgI6mTTwTS8e60Xi8Kb831hp4tk,765
|
|
700
734
|
wbcore/contrib/notifications/backends/firebase/__init__.py,sha256=vgrN2iIcVZfFSRJ2A5ltDQYOCK0DCAkt79JU4ZSfwTQ,42
|
|
701
|
-
wbcore/contrib/notifications/backends/firebase/backends.py,sha256=
|
|
735
|
+
wbcore/contrib/notifications/backends/firebase/backends.py,sha256=9vKesj_iupmDCgPLnayfE0gW0Rl7xyoUVZBhyN2hB2k,4336
|
|
702
736
|
wbcore/contrib/notifications/factories/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
703
|
-
wbcore/contrib/notifications/factories/notification_types.py,sha256=
|
|
737
|
+
wbcore/contrib/notifications/factories/notification_types.py,sha256=s2R4M6FSeIt36E8Zc6Zg9KFUS3Kg1r6G5uEzy2IbhMM,706
|
|
704
738
|
wbcore/contrib/notifications/factories/notifications.py,sha256=QOO0Wp0x2Ij3YZQS6LlWMawbWtiy8yfUBk8vK6NWGok,547
|
|
705
739
|
wbcore/contrib/notifications/factories/tokens.py,sha256=_L82yARrWkTEManCJzu3HLmUprXcsYLA471Om1FRcpo,458
|
|
706
|
-
wbcore/contrib/notifications/locale/de/LC_MESSAGES/django.po,sha256=
|
|
740
|
+
wbcore/contrib/notifications/locale/de/LC_MESSAGES/django.po,sha256=GOonziYXSipF8wMKT2QAo6V1IKMMZDe2e0-iDGpB7W0,2111
|
|
741
|
+
wbcore/contrib/notifications/locale/de/LC_MESSAGES/django.po.translated,sha256=U_ybUKrzfqWsy6bEb1SwFImXRT7w2GMVE9bvhIdGqKY,2088
|
|
742
|
+
wbcore/contrib/notifications/locale/en/LC_MESSAGES/django.po,sha256=MTEP0oXa7WSqf4y_osn6qnFsUdiiXAN9cI1SdakUPTg,1678
|
|
743
|
+
wbcore/contrib/notifications/locale/fr/LC_MESSAGES/django.po,sha256=GktIoVQiIj5ypXuSYl1fgq274tNVJU84-xInj5FZ0zo,1779
|
|
707
744
|
wbcore/contrib/notifications/migrations/0001_initial.py,sha256=7OKlC4ntOE7isSAY7IHd437XZNepZb25Yj6eEi_L-kI,4832
|
|
708
745
|
wbcore/contrib/notifications/migrations/0002_notificationusertoken_unique_user_token_device.py,sha256=itVmm02meTWqYigcsrhKQMCxN_it9_740d516aK1JOQ,470
|
|
709
746
|
wbcore/contrib/notifications/migrations/0003_notificationusertoken_updated.py,sha256=WHsxV8yPXo52UMI-_SDbXmKGg9x70bxUojaGuYDdCvg,437
|
|
@@ -711,15 +748,17 @@ wbcore/contrib/notifications/migrations/0004_alter_notification_body.py,sha256=x
|
|
|
711
748
|
wbcore/contrib/notifications/migrations/0005_alter_notification_endpoint.py,sha256=2HWosAznyK2qaP8wjz7rJpx5zvnhgqfYSi-Ro47F7r4,429
|
|
712
749
|
wbcore/contrib/notifications/migrations/0006_notification_created.py,sha256=2trDtqhhh6Nv5aCCZdan4bTahwtMoONe3hYrQ4qcZXs,748
|
|
713
750
|
wbcore/contrib/notifications/migrations/0007_notificationtype_resource_button_label.py,sha256=oSVy8y9uQMrw2BGCNKy6WhaeMali69yuHGgfX1HXyyw,480
|
|
751
|
+
wbcore/contrib/notifications/migrations/0008_notificationtype_is_lock.py,sha256=7uMgkxo7AcLQrvTR2oiYyrCpAcY7NZnp9vcd1rmi7sc,425
|
|
752
|
+
wbcore/contrib/notifications/migrations/0009_alter_notificationtypesetting_options_and_more.py,sha256=yjkAbfbZMHjJ_DLBHXg792AYzeOlLKyp-sAuVt-IpNI,1311
|
|
714
753
|
wbcore/contrib/notifications/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
715
754
|
wbcore/contrib/notifications/models/__init__.py,sha256=l7E4YjFreG6YeBCjcYJrK1Zn2vfPiBpF6bbfIb_5VM4,156
|
|
716
|
-
wbcore/contrib/notifications/models/notification_types.py,sha256=
|
|
755
|
+
wbcore/contrib/notifications/models/notification_types.py,sha256=Zmx_t6v76mlp-0b-ecICpO4MnhVfr-gVjenpOLbQgV8,6056
|
|
717
756
|
wbcore/contrib/notifications/models/notifications.py,sha256=hrSr0Gay4TswocsRx_x4MBjYVeErx05lg1Pu7Rwia3k,2696
|
|
718
757
|
wbcore/contrib/notifications/models/tokens.py,sha256=S5NBvdwsHGwcJVJk_YW9g6YLPBXAKPiRZgRY1dVomv4,1544
|
|
719
758
|
wbcore/contrib/notifications/release_notes/1_0_0.md,sha256=pyuuGK8zEp7sbPchnpXyPngwJ9-qvrm0dJh3P2DJGIg,168
|
|
720
759
|
wbcore/contrib/notifications/release_notes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
721
760
|
wbcore/contrib/notifications/serializers/__init__.py,sha256=VTZMTbvPTO1A6gI30qSVXFzfQjrQtGt7Rr0be7swy8A,181
|
|
722
|
-
wbcore/contrib/notifications/serializers/notification_types.py,sha256=
|
|
761
|
+
wbcore/contrib/notifications/serializers/notification_types.py,sha256=2m4Tfq-9HHmIFUwCa0JFmHWSMHI4K1r7rrMc0IYUu4k,1548
|
|
723
762
|
wbcore/contrib/notifications/serializers/notifications.py,sha256=tNMIIYzSJYwmxF2xrkWJt66uMbN7OfMO_yXvuxRzn10,1072
|
|
724
763
|
wbcore/contrib/notifications/static/notifications/service-worker.js,sha256=4_yl6qd0ituPK5KxFIyYXs6zXOIc_Y4wtzXKzWkSnqw,4926
|
|
725
764
|
wbcore/contrib/notifications/templates/notifications/notification_template.html,sha256=k-o9ieU6z6c0SKAw43_iLEleJTIZK43Y8jrRCwbKPCc,1441
|
|
@@ -733,31 +772,31 @@ wbcore/contrib/notifications/tests/test_backends/test_firebase.py,sha256=RoC9fbj
|
|
|
733
772
|
wbcore/contrib/notifications/tests/test_models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
734
773
|
wbcore/contrib/notifications/tests/test_models/test_notification_types.py,sha256=t4Cozw2hgDoGc9uC5elX7q2kK5UWY-l4bMU4Fo6L2fs,3428
|
|
735
774
|
wbcore/contrib/notifications/tests/test_models/test_notifications.py,sha256=N98NHI-9LvZi2YA1ruawc6NEfS06iO4fQrlux1PS50I,2056
|
|
736
|
-
wbcore/contrib/notifications/tests/test_models/test_tokens.py,sha256=
|
|
775
|
+
wbcore/contrib/notifications/tests/test_models/test_tokens.py,sha256=8U9WBmHBLMZcNig_doDdByIFYH2V4ccYwnPsgpw9bIc,1301
|
|
737
776
|
wbcore/contrib/notifications/tests/test_serializers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
738
|
-
wbcore/contrib/notifications/tests/test_serializers/test_notification_types.py,sha256=
|
|
777
|
+
wbcore/contrib/notifications/tests/test_serializers/test_notification_types.py,sha256=TIiMdwaXWXRSzeFNKenMAR7VT0fX_HNdxnO9nsTRr6w,2536
|
|
739
778
|
wbcore/contrib/notifications/tests/test_serializers/test_notifications.py,sha256=kW4uTL8Vr_gwo-zAZv4q_v3BBTAmyUDvUv0SzODB2YI,940
|
|
740
779
|
wbcore/contrib/notifications/tests/test_viewsets/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
741
|
-
wbcore/contrib/notifications/tests/test_viewsets/test_notification_types.py,sha256=
|
|
780
|
+
wbcore/contrib/notifications/tests/test_viewsets/test_notification_types.py,sha256=GSmHRc1tUn5Z6M872ZTzaKvgzh7ManfLdYv2BkjN7oc,5851
|
|
742
781
|
wbcore/contrib/notifications/tests/test_viewsets/test_notifications.py,sha256=cuY6k_LJfA4AHLLXzm9bYhjvuCqS-4VKOByUVUjlDTw,6448
|
|
743
782
|
wbcore/contrib/notifications/viewsets/__init__.py,sha256=LvuSAnXRTv5tixtnLaLnx1OFomQaKumL5fo_1EtfBzw,172
|
|
744
|
-
wbcore/contrib/notifications/viewsets/menus.py,sha256=
|
|
745
|
-
wbcore/contrib/notifications/viewsets/notification_types.py,sha256=
|
|
783
|
+
wbcore/contrib/notifications/viewsets/menus.py,sha256=NvhqCjGwpq21DRhvNJKCcv2MAvHIyxq38JLrsV3zR8s,534
|
|
784
|
+
wbcore/contrib/notifications/viewsets/notification_types.py,sha256=FrOxSiQzuO6zC6vQl-C4UZBjvf6J-xyZkCGzueKA_hk,1900
|
|
746
785
|
wbcore/contrib/notifications/viewsets/notifications.py,sha256=0Y5VJZgu8rwOnYNWDTAft1prWCVfXD9Up5RE2EV9HYE,2254
|
|
747
|
-
wbcore/contrib/notifications/viewsets/configs/notification_types.py,sha256=
|
|
786
|
+
wbcore/contrib/notifications/viewsets/configs/notification_types.py,sha256=8x0xmT6brlXh5fiI689fMhtKMjynETD0Xlm1QVYUlD8,1893
|
|
748
787
|
wbcore/contrib/notifications/viewsets/configs/notifications.py,sha256=KHy4V5R3D8AjZp1No7EasjeR-zPzks8eO-2PjlIxMuo,3605
|
|
749
788
|
wbcore/contrib/pandas/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
750
|
-
wbcore/contrib/pandas/fields.py,sha256=
|
|
751
|
-
wbcore/contrib/pandas/filters.py,sha256=
|
|
752
|
-
wbcore/contrib/pandas/filterset.py,sha256=
|
|
789
|
+
wbcore/contrib/pandas/fields.py,sha256=PnLYBnWP6fd3yDFPqcWlH0qrS16dv4Pg9ZRF4p1Ag5Q,4058
|
|
790
|
+
wbcore/contrib/pandas/filters.py,sha256=Pi5h3JB9Ugqx-xZ82X8MUIfRHwrY5locBUQH7GDg60w,4821
|
|
791
|
+
wbcore/contrib/pandas/filterset.py,sha256=uoeW54GT-rhgtUedJzq2QjKfpwRdmNFW7C059fm30lg,1036
|
|
753
792
|
wbcore/contrib/pandas/metadata.py,sha256=EIKp94TDtdtCRELl3zWTLU37FzNX-EpVeMgISUgI-FY,772
|
|
754
|
-
wbcore/contrib/pandas/utils.py,sha256=
|
|
755
|
-
wbcore/contrib/pandas/views.py,sha256=
|
|
793
|
+
wbcore/contrib/pandas/utils.py,sha256=AxxGI4ue4TjEezvigD3zLaAlRAfnL7Mib-eSj48s_DM,4998
|
|
794
|
+
wbcore/contrib/pandas/views.py,sha256=sZYY23bpegoE7Cd3whWi1A4YFn_aq_3tqbr-EaJqi4Q,6427
|
|
756
795
|
wbcore/contrib/pandas/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
757
796
|
wbcore/contrib/pandas/tests/test_base.py,sha256=PuIOm9JDUFFM3oQCtBvvaU5ozniwGlla6bglIRZM0Xw,833
|
|
758
797
|
wbcore/contrib/pandas/tests/test_views.py,sha256=PuIOm9JDUFFM3oQCtBvvaU5ozniwGlla6bglIRZM0Xw,833
|
|
759
798
|
wbcore/contrib/pandas/tests/test_fields/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
760
|
-
wbcore/contrib/pandas/tests/test_fields/test_number_fields.py,sha256=
|
|
799
|
+
wbcore/contrib/pandas/tests/test_fields/test_number_fields.py,sha256=YIWFX67qqBFC_qrbMb826wV05yilpsbizh0ZvzVOnME,473
|
|
761
800
|
wbcore/contrib/pandas/tests/test_filters/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
762
801
|
wbcore/contrib/pandas/tests/test_filters/test_pandas.py,sha256=YMdh3kAjuAZyL4iGe8jjpcDitXmunSkSzB-w3-1rKbI,3757
|
|
763
802
|
wbcore/contrib/tags/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -772,7 +811,7 @@ wbcore/contrib/tags/migrations/0001_initial.py,sha256=6dswzuzzubfzx5cJ69Njz7ZtDB
|
|
|
772
811
|
wbcore/contrib/tags/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
773
812
|
wbcore/contrib/tags/models/__init__.py,sha256=o5Oqc0SJ5kZWQ466Z5Wgj8J9Ppsv1E3JcuLHWM5p9Zw,66
|
|
774
813
|
wbcore/contrib/tags/models/mixins.py,sha256=B3UhUsU3veuGsh_cx6-VASxvUMVPKanaOknkYp0SmFg,950
|
|
775
|
-
wbcore/contrib/tags/models/tags.py,sha256=
|
|
814
|
+
wbcore/contrib/tags/models/tags.py,sha256=IV1dmqRKLD9Ka7yvqnPmmX8rPBn0HfW8Xokb8sdmRgo,3237
|
|
776
815
|
wbcore/contrib/tags/release_notes/1_0_0.md,sha256=jG3JupsX-qW0P8UN2ktJJce_7mCMCc1fAL-nbiCJJnE,160
|
|
777
816
|
wbcore/contrib/tags/release_notes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
778
817
|
wbcore/contrib/tags/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -801,10 +840,10 @@ wbcore/contrib/workflow/admin/workflow.py,sha256=WYP4ruLt1Cwtc5XAXOWoeIpOqfLXIt_
|
|
|
801
840
|
wbcore/contrib/workflow/factories/__init__.py,sha256=VfbPaeOsyiZcBF-UW1VhmtFdD6GkQJ94_-4XSxiQcck,506
|
|
802
841
|
wbcore/contrib/workflow/factories/condition.py,sha256=LpYNUvihM-asb53Ii2AjUZX8RJZKUw5LMafV6XZ6xf0,601
|
|
803
842
|
wbcore/contrib/workflow/factories/data.py,sha256=bNd2GzwCX3W9ZCCS9Fh3sI0CwmmGY6kQJs0sLaxSYkg,740
|
|
804
|
-
wbcore/contrib/workflow/factories/display.py,sha256=
|
|
843
|
+
wbcore/contrib/workflow/factories/display.py,sha256=yyIwdBUiXw4cKHEYpxqB03HUmvZnnlOWXxgbmpDE1eU,789
|
|
805
844
|
wbcore/contrib/workflow/factories/process.py,sha256=ZBYXIfr-ACz0_fXyyGElLGPKXype4QRzHUQrQg71gyw,2870
|
|
806
845
|
wbcore/contrib/workflow/factories/step.py,sha256=IO0b46XfI2pJdHPXz21ljYGtyT-wOS6KFFrp8w14eaU,4065
|
|
807
|
-
wbcore/contrib/workflow/factories/transition.py,sha256
|
|
846
|
+
wbcore/contrib/workflow/factories/transition.py,sha256=GXVIHQgWDPR3nOGxHTH46uz4L2Kk7lUdDYgJzh1UzDs,843
|
|
808
847
|
wbcore/contrib/workflow/factories/workflow.py,sha256=L2mHK8WAWwA-bdxtdEymKphZicdqob_JLevDwQSz3JY,701
|
|
809
848
|
wbcore/contrib/workflow/filters/__init__.py,sha256=gWOO90QO6euiyPJKRlxexQ3K4tiX9KZOVSDL68KMepo,561
|
|
810
849
|
wbcore/contrib/workflow/filters/condition.py,sha256=zABOCqj5G8D4xnPpGQtAHQ5iV8hEatSivh00eCfZiXI,854
|
|
@@ -814,7 +853,10 @@ wbcore/contrib/workflow/filters/step.py,sha256=N5ZYeT91cOiXecBswuNoehVjXlDUzvgsc
|
|
|
814
853
|
wbcore/contrib/workflow/filters/transition.py,sha256=jsmOvSJlTiJGJx0seKrjWqK4Su50HaqeVidNqPr8h1c,1545
|
|
815
854
|
wbcore/contrib/workflow/filters/workflow.py,sha256=T2juRrlXoYLQ59gTfxPxJH0MR0NfQNxbUvM2XTzaTA4,1661
|
|
816
855
|
wbcore/contrib/workflow/fixtures/workflow.json,sha256=NMpa4iaHtsyU3Rqe8FFLH_OgHiSSYMtXg2KNRjVkqcY,14231
|
|
817
|
-
wbcore/contrib/workflow/locale/de/LC_MESSAGES/django.po,sha256=
|
|
856
|
+
wbcore/contrib/workflow/locale/de/LC_MESSAGES/django.po,sha256=JIcFrVr_LOSc88ScQjnb3aIcbjeniGJ90ntOg7aLfac,38238
|
|
857
|
+
wbcore/contrib/workflow/locale/de/LC_MESSAGES/django.po.translated,sha256=irVA3umrkteEJ1VNCzxWuLrMRbik93vrz4fUPAy4ZB4,45227
|
|
858
|
+
wbcore/contrib/workflow/locale/en/LC_MESSAGES/django.po,sha256=BAuT8cKN4mqg0SKsM1n-1UCkoht3sZF7Scy9XZQTfns,30737
|
|
859
|
+
wbcore/contrib/workflow/locale/fr/LC_MESSAGES/django.po,sha256=e-W5wRaHDuvq9EiwYK9ZRfxARXIpR9YD8EffnWy6vS8,30871
|
|
818
860
|
wbcore/contrib/workflow/migrations/0001_initial.py,sha256=Tnurc49itIH2G9HOQfvNgS4hH11rD7JDbIWbFyeg7-Q,31000
|
|
819
861
|
wbcore/contrib/workflow/migrations/0002_alter_step_step_type.py,sha256=Q0LTfMdWbKVzBqIuY-cjIfS7CVpDYW4zz50gMm5B0Zc,921
|
|
820
862
|
wbcore/contrib/workflow/migrations/0003_alter_condition_attribute_name_and_more.py,sha256=x-sMfGGINh2w12b0taLKWXCIFdljkslpBxnp-K8ZR3Y,2784
|
|
@@ -823,17 +865,17 @@ wbcore/contrib/workflow/migrations/0005_alter_userstep_assignee_method.py,sha256
|
|
|
823
865
|
wbcore/contrib/workflow/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
824
866
|
wbcore/contrib/workflow/models/__init__.py,sha256=CfTsEsrh6YChobIrcddQfxxw3g6nETEc7objf2mZC7s,402
|
|
825
867
|
wbcore/contrib/workflow/models/condition.py,sha256=Dwxz4t7qq3E1_PyT5e4r23bd6CbXkeD0oqi1IreEBw0,4990
|
|
826
|
-
wbcore/contrib/workflow/models/data.py,sha256=
|
|
868
|
+
wbcore/contrib/workflow/models/data.py,sha256=rmnZXjyj6merFmZLpneCwNzFczCelFQxF2YqD-sQT9Y,8501
|
|
827
869
|
wbcore/contrib/workflow/models/display.py,sha256=A09tKwOTwa5FUFhj7HEILI0q6X4eHvNDproXceusqe8,923
|
|
828
|
-
wbcore/contrib/workflow/models/process.py,sha256=
|
|
829
|
-
wbcore/contrib/workflow/models/step.py,sha256=
|
|
870
|
+
wbcore/contrib/workflow/models/process.py,sha256=DMm_NG9g68UomwjbOYCzNPh6PIF80GrDbG5oDdqfk_Y,8541
|
|
871
|
+
wbcore/contrib/workflow/models/step.py,sha256=AfbfH4-V3nT_el4qEjdbUDfa6O2t6J0nvF_QOCBu6Lg,29022
|
|
830
872
|
wbcore/contrib/workflow/models/transition.py,sha256=b-1rZTA8rZmxRhAR7RDqkUT7W8DIwjlsKmscvYfmpIs,2344
|
|
831
873
|
wbcore/contrib/workflow/models/workflow.py,sha256=YqoSBtrpRPsRGDNxIhtbChT4yB27V42WKseOy9uroBQ,11690
|
|
832
874
|
wbcore/contrib/workflow/serializers/__init__.py,sha256=b7rERecOTkKCFPlR2ONncXkwvozHWsQYrx5SFkJ0ntU,1313
|
|
833
875
|
wbcore/contrib/workflow/serializers/condition.py,sha256=w4jKdhrijnRYSv1FKcZyJNFBxwho2dUJSy9PpwF5u7w,2454
|
|
834
|
-
wbcore/contrib/workflow/serializers/data.py,sha256=
|
|
876
|
+
wbcore/contrib/workflow/serializers/data.py,sha256=8NdMSJZrWd6GgTJFZyPpU-4Yv710Zcwsl6SrCgxy8Fg,5400
|
|
835
877
|
wbcore/contrib/workflow/serializers/display.py,sha256=iJiKTL6bEJpS0ntinNhbtfCThna5OcqMM_-9E4-6090,647
|
|
836
|
-
wbcore/contrib/workflow/serializers/process.py,sha256=
|
|
878
|
+
wbcore/contrib/workflow/serializers/process.py,sha256=zQD7MPSJrW_-FjCElDnshWFNXeQgMukn4hIz3nGrFCI,6349
|
|
837
879
|
wbcore/contrib/workflow/serializers/signals.py,sha256=S_qgqtYiTroocmCMKf_sMWAOI1Tk2OALATW12HczRUo,1184
|
|
838
880
|
wbcore/contrib/workflow/serializers/step.py,sha256=KU5J-3b4ydwjHMGiYFFYWUjUVxgn_p6SEBfD9ujwosU,14150
|
|
839
881
|
wbcore/contrib/workflow/serializers/transition.py,sha256=bEaC8UPP_x48w6248sHeNaloXS6d-R0pzn0ANT78XWU,3190
|
|
@@ -854,32 +896,31 @@ wbcore/contrib/workflow/static/workflow/markdown/documentation/userstep.md,sha25
|
|
|
854
896
|
wbcore/contrib/workflow/static/workflow/markdown/documentation/workflow.md,sha256=CS1iyjdQX5N3Fbp8QYnrrPq2QNgu_kaCu9aLLq7pJ3M,43578
|
|
855
897
|
wbcore/contrib/workflow/templates/Test_Templates.txt,sha256=TPyYY95ZVlOPsdH_XPaDgz11RpB6tZH-PUu6BKutJhE,764
|
|
856
898
|
wbcore/contrib/workflow/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
857
|
-
wbcore/contrib/workflow/tests/conftest.py,sha256=
|
|
899
|
+
wbcore/contrib/workflow/tests/conftest.py,sha256=5jS-R4lpLOu0VhNENaKPI1O_62qbltHzcSowRHN3Md0,6471
|
|
858
900
|
wbcore/contrib/workflow/tests/test_configs.py,sha256=LIGgRTM9l6Fj-RHLG08fM9OdutJVEE63x-0XZ2M7oWQ,205
|
|
859
|
-
wbcore/contrib/workflow/tests/test_dispatch.py,sha256=
|
|
860
|
-
wbcore/contrib/workflow/tests/test_displays.py,sha256=
|
|
861
|
-
wbcore/contrib/workflow/tests/test_filters.py,sha256=
|
|
862
|
-
wbcore/contrib/workflow/tests/test_serializers.py,sha256=
|
|
863
|
-
wbcore/contrib/workflow/tests/test_viewsets.py,sha256=
|
|
864
|
-
wbcore/contrib/workflow/tests/test_workflow_assignees.py,sha256=
|
|
865
|
-
wbcore/contrib/workflow/tests/
|
|
866
|
-
wbcore/contrib/workflow/tests/test_models/test_condition.py,sha256=nQ9rzQEPpn17PzX6FXoa8ArRweXbIC8qMLXjpOIBOc8,4704
|
|
901
|
+
wbcore/contrib/workflow/tests/test_dispatch.py,sha256=xW8EHv6yV88893R1O41ytEIaC_GY0GFLGYsdOVOF5-w,4133
|
|
902
|
+
wbcore/contrib/workflow/tests/test_displays.py,sha256=Do1lD5OvnMTEW0bnjI7MV0BjKToaMUB2knvyncyfQw4,1526
|
|
903
|
+
wbcore/contrib/workflow/tests/test_filters.py,sha256=tHDn1DxAIgLlcWIDQPV_vFB6FG3VGbfCfOg1KFybQPo,4146
|
|
904
|
+
wbcore/contrib/workflow/tests/test_serializers.py,sha256=2RmFqozOhhGICfD4BkXkE4_JQgq3vW3dDrmp--vO1uM,7761
|
|
905
|
+
wbcore/contrib/workflow/tests/test_viewsets.py,sha256=ODIMaD1B0WH8IzGAhTS3DuFNtl1NlCJKpg08CAP9yL0,11204
|
|
906
|
+
wbcore/contrib/workflow/tests/test_workflow_assignees.py,sha256=1QN7fsZLV8VKFns_2B_xdCKh9wPM60RmlZt6Rq5MUso,10396
|
|
907
|
+
wbcore/contrib/workflow/tests/test_models/test_condition.py,sha256=6sSW1gddFWSRBO3quwvyltPzL9JDH4vHlfFV1vBBh_w,4717
|
|
867
908
|
wbcore/contrib/workflow/tests/test_models/test_data.py,sha256=4WrmvopH3QErWCOSvjsnfvCOOnCyaQ_KKmAAPSJy3CY,5369
|
|
868
909
|
wbcore/contrib/workflow/tests/test_models/test_process.py,sha256=cJCcWGXbcKSK34BtcNVg56nQXMogAtKeufbPf82Z8yw,4580
|
|
869
910
|
wbcore/contrib/workflow/tests/test_models/test_transition.py,sha256=IBsK9sRp0pCVO4t00C7Z0kjmhhSHNPOpQ4YxgDrhltg,5106
|
|
870
|
-
wbcore/contrib/workflow/tests/test_models/test_workflow.py,sha256=
|
|
871
|
-
wbcore/contrib/workflow/tests/test_models/step/test_decision_step.py,sha256
|
|
872
|
-
wbcore/contrib/workflow/tests/test_models/step/test_email_step.py,sha256=
|
|
873
|
-
wbcore/contrib/workflow/tests/test_models/step/test_finish_step.py,sha256
|
|
874
|
-
wbcore/contrib/workflow/tests/test_models/step/test_join_step.py,sha256=
|
|
911
|
+
wbcore/contrib/workflow/tests/test_models/test_workflow.py,sha256=J8AvJTjz1EcBMZz7_u73a-tzUqF5L9scFk744ph9dxQ,19561
|
|
912
|
+
wbcore/contrib/workflow/tests/test_models/step/test_decision_step.py,sha256=ajr5jK9Y9-VJzPOsrx8e6irW8IQ5kASkMYJmj8qyg60,3977
|
|
913
|
+
wbcore/contrib/workflow/tests/test_models/step/test_email_step.py,sha256=kUzXJmjfoLCL3ZUktXcZ0ii1HsuFm_-aItgZwlKaN0s,3873
|
|
914
|
+
wbcore/contrib/workflow/tests/test_models/step/test_finish_step.py,sha256=-4h164N2DqYeesGzF_nIW3E6x4QF_pb-Rs_5iKNx2lE,6586
|
|
915
|
+
wbcore/contrib/workflow/tests/test_models/step/test_join_step.py,sha256=YDQKx3AsX01iMkcj3nHgoWL9UHTsVUdGVw0A8Lt5DfA,4316
|
|
875
916
|
wbcore/contrib/workflow/tests/test_models/step/test_script_step.py,sha256=--S5YIC1LTWsDFrU3b3Yh8f-Nv8fRmmp2haSqK1qsSQ,1041
|
|
876
917
|
wbcore/contrib/workflow/tests/test_models/step/test_split_step.py,sha256=A4GvrDkeRgYkImkfGrgbRZJl6nn8ZAEjsxOxJzz40sk,1743
|
|
877
|
-
wbcore/contrib/workflow/tests/test_models/step/test_step.py,sha256=
|
|
918
|
+
wbcore/contrib/workflow/tests/test_models/step/test_step.py,sha256=DTpvVrpVq7PMPdIVLdqZvAYeJwCB-3CxhLsJSlmjtw0,34594
|
|
878
919
|
wbcore/contrib/workflow/tests/test_models/step/test_user_step.py,sha256=lKajp_SIP-tNQTislIIcrygFepOi_l7Kc63Wby7HYyk,11906
|
|
879
920
|
wbcore/contrib/workflow/viewsets/__init__.py,sha256=PGsFZrKbNTXJF-VrrjtN3ItA6OIn1sW-ypcyWrQEX-g,557
|
|
880
921
|
wbcore/contrib/workflow/viewsets/condition.py,sha256=8BWj-nTp8uACx2BHmwXP4hJT8dvMH2DNMtIrSXmvMpc,1399
|
|
881
922
|
wbcore/contrib/workflow/viewsets/data.py,sha256=YuR_0Qz9ByEacAhO3cLtYjoN0KbUV8zmFhKd6QhTy0o,1249
|
|
882
|
-
wbcore/contrib/workflow/viewsets/process.py,sha256=
|
|
923
|
+
wbcore/contrib/workflow/viewsets/process.py,sha256=IkkTtSEqqP9A4CD-S-cytWRBoc1eRjRNpehDBn3yOgY,6079
|
|
883
924
|
wbcore/contrib/workflow/viewsets/step.py,sha256=FwCYlmNDRQ29w2kt-NBggXuWFfCmKzpoaMX0v8X0LCw,7365
|
|
884
925
|
wbcore/contrib/workflow/viewsets/transition.py,sha256=Srn5TBWEEe6i3N6lhLcg_phL9RoX2zkn__bOP_0alrw,2453
|
|
885
926
|
wbcore/contrib/workflow/viewsets/workflow.py,sha256=D_eGqT3F9pH2UQbGNAeDxrEU-kRjpjvYCgf1W5PWhEU,1625
|
|
@@ -913,7 +954,7 @@ wbcore/contrib/workflow/viewsets/titles/step.py,sha256=jcfwrTsXLVdoDg8ujXm1X1k8R
|
|
|
913
954
|
wbcore/contrib/workflow/viewsets/titles/transition.py,sha256=_2pwlLQ1z4MOAEcvjFlaCOrYAR6NByvTgDX2LK1Jqx8,357
|
|
914
955
|
wbcore/contrib/workflow/viewsets/titles/workflow.py,sha256=HNLCNloXuufXIMbowHM-f9OvJ9yssEUVRdwjT6aM_m8,349
|
|
915
956
|
wbcore/contrib/workflow/workflows/__init__.py,sha256=NsbJ8OKI_atG2-Qv3bMXqpHgyiJliOUE_JUZsaGt1as,25
|
|
916
|
-
wbcore/contrib/workflow/workflows/assignees.py,sha256=
|
|
957
|
+
wbcore/contrib/workflow/workflows/assignees.py,sha256=S2n_ympGyczglrWiO2TDKT2XW8My8CrcXP1d0YUIvgo,3848
|
|
917
958
|
wbcore/crontab/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
918
959
|
wbcore/crontab/serializers.py,sha256=saknQtXrPU2uSbySFKBOcjz854cOmZtCCY_rHab0VPs,813
|
|
919
960
|
wbcore/crontab/viewsets.py,sha256=fMtaAU3P4bDRAygoCqHFm0u73dMCB52Dv1ar0Mz7mkM,335
|
|
@@ -923,23 +964,26 @@ wbcore/docs/reparent.md,sha256=_pWHAuRwSQZRcvRxa7tsNKVdRP4Nj6O0Zdbwk9AsB9Q,839
|
|
|
923
964
|
wbcore/filters/__init__.py,sha256=I4NntVOrIgMTPh49Ek5K6J6jEGR6Y8YR_TEVtNOJunw,491
|
|
924
965
|
wbcore/filters/backends.py,sha256=7XX5LcFrAFE5jvFj5qSjww4VMux8aKRlcQKmZxdIiKY,730
|
|
925
966
|
wbcore/filters/defaults.py,sha256=poSD8Ww2NumwYjZ01zS0iBsNCmv6Bee1z3bDSYdX17A,1988
|
|
926
|
-
wbcore/filters/filterset.py,sha256=
|
|
967
|
+
wbcore/filters/filterset.py,sha256=TTk4mQq9DFCXdyzMq3Ig6e5uIbmjsr4HT2kswOgiuPc,11775
|
|
927
968
|
wbcore/filters/lookups.py,sha256=IYuQqEcYutiXk9UpzY3qKSCaCR2vyllB0RXBj98o8Ao,1186
|
|
928
|
-
wbcore/filters/mixins.py,sha256=
|
|
969
|
+
wbcore/filters/mixins.py,sha256=eIXW2Wq_VO3sXioQKcYdyTvZPHS06tytcGo4ZHEasvA,4487
|
|
929
970
|
wbcore/filters/utils.py,sha256=wSs0g7mKF6n_ziSEDItfFYcuHwZTXyu78D6LHxzY2Bk,786
|
|
930
971
|
wbcore/filters/fields/__init__.py,sha256=ZucwBossNTlvcUfRullicg0ovghQEGO0jxY5eQ3UaEs,546
|
|
931
972
|
wbcore/filters/fields/booleans.py,sha256=6BrK3p1Bv_KIlVCeMOgJ7V8_P8tWQKBnxTOBOBSsGvE,175
|
|
932
|
-
wbcore/filters/fields/choices.py,sha256=
|
|
933
|
-
wbcore/filters/fields/content_type.py,sha256=
|
|
934
|
-
wbcore/filters/fields/datetime.py,sha256=
|
|
935
|
-
wbcore/filters/fields/models.py,sha256=
|
|
973
|
+
wbcore/filters/fields/choices.py,sha256=cXjPtWTEb-GF0oQaYszdDs2XRHEeviwipjbmlptX9mc,2529
|
|
974
|
+
wbcore/filters/fields/content_type.py,sha256=OtIzgNrr3-jtiS7m1YWrO5LEQd4hOhaukWTmDrmhJtg,1484
|
|
975
|
+
wbcore/filters/fields/datetime.py,sha256=17IP-ZGkmH0M4juc68kk0IPoiW7xKTUOy_y8DebV_Ts,4342
|
|
976
|
+
wbcore/filters/fields/models.py,sha256=43MwNyWqIkxAYTopYnGrsDRv-te34DIaHYmI4TtYTBs,5203
|
|
936
977
|
wbcore/filters/fields/multiple_lookups.py,sha256=gATxmkosBkDNbs_BQUw-rkON6xF5-C5evItvT0OkjQg,616
|
|
937
|
-
wbcore/filters/fields/numbers.py,sha256=
|
|
978
|
+
wbcore/filters/fields/numbers.py,sha256=DRKDndzZwBvnzlLrMiijwoZ41px8B0xcYv23eFI64hw,1908
|
|
938
979
|
wbcore/filters/fields/text.py,sha256=KUKq2BBmAZhI243WUgII052nzU_PmS3ivAZnlibArrQ,166
|
|
939
980
|
wbcore/fsm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
940
|
-
wbcore/fsm/markdown_extensions.py,sha256=
|
|
941
|
-
wbcore/fsm/mixins.py,sha256=
|
|
942
|
-
wbcore/locale/de/LC_MESSAGES/django.po,sha256=
|
|
981
|
+
wbcore/fsm/markdown_extensions.py,sha256=nhArdsPaFNuAfE-8xCmvm_PdKJDpXq4YLjDHLk6ryfM,998
|
|
982
|
+
wbcore/fsm/mixins.py,sha256=vW5Xp09tLaCwAWTYjapy2gOFrzR48MhjakEelKxJ3Fw,6226
|
|
983
|
+
wbcore/locale/de/LC_MESSAGES/django.po,sha256=cIVadkOVokzRgGEvCrAl_XLKHgINNJnuggWODwEAoiA,34242
|
|
984
|
+
wbcore/locale/de/LC_MESSAGES/django.po.translated,sha256=pK20Tq5MnpnUgD3F20DpreCXjZIwhvtHsSZBlqjDaK4,43866
|
|
985
|
+
wbcore/locale/en/LC_MESSAGES/django.po,sha256=85opdOBlbrGVzuQL3pORHTQcBR1hA0XF2Qx5vl60dOQ,32107
|
|
986
|
+
wbcore/locale/fr/LC_MESSAGES/django.po,sha256=n-JQfHUo0-DEgarN5lcOCWiTpSMBxnwfq1j_IFFwNeY,32202
|
|
943
987
|
wbcore/management/__init__.py,sha256=RXB_EGmmCZU6zwD0ys0jP5iUfhhNaPkSQAApLOJty2E,3023
|
|
944
988
|
wbcore/management/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
945
989
|
wbcore/management/commands/bootstrap.py,sha256=YEYhT6WK8XbFLOvBwlUYjoHvgnlXaoaeh11YMJ6i-w0,655
|
|
@@ -948,12 +992,12 @@ wbcore/management/commands/handle_release_notes.py,sha256=95JZJBjPbuhN7Xo1WQznex
|
|
|
948
992
|
wbcore/markdown/__init__.py,sha256=2Y8N9D9otcTuSq8wWfEzNMf_DCpSpxGCu-jNd-RXCUs,44
|
|
949
993
|
wbcore/markdown/admin.py,sha256=JChJqfTydB0HH2aZElZNOhStgFG59gquY94iyPtaWQw,232
|
|
950
994
|
wbcore/markdown/dynamic_preferences_registry.py,sha256=HSowJgni2TVUcFBbmN8soYCg9GeKeR8OwVxEnFGkE2c,658
|
|
951
|
-
wbcore/markdown/models.py,sha256=
|
|
995
|
+
wbcore/markdown/models.py,sha256=m-flvJWmqLj2PgyOV0VKxDFqPSZ6A7_lQWtd49U6Z7I,1262
|
|
952
996
|
wbcore/markdown/template.py,sha256=shRAEdHaHVlrM4cY5mKjwva9QBaJrvkJhYaR7gXISQE,1567
|
|
953
997
|
wbcore/markdown/utils.py,sha256=vde3CzHEh6mwKL74AOYme7R3YnagY_4ShJyAsC2IiEo,1269
|
|
954
|
-
wbcore/markdown/views.py,sha256=
|
|
998
|
+
wbcore/markdown/views.py,sha256=e9uNTq2poK-cxKZulnUvm9MYlzgDDrMaaNSD_7T7MSA,2482
|
|
955
999
|
wbcore/menus/__init__.py,sha256=pPtHc6xv3zJLwwoZglWV38ACQtnEPoNs1UY7XSSfaWc,89
|
|
956
|
-
wbcore/menus/menus.py,sha256=
|
|
1000
|
+
wbcore/menus/menus.py,sha256=ngZdsAkZEMnkvyj2anNnkL38guJTx56gfKhSBhePrBQ,3012
|
|
957
1001
|
wbcore/menus/registry.py,sha256=rszt3iAaDuxSabs3EeseX1xdVHUbN5w3e8wqGtGPWjs,815
|
|
958
1002
|
wbcore/menus/views.py,sha256=RZpbkDTUCzL14LdIuMTgUAxbbv3Va8AZsD6CTDp9m4w,1356
|
|
959
1003
|
wbcore/metadata/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -964,10 +1008,10 @@ wbcore/metadata/utils.py,sha256=hpG6SPS1d3zajPlG5ExrliiVr94vegOsJuoqLLR7OE8,124
|
|
|
964
1008
|
wbcore/metadata/configs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
965
1009
|
wbcore/metadata/configs/base.py,sha256=jxOuuisAAEMjvdvQY_1WSruEaNR9onmXn7W6NN95ogw,2790
|
|
966
1010
|
wbcore/metadata/configs/documentations.py,sha256=Wv6vToaalOFkCY_KU8HOddpkfeMKsBoGlla_4LTbJ40,348
|
|
967
|
-
wbcore/metadata/configs/endpoints.py,sha256=
|
|
968
|
-
wbcore/metadata/configs/fields.py,sha256=
|
|
969
|
-
wbcore/metadata/configs/filter_fields.py,sha256=
|
|
970
|
-
wbcore/metadata/configs/identifiers.py,sha256=
|
|
1011
|
+
wbcore/metadata/configs/endpoints.py,sha256=peGTXR53IpOYcm0kBqDwMuIxxjjLYHRhDv0XWt6-OYQ,7143
|
|
1012
|
+
wbcore/metadata/configs/fields.py,sha256=4R-C_wzz9R5BttzfiWH0MeCDF5_tkvJUGo8sk4XaWPI,1091
|
|
1013
|
+
wbcore/metadata/configs/filter_fields.py,sha256=1jZyZHU8rBse2P69xFFRAn8VitEdevz5bPeniMk0vKs,2000
|
|
1014
|
+
wbcore/metadata/configs/identifiers.py,sha256=4cntC5IarkENLrBnFf26uyfrZY3b4QDXtugvNc_VRhI,1025
|
|
971
1015
|
wbcore/metadata/configs/ordering_fields.py,sha256=9ww1zwCFfL6XKGxMI2RKCcMhRS-dkFi3pYbQVbuKN_A,878
|
|
972
1016
|
wbcore/metadata/configs/paginations.py,sha256=QsQ2-D4Co6CZSrv6euBKZcYQVFRRfd5Jr-Sgw0Ij_Uo,373
|
|
973
1017
|
wbcore/metadata/configs/preview.py,sha256=UDEJ39FCRVIsrlgw5NtNKfVTJuPodCRw90Iz_-jpCcI,1120
|
|
@@ -976,26 +1020,26 @@ wbcore/metadata/configs/search_fields.py,sha256=FOq3zk6jSPQ24m1QII0iV-eLTcD_Z4IP
|
|
|
976
1020
|
wbcore/metadata/configs/titles.py,sha256=Iha24FKpL6BacGlN61-_O4f7v9meHwJDkG4W09PWi5s,1841
|
|
977
1021
|
wbcore/metadata/configs/window_types.py,sha256=RbUbUvid9qMIXZMI0sqLTanZcWCP-pmwm-_33z_3hQs,451
|
|
978
1022
|
wbcore/metadata/configs/buttons/__init__.py,sha256=JAMiJMEDtsWqHh5O4-gsZBuPINZGHzMKVYxrIxvphTM,222
|
|
979
|
-
wbcore/metadata/configs/buttons/bases.py,sha256=
|
|
980
|
-
wbcore/metadata/configs/buttons/buttons.py,sha256=
|
|
981
|
-
wbcore/metadata/configs/buttons/enums.py,sha256=
|
|
1023
|
+
wbcore/metadata/configs/buttons/bases.py,sha256=WbiCoNyvzCQkXdT3A4Hq0vGL0-0oY2i-BIOulaTeHXs,3040
|
|
1024
|
+
wbcore/metadata/configs/buttons/buttons.py,sha256=JRj84v3EA7z8tzBvLPup_4etiU0oSTO7HDQB4TYaDh4,5259
|
|
1025
|
+
wbcore/metadata/configs/buttons/enums.py,sha256=J7gGqVtmlUj6JM9elK-WDeZ4v5FuFkDMjNJDU1rO9cY,1583
|
|
982
1026
|
wbcore/metadata/configs/buttons/metadata.py,sha256=OhSkW18R6B_uJrtcGjN8VEkNCPlXD2DxuYWCqZXQbD0,348
|
|
983
|
-
wbcore/metadata/configs/buttons/view_config.py,sha256=
|
|
1027
|
+
wbcore/metadata/configs/buttons/view_config.py,sha256=31fFJFeV9iM24FQY7I6XaPthokJdCuzSeCBdAB1xGnE,5308
|
|
984
1028
|
wbcore/metadata/configs/display/__init__.py,sha256=K3CdAUuC-YbowUusZ9F6vGfepppSqE8cfvazczEGePo,272
|
|
985
1029
|
wbcore/metadata/configs/display/configs.py,sha256=T_jJaryQf7hMqgJ_m2b685ynBxTQgsb526Zw4maBcsI,654
|
|
986
|
-
wbcore/metadata/configs/display/display.py,sha256=
|
|
987
|
-
wbcore/metadata/configs/display/formatting.py,sha256=
|
|
988
|
-
wbcore/metadata/configs/display/list_display.py,sha256=
|
|
989
|
-
wbcore/metadata/configs/display/models.py,sha256=
|
|
990
|
-
wbcore/metadata/configs/display/view_config.py,sha256=
|
|
1030
|
+
wbcore/metadata/configs/display/display.py,sha256=WszWJutDuE_95RBlIxj7FkR2WxGhRuQ4fUcwYmGlfY8,6236
|
|
1031
|
+
wbcore/metadata/configs/display/formatting.py,sha256=fjf-c0rcRrdloVZnRTVJCumeSAt9TT1L64qcv1Mf9dU,1571
|
|
1032
|
+
wbcore/metadata/configs/display/list_display.py,sha256=g84V2nw7dON_KsWd1m-6ikDmPaqiyj05SF9BSmgBZws,8778
|
|
1033
|
+
wbcore/metadata/configs/display/models.py,sha256=AFGy0EZF9Fgsw-QfEEjTeuQO4uk6rVxQSAV1ZePwucE,998
|
|
1034
|
+
wbcore/metadata/configs/display/view_config.py,sha256=3GbaYnaY-JIIX3HpBEJBlML8SO82928r8OCRc_7aEtI,3312
|
|
991
1035
|
wbcore/metadata/configs/display/views.py,sha256=wT6hiq_IHJ_h-bG0zIij5NJz3k4xYNtcS-cZVbTm3uY,1598
|
|
992
1036
|
wbcore/metadata/configs/display/windows.py,sha256=LUWmpsWLuDYcqxzDdmd08PfEa4f1goJhMw4LrC28Lzc,686
|
|
993
1037
|
wbcore/metadata/configs/display/instance_display/__init__.py,sha256=a62DtIWnRJfvzOCIy6sop7S3w7FXyu-ryGqDxNWZFLE,449
|
|
994
|
-
wbcore/metadata/configs/display/instance_display/display.py,sha256=
|
|
1038
|
+
wbcore/metadata/configs/display/instance_display/display.py,sha256=YsHUSMERvQibA2g6gBCbht023K2WHWC7sZ4HFMpbRsk,1722
|
|
995
1039
|
wbcore/metadata/configs/display/instance_display/enums.py,sha256=I7Ul0UladH6FEAHhfHHmCf7GLQYicr-oQU5ecVJmAZU,106
|
|
996
1040
|
wbcore/metadata/configs/display/instance_display/operators.py,sha256=bMeHp1MZ2OvPMmQBfr0zZtXXiYDQJVdIbt_r_QHVSuo,383
|
|
997
|
-
wbcore/metadata/configs/display/instance_display/pages.py,sha256=
|
|
998
|
-
wbcore/metadata/configs/display/instance_display/shortcuts.py,sha256=
|
|
1041
|
+
wbcore/metadata/configs/display/instance_display/pages.py,sha256=oVRE64cW7jfJwkCXnSP8WhPz8oDjAQ3uTGG4DTl6VBk,1343
|
|
1042
|
+
wbcore/metadata/configs/display/instance_display/shortcuts.py,sha256=Vnvl6E7JVQB5ST0AQ03NnLLByD-ZyqvoPTdnkWCDr_w,2688
|
|
999
1043
|
wbcore/metadata/configs/display/instance_display/signals.py,sha256=g7NTb1aTnlCkOwxIlGiG8_HwxSvbybeT7ZogzgjW-So,73
|
|
1000
1044
|
wbcore/metadata/configs/display/instance_display/styles.py,sha256=I5YE_xjoqIDbLLY7MTTf-xiME2O5GCX7fDyVMrhBDro,1200
|
|
1001
1045
|
wbcore/metadata/configs/display/instance_display/utils.py,sha256=cWPcRnpiKigDYW9MV1wG8YLrFKexK51JXWAlRYoSDwU,2562
|
|
@@ -1004,7 +1048,7 @@ wbcore/metadata/configs/display/instance_display/layouts/inlines.py,sha256=xfcZ7
|
|
|
1004
1048
|
wbcore/metadata/configs/display/instance_display/layouts/layouts.py,sha256=3nY6M-4ZmE9labpY80wx_yPIqQmQw0_mjG5smmrujl8,3264
|
|
1005
1049
|
wbcore/metadata/configs/display/instance_display/layouts/sections.py,sha256=yFo5i-41KJp733MoDlzonaXDylOn0pbBlwqd7late0A,1298
|
|
1006
1050
|
wbcore/metadata/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1007
|
-
wbcore/metadata/tests/test_buttons.py,sha256=
|
|
1051
|
+
wbcore/metadata/tests/test_buttons.py,sha256=cOH77BKzHtsvc4D7LnTu3037fFmE_jzekQQhX0lgeN8,7345
|
|
1008
1052
|
wbcore/migrations/0001_initial_squashed_squashed_0010_preset_appliedpreset.py,sha256=6RxsuOPKfhSSox5DC0bwUrI-oR9bGPkSyI1zDv5juSM,16460
|
|
1009
1053
|
wbcore/migrations/0011_genericmodel.py,sha256=w-SK0-EwQCbXtLyFz3V-rBY-hj8bw7_n0xe0NM2HF8U,588
|
|
1010
1054
|
wbcore/migrations/0012_delete_notification.py,sha256=HM0oUd05bgpuupsO_oG7t-C3lXInpq_Sg1vcEIyfHd0,293
|
|
@@ -1013,7 +1057,7 @@ wbcore/migrations/0014_biguserobjectpermission_system.py,sha256=gp94sckRkv59IP90
|
|
|
1013
1057
|
wbcore/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1014
1058
|
wbcore/models/__init__.py,sha256=Ukm6r1FTiPMwcXOmiTmW73aktzFmQicN7Cm7XISD8fg,309
|
|
1015
1059
|
wbcore/models/base.py,sha256=TG721oLpsG1NVliyseCeFmCfYm_PGv_VlbdtYHS2AEM,7123
|
|
1016
|
-
wbcore/models/fields.py,sha256
|
|
1060
|
+
wbcore/models/fields.py,sha256=IsHaIzQ2GU_rC7AORdSF9IIc_XkXPkEK5rV0wnijRmU,984
|
|
1017
1061
|
wbcore/models/orderable.py,sha256=3uxEHuixP-qeCp_s86JzYC-ENAqh1NIlNOilht1h9bM,171
|
|
1018
1062
|
wbcore/pandas/__init__.py,sha256=2R8QJYuou5Ccm5lf5Ct-A7q25bb5DdUaVk_NypwgwGs,1399
|
|
1019
1063
|
wbcore/pandas/fields.py,sha256=b14B1eM0XpIL_PB1NIT7ffHP-PvhgE7whdph9AeyHzI,504
|
|
@@ -1023,19 +1067,19 @@ wbcore/pandas/views.py,sha256=3R8WqcUc2RYF8FQPUw-L_tHId4Di7tvna012PjUxWlI,309
|
|
|
1023
1067
|
wbcore/permissions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1024
1068
|
wbcore/permissions/backend.py,sha256=pLK_Hpk_2O4pMXEnUkw_dDYG2Jagm4vK0ER9eZt80MY,1368
|
|
1025
1069
|
wbcore/permissions/mixins.py,sha256=LfuFM-RcB83_-ChFPvwsoL5SbY4in7gEgaqDQ2LRyTQ,1795
|
|
1026
|
-
wbcore/permissions/permissions.py,sha256=
|
|
1070
|
+
wbcore/permissions/permissions.py,sha256=cIj7NWhG5ws_4JHYOLYmlxQt72ygq_eAPBNWMG-wkgU,1801
|
|
1027
1071
|
wbcore/permissions/registry.py,sha256=gC9YPjinpi_B3o-qFzBy4mAmavZWLfZF2aToqT6yD74,1100
|
|
1028
1072
|
wbcore/permissions/shortcuts.py,sha256=xCtU-CCfW3bCHQG5H94SxrHDLm6TStsDpqKu7nDv188,1137
|
|
1029
|
-
wbcore/permissions/utils.py,sha256=
|
|
1073
|
+
wbcore/permissions/utils.py,sha256=Bn7Gj4kabzEwCdz-lnqtJlH-1Zy1MRJdDdBPXKszmdQ,935
|
|
1030
1074
|
wbcore/release_notes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1031
1075
|
wbcore/release_notes/admin.py,sha256=R9oLaJpFcyHqZk3R5sdajrcYSbbtFjXuvIqsZUaCVo8,728
|
|
1032
1076
|
wbcore/release_notes/buttons.py,sha256=QIQVvFp_Q-PkeWOEZvV5HqzEZBe7RDIUQc6j-B9MNi8,1132
|
|
1033
|
-
wbcore/release_notes/display.py,sha256=
|
|
1077
|
+
wbcore/release_notes/display.py,sha256=uVglBRoud_cI9-mUDgmMW2h5byCfpYEzdcLRldH1_sQ,1847
|
|
1034
1078
|
wbcore/release_notes/filters.py,sha256=hGK4flrB1RWi3ALM-YGqgeJ0sxxtbG30IDu_SzN_bfo,1048
|
|
1035
1079
|
wbcore/release_notes/models.py,sha256=BMjH0PIw9XIfJwERKE41PH8U780o5h5ybrIwrbVwbiQ,2840
|
|
1036
|
-
wbcore/release_notes/serializers.py,sha256=
|
|
1080
|
+
wbcore/release_notes/serializers.py,sha256=n-tDEXnJVItVr7VvL2YN8fss7H7OUm_ZTHPUEhjt51w,380
|
|
1037
1081
|
wbcore/release_notes/utils.py,sha256=cV0TGFHBXIa7hsiJveKywuONM4z6w3jlTy9LaXvIvRE,440
|
|
1038
|
-
wbcore/release_notes/viewsets.py,sha256=
|
|
1082
|
+
wbcore/release_notes/viewsets.py,sha256=Bp_cBak2fXnf1xKO788FVZgFwXd6gM3ex7VIqAAFQFo,2016
|
|
1039
1083
|
wbcore/reversion/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1040
1084
|
wbcore/reversion/filters.py,sha256=nJg0Zcpu80DxioacHGw-YKurRN8T4KdI0imrzwsSLSU,1225
|
|
1041
1085
|
wbcore/reversion/serializers.py,sha256=Nxchb-c3EetQnF-b58Kt8W8bVw5XqKkNyK-XtYrAp8U,2860
|
|
@@ -1043,40 +1087,41 @@ wbcore/reversion/viewsets/__init__.py,sha256=PQCgQSj30tGGcuO-BhpJu9BqyZwImsBVJYO
|
|
|
1043
1087
|
wbcore/reversion/viewsets/buttons.py,sha256=nXTiNOow6m7aFUlOjpclC5MJ6FbDHi20jDoyqENm090,4125
|
|
1044
1088
|
wbcore/reversion/viewsets/displays.py,sha256=l_U6wHsLKfe4yf9merlSVEpuMj_GtEze0lXCh6Z0AEg,1677
|
|
1045
1089
|
wbcore/reversion/viewsets/endpoints.py,sha256=9ebukzZ2Q_0PL1hORDGQXzq2x2G9ziSHACbLpAbS6ow,906
|
|
1046
|
-
wbcore/reversion/viewsets/titles.py,sha256=
|
|
1090
|
+
wbcore/reversion/viewsets/titles.py,sha256=lQ2wwStEVg3LyF0NDy_-mTN3RYYe-eCs_31E25wh4zs,792
|
|
1047
1091
|
wbcore/reversion/viewsets/viewsets.py,sha256=OlDYkqLBD8-eyb07eXVG69BzBanjhj_E_kI3nXXGe00,4183
|
|
1048
1092
|
wbcore/search/__init__.py,sha256=1V_2yxfShXBHdZLQZkFGqn5SrRpUBZCpaEyF1skLLO4,1496
|
|
1049
|
-
wbcore/serializers/__init__.py,sha256=
|
|
1093
|
+
wbcore/serializers/__init__.py,sha256=82xurxoF-BXAo7RN_iSQM0xHZRAh5ldHsY-V2chty3c,1480
|
|
1050
1094
|
wbcore/serializers/mixins.py,sha256=5oOTK82mP7d5fMqr8hMcq-pnh3MQ_HwmX6qpUrEQNYI,755
|
|
1051
|
-
wbcore/serializers/serializers.py,sha256=
|
|
1095
|
+
wbcore/serializers/serializers.py,sha256=5o2w91TacoyTWi0MHpbezVRfUP5u2re_1k88BtHtH-4,19042
|
|
1052
1096
|
wbcore/serializers/utils.py,sha256=H_faApLg6bNiZvZNvApZhmVBJ07obw1u5QKZx7DLLa8,4251
|
|
1053
|
-
wbcore/serializers/fields/__init__.py,sha256=
|
|
1054
|
-
wbcore/serializers/fields/boolean.py,sha256=
|
|
1055
|
-
wbcore/serializers/fields/choice.py,sha256=
|
|
1056
|
-
wbcore/serializers/fields/datetime.py,sha256=
|
|
1057
|
-
wbcore/serializers/fields/fields.py,sha256=
|
|
1097
|
+
wbcore/serializers/fields/__init__.py,sha256=xNNak0yl8FtC6m-__B5mfieSNGAygXND34E_HrJ2Fcw,1498
|
|
1098
|
+
wbcore/serializers/fields/boolean.py,sha256=vwP7HQflArFEG0w9FfXkPYKreFJ5qMjs-L0qKMeKCVQ,1682
|
|
1099
|
+
wbcore/serializers/fields/choice.py,sha256=ozVwKaPCpsgPuQXQWr8TxHIcxSdGvhw23OFVD0xnipg,2128
|
|
1100
|
+
wbcore/serializers/fields/datetime.py,sha256=UVrBAdh-Iy3cDdVxbce9rsPYwwfxDJ-kJEr_1K_29ec,7386
|
|
1101
|
+
wbcore/serializers/fields/fields.py,sha256=nRvVGqjaqgDThKKuMptrM5_IOKNi_hkGuL5rP2cr4Uw,7005
|
|
1058
1102
|
wbcore/serializers/fields/file.py,sha256=tDDK2bITiP7zxl9Ilzja2_gWae_lf9CkO1rDEBPaj6g,568
|
|
1059
|
-
wbcore/serializers/fields/fsm.py,sha256=
|
|
1103
|
+
wbcore/serializers/fields/fsm.py,sha256=xUYxDj166PDnmDLggI4fShXdSunJVzbc8quFQioM3Yc,700
|
|
1060
1104
|
wbcore/serializers/fields/json.py,sha256=8SmEOW2hXnTTfuCztaxA8AA3qtTxhCZtft7BJm1yO6o,2225
|
|
1061
|
-
wbcore/serializers/fields/list.py,sha256=
|
|
1062
|
-
wbcore/serializers/fields/mixins.py,sha256=
|
|
1063
|
-
wbcore/serializers/fields/number.py,sha256=
|
|
1064
|
-
wbcore/serializers/fields/other.py,sha256=
|
|
1105
|
+
wbcore/serializers/fields/list.py,sha256=cYmMBg9M10Qb_5z98CeP3SjE2bV-u7Z0xkzXr-C3xoA,4178
|
|
1106
|
+
wbcore/serializers/fields/mixins.py,sha256=sP1mEiD5tMZ4yCr-X0IkIY3RZwJcT0JokvontvRsDKw,7613
|
|
1107
|
+
wbcore/serializers/fields/number.py,sha256=Lxhiy8KBMA8dzv2nKsHVtAaPgjZMNt0TQTgVujh_2BI,3473
|
|
1108
|
+
wbcore/serializers/fields/other.py,sha256=3r_70JH_A_daS99LuwQWwa0LNtyosKW7QKJzZgQA-zo,1131
|
|
1065
1109
|
wbcore/serializers/fields/primary_key.py,sha256=yTbs5B2QlUX-XKEtop3JpwIPeP-FhM8u-2qDXM5q6u0,676
|
|
1066
|
-
wbcore/serializers/fields/related.py,sha256=
|
|
1067
|
-
wbcore/serializers/fields/text.py,sha256=
|
|
1068
|
-
wbcore/serializers/fields/types.py,sha256=
|
|
1110
|
+
wbcore/serializers/fields/related.py,sha256=mq7QhcjSG273G400ZueYJnNVNDlGgnUHLoAHaKRjW_Q,6355
|
|
1111
|
+
wbcore/serializers/fields/text.py,sha256=8cmRiH1RpCDGzuUmO1zMmm8uiybXDMqyuBkjFblNMmQ,5060
|
|
1112
|
+
wbcore/serializers/fields/types.py,sha256=eiSOajWwlZjFfXnMGjIakAa7WGzXHjtRQwT0LH-2_oA,983
|
|
1069
1113
|
wbcore/shares/__init__.py,sha256=uhHkbgHoFgbcsxHUPxNNzNs11oIjjQ7zIxG8FzsREAI,32
|
|
1070
1114
|
wbcore/shares/config.py,sha256=7-Tfit2PFUVpr9qbapcmtZbjeMiUHSyfYX6PKGwnj_w,2292
|
|
1071
1115
|
wbcore/shares/decorator.py,sha256=vFoVidO2IxLzYPZ-qWDWjjPxbCzFAvw4FVl2YZfPPAQ,448
|
|
1072
1116
|
wbcore/shares/signals.py,sha256=qmwcA6DozbdbuaZfepqTrTrijIxMmyOvOdYWLQfJygQ,69
|
|
1073
1117
|
wbcore/shares/sites.py,sha256=66gBs0KuJnyOPLi9jVTREpPOgeNTqxSLrlYm-kTvsj4,903
|
|
1074
1118
|
wbcore/shares/views.py,sha256=OCn7UnUHPtCw3X2cuUenzKG1oP_xybB5NriX2cCBpzU,925
|
|
1075
|
-
wbcore/signals/__init__.py,sha256=
|
|
1119
|
+
wbcore/signals/__init__.py,sha256=Q2kgL2dFk4z00Awdvlmi5D2ZxR5r1vAtLExKPOJ6bsA,381
|
|
1120
|
+
wbcore/signals/clone.py,sha256=n3fzToDDhac3udXl6GHbJJ1d8WbybH1Dd3p7qiMbK78,172
|
|
1076
1121
|
wbcore/signals/filters.py,sha256=I5_dBadn-oMb2vwgHRjNrFe1o2GChiz7_SaNvj7YBw8,59
|
|
1077
1122
|
wbcore/signals/instance_buttons.py,sha256=-ybJX9YYpSC4HjqdGwWpAAumqSb8FxikjDyTa0i2smc,141
|
|
1078
1123
|
wbcore/signals/merge.py,sha256=CpGvmqNjtuVjG_vN-NQs3j28j-FL1ZfqEJOv9GgLslY,171
|
|
1079
|
-
wbcore/signals/models.py,sha256=
|
|
1124
|
+
wbcore/signals/models.py,sha256=WH_WYexPNg5HHabXGxEAyCjVQ4arnqNk0ZXdOM9rT48,420
|
|
1080
1125
|
wbcore/signals/permissions.py,sha256=H3jAeAmRcHJDPzKUnReITnk0vUEfG1LHiPoB-ygu3R8,71
|
|
1081
1126
|
wbcore/signals/serializers.py,sha256=0ciF0DZTQYnkqZx8G1Yl3aM0JoWUpGRnmr93jqVlVeQ,286
|
|
1082
1127
|
wbcore/templates/forms.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -1088,52 +1133,52 @@ wbcore/templates/notifications/email_template.html,sha256=k-o9ieU6z6c0SKAw43_iLE
|
|
|
1088
1133
|
wbcore/templates/reversion/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1089
1134
|
wbcore/templates/reversion/compare_detail.html,sha256=1bg0o6ycoCvlw630T1dH3LXJifXx1YndLcm_eJQvbIs,520
|
|
1090
1135
|
wbcore/templates/wbcore/dynamic_color_array.html,sha256=GMsZFd0mBQwoZmRe1n_QY2KU3KfjLLnn3aeU_gOkOBw,1510
|
|
1091
|
-
wbcore/templates/wbcore/email_base_template.html,sha256=
|
|
1136
|
+
wbcore/templates/wbcore/email_base_template.html,sha256=whEAuMa1wvXFEefb2gAwGzUAV2AJ86sjm3uvZQ5GgoE,13290
|
|
1092
1137
|
wbcore/templates/wbcore/email_notification_template.html,sha256=_4gNUJ8UU0AqXGLLNk8zH68n_CXZ3mNYYaMSG16kxw4,127
|
|
1093
1138
|
wbcore/templates/wbcore/frontend.html,sha256=ZNm9NgvXwxzs10px95I2GyBhORpw9-adF1AluQJskLE,1912
|
|
1094
1139
|
wbcore/templates/wbcore/admin/change_list.html,sha256=R4D2DiiESjopzwvUTThpsGqX1ikYA92D1fPbER-M74Q,188
|
|
1095
1140
|
wbcore/templates/wbcore/admin/csv_form.html,sha256=g8w6oXAyvwOL7ckNmR_wch-vxnh-JLXFOa3cUkDnGSA,337
|
|
1096
1141
|
wbcore/test/__init__.py,sha256=gxYHDwZugGf-eRh7sG5z7247y5uvyDIHmsm4J0ajBis,713
|
|
1097
|
-
wbcore/test/mixins.py,sha256=
|
|
1142
|
+
wbcore/test/mixins.py,sha256=rtjhQCh-u4eGoEC-XTfjsmy1CwiQ1Q4dSs0EpZBz7Q0,32375
|
|
1098
1143
|
wbcore/test/signals.py,sha256=UX7n9zsak30feE1GLXkwAhLEbmRnllNPu17D1top6YI,174
|
|
1099
|
-
wbcore/test/tests.py,sha256=
|
|
1100
|
-
wbcore/test/utils.py,sha256
|
|
1101
|
-
wbcore/test/e2e_helpers_methods/e2e_checks.py,sha256=
|
|
1102
|
-
wbcore/test/e2e_helpers_methods/e2e_helper_methods.py,sha256=
|
|
1144
|
+
wbcore/test/tests.py,sha256=NqD0cXhEabjPH52I7nBPijEu5cXTwn0duBckvG18rlI,4485
|
|
1145
|
+
wbcore/test/utils.py,sha256=-PNuj4UjeoX2FdRCPObedTQAgUDsmiO672BCwIZtKwE,8406
|
|
1146
|
+
wbcore/test/e2e_helpers_methods/e2e_checks.py,sha256=teyYS5OQGSy2r7VvhfxkaskPOrQ_jLBNPN64CRUKmzQ,4266
|
|
1147
|
+
wbcore/test/e2e_helpers_methods/e2e_helper_methods.py,sha256=Uo61TfEwYOP_u9N84gz-asZ4VwK80cWhdlnhJpnw8U8,17654
|
|
1103
1148
|
wbcore/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1104
1149
|
wbcore/tests/conftest.py,sha256=XWVhrLuyY80o_-qMx4HQu0-k2h-GKw-xXnNMyUIcbjQ,1425
|
|
1105
1150
|
wbcore/tests/models.py,sha256=QYJRhVMJZ6nENYuO-ktieiKvw3clxy57n3Is5h0tcmg,207
|
|
1106
|
-
wbcore/tests/test_configs.py,sha256=
|
|
1107
|
-
wbcore/tests/test_enums.py,sha256=
|
|
1108
|
-
wbcore/tests/test_list_display.py,sha256=
|
|
1151
|
+
wbcore/tests/test_configs.py,sha256=TQ1ZKC5ia9uRpg1ZsPxzrVP_QAMXWBJDSkKxbqtqEWM,1921
|
|
1152
|
+
wbcore/tests/test_enums.py,sha256=KwnEznR6PdWN9AHFMY1qx0krOqAoT7QZF8x-BPsOanM,1741
|
|
1153
|
+
wbcore/tests/test_list_display.py,sha256=9zX8grPa0lie65vxDAzJUBTjwVIep2mItbu0voSwhHs,721
|
|
1109
1154
|
wbcore/tests/test_pagination.py,sha256=JRdmhLNrBkg_r7Cg1tug-jxjt0hJg4k8m-xcjpsyKMY,1078
|
|
1110
1155
|
wbcore/tests/test_something.py,sha256=wGORRE9Bin1SBkXeOudDJ11plBX2SlzIPWEmS7Nc7GI,1331
|
|
1111
1156
|
wbcore/tests/test_viewsets.py,sha256=bOAOPIDZsV4O70d5bGde_DhC5-S4i_WyoB4JdqhrTyU,830
|
|
1112
1157
|
wbcore/tests/e2e/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1113
|
-
wbcore/tests/e2e/test_e2e.py,sha256=
|
|
1158
|
+
wbcore/tests/e2e/test_e2e.py,sha256=VtXsvubhYn1CxhlFVflBa4-UcHKiSj3kiVrbeT-rAeo,1069
|
|
1114
1159
|
wbcore/tests/test_cache/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1115
|
-
wbcore/tests/test_cache/test_decorators.py,sha256=
|
|
1160
|
+
wbcore/tests/test_cache/test_decorators.py,sha256=FfQh1L9KbbQ0_49KcXF7KUUrJhbd9u-7hkTLS6CQzA4,1065
|
|
1116
1161
|
wbcore/tests/test_cache/test_mixins.py,sha256=aAp_uCpgDVbemzL5WthcfkuaqLSeVPeLzMhdf2jy_1c,893
|
|
1117
1162
|
wbcore/tests/test_cache/test_registry.py,sha256=XaEWHT2AWcmRJsBj5zWJvdjDEwdcxXeBcox_lrNwdKE,2018
|
|
1118
1163
|
wbcore/tests/test_fields/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1119
1164
|
wbcore/tests/test_fields/test_boolean_fields.py,sha256=2k5r2kw6TtHk53xEiOfERq0GnpNfovk4DHBMiHw10V0,1416
|
|
1120
|
-
wbcore/tests/test_fields/test_choice_fields.py,sha256
|
|
1165
|
+
wbcore/tests/test_fields/test_choice_fields.py,sha256=N9ell0A7s3eSBp-Ohn37pSySSePTtJmzObcbu79Lw98,2019
|
|
1121
1166
|
wbcore/tests/test_fields/test_datetime_fields.py,sha256=1i-bzOl1J-d8iRt2nSnTKSf9c4skZjhvHAj9NmR3Csk,5264
|
|
1122
1167
|
wbcore/tests/test_fields/test_fields.py,sha256=18xq3VZpkjgJA1uodGCMbHH-gtBV9tCnWq-qQqRlwoc,696
|
|
1123
1168
|
wbcore/tests/test_fields/test_file_fields.py,sha256=WD3EYI8cNPis62n0StHT-wFHn_BE0dnEqu0wX2hPskw,1451
|
|
1124
1169
|
wbcore/tests/test_fields/test_json_fields.py,sha256=oq10g8N3jxqLCebTL9TiTrOd1jMo8M2pI-NIWIHbfIE,883
|
|
1125
1170
|
wbcore/tests/test_fields/test_list_fields.py,sha256=3-oDtZC-VAS_tJykxPPxfnv6sgOEunF2axzrCYrThRI,766
|
|
1126
1171
|
wbcore/tests/test_fields/test_mixins.py,sha256=X0p2NEfJNrsLUbUFPI_Lf92-2lvUcvQTtPqS9OQTzZo,3818
|
|
1127
|
-
wbcore/tests/test_fields/test_number_fields.py,sha256=
|
|
1128
|
-
wbcore/tests/test_fields/test_other_fields.py,sha256=
|
|
1172
|
+
wbcore/tests/test_fields/test_number_fields.py,sha256=Fd5Oqn26dvs1ak3-GvU5cdze8tX3cx0LpVwQKEYcisM,5351
|
|
1173
|
+
wbcore/tests/test_fields/test_other_fields.py,sha256=7gkCW9KtyrxGPAJnRFa6f1N3EREobY79AU8UF9b2Gt4,1775
|
|
1129
1174
|
wbcore/tests/test_fields/test_primary_key_fields.py,sha256=I-PwBK1RO4kHVbLu45IOHX8PiRBnC4dEOl5VlEpe2AI,1509
|
|
1130
1175
|
wbcore/tests/test_fields/test_related.py,sha256=l-iin7Je_CUdzSjEn6qvBA-_fmpbyke93iEz_9KIZs0,2854
|
|
1131
1176
|
wbcore/tests/test_fields/test_text_fields.py,sha256=Qs1FO5NFkUJ15FVPFzNqZqwX2aTqMSKND7ie1mIPK1I,3749
|
|
1132
1177
|
wbcore/tests/test_filters/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1133
|
-
wbcore/tests/test_filters/test_mixins.py,sha256=
|
|
1178
|
+
wbcore/tests/test_filters/test_mixins.py,sha256=6BSuIOhrTwYGNlfq1cz97fJVTMUnnXMHfQPHnMdR61c,4770
|
|
1134
1179
|
wbcore/tests/test_models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1135
1180
|
wbcore/tests/test_models/test_fields.py,sha256=RtBUBYJ-QCQZi7wOKJ056pHzMXptu43_1yr7ASfyqoo,628
|
|
1136
|
-
wbcore/tests/test_models/test_mixins.py,sha256=
|
|
1181
|
+
wbcore/tests/test_models/test_mixins.py,sha256=O56Fj3P-AN46QPJ2zv_fLgZhmrCsbrWDBORZ7NFARtw,725
|
|
1137
1182
|
wbcore/tests/test_new_display/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1138
1183
|
wbcore/tests/test_new_display/test_inlines.py,sha256=dXyRgqOx7OelAWcdY1vrD8R8fGlNUdzwb3F7ZKjbcw0,437
|
|
1139
1184
|
wbcore/tests/test_new_display/test_layouts.py,sha256=73AKzMPBbSWt3nOc9XVuYNukfNtoulFVWgwuYZyraUk,435
|
|
@@ -1148,42 +1193,43 @@ wbcore/tests/test_serializers/test_fields.py,sha256=YATLhLZTWP6TpY57N-Gu0_EAzFV7
|
|
|
1148
1193
|
wbcore/tests/test_serializers/test_mixins.py,sha256=ItuhLcuEi6qgbeg55Yn0u8hRibUs_uXEOXZty7f1Jpg,1553
|
|
1149
1194
|
wbcore/tests/test_serializers/test_related.py,sha256=0CZIdnKjJ_VdxmfCH9Fw1EM1BBrryGrb1DEMsTJjwrs,3428
|
|
1150
1195
|
wbcore/tests/test_utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1151
|
-
wbcore/tests/test_utils/test_date.py,sha256=
|
|
1152
|
-
wbcore/tests/test_utils/test_date_builder.py,sha256=
|
|
1153
|
-
wbcore/tests/test_utils/test_primary.py,sha256=
|
|
1196
|
+
wbcore/tests/test_utils/test_date.py,sha256=UsXm1kt-YtpaYwt2psjycY3V3NxVsuSf9mKIftfmcjQ,1734
|
|
1197
|
+
wbcore/tests/test_utils/test_date_builder.py,sha256=M4hmE0MlGDnP8d0u_yEQB1iAFNnc4TK-xG-Jg-JnaXg,3157
|
|
1198
|
+
wbcore/tests/test_utils/test_primary.py,sha256=a6FF5V3CFZmsD1fxEZFONTW9Z3oBzJSRDJ9DrxXCQZ0,3561
|
|
1154
1199
|
wbcore/tests/test_utils/test_signals.py,sha256=W9d3YBF5DqbH3AwNa1_3RVq0HuLB5oI2fIp6Fj0eaYQ,1339
|
|
1155
1200
|
wbcore/utils/__init__.py,sha256=CpWxRXxxPpu3MU7TNEGqfAFpdYUpjw2FTo0lKjWUE1c,325
|
|
1156
1201
|
wbcore/utils/cache.py,sha256=3p2sA7UNSO08TmLLrSB-rIUgJ_FkGPj2TdCG-M1OMAc,279
|
|
1157
|
-
wbcore/utils/date.py,sha256=
|
|
1202
|
+
wbcore/utils/date.py,sha256=tSNatnQ3CBNvyPjt5sZHctLtY0cOy4OHD4NOqInLdXE,7905
|
|
1158
1203
|
wbcore/utils/deprecations.py,sha256=ju1h3-icVlJnItZkugdOdeX4sY3QJIeFxXxAo9TG_rM,269
|
|
1159
1204
|
wbcore/utils/enum.py,sha256=eTTMt03iCMaNEoB5xsq5IGxkCi8X3xfIRjJNI0ygzWs,533
|
|
1160
|
-
wbcore/utils/figures.py,sha256=
|
|
1205
|
+
wbcore/utils/figures.py,sha256=PgORGOByqq3kSTTwSoRgoSOirqwz57qu6rQs57w5AMc,9223
|
|
1161
1206
|
wbcore/utils/html.py,sha256=Ir_bX4l3EgaWf7bv3ymlt836ekoCVDHedMMu8TzXyj4,157
|
|
1162
1207
|
wbcore/utils/importlib.py,sha256=6_-m6YuGdg-iKQU_MU1yCDS0_nhOTAG6UNIQYeAYTiI,461
|
|
1163
1208
|
wbcore/utils/itertools.py,sha256=tgmDS9FMzq3oy5PzAMcBreNAN8EjpoC6waRt738dcW8,1410
|
|
1164
|
-
wbcore/utils/models.py,sha256=
|
|
1209
|
+
wbcore/utils/models.py,sha256=fCYU6OUuWzBA0JzTtkTZr9jw-XPNQZaCDxAh6tBdJ_g,9490
|
|
1165
1210
|
wbcore/utils/numbers.py,sha256=KaC2yNmaVMwe05uRvGvC_ayWJW_1dOgjswlqsB-QeoM,2289
|
|
1166
1211
|
wbcore/utils/prettytable.py,sha256=RnZ9VZpSZBaOVPyvcbdD17PeKp6pNN57PDfyILy1nlg,877
|
|
1167
1212
|
wbcore/utils/print.py,sha256=_CBbuAf2ZbjXQBedcvhe6jZAfNq2kjC_ImWlWDbeRCc,725
|
|
1168
1213
|
wbcore/utils/renderers.py,sha256=2q1ATrmzFFe03ofuKn2WZ3hK53aFwyEwCVbK0YxkdDM,520
|
|
1169
|
-
wbcore/utils/
|
|
1214
|
+
wbcore/utils/reportlab.py,sha256=gAvcZqpsx0-M9DxW_GvnXQbPFilmf18tQKhK3DqU-9Q,309
|
|
1215
|
+
wbcore/utils/rrules.py,sha256=oqg1eY_X7CLN--UkTjPsKuF_FrtKi1no9-ITvYerrXM,2743
|
|
1170
1216
|
wbcore/utils/serializers.py,sha256=fn__UYJolYjg063OHmAt7zC9zxMxsqrVERpGhLzUK3o,418
|
|
1171
1217
|
wbcore/utils/settings.py,sha256=MCt48ZJO9nOzGPAFYJ-_o0uRCDUt3_yzEek6m4oZTYg,198
|
|
1172
1218
|
wbcore/utils/signals.py,sha256=sNDbYKcjTsACpod50dB_TgYC-f37aN0N_M_DMJgTiMA,1132
|
|
1173
|
-
wbcore/utils/string_loader.py,sha256=
|
|
1174
|
-
wbcore/utils/strings.py,sha256=
|
|
1219
|
+
wbcore/utils/string_loader.py,sha256=AWmn40nM8A1cxoVwpO2lF6YidEfL3JC1du2cank4Dw4,1169
|
|
1220
|
+
wbcore/utils/strings.py,sha256=DvMm2vrEjfxH6Hjf7XvRSo-3eAnLf4oLzxki8xonmNs,1856
|
|
1175
1221
|
wbcore/utils/task.py,sha256=HlPyALx78lSprsY_ICeI-SrXTPBmRpx8nyVIIrRtKb4,84
|
|
1176
1222
|
wbcore/utils/urls.py,sha256=BjmavE84QYECWDKyV3dENn8GQqwdBmX6MqXyCjmwmbA,2137
|
|
1177
|
-
wbcore/utils/views.py,sha256=
|
|
1223
|
+
wbcore/utils/views.py,sha256=XnWQqMjAi6dXTF-ZYF9FHU1a7cDpAymcuZRt8g_cEqI,8541
|
|
1178
1224
|
wbcore/utils/date_builder/__init__.py,sha256=4rS8hqGqTTL7ztIJ-J-EMigGC_HTkHD65LT5FQ67yjo,337
|
|
1179
1225
|
wbcore/utils/date_builder/components.py,sha256=Jyq-P6LC35T24-5zdRDOrf9QSBrTmH73iEbqYOPFTkM,1152
|
|
1180
1226
|
wbcore/utils/date_builder/offsets.py,sha256=IsnoxPd3l7xh5IOEH3e6kSoqX8aqiVNSDr2ZiOmhpYc,626
|
|
1181
1227
|
wbcore/viewsets/__init__.py,sha256=UEIbKOGEpNW6M1EoNYalgctq_zeU3alEtnlfVSiFit4,263
|
|
1182
1228
|
wbcore/viewsets/encoders.py,sha256=JEAH_iEXYbNaaeQ3ZH73XJsYnL2FrUWaE8dxmE3gjTk,551
|
|
1183
1229
|
wbcore/viewsets/generics.py,sha256=lKDq9UY_Tyc56u1bqaIEvHGgoaXwXxpZ1c3fLVteptI,134
|
|
1184
|
-
wbcore/viewsets/mixins.py,sha256=
|
|
1230
|
+
wbcore/viewsets/mixins.py,sha256=IdHd_uixOv3ExKoHxTgL5Bt8OELIwfYwhBZm0nsvZfc,12054
|
|
1185
1231
|
wbcore/viewsets/utils.py,sha256=4520Ij3ASM8lOa8QZkCqbBfOexVRiZu688eW-PGqMOA,882
|
|
1186
1232
|
wbcore/viewsets/viewsets.py,sha256=FPPESunEjlunDr5VFsjTfsquTS3iDSQkw0H6QjMKPqk,6574
|
|
1187
|
-
wbcore-1.
|
|
1188
|
-
wbcore-1.
|
|
1189
|
-
wbcore-1.
|
|
1233
|
+
wbcore-1.58.2.dist-info/METADATA,sha256=55SHGonapoL91aKV0bahOOjadcPCIg4vaL7gtXAzPwI,2332
|
|
1234
|
+
wbcore-1.58.2.dist-info/WHEEL,sha256=tkmg4JIqwd9H8mL30xA7crRmoStyCtGp0VWshokd1Jc,105
|
|
1235
|
+
wbcore-1.58.2.dist-info/RECORD,,
|