wbcore 2.2.1__py2.py3-none-any.whl → 2.2.4__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/contrib/agenda/locale/de/LC_MESSAGES/django.po +113 -0
- wbcore/contrib/agenda/static/agenda/markdown/documentation/building.md +11 -0
- wbcore/contrib/agenda/static/agenda/markdown/documentation/conferenceroom.md +20 -0
- wbcore/contrib/authentication/fixtures/authentication.json +62 -0
- wbcore/contrib/authentication/locale/de/LC_MESSAGES/django.po +610 -0
- wbcore/contrib/authentication/templates/activate_confirm.html +12 -0
- wbcore/contrib/authentication/templates/base.html +135 -0
- wbcore/contrib/authentication/templates/email_base_template.html +335 -0
- wbcore/contrib/authentication/templates/password_reset_done.html +13 -0
- wbcore/contrib/authentication/templates/password_reset_email.html +11 -0
- wbcore/contrib/authentication/templates/password_reset_email_html.html +43 -0
- wbcore/contrib/authentication/templates/password_reset_form.html +23 -0
- wbcore/contrib/authentication/templates/password_reset_sent.html +11 -0
- wbcore/contrib/authentication/templates/reset_password.html +15 -0
- wbcore/contrib/authentication/templates/user_registration_email.html +37 -0
- wbcore/contrib/color/admin.py +28 -0
- wbcore/contrib/color/apps.py +5 -0
- wbcore/contrib/color/enums.py +17 -0
- wbcore/contrib/color/factories.py +10 -0
- wbcore/contrib/color/fields.py +29 -0
- wbcore/contrib/color/forms.py +13 -0
- wbcore/contrib/color/models.py +62 -0
- wbcore/contrib/color/tests/conftest.py +10 -0
- wbcore/contrib/color/tests/test_color_models.py +61 -0
- wbcore/contrib/color/tests/test_fields.py +25 -0
- wbcore/contrib/currency/fixtures/currency.yaml +1014 -0
- wbcore/contrib/currency/fixtures/currency_fx_rate.yaml +73585 -0
- wbcore/contrib/directory/fixtures/directory.json +3924 -0
- wbcore/contrib/directory/locale/de/LC_MESSAGES/django.po +1686 -0
- wbcore/contrib/directory/static/directory/markdown/documentation/address.md +38 -0
- wbcore/contrib/directory/static/directory/markdown/documentation/banking.md +54 -0
- wbcore/contrib/directory/static/directory/markdown/documentation/bankingentry.md +38 -0
- wbcore/contrib/directory/static/directory/markdown/documentation/clientmanagerrelationship.md +42 -0
- wbcore/contrib/directory/static/directory/markdown/documentation/company.md +52 -0
- wbcore/contrib/directory/static/directory/markdown/documentation/companytype.md +2 -0
- wbcore/contrib/directory/static/directory/markdown/documentation/customerstatus.md +2 -0
- wbcore/contrib/directory/static/directory/markdown/documentation/email.md +20 -0
- wbcore/contrib/directory/static/directory/markdown/documentation/employeecompany.md +34 -0
- wbcore/contrib/directory/static/directory/markdown/documentation/employerperson.md +43 -0
- wbcore/contrib/directory/static/directory/markdown/documentation/person.md +61 -0
- wbcore/contrib/directory/static/directory/markdown/documentation/position.md +2 -0
- wbcore/contrib/directory/static/directory/markdown/documentation/relationshiptype.md +2 -0
- wbcore/contrib/directory/static/directory/markdown/documentation/socialmedia.md +23 -0
- wbcore/contrib/directory/static/directory/markdown/documentation/specialization.md +2 -0
- wbcore/contrib/directory/static/directory/markdown/documentation/systememployee.md +31 -0
- wbcore/contrib/directory/static/directory/markdown/documentation/telephone.md +23 -0
- wbcore/contrib/directory/static/directory/markdown/documentation/telephonesearch.md +26 -0
- wbcore/contrib/directory/static/directory/markdown/documentation/userisclient.md +14 -0
- wbcore/contrib/directory/static/directory/markdown/documentation/userismanager.md +28 -0
- wbcore/contrib/directory/static/directory/markdown/documentation/website.md +20 -0
- wbcore/contrib/documents/fixtures/docments.json +135 -0
- wbcore/contrib/documents/locale/de/LC_MESSAGES/django.po +272 -0
- wbcore/contrib/documents/static/documents/markdown/documentation/document_types.md +21 -0
- wbcore/contrib/documents/static/documents/markdown/documentation/documents.md +18 -0
- wbcore/contrib/documents/static/documents/markdown/documentation/shareablelink.md +28 -0
- wbcore/contrib/documents/static/documents/markdown/documentation/shareablelinkaccess.md +20 -0
- wbcore/contrib/documents/tests/conftest.py +30 -0
- wbcore/contrib/documents/tests/test_models.py +144 -0
- wbcore/contrib/example_app/fixtures/example_app.json +7425 -0
- wbcore/contrib/example_app/tests/test_models/test_event.py +87 -0
- wbcore/contrib/example_app/tests/test_models/test_match.py +210 -0
- wbcore/contrib/example_app/tests/test_models/test_others.py +159 -0
- wbcore/contrib/example_app/tests/test_serializers/test_league_serializer.py +34 -0
- wbcore/contrib/example_app/tests/test_serializers/test_match_serializer.py +134 -0
- wbcore/contrib/example_app/tests/test_serializers/test_role_serializer.py +13 -0
- wbcore/contrib/example_app/tests/test_serializers/test_sport_serializer.py +14 -0
- wbcore/contrib/example_app/tests/test_serializers/test_stadium_serializer.py +14 -0
- wbcore/contrib/example_app/tests/test_serializers/test_team_result_serializer.py +30 -0
- wbcore/contrib/example_app/tests/test_serializers/test_team_serializer.py +70 -0
- wbcore/contrib/example_app/tests/test_viewsets/test_event_viewset.py +162 -0
- wbcore/contrib/example_app/tests/test_viewsets/test_league_viewset.py +84 -0
- wbcore/contrib/example_app/tests/test_viewsets/test_match_viewset.py +65 -0
- wbcore/contrib/example_app/tests/test_viewsets/test_person_viewset.py +166 -0
- wbcore/contrib/example_app/tests/test_viewsets/test_role_viewset.py +75 -0
- wbcore/contrib/example_app/tests/test_viewsets/test_sport_viewset.py +75 -0
- wbcore/contrib/example_app/tests/test_viewsets/test_stadium_viewset.py +75 -0
- wbcore/contrib/example_app/tests/test_viewsets/test_team_viewset.py +92 -0
- wbcore/contrib/example_app/tests/test_viewsets/test_teamresult_viewset.py +58 -0
- wbcore/contrib/example_app/tests/test_viewsets/test_utils_viewsets.py +124 -0
- wbcore/contrib/geography/fixtures/geography.json +13454 -0
- wbcore/contrib/geography/static/geography/markdown/documentation/geography.md +16 -0
- wbcore/contrib/guardian/apps.py +6 -0
- wbcore/contrib/guardian/configurations.py +3 -0
- wbcore/contrib/guardian/filters.py +21 -0
- wbcore/contrib/guardian/tasks.py +10 -0
- wbcore/contrib/guardian/urls.py +12 -0
- wbcore/contrib/guardian/utils.py +124 -0
- wbcore/contrib/io/fixtures/io.json +145 -0
- wbcore/contrib/io/locale/de/LC_MESSAGES/django.po +52 -0
- wbcore/contrib/notifications/locale/de/LC_MESSAGES/django.po +60 -0
- wbcore/contrib/notifications/static/notifications/service-worker.js +1 -0
- wbcore/contrib/notifications/templates/notifications/notification_template.html +43 -0
- wbcore/contrib/notifications/viewsets/configs/notification_types.py +27 -0
- wbcore/contrib/notifications/viewsets/configs/notifications.py +85 -0
- wbcore/contrib/workflow/fixtures/workflow.json +612 -0
- wbcore/contrib/workflow/locale/de/LC_MESSAGES/django.po +1289 -0
- wbcore/contrib/workflow/static/workflow/markdown/documentation/assignedprocessstep.md +33 -0
- wbcore/contrib/workflow/static/workflow/markdown/documentation/condition.md +24 -0
- wbcore/contrib/workflow/static/workflow/markdown/documentation/decisionstep.md +30 -0
- wbcore/contrib/workflow/static/workflow/markdown/documentation/emailstep.md +45 -0
- wbcore/contrib/workflow/static/workflow/markdown/documentation/finishstep.md +33 -0
- wbcore/contrib/workflow/static/workflow/markdown/documentation/joinstep.md +33 -0
- wbcore/contrib/workflow/static/workflow/markdown/documentation/process.md +33 -0
- wbcore/contrib/workflow/static/workflow/markdown/documentation/processstep.md +51 -0
- wbcore/contrib/workflow/static/workflow/markdown/documentation/scriptstep.md +33 -0
- wbcore/contrib/workflow/static/workflow/markdown/documentation/splitstep.md +30 -0
- wbcore/contrib/workflow/static/workflow/markdown/documentation/startstep.md +27 -0
- wbcore/contrib/workflow/static/workflow/markdown/documentation/transition.md +27 -0
- wbcore/contrib/workflow/static/workflow/markdown/documentation/userstep.md +42 -0
- wbcore/contrib/workflow/static/workflow/markdown/documentation/workflow.md +32 -0
- wbcore/contrib/workflow/templates/Test_Templates.txt +25 -0
- wbcore/contrib/workflow/tests/test_models/step/test_decision_step.py +79 -0
- wbcore/contrib/workflow/tests/test_models/step/test_email_step.py +45 -0
- wbcore/contrib/workflow/tests/test_models/step/test_finish_step.py +105 -0
- wbcore/contrib/workflow/tests/test_models/step/test_join_step.py +127 -0
- wbcore/contrib/workflow/tests/test_models/step/test_script_step.py +24 -0
- wbcore/contrib/workflow/tests/test_models/step/test_split_step.py +49 -0
- wbcore/contrib/workflow/tests/test_models/step/test_step.py +621 -0
- wbcore/contrib/workflow/tests/test_models/step/test_user_step.py +225 -0
- wbcore/contrib/workflow/tests/test_models/test_condition.py +103 -0
- wbcore/contrib/workflow/tests/test_models/test_data.py +134 -0
- wbcore/contrib/workflow/tests/test_models/test_process.py +98 -0
- wbcore/contrib/workflow/tests/test_models/test_transition.py +128 -0
- wbcore/contrib/workflow/tests/test_models/test_workflow.py +358 -0
- wbcore/locale/de/LC_MESSAGES/django.po +667 -0
- wbcore/templates/errors/404.html +134 -0
- wbcore/templates/errors/500.html +138 -0
- wbcore/templates/errors/503.html +132 -0
- wbcore/templates/errors/custom.html +132 -0
- wbcore/templates/forms.py +0 -0
- wbcore/templates/notifications/email_template.html +43 -0
- wbcore/templates/wbcore/admin/change_list.html +8 -0
- wbcore/templates/wbcore/admin/csv_form.html +15 -0
- wbcore/templates/wbcore/dynamic_color_array.html +29 -0
- wbcore/templates/wbcore/email_base_template.html +335 -0
- wbcore/templates/wbcore/email_notification_template.html +10 -0
- wbcore/templates/wbcore/frontend.html +51 -0
- wbcore/test/e2e_helpers_methods/e2e_checks.py +121 -0
- wbcore/test/e2e_helpers_methods/e2e_helper_methods.py +395 -0
- wbcore/tests/test_permissions/test_backend.py +29 -0
- {wbcore-2.2.1.dist-info → wbcore-2.2.4.dist-info}/METADATA +1 -1
- {wbcore-2.2.1.dist-info → wbcore-2.2.4.dist-info}/RECORD +143 -3
- {wbcore-2.2.1.dist-info → wbcore-2.2.4.dist-info}/WHEEL +0 -0
|
@@ -65,6 +65,7 @@ wbcore/contrib/agenda/factories/conference_room.py,sha256=Tfy3TCwXqfxXPMpRkZuNUU
|
|
|
65
65
|
wbcore/contrib/agenda/filters/__init__.py,sha256=RtsTRlUrL4dP0pA86ws_4u1-bqoU_YslwbnuJhe8NGU,145
|
|
66
66
|
wbcore/contrib/agenda/filters/calendar_item.py,sha256=4gdd6IAcCm9JjU3TqQFLnj_JxVRxN9fmSM6leoH01M0,2618
|
|
67
67
|
wbcore/contrib/agenda/filters/conference_room.py,sha256=N492SN1lq16aE837tYtRs63-nTfaVABlUcjy7sxrmYY,1370
|
|
68
|
+
wbcore/contrib/agenda/locale/de/LC_MESSAGES/django.po,sha256=ekDfI7xCOp-0XCRMZPmegY0kX_l_7XP6rtUEEj4n6xU,2790
|
|
68
69
|
wbcore/contrib/agenda/migrations/0001_initial.py,sha256=U2XBESw3umDVzJwEt7G7U_Wesvdjb5_2zXnZT6n84Vk,3290
|
|
69
70
|
wbcore/contrib/agenda/migrations/0002_initial.py,sha256=Xlt0LAHeo8Z5JysnuLvU5r3mrq30hts7bdYCNEYZ9g8,708
|
|
70
71
|
wbcore/contrib/agenda/migrations/0003_calendaritem_endpoint_basename.py,sha256=YDsn5yoZwQb2Z9Jyc6bwz7BDH5I8og3YS6CDC_hQ0xM,1302
|
|
@@ -83,6 +84,8 @@ wbcore/contrib/agenda/release_notes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQ
|
|
|
83
84
|
wbcore/contrib/agenda/serializers/__init__.py,sha256=CD2G1X_UUFegj3vznA1bswKxMWlKEo2zVgEx95-NC9c,285
|
|
84
85
|
wbcore/contrib/agenda/serializers/calendar_item.py,sha256=zHbJtgt9XxgnNf6aL-1Fh44SPGHTqvmbxzR3bUh3nUs,2608
|
|
85
86
|
wbcore/contrib/agenda/serializers/conference_room.py,sha256=SHi9Wa3EsUkvB9dAIqnBPAUeOnVWYNCST-eVSf_Q928,3264
|
|
87
|
+
wbcore/contrib/agenda/static/agenda/markdown/documentation/building.md,sha256=_agt5xFih62lR412YTGW8RCEPpv-Tb9ORkJLm2wM-c0,646
|
|
88
|
+
wbcore/contrib/agenda/static/agenda/markdown/documentation/conferenceroom.md,sha256=zT7H6mQ2m-aFXYjKnIfz9dcoN1wdddZJZRqWWgWpr8E,1082
|
|
86
89
|
wbcore/contrib/agenda/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
87
90
|
wbcore/contrib/agenda/tests/conftest.py,sha256=qOG2iZW6w3ikA0Gl6EQOH2O6noCDx-mbTmHM2CnxdKE,480
|
|
88
91
|
wbcore/contrib/agenda/tests/signals.py,sha256=KrEc3SyJlYySxqNOROZpfL-uPAK9EtzTDSlQ0YrLCjY,519
|
|
@@ -128,6 +131,8 @@ wbcore/contrib/authentication/factories/__init__.py,sha256=WwU6zB7IOHdoam6j19aY-
|
|
|
128
131
|
wbcore/contrib/authentication/factories/tokens.py,sha256=CX3HI3ynapYdknmiMrF7WikmF-LWMqKmYMMlLJgUDrI,414
|
|
129
132
|
wbcore/contrib/authentication/factories/users.py,sha256=EOWtNn-Aj6ZM2yDcQWfisZHxMRwr3bymQo0KfsX6qXQ,2946
|
|
130
133
|
wbcore/contrib/authentication/factories/users_activities.py,sha256=tbcpZyXokn6fDZ6fuZkGtYL7Jtm0aWIiZBY63urx_iw,480
|
|
134
|
+
wbcore/contrib/authentication/fixtures/authentication.json,sha256=9sRKzduD4j9-NYP-Ou9Lw1hIB3DWIPwAfO-T_JFebvI,1848
|
|
135
|
+
wbcore/contrib/authentication/locale/de/LC_MESSAGES/django.po,sha256=w4sZzJ2112OyPACt1FJLr4DQR9QrQcmA15_6SsPb2SQ,21323
|
|
131
136
|
wbcore/contrib/authentication/management/__init__.py,sha256=-Y__XzIfe-QL1sNWr4SSLaoSHX0YRl7SLPQqCGKWZVE,635
|
|
132
137
|
wbcore/contrib/authentication/migrations/0001_initial_squashed.py,sha256=5cdHxjaM3hyqlxYMadCU5wXn4P-jqkgwQj8JqvvaIJE,6663
|
|
133
138
|
wbcore/contrib/authentication/migrations/0002_profile.py,sha256=QfkebUHcRFdjrkTEucXoU1YqDo-ygh1X2AWIhG8pH0I,692
|
|
@@ -145,6 +150,16 @@ wbcore/contrib/authentication/release_notes/__init__.py,sha256=47DEQpj8HBSa-_TIm
|
|
|
145
150
|
wbcore/contrib/authentication/serializers/__init__.py,sha256=pY77syWz4VtH1RlGMv5-0nlnneDshvNDmk-N52lBXIc,455
|
|
146
151
|
wbcore/contrib/authentication/serializers/users.py,sha256=-j-ORm7yGvJaaTmFwqTytOhrTzW8L21WhbHGIN92V5U,14329
|
|
147
152
|
wbcore/contrib/authentication/serializers/users_activites.py,sha256=BvhwOZg7izLDnCD5RN1fdaBoEJGQDA8nUacTj192krA,1234
|
|
153
|
+
wbcore/contrib/authentication/templates/activate_confirm.html,sha256=DP-3FfdLEPYu8svucdSe68DGjJyJNeVENcbZvf6hPtE,283
|
|
154
|
+
wbcore/contrib/authentication/templates/base.html,sha256=_fe2DDLtBphRbiyUUMhRS3qqQC3fudqN0afT2o06Z_E,3747
|
|
155
|
+
wbcore/contrib/authentication/templates/email_base_template.html,sha256=2KchGtEg_2oMbju2wQESLkBqgL8MZ8_vzbgoSVGaETQ,13300
|
|
156
|
+
wbcore/contrib/authentication/templates/password_reset_done.html,sha256=kNKOmffD4XzBi5Ndr4fRiUwETW54pQJ7MU2Oug8uABQ,376
|
|
157
|
+
wbcore/contrib/authentication/templates/password_reset_email.html,sha256=zeCMn6LuJWK4-00ERVGGVY3FLQwZoDeINNAJaF1G5vM,538
|
|
158
|
+
wbcore/contrib/authentication/templates/password_reset_email_html.html,sha256=ktWowCM9hQr-i74Nf1CS3w-eEFVn49QdjiNFjx-datc,1724
|
|
159
|
+
wbcore/contrib/authentication/templates/password_reset_form.html,sha256=NfoyMxXbWvg85cufpvnKWtElItvCqqRb4J7h8V470NA,727
|
|
160
|
+
wbcore/contrib/authentication/templates/password_reset_sent.html,sha256=h0JGXpSScuzPANX3JTtySRD80oKzA1L8yIdXJBpgWTI,558
|
|
161
|
+
wbcore/contrib/authentication/templates/reset_password.html,sha256=GxDtxRsz2k6Y-qGA0sjATgxsNuVBRye5ZjbuYANXDns,470
|
|
162
|
+
wbcore/contrib/authentication/templates/user_registration_email.html,sha256=_hmZPdfuBT3v-Dg0SRK2jYbv0Sx84j1OZUREZoLflDU,1327
|
|
148
163
|
wbcore/contrib/authentication/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
149
164
|
wbcore/contrib/authentication/tests/conftest.py,sha256=_Ib93zJ2oygjPME_v38N8v_2P0geVGgvLLJgQ7JDQ7Y,485
|
|
150
165
|
wbcore/contrib/authentication/tests/signals.py,sha256=fhufccLDor6Jh58dVfXr3EVy67IeuxEZOIqgoiqDzyM,570
|
|
@@ -174,9 +189,19 @@ wbcore/contrib/authentication/viewsets/menu/users.py,sha256=6LjN8jgaYhx_yyONaSZr
|
|
|
174
189
|
wbcore/contrib/authentication/viewsets/titles/__init__.py,sha256=31xz3WVIyV_uCYd1dsqfPPwhnRdEzW86IhFGFrAXLOM,330
|
|
175
190
|
wbcore/contrib/authentication/viewsets/titles/user_activities.py,sha256=gaQU6aq3Wz-_kUbTqV0OsJ1jfk9UIkPB-aoVFeW9-so,978
|
|
176
191
|
wbcore/contrib/authentication/viewsets/titles/users.py,sha256=chz_J0zV4KwwROrh6As031ELOFqLViIJVikqPuzwLEg,715
|
|
192
|
+
wbcore/contrib/color/admin.py,sha256=wtvcldVeqGWvDTcLsW1FZwssyFNn5HfL-2v0rJEk9LU,959
|
|
193
|
+
wbcore/contrib/color/apps.py,sha256=OdA_ws68vvKlCrcxrryrT07fDzarKKDkz-1KsUG8eHk,103
|
|
194
|
+
wbcore/contrib/color/enums.py,sha256=yj1SqcQZdrcmXsY6VB1NT5d7aTZgkd2DamJt7jxiKAw,500
|
|
195
|
+
wbcore/contrib/color/factories.py,sha256=1J-0QnyhYFIpkD29aC5n8cPIY6SUdZti0Ra9GwgkX70,314
|
|
196
|
+
wbcore/contrib/color/fields.py,sha256=dPT1LyOyNujlgEKfh34pTPZS0nLQDOe63JhVrfH7KB0,806
|
|
197
|
+
wbcore/contrib/color/forms.py,sha256=FZxi4RzNnWYGJm9e9oYecxOSYAenB7XB9SEVW1AcIn4,435
|
|
198
|
+
wbcore/contrib/color/models.py,sha256=EkvpYI1cQhO-9n7xv2vuJm1fM_X0-1A4hpkQXrHbIPc,1963
|
|
177
199
|
wbcore/contrib/color/migrations/0001_initial.py,sha256=DvS0kImKDdSeIN7sPVEiy2Bbuv4GvEES9I196KyKWS0,1082
|
|
178
200
|
wbcore/contrib/color/migrations/0002_alter_colorgradient_colors.py,sha256=s5Lub5wPnJwfDw8GRCq0zd5DU5STpBt9GVDxVHxKLBM,705
|
|
179
201
|
wbcore/contrib/color/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
202
|
+
wbcore/contrib/color/tests/conftest.py,sha256=b5t60JOOYt-gMYIMzVWnqPWbxH_5UYW9UGQAl-KfUmc,364
|
|
203
|
+
wbcore/contrib/color/tests/test_color_models.py,sha256=QtUxPob50odTImEjlEoPOkj8uO66S8eQbfl1fw8eB8M,2506
|
|
204
|
+
wbcore/contrib/color/tests/test_fields.py,sha256=bcbEOR5bQSU20UqVZJzslh3WXCmDJT4LzxqZPnuisVk,686
|
|
180
205
|
wbcore/contrib/currency/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
181
206
|
wbcore/contrib/currency/admin.py,sha256=hNS_9jDMUcikV1T3soU0MQVJDvya7w-9wyW3dR__Ik8,1080
|
|
182
207
|
wbcore/contrib/currency/apps.py,sha256=10grJHw9gyBLDfbVJ-gGGUFcU5AgTaH7uBFr8j0bshE,106
|
|
@@ -185,6 +210,8 @@ wbcore/contrib/currency/factories.py,sha256=sCoGbXifzSS19LyCHktHaQrSYdvyQH-bX3hk
|
|
|
185
210
|
wbcore/contrib/currency/models.py,sha256=-sMcbtXeAL6iU5QJuQ6apkt5pZ55rmafUTCsGck_E30,6155
|
|
186
211
|
wbcore/contrib/currency/serializers.py,sha256=xvjV7_oa4ZlhkCnBRFjU-WcSBfpEklJ-Bv-n-ol5pVE,1325
|
|
187
212
|
wbcore/contrib/currency/urls.py,sha256=YPBGLtZvHfoOf6Hw4EViKxZxJFJSrtOZ4kpkBTzGhgo,684
|
|
213
|
+
wbcore/contrib/currency/fixtures/currency.yaml,sha256=lB0DyTrfSt96fym_fc8_13qsWIk09h-6jfVnjHIhVQs,17225
|
|
214
|
+
wbcore/contrib/currency/fixtures/currency_fx_rate.yaml,sha256=tzkBO-Vc-RYFCzbT2ys9MOQxhB0zBvseHaPjVerg3qY,1452692
|
|
188
215
|
wbcore/contrib/currency/import_export/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
189
216
|
wbcore/contrib/currency/import_export/backends/__init__.py,sha256=ebh7oqdM8U0t_u4_v7dZcCQrtNXIJbFkhBZLmi7EUeo,23
|
|
190
217
|
wbcore/contrib/currency/import_export/backends/utils.py,sha256=HV9KzSivUrNda83RQ9aHmwU3XikvE9qWklS1DA-ISg8,216
|
|
@@ -263,6 +290,8 @@ wbcore/contrib/directory/filters/__init__.py,sha256=uGgFoX06eC7P354m2q-29Ct5ijO3
|
|
|
263
290
|
wbcore/contrib/directory/filters/contacts.py,sha256=Tu2kNrv73RCxozLobi5qt6kvPolWY1TxFGxWR7tRWpM,7447
|
|
264
291
|
wbcore/contrib/directory/filters/entries.py,sha256=rLtaRU_pmhNKIESxBe_KtYC9T0T7QH8RB0xBuQSXRHU,9158
|
|
265
292
|
wbcore/contrib/directory/filters/relationships.py,sha256=9anZrwnTFhGXECSzJm3I0NQMRl3vQjkPlQQyU_NFV88,2996
|
|
293
|
+
wbcore/contrib/directory/fixtures/directory.json,sha256=IRacOTgcprc2e6UfgIVTJIguKrr419YuKUDvb4hyfR0,104620
|
|
294
|
+
wbcore/contrib/directory/locale/de/LC_MESSAGES/django.po,sha256=W_IEt9ljispUbBXKGDzagOXuhRYg4rfo19K0Pgsh6Lw,57725
|
|
266
295
|
wbcore/contrib/directory/migrations/0001_initial.py,sha256=KU4W2-R1ErwbJrYy_FzKXFP7dbKEoL4Aa4nyTMW-Ae4,34702
|
|
267
296
|
wbcore/contrib/directory/migrations/0002_auto_20230414_1553.py,sha256=O51CDBcFwUzuwAHJxIiwXpZzBecs8nzn0Ib4FfWiQ6w,1216
|
|
268
297
|
wbcore/contrib/directory/migrations/0003_remove_entry_last_event.py,sha256=5PmZTNLd3QVXUSo_2_rg_UmldsiT7bu3TORMpbdHpSE,332
|
|
@@ -287,6 +316,27 @@ wbcore/contrib/directory/serializers/entries.py,sha256=4_uTzMY1_O4kfkjeYYnJpEz0a
|
|
|
287
316
|
wbcore/contrib/directory/serializers/entry_representations.py,sha256=SP20q76MCGo1KUoy3cEOrnxr2l_OynPt557JaRwUjA8,1342
|
|
288
317
|
wbcore/contrib/directory/serializers/persons.py,sha256=JIP4pEOADQvUTXeRD45eCmLNryMVuucf2-Q_FXe2QTE,7590
|
|
289
318
|
wbcore/contrib/directory/serializers/relationships.py,sha256=EyS6drtcY6nhW0La-p10AANKhuITwY5ex29xf4INjvE,12377
|
|
319
|
+
wbcore/contrib/directory/static/directory/markdown/documentation/address.md,sha256=gfUVi2PZh5uQ5sWkLG-AxYV9ULWeswRp3E2Me4fEs88,1865
|
|
320
|
+
wbcore/contrib/directory/static/directory/markdown/documentation/banking.md,sha256=5jgF1tqTGdr4fRaXCtobtpFEx0xcSmVYkKvzVALp4L8,28387
|
|
321
|
+
wbcore/contrib/directory/static/directory/markdown/documentation/bankingentry.md,sha256=RdfNbTXxpZG8kO-31d9c1QURlDcZRzMS2lEXHddiUbQ,1921
|
|
322
|
+
wbcore/contrib/directory/static/directory/markdown/documentation/clientmanagerrelationship.md,sha256=wqbS5OYigQSVZquqiM6NqH-q3gh7tApKFtm7jNracWE,78383
|
|
323
|
+
wbcore/contrib/directory/static/directory/markdown/documentation/company.md,sha256=xLSBAGFBQtig2Mi5bnmp4YGmttc4eEhTQXfRT1JtOaA,2049
|
|
324
|
+
wbcore/contrib/directory/static/directory/markdown/documentation/companytype.md,sha256=gGGIL0cI31-9-tGnziAijYPBl9GXzRAGZ1wi9KMDoxk,310
|
|
325
|
+
wbcore/contrib/directory/static/directory/markdown/documentation/customerstatus.md,sha256=hSLvmAVZRifuc0Xs1JWN28yfG0ibRu8fSKLX8io1fiw,325
|
|
326
|
+
wbcore/contrib/directory/static/directory/markdown/documentation/email.md,sha256=aB0RN6azEvqt3efwEV7LqitRcJGLYFPyDkqmMAKNBvI,1455
|
|
327
|
+
wbcore/contrib/directory/static/directory/markdown/documentation/employeecompany.md,sha256=vHuoa9B74O4Jqub_TOKQRxiWu3DMTN7b1z8a64XNd24,2151
|
|
328
|
+
wbcore/contrib/directory/static/directory/markdown/documentation/employerperson.md,sha256=PnEiqcXog5clhDoQNKVRB-jq2uZuPHT8SU4gXrg9NQo,2554
|
|
329
|
+
wbcore/contrib/directory/static/directory/markdown/documentation/person.md,sha256=8RldjzITzQCtl-KTdtECFDnXyV6t1rhtuKYU2NmLOJE,2331
|
|
330
|
+
wbcore/contrib/directory/static/directory/markdown/documentation/position.md,sha256=4d_Phbn6wemURlwOuMRka-9-vTDKgJ5E2KxaQuQ7VeQ,326
|
|
331
|
+
wbcore/contrib/directory/static/directory/markdown/documentation/relationshiptype.md,sha256=D3swigJ32R5m0_X51GaKMAWcVZJYfULRZx0x0uSGk_M,423
|
|
332
|
+
wbcore/contrib/directory/static/directory/markdown/documentation/socialmedia.md,sha256=hLz5Ke2MvqtWs9wsC8R12tAXsKlQSO2k_bT55HdIKM4,1611
|
|
333
|
+
wbcore/contrib/directory/static/directory/markdown/documentation/specialization.md,sha256=TBBiFZ00fniKDbXUtbbm-RfyIj48ZzDilxr6lpGmQwk,318
|
|
334
|
+
wbcore/contrib/directory/static/directory/markdown/documentation/systememployee.md,sha256=SCJned7QgoiiNVagmfBsRHeKC-c11R_nLotxcCJMmgA,1292
|
|
335
|
+
wbcore/contrib/directory/static/directory/markdown/documentation/telephone.md,sha256=M3edhYnv6CTG6VDCD0NYRvFUGCGTI4fEL08T0BvvE2g,1597
|
|
336
|
+
wbcore/contrib/directory/static/directory/markdown/documentation/telephonesearch.md,sha256=jSMfw5TddzjptfOxtzDa5490mQtb8XYF4w1nvexjijU,1114
|
|
337
|
+
wbcore/contrib/directory/static/directory/markdown/documentation/userisclient.md,sha256=gHwCxfPlbcZOtYAFzMwI46FpqT6nkt-EaWebpWAnkNI,353
|
|
338
|
+
wbcore/contrib/directory/static/directory/markdown/documentation/userismanager.md,sha256=I3ojIVTFZ_bEk8-67jO2Jrctk90kSzX-WrREDfplwpg,1037
|
|
339
|
+
wbcore/contrib/directory/static/directory/markdown/documentation/website.md,sha256=n8VAXbgxQh9zslLfLB0UhRgliMCvNS2N6gR-K0oTrkY,1453
|
|
290
340
|
wbcore/contrib/directory/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
291
341
|
wbcore/contrib/directory/tests/conftest.py,sha256=6Png5NaERN8WBcnpw3mM8F6Xg7erCHh0IO-6hdPyT6E,1738
|
|
292
342
|
wbcore/contrib/directory/tests/disable_signals.py,sha256=1WboKAR2lETytjH7to-F9fUflI9NYZqHxoyuV6fYU8k,1582
|
|
@@ -338,6 +388,8 @@ wbcore/contrib/documents/apps.py,sha256=z3pYGj-qPkkpe88MP_G7uO_sb2uEvD_KZriePPbt
|
|
|
338
388
|
wbcore/contrib/documents/factories.py,sha256=3GpKLeT6nlKASMMsqL_IqvVNfeNd2dnc3yllk0ndo2M,1052
|
|
339
389
|
wbcore/contrib/documents/filters.py,sha256=HZORtyFvZcLxCcU95r0G95nXhkK-ggrDY3tTENlPOgk,2622
|
|
340
390
|
wbcore/contrib/documents/urls.py,sha256=utdie93Emb_m8g4mJjm5QgrSTm56PTFkylbuWLEKMuU,1768
|
|
391
|
+
wbcore/contrib/documents/fixtures/docments.json,sha256=xGsdB7WZ-k_06yC_2OfcQCeBc3T8TlQwLp3ex9DcdIM,4025
|
|
392
|
+
wbcore/contrib/documents/locale/de/LC_MESSAGES/django.po,sha256=X-5022kXsPx9J9Md4IBvr2JU_5QorknJrr0I8J60b5M,8172
|
|
341
393
|
wbcore/contrib/documents/migrations/0001_initial.py,sha256=MaNZPABi8xxlPsBwwbVoyOFUzT4JsS3XRCPqrNSSscM,7614
|
|
342
394
|
wbcore/contrib/documents/migrations/0002_documentmodelrelationship_primary_and_more.py,sha256=pLs6mNJKbxd1cAYRnYiVRftDAXyOfr1bATLasO8lgpo,661
|
|
343
395
|
wbcore/contrib/documents/migrations/0003_alter_documentmodelrelationship_unique_together_and_more.py,sha256=J50o7pAHBbM2_c78lEeeXwZDCMZayZaw6XM7_MRHpfY,965
|
|
@@ -357,6 +409,12 @@ wbcore/contrib/documents/serializers/document_model_relationships.py,sha256=AvtH
|
|
|
357
409
|
wbcore/contrib/documents/serializers/document_types.py,sha256=j5RHyHKNAT07zcANz7ePg3M9bwzg43k3O4F3DBrVU_o,1506
|
|
358
410
|
wbcore/contrib/documents/serializers/documents.py,sha256=Urs5mU7cQsCw2BWRSNjkTdKGwd4TG-bqSaWaoMMoQtc,2406
|
|
359
411
|
wbcore/contrib/documents/serializers/shareable_links.py,sha256=SqelV7qQ56Sm-28cnT0ALZ5gHeBchUz9bQ3w8I29IP8,3318
|
|
412
|
+
wbcore/contrib/documents/static/documents/markdown/documentation/document_types.md,sha256=MebPHN-xP_gt58fKJQ6AgLKpIwE_7EPHytXdSrZ-okc,921
|
|
413
|
+
wbcore/contrib/documents/static/documents/markdown/documentation/documents.md,sha256=dbUB93mTQ-lSTXghaJYY51v58I-q9aAFtgg-XDY-Hds,768
|
|
414
|
+
wbcore/contrib/documents/static/documents/markdown/documentation/shareablelink.md,sha256=nsb21XNAB7eZiGnb6xiMzTy6uZyAzhaFUWtsSyU2x54,1121
|
|
415
|
+
wbcore/contrib/documents/static/documents/markdown/documentation/shareablelinkaccess.md,sha256=Bsd3AzJprSUqa8cS101LyUt-0muBt-ivBDS6wNHRHk8,932
|
|
416
|
+
wbcore/contrib/documents/tests/conftest.py,sha256=AP5whxYNsf77YBXRJEAV3V7bvkv7eX8KpXV-lMDyEUk,899
|
|
417
|
+
wbcore/contrib/documents/tests/test_models.py,sha256=sg8L_WUYsapBrschDV-KNVkHAF4t0nl4UkiTqMVrIDE,5054
|
|
360
418
|
wbcore/contrib/documents/viewsets/__init__.py,sha256=xo7GDVcZyBEQNrcOHydO-dFj68i8rBJ36Noxvgv_isY,461
|
|
361
419
|
wbcore/contrib/documents/viewsets/document_model_relationships.py,sha256=g7AeGHbA2wGyJfI8k4uXPIoICUMp34n9GnJ_QcNwjAs,975
|
|
362
420
|
wbcore/contrib/documents/viewsets/document_types.py,sha256=L18h3PpwuLxVb9wIWc407Ipn2DgKvM436uIerPePFLo,1415
|
|
@@ -410,6 +468,7 @@ wbcore/contrib/example_app/filters/sport.py,sha256=AExxNubjrqWF-DXDDBCoQFe0yOHOq
|
|
|
410
468
|
wbcore/contrib/example_app/filters/stadium.py,sha256=HC0OlR0YlSYTSkod7WUP5HFKcuexKXOLm2X0h5YMUYw,1180
|
|
411
469
|
wbcore/contrib/example_app/filters/team.py,sha256=Xbip67JNxmZH7ozLS7QVXm1GEezPFA3Ugs-hi1qz2K4,2777
|
|
412
470
|
wbcore/contrib/example_app/filters/teamresult.py,sha256=2sCqnTO3PGOc6_i_GvYV_Ie9rI2UgJZyCRuvL9KHPtE,2233
|
|
471
|
+
wbcore/contrib/example_app/fixtures/example_app.json,sha256=7u7VqxpdmmwgbdLX7bv4wRnc1wEbvIUe6v03o70EknQ,162136
|
|
413
472
|
wbcore/contrib/example_app/migrations/0001_initial.py,sha256=VVYWYh3kQKeDn4xb2Z7uIkgX-qPbQxtKs4TgF8PNVO0,20368
|
|
414
473
|
wbcore/contrib/example_app/migrations/0002_sportperson_profile.py,sha256=Vr_H2h47k6oC82AlGRic1OJyypwXjwJdHIyOvkeVzXc,1613
|
|
415
474
|
wbcore/contrib/example_app/migrations/0003_change_stadium_capacity.py,sha256=HV6M51ZIwhRiS6qNqxsMJ7DVrxrWzAl2y0UCmcwd4zI,914
|
|
@@ -438,6 +497,26 @@ wbcore/contrib/example_app/tests/e2e/e2e_example_app_utility.py,sha256=u2o4lDQwW
|
|
|
438
497
|
wbcore/contrib/example_app/tests/e2e/test_league.py,sha256=bWYYKc2-6VHWyuhrE1nSYqGXzJR8tjocqIYaiy_gNng,2798
|
|
439
498
|
wbcore/contrib/example_app/tests/e2e/test_person.py,sha256=fMaKfSulgXh85mNqzx4X-idFvK8DzHSStHFzc9rfrp4,2846
|
|
440
499
|
wbcore/contrib/example_app/tests/e2e/test_teams.py,sha256=Ci5DO06HcHu75qgxZBMw6bwVv2BEKVW0l9FCETtUJkk,2279
|
|
500
|
+
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=C2TvmGAwz9pWDfK9JUIRr78wjUoq1TpccLskL6cLrGI,8358
|
|
502
|
+
wbcore/contrib/example_app/tests/test_models/test_others.py,sha256=SCJPT6yNyXHDyvmiOwL5MfX30fOPBgir7OEiiwhJvYo,5767
|
|
503
|
+
wbcore/contrib/example_app/tests/test_serializers/test_league_serializer.py,sha256=j-h6SJWgvb_PqBDhrWHuALkpaARhflABKjpXcBBlSdY,1413
|
|
504
|
+
wbcore/contrib/example_app/tests/test_serializers/test_match_serializer.py,sha256=gxQjSIuSGHopu70i2BqIynC0fXpYOBTEegiHcg8cLsk,5560
|
|
505
|
+
wbcore/contrib/example_app/tests/test_serializers/test_role_serializer.py,sha256=P8NUNCjbiz8grwX0nBoG8Y7v2GkZe_oq-As4rCBLpX0,516
|
|
506
|
+
wbcore/contrib/example_app/tests/test_serializers/test_sport_serializer.py,sha256=ilE43gIfG8H8x98KBrZOdI27U1P44dujAkLwc6Cmob0,527
|
|
507
|
+
wbcore/contrib/example_app/tests/test_serializers/test_stadium_serializer.py,sha256=d5OadgCZHC1UMSTarpunQHP8LP-rEjB1wWz5oUROQo8,547
|
|
508
|
+
wbcore/contrib/example_app/tests/test_serializers/test_team_result_serializer.py,sha256=lOu8sXjG6iQlLoKoWjcIA1EYauPiBDio4qFBWExCHK4,1116
|
|
509
|
+
wbcore/contrib/example_app/tests/test_serializers/test_team_serializer.py,sha256=ZQ6_-yHBazQod0HQuJQtF-XdcXpRDNVOYey9VuaLWho,3025
|
|
510
|
+
wbcore/contrib/example_app/tests/test_viewsets/test_event_viewset.py,sha256=uuTHZeaRBAh795sB8V8zIxqO35JcHL_pKFP2HZ4Xpvg,7531
|
|
511
|
+
wbcore/contrib/example_app/tests/test_viewsets/test_league_viewset.py,sha256=tdxmyZ_gXbskTO4N16Xv--5MHC9sMKmaW1ZH3rMFy_Y,3702
|
|
512
|
+
wbcore/contrib/example_app/tests/test_viewsets/test_match_viewset.py,sha256=1KkFdtMQi-9KmijXjeFtKj1n2-RO_CEhho-Mjb4ENFY,2814
|
|
513
|
+
wbcore/contrib/example_app/tests/test_viewsets/test_person_viewset.py,sha256=-8Vl8w6t48NSFvwDlDqWUnSgRqDaAz_dKf-QzjeYAys,7523
|
|
514
|
+
wbcore/contrib/example_app/tests/test_viewsets/test_role_viewset.py,sha256=cbFYwNqAKkqIQbqUbPX0OOjP_p0fdcU6J-pq_UMkBaA,3223
|
|
515
|
+
wbcore/contrib/example_app/tests/test_viewsets/test_sport_viewset.py,sha256=hpcwwBEhx4Cpow3w67RobKTJ6w4CZyeYO7fEuYOHQXM,3229
|
|
516
|
+
wbcore/contrib/example_app/tests/test_viewsets/test_stadium_viewset.py,sha256=3bHRo9aVTbaAdQBMJ5UkQVwCZOVxkkOdr-ly_Ct6G8w,3288
|
|
517
|
+
wbcore/contrib/example_app/tests/test_viewsets/test_team_viewset.py,sha256=4z21fNmXoFALPwlwLPajCT_qGFw-yx_01RLofAsLW1g,4159
|
|
518
|
+
wbcore/contrib/example_app/tests/test_viewsets/test_teamresult_viewset.py,sha256=-xeXMc3dLsvGPo8wabm-ULyIswNSRnS1jLkMURDg_30,2539
|
|
519
|
+
wbcore/contrib/example_app/tests/test_viewsets/test_utils_viewsets.py,sha256=s3W6w4hojZwmXOU1mYCNL7_GsS6PVHB4gKyznjWjRwE,5058
|
|
441
520
|
wbcore/contrib/example_app/viewsets/__init__.py,sha256=OSYKL4GYm6rIobWC4-ZTd1B0k1fcaaIrs0RHQ6EB56Q,1271
|
|
442
521
|
wbcore/contrib/example_app/viewsets/event.py,sha256=KQ6OSM1iu_aQvlu5ewH-qNj3LuIqBkownXIbiBnKD_E,10129
|
|
443
522
|
wbcore/contrib/example_app/viewsets/league.py,sha256=gCVQxsTzPx64EGyqWufiiuovKbeOfT2xW3lzh4ZMgus,2316
|
|
@@ -485,6 +564,7 @@ wbcore/contrib/geography/factories.py,sha256=WhQTj78Lsol2IoxoapSGUsCvtKrgT1uB1eT
|
|
|
485
564
|
wbcore/contrib/geography/models.py,sha256=AQldrTYxxmwpkEY5zG-1o9943nctkrBlGap6aKJ6-Ro,5654
|
|
486
565
|
wbcore/contrib/geography/serializers.py,sha256=Pnb_6yFZv-eE51p1NMB1v6eRX0RxolycqzwOPLr1Hc0,972
|
|
487
566
|
wbcore/contrib/geography/urls.py,sha256=mmWXOdKz-Mbid6vo3YGWMaJcnL0l-HmAZPbIKglhKg8,422
|
|
567
|
+
wbcore/contrib/geography/fixtures/geography.json,sha256=cvo42pJrwPLlV7Y38d8dOWBcD1oUsmxKnXveLWFIiYI,344362
|
|
488
568
|
wbcore/contrib/geography/import_export/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
489
569
|
wbcore/contrib/geography/import_export/resources/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
490
570
|
wbcore/contrib/geography/import_export/resources/geography.py,sha256=Du4aCwtQCm_GHeN8ThNIImJwpM8UfAgansOPfkJGirQ,386
|
|
@@ -492,6 +572,7 @@ wbcore/contrib/geography/migrations/0001_initial.py,sha256=aK3R_L0jKa-5KEBJGrmS2
|
|
|
492
572
|
wbcore/contrib/geography/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
493
573
|
wbcore/contrib/geography/release_notes/1_0_0.md,sha256=NrP1LZ-N04QilS28vyPzokjfwjTGWs3eZ8ML3Gpw7nA,165
|
|
494
574
|
wbcore/contrib/geography/release_notes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
575
|
+
wbcore/contrib/geography/static/geography/markdown/documentation/geography.md,sha256=DngCyk0p45kocwkOSKVi0K6rA2AU0fRvkFaaHqlKhw8,1412
|
|
495
576
|
wbcore/contrib/geography/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
496
577
|
wbcore/contrib/geography/tests/conftest.py,sha256=5H96elG8pEiEvUrl2pXavyghjM3mV4wYy_kJFGRj5nM,341
|
|
497
578
|
wbcore/contrib/geography/tests/signals.py,sha256=KfPXtAHWC4lF3gDO8-PNFL_PkYZUnmOJMExwRcQ7SuU,238
|
|
@@ -521,6 +602,12 @@ wbcore/contrib/gleap/views.py,sha256=8UthTu7LRRW_pi8muUDWzXVtBaQhwCRNox9JSriF5lQ
|
|
|
521
602
|
wbcore/contrib/gleap/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
522
603
|
wbcore/contrib/gleap/tests/conftest.py,sha256=q9RKC6JpBsW4ZlgtnuB_V1uHtKUys4Zn0BGu3m4NbRI,36
|
|
523
604
|
wbcore/contrib/gleap/tests/tests.py,sha256=jtPqW_ATh8OFIEb4R8RMMrhAbcNrB0FamOj1L3slT4E,714
|
|
605
|
+
wbcore/contrib/guardian/apps.py,sha256=dHE4YM4uk92w5Xsmk_P1agutR_1jQytTq9dRDaj-BAU,139
|
|
606
|
+
wbcore/contrib/guardian/configurations.py,sha256=rzSTs_4zbADDSnmqgqRHYd83gKdPAGyrHdegQtnH-qQ,168
|
|
607
|
+
wbcore/contrib/guardian/filters.py,sha256=36dXy8IaSyPDKc7QkAip4d_12U1luCOKH3ujXgjBHqg,752
|
|
608
|
+
wbcore/contrib/guardian/tasks.py,sha256=DrHBQCkjgBIof2XbR4rwm9zH4b2LwCduKUXL_wNm8pg,516
|
|
609
|
+
wbcore/contrib/guardian/urls.py,sha256=UCUiYxALnbEH7ZNKs4jp_xBx6vHClsVi9Hd_NR1_0Wg,412
|
|
610
|
+
wbcore/contrib/guardian/utils.py,sha256=7gIVVkVjS6c7enomR3L3VfbN_CcbDD4VL2kWgNb39I8,5205
|
|
524
611
|
wbcore/contrib/guardian/migrations/0001_initial.py,sha256=IB4_ls922OVdC3r_9FhIFR_xom0wic2NOwYG9gRo8S8,4609
|
|
525
612
|
wbcore/contrib/guardian/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
526
613
|
wbcore/contrib/guardian/models/__init__.py,sha256=63_HSsJbwNgPPt67vyZKHm5dqB8X-YIAF6tRlK9YgQk,64
|
|
@@ -574,6 +661,8 @@ wbcore/contrib/io/configs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJW
|
|
|
574
661
|
wbcore/contrib/io/configs/endpoints.py,sha256=8FGphmI04nexaT7IF1H56r29iAn38jNNLQu3AbliL5w,478
|
|
575
662
|
wbcore/contrib/io/configurations/__init__.py,sha256=mFiv5r53ErMuTGSoATHNM0qf1Dy6XBKPI7GGeEK_PKE,48
|
|
576
663
|
wbcore/contrib/io/configurations/base.py,sha256=uQ0EI6wIYuF31x-a2VCXSkS_Sxp1_MCMCfjAbNqvw0Y,358
|
|
664
|
+
wbcore/contrib/io/fixtures/io.json,sha256=o75Rt9Mx8d_oAwJCKeWA6QYHSQfbgTFtndxYyj6HLio,4973
|
|
665
|
+
wbcore/contrib/io/locale/de/LC_MESSAGES/django.po,sha256=_Nuws3SE_bNGtwwvvOWMOGm0x2CydB5QBzUJXKM6nrs,1428
|
|
577
666
|
wbcore/contrib/io/management/__init__.py,sha256=ZRCdDdhJ-oPQoKJj_NVRaSAXdQGNXVVCtUqfkbWE9hg,510
|
|
578
667
|
wbcore/contrib/io/migrations/0001_initial_squashed.py,sha256=mJXj5Yc2HsrRXIhsPVbyrK8j4YBF6zK3mGtwls1T0to,13061
|
|
579
668
|
wbcore/contrib/io/migrations/0002_importsource_creator.py,sha256=fhATF-pjLD2R6bnH1XQdZ6e6BYifbBArCOGrkBYFguE,720
|
|
@@ -612,6 +701,7 @@ wbcore/contrib/notifications/factories/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JC
|
|
|
612
701
|
wbcore/contrib/notifications/factories/notification_types.py,sha256=KPOqpQDA6aoskEguuu-PnwH-QmRIWY_IiK0dT2Gwoio,644
|
|
613
702
|
wbcore/contrib/notifications/factories/notifications.py,sha256=G0ru8wdZsDI_T4UXZ-mmhh6X9nl9v4razU7AyWqW3Tc,546
|
|
614
703
|
wbcore/contrib/notifications/factories/tokens.py,sha256=7gNy_jM5ZHB3ovtOPFb67ZGrl24MnaOc-exyIZxeoRk,457
|
|
704
|
+
wbcore/contrib/notifications/locale/de/LC_MESSAGES/django.po,sha256=vPgv30cTmgcxtLiYoqpZBZ89MdEoT3x1Z9Iq-ppkEfU,2063
|
|
615
705
|
wbcore/contrib/notifications/migrations/0001_initial.py,sha256=7OKlC4ntOE7isSAY7IHd437XZNepZb25Yj6eEi_L-kI,4832
|
|
616
706
|
wbcore/contrib/notifications/migrations/0002_notificationusertoken_unique_user_token_device.py,sha256=itVmm02meTWqYigcsrhKQMCxN_it9_740d516aK1JOQ,470
|
|
617
707
|
wbcore/contrib/notifications/migrations/0003_notificationusertoken_updated.py,sha256=WHsxV8yPXo52UMI-_SDbXmKGg9x70bxUojaGuYDdCvg,437
|
|
@@ -628,6 +718,8 @@ wbcore/contrib/notifications/release_notes/__init__.py,sha256=47DEQpj8HBSa-_TImW
|
|
|
628
718
|
wbcore/contrib/notifications/serializers/__init__.py,sha256=VTZMTbvPTO1A6gI30qSVXFzfQjrQtGt7Rr0be7swy8A,181
|
|
629
719
|
wbcore/contrib/notifications/serializers/notification_types.py,sha256=LDc_qy_eT7mmW62S18Qqk_68HAA5n6BtMc5zX0gaxbs,988
|
|
630
720
|
wbcore/contrib/notifications/serializers/notifications.py,sha256=tNMIIYzSJYwmxF2xrkWJt66uMbN7OfMO_yXvuxRzn10,1072
|
|
721
|
+
wbcore/contrib/notifications/static/notifications/service-worker.js,sha256=4_yl6qd0ituPK5KxFIyYXs6zXOIc_Y4wtzXKzWkSnqw,4926
|
|
722
|
+
wbcore/contrib/notifications/templates/notifications/notification_template.html,sha256=k-o9ieU6z6c0SKAw43_iLEleJTIZK43Y8jrRCwbKPCc,1441
|
|
631
723
|
wbcore/contrib/notifications/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
632
724
|
wbcore/contrib/notifications/tests/conftest.py,sha256=QthEmk6WnvMsvo9Rdva7RGGT8grNlGvSLdD9Ggj4480,1486
|
|
633
725
|
wbcore/contrib/notifications/tests/test_configs.py,sha256=I9rYEKXe0zLAOu8CrF5NzKQ7EYXj4qJUywT27Uj8fr0,259
|
|
@@ -649,6 +741,8 @@ wbcore/contrib/notifications/viewsets/__init__.py,sha256=LvuSAnXRTv5tixtnLaLnx1O
|
|
|
649
741
|
wbcore/contrib/notifications/viewsets/menus.py,sha256=MzL4GtpgwGgbprte_mF_-iYcfkKIooMYufR4GA2kQQ8,528
|
|
650
742
|
wbcore/contrib/notifications/viewsets/notification_types.py,sha256=T4xBEzrlsYHnjTpq4MMfXY-yKOZiTRhPRjkjfMa_3EY,1489
|
|
651
743
|
wbcore/contrib/notifications/viewsets/notifications.py,sha256=-H-n0DEmBagNtxx5y59eEXqxm0bPo98NnuHJLaCcF4Y,2253
|
|
744
|
+
wbcore/contrib/notifications/viewsets/configs/notification_types.py,sha256=YCPjlWl2KRbWXQUXKknN-7B8jA0Kwk9PWHPXvCMsSZA,1066
|
|
745
|
+
wbcore/contrib/notifications/viewsets/configs/notifications.py,sha256=qr8vCTu87OmYuvhXAbO_MgdwHDHlphJRili903rF8fs,3281
|
|
652
746
|
wbcore/contrib/tags/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
653
747
|
wbcore/contrib/tags/admin.py,sha256=gIgCl7P4_d2x5FK1Gs5dYwWISY7beWclwQXHRkoZhrI,433
|
|
654
748
|
wbcore/contrib/tags/apps.py,sha256=DSaqTCfj8DjVBHQdQtrRQvrw-wF_igOE9DUvMv47EK4,234
|
|
@@ -702,6 +796,8 @@ wbcore/contrib/workflow/filters/process.py,sha256=GWTc-FqUSwaS-8uR5kZKAvp4qQzW5O
|
|
|
702
796
|
wbcore/contrib/workflow/filters/step.py,sha256=Y1a8Np6klbLlNZ6pnc5cmDtRwRpgHr-SpSn-MI7ImMk,8075
|
|
703
797
|
wbcore/contrib/workflow/filters/transition.py,sha256=JwlTnEDITfAxoqB-zVuX9J72DDiAgJf4NkWKtRhQYMo,1544
|
|
704
798
|
wbcore/contrib/workflow/filters/workflow.py,sha256=HyEmgjk29sEnoZgBHZ2t4BHIp6LJ9ZHylXQDqsVJZ5c,1660
|
|
799
|
+
wbcore/contrib/workflow/fixtures/workflow.json,sha256=NMpa4iaHtsyU3Rqe8FFLH_OgHiSSYMtXg2KNRjVkqcY,14231
|
|
800
|
+
wbcore/contrib/workflow/locale/de/LC_MESSAGES/django.po,sha256=IwVmyJmNyd6TLBecMRykaGVgI5VwVzrKgsQlG0LehIY,43884
|
|
705
801
|
wbcore/contrib/workflow/migrations/0001_initial.py,sha256=Tnurc49itIH2G9HOQfvNgS4hH11rD7JDbIWbFyeg7-Q,31000
|
|
706
802
|
wbcore/contrib/workflow/migrations/0002_alter_step_step_type.py,sha256=Q0LTfMdWbKVzBqIuY-cjIfS7CVpDYW4zz50gMm5B0Zc,921
|
|
707
803
|
wbcore/contrib/workflow/migrations/0003_alter_condition_attribute_name_and_more.py,sha256=x-sMfGGINh2w12b0taLKWXCIFdljkslpBxnp-K8ZR3Y,2784
|
|
@@ -725,6 +821,21 @@ wbcore/contrib/workflow/serializers/signals.py,sha256=lV5MvxYYNpSOklr6Bw3G9QkycG
|
|
|
725
821
|
wbcore/contrib/workflow/serializers/step.py,sha256=1fdYrj3SRf70LR8_1epjG5Nf4nyv2x8rSKmWLRbxo8c,14149
|
|
726
822
|
wbcore/contrib/workflow/serializers/transition.py,sha256=g_Pwgoeb9pNgArVGaZFV9PsKYm7MUqzEgjF1jS4z63U,3189
|
|
727
823
|
wbcore/contrib/workflow/serializers/workflow.py,sha256=dpppcFtJy7UoANEsy1bENBRIv8__MqpRCeAamsAn24A,5030
|
|
824
|
+
wbcore/contrib/workflow/static/workflow/markdown/documentation/assignedprocessstep.md,sha256=Cv9M4bR2GrmXKVWoP5DZxVGDL-8AJAZUboPLyfNEHEw,1496
|
|
825
|
+
wbcore/contrib/workflow/static/workflow/markdown/documentation/condition.md,sha256=VmkMyDmHBXv7hDn6hxxSMEfbYgknzwIZU65KHWOKCNQ,1464
|
|
826
|
+
wbcore/contrib/workflow/static/workflow/markdown/documentation/decisionstep.md,sha256=ao6YoFMrGooX0iEMERnkJYGfPFgmFTMzPqmjGZm3m4A,1324
|
|
827
|
+
wbcore/contrib/workflow/static/workflow/markdown/documentation/emailstep.md,sha256=-YKrYJFBkqjy5_XWG_aXcGC-DWJVuLAyUG_uglYV-bs,1611
|
|
828
|
+
wbcore/contrib/workflow/static/workflow/markdown/documentation/finishstep.md,sha256=1LEYLR2J8IevuV-4ETvPOLEyx7AKZ02DGPgF_Ag3UW8,1415
|
|
829
|
+
wbcore/contrib/workflow/static/workflow/markdown/documentation/joinstep.md,sha256=sgK8Ah3ijSam2Evy6hYGM-rB3XRCf45qkATkaKwHfVE,1681
|
|
830
|
+
wbcore/contrib/workflow/static/workflow/markdown/documentation/process.md,sha256=EgStAd9735GWQtFdOi1tGPzYKSfTNSXZNKmlUgerBNg,1366
|
|
831
|
+
wbcore/contrib/workflow/static/workflow/markdown/documentation/processstep.md,sha256=9k9RbZhS37MZB0C9gsYuxF9rV4k63VZJeBkbDWgyneM,1722
|
|
832
|
+
wbcore/contrib/workflow/static/workflow/markdown/documentation/scriptstep.md,sha256=KseSRZGIuGqTyN3NMtAWkVh0x-TPUqqqUajkJcpQGjk,1475
|
|
833
|
+
wbcore/contrib/workflow/static/workflow/markdown/documentation/splitstep.md,sha256=p-2MTnvz5t5zZ8BSQ6ZU0rSHHuraMQlOQCxLyEpnt10,1295
|
|
834
|
+
wbcore/contrib/workflow/static/workflow/markdown/documentation/startstep.md,sha256=CLsLRQXZiEfiDFgl8wEX6-07kWYkcMlvjOsvHH8Jvx8,1084
|
|
835
|
+
wbcore/contrib/workflow/static/workflow/markdown/documentation/transition.md,sha256=-a82f0djfOTcZ8mJLXjLkxXFXFMt0wkSOF99Tdjg2Lg,936
|
|
836
|
+
wbcore/contrib/workflow/static/workflow/markdown/documentation/userstep.md,sha256=2kduSL_4gdSPuNFfktNiyjofFTcCEQQ2oOUk0ZBIzZ4,1745
|
|
837
|
+
wbcore/contrib/workflow/static/workflow/markdown/documentation/workflow.md,sha256=CS1iyjdQX5N3Fbp8QYnrrPq2QNgu_kaCu9aLLq7pJ3M,43578
|
|
838
|
+
wbcore/contrib/workflow/templates/Test_Templates.txt,sha256=TPyYY95ZVlOPsdH_XPaDgz11RpB6tZH-PUu6BKutJhE,764
|
|
728
839
|
wbcore/contrib/workflow/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
729
840
|
wbcore/contrib/workflow/tests/conftest.py,sha256=N19AOJYDI8Z2mDGMmVM9ILwuIkkYZ0xCsK4xlv1RXog,1526
|
|
730
841
|
wbcore/contrib/workflow/tests/test_configs.py,sha256=LIGgRTM9l6Fj-RHLG08fM9OdutJVEE63x-0XZ2M7oWQ,205
|
|
@@ -735,6 +846,19 @@ wbcore/contrib/workflow/tests/test_serializers.py,sha256=ln-nfFCCEDM1gcjEn_Mcya8
|
|
|
735
846
|
wbcore/contrib/workflow/tests/test_viewsets.py,sha256=c3rYPOXEGgo6vVZJdEjDYdjFUC2JtLvLYn-5kxkVuU0,16285
|
|
736
847
|
wbcore/contrib/workflow/tests/test_workflow_assignees.py,sha256=sn1glbTX_zyx_XwAqmlPuAWz36-28gpto52tJpXqgV4,9274
|
|
737
848
|
wbcore/contrib/workflow/tests/tests.py,sha256=yI7_Faa73iKPZgKadeeVXxNl96TgGuRFWXQCjNsJSGc,583
|
|
849
|
+
wbcore/contrib/workflow/tests/test_models/test_condition.py,sha256=nQ9rzQEPpn17PzX6FXoa8ArRweXbIC8qMLXjpOIBOc8,4704
|
|
850
|
+
wbcore/contrib/workflow/tests/test_models/test_data.py,sha256=4WrmvopH3QErWCOSvjsnfvCOOnCyaQ_KKmAAPSJy3CY,5369
|
|
851
|
+
wbcore/contrib/workflow/tests/test_models/test_process.py,sha256=cJCcWGXbcKSK34BtcNVg56nQXMogAtKeufbPf82Z8yw,4580
|
|
852
|
+
wbcore/contrib/workflow/tests/test_models/test_transition.py,sha256=IBsK9sRp0pCVO4t00C7Z0kjmhhSHNPOpQ4YxgDrhltg,5106
|
|
853
|
+
wbcore/contrib/workflow/tests/test_models/test_workflow.py,sha256=SueEle20ZHuHlUW6dKUfnHzIUE5p8urS5vUsi4fWTwQ,19559
|
|
854
|
+
wbcore/contrib/workflow/tests/test_models/step/test_decision_step.py,sha256=--nWOXEeH033tVYIrJFL7qtJetgCIP8ipCv1SguxxIE,3156
|
|
855
|
+
wbcore/contrib/workflow/tests/test_models/step/test_email_step.py,sha256=deKABwoVfW_ejgZVSZQPkc-YHEiyVYKiqE_KxydEYgM,2058
|
|
856
|
+
wbcore/contrib/workflow/tests/test_models/step/test_finish_step.py,sha256=vTSIjU7phy7nIzy7F9FULxuxeKZrV9nb08aHQB4C3s0,5339
|
|
857
|
+
wbcore/contrib/workflow/tests/test_models/step/test_join_step.py,sha256=IFISyc1U5Tz4-8MonIcDXy1PR63KionC4t8CKessJ9g,6376
|
|
858
|
+
wbcore/contrib/workflow/tests/test_models/step/test_script_step.py,sha256=--S5YIC1LTWsDFrU3b3Yh8f-Nv8fRmmp2haSqK1qsSQ,1041
|
|
859
|
+
wbcore/contrib/workflow/tests/test_models/step/test_split_step.py,sha256=A4GvrDkeRgYkImkfGrgbRZJl6nn8ZAEjsxOxJzz40sk,1743
|
|
860
|
+
wbcore/contrib/workflow/tests/test_models/step/test_step.py,sha256=RfdZ2UPoao5erbaQIBWu-LkSYM3QOjrMeRL7EC9JUVY,32843
|
|
861
|
+
wbcore/contrib/workflow/tests/test_models/step/test_user_step.py,sha256=lKajp_SIP-tNQTislIIcrygFepOi_l7Kc63Wby7HYyk,11906
|
|
738
862
|
wbcore/contrib/workflow/viewsets/__init__.py,sha256=PGsFZrKbNTXJF-VrrjtN3ItA6OIn1sW-ypcyWrQEX-g,557
|
|
739
863
|
wbcore/contrib/workflow/viewsets/condition.py,sha256=8BWj-nTp8uACx2BHmwXP4hJT8dvMH2DNMtIrSXmvMpc,1399
|
|
740
864
|
wbcore/contrib/workflow/viewsets/data.py,sha256=YuR_0Qz9ByEacAhO3cLtYjoN0KbUV8zmFhKd6QhTy0o,1249
|
|
@@ -798,6 +922,7 @@ wbcore/filters/fields/text.py,sha256=wmqCQSL07V-DNDjN6uy4CkCmYbg2vCHq03ckgDpQmfg
|
|
|
798
922
|
wbcore/fsm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
799
923
|
wbcore/fsm/markdown_extensions.py,sha256=ckex3ch0OKqD0RESEdz_sDhYZrfT8fCBbnuKYy6Xz4U,990
|
|
800
924
|
wbcore/fsm/mixins.py,sha256=XnG3kIKw3Ced6e5M6CCI48IKE8gIuhwptfbBtAjgYq8,5352
|
|
925
|
+
wbcore/locale/de/LC_MESSAGES/django.po,sha256=NP-uiR7VZ257fe_haFdKb7uykEEhI8_DELbKeP8SbjY,16540
|
|
801
926
|
wbcore/management/__init__.py,sha256=RXB_EGmmCZU6zwD0ys0jP5iUfhhNaPkSQAApLOJty2E,3023
|
|
802
927
|
wbcore/management/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
803
928
|
wbcore/management/commands/bootstrap.py,sha256=YEYhT6WK8XbFLOvBwlUYjoHvgnlXaoaeh11YMJ6i-w0,655
|
|
@@ -939,13 +1064,27 @@ wbcore/signals/merge.py,sha256=CpGvmqNjtuVjG_vN-NQs3j28j-FL1ZfqEJOv9GgLslY,171
|
|
|
939
1064
|
wbcore/signals/models.py,sha256=EAf6bz7eugVva29e_m8LiZTtkR-3g_veRAHpN4_2lP4,436
|
|
940
1065
|
wbcore/signals/permissions.py,sha256=H3jAeAmRcHJDPzKUnReITnk0vUEfG1LHiPoB-ygu3R8,71
|
|
941
1066
|
wbcore/signals/serializers.py,sha256=0ciF0DZTQYnkqZx8G1Yl3aM0JoWUpGRnmr93jqVlVeQ,286
|
|
1067
|
+
wbcore/templates/forms.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1068
|
+
wbcore/templates/errors/404.html,sha256=hiD4YP3wVt1sG60w-ghAD1FJsaUxre4nnCbG3L_BaWY,3922
|
|
1069
|
+
wbcore/templates/errors/500.html,sha256=G4DWI97Xhurr3mUoVKZfhN4aq5j88hvIP567BT81vW4,3852
|
|
1070
|
+
wbcore/templates/errors/503.html,sha256=srP-4rkWucmDl0Lv9MPZy-Vuum5Z2pwAwe3L-0ieN7o,3675
|
|
1071
|
+
wbcore/templates/errors/custom.html,sha256=dSQy5pn4xrhf1Qq_aEe7DEYLLAt2QoCkvy6tpX-pTbA,3663
|
|
1072
|
+
wbcore/templates/notifications/email_template.html,sha256=k-o9ieU6z6c0SKAw43_iLEleJTIZK43Y8jrRCwbKPCc,1441
|
|
942
1073
|
wbcore/templates/reversion/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
943
1074
|
wbcore/templates/reversion/compare_detail.html,sha256=1bg0o6ycoCvlw630T1dH3LXJifXx1YndLcm_eJQvbIs,520
|
|
1075
|
+
wbcore/templates/wbcore/dynamic_color_array.html,sha256=GMsZFd0mBQwoZmRe1n_QY2KU3KfjLLnn3aeU_gOkOBw,1510
|
|
1076
|
+
wbcore/templates/wbcore/email_base_template.html,sha256=1SI7aMCQROrxw97RpoiU3W7dc9_J_Ar7wxT9kiHAtq0,13290
|
|
1077
|
+
wbcore/templates/wbcore/email_notification_template.html,sha256=_4gNUJ8UU0AqXGLLNk8zH68n_CXZ3mNYYaMSG16kxw4,127
|
|
1078
|
+
wbcore/templates/wbcore/frontend.html,sha256=ZNm9NgvXwxzs10px95I2GyBhORpw9-adF1AluQJskLE,1912
|
|
1079
|
+
wbcore/templates/wbcore/admin/change_list.html,sha256=R4D2DiiESjopzwvUTThpsGqX1ikYA92D1fPbER-M74Q,188
|
|
1080
|
+
wbcore/templates/wbcore/admin/csv_form.html,sha256=g8w6oXAyvwOL7ckNmR_wch-vxnh-JLXFOa3cUkDnGSA,337
|
|
944
1081
|
wbcore/test/__init__.py,sha256=gxYHDwZugGf-eRh7sG5z7247y5uvyDIHmsm4J0ajBis,713
|
|
945
1082
|
wbcore/test/mixins.py,sha256=U6emQX8diJedJuBenN1Zww3P2Jlg6i1eaitRkmNMTgk,34745
|
|
946
1083
|
wbcore/test/signals.py,sha256=UX7n9zsak30feE1GLXkwAhLEbmRnllNPu17D1top6YI,174
|
|
947
1084
|
wbcore/test/tests.py,sha256=LyVreaI32ub-RFwSOc4tt9OF1WvL3xU4RfcJib6BIu8,4616
|
|
948
1085
|
wbcore/test/utils.py,sha256=WcY_psyHP782HW1_1-5NuT-IVNTc3Fn7cu6q_IgCuxc,8405
|
|
1086
|
+
wbcore/test/e2e_helpers_methods/e2e_checks.py,sha256=sfzmwGK8_mzILZlAlPHb_H7dvVxaXLvkLu-PWAdH5Lk,4139
|
|
1087
|
+
wbcore/test/e2e_helpers_methods/e2e_helper_methods.py,sha256=HOIXvDNlYtBa1gIQGdomDZmeINPQBWVV2XzLolnx7WE,17621
|
|
949
1088
|
wbcore/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
950
1089
|
wbcore/tests/conftest.py,sha256=XWVhrLuyY80o_-qMx4HQu0-k2h-GKw-xXnNMyUIcbjQ,1425
|
|
951
1090
|
wbcore/tests/models.py,sha256=QYJRhVMJZ6nENYuO-ktieiKvw3clxy57n3Is5h0tcmg,207
|
|
@@ -989,6 +1128,7 @@ wbcore/tests/test_new_display/test_pages.py,sha256=j3eycrVezN9qd8f5A2yxDi80skyPN
|
|
|
989
1128
|
wbcore/tests/test_new_display/test_sections.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
990
1129
|
wbcore/tests/test_new_display/test_shortcuts.py,sha256=je0ERwpK6K_ud5gVK8iDTt4gqfMDbJmR7OU-QWVqlRs,1413
|
|
991
1130
|
wbcore/tests/test_new_display/test_utils.py,sha256=44sa-__4qGkPIed89Zp2SwzF1CCVdZlKK0AUeRpBfcw,1544
|
|
1131
|
+
wbcore/tests/test_permissions/test_backend.py,sha256=8jPkbvVpfxFrXrkUG_Hye8kaU8pw9OIeGwvVRJhsvNo,890
|
|
992
1132
|
wbcore/tests/test_serializers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
993
1133
|
wbcore/tests/test_serializers/test_fields.py,sha256=0PY-G6dGLUjElTZCwRJnEdjJUkHjZ4zT7oDEn5LTvW0,6427
|
|
994
1134
|
wbcore/tests/test_serializers/test_mixins.py,sha256=0S17rEEQXPEmkaeGL8V4c6NAP2qlS_j8WXnLahDWY1E,1552
|
|
@@ -1030,6 +1170,6 @@ wbcore/viewsets/generics.py,sha256=lKDq9UY_Tyc56u1bqaIEvHGgoaXwXxpZ1c3fLVteptI,1
|
|
|
1030
1170
|
wbcore/viewsets/mixins.py,sha256=87hc4P_NmpEvafmPdcymYcTWNpFze9FcEBziKwgurDg,11717
|
|
1031
1171
|
wbcore/viewsets/utils.py,sha256=-6KU7VJV6dv4hcHVqF6OfxLEhr3O8A_PpGyfjl7r1KE,881
|
|
1032
1172
|
wbcore/viewsets/viewsets.py,sha256=3FH6vyy-qOR5JWs4-E9C4PpAs95ZIfhhSoMusDH114s,4642
|
|
1033
|
-
wbcore-2.2.
|
|
1034
|
-
wbcore-2.2.
|
|
1035
|
-
wbcore-2.2.
|
|
1173
|
+
wbcore-2.2.4.dist-info/METADATA,sha256=Ji6QeQ_xYazwcIKjFrgswa70rmYroZUKJKNrKj-UJcc,2174
|
|
1174
|
+
wbcore-2.2.4.dist-info/WHEEL,sha256=aO3RJuuiFXItVSnAUEmQ0yRBvv9e1sbJh68PtuQkyAE,105
|
|
1175
|
+
wbcore-2.2.4.dist-info/RECORD,,
|
|
File without changes
|