wbcore 1.59.5rc0__py2.py3-none-any.whl → 1.59.6rc0__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/registry.py +1 -1
- wbcore/configs/__init__.py +0 -1
- wbcore/configs/configs.py +0 -5
- wbcore/configurations/configurations/wbcore.py +0 -2
- wbcore/contrib/agenda/factories/calendar_item.py +1 -0
- wbcore/contrib/authentication/factories/users.py +1 -0
- wbcore/contrib/directory/factories/entries.py +1 -0
- wbcore/contrib/directory/migrations/0014_alter_entry_relationship_managers_and_more.py +28 -0
- wbcore/contrib/example_app/factories/person.py +1 -0
- wbcore/contrib/example_app/factories/team.py +1 -0
- wbcore/contrib/example_app/models.py +7 -6
- wbcore/contrib/example_app/tests/e2e/test_league.py +2 -2
- wbcore/contrib/example_app/tests/e2e/test_person.py +1 -1
- wbcore/contrib/example_app/tests/e2e/test_teams.py +1 -1
- wbcore/contrib/example_app/tests/test_filters.py +13 -13
- wbcore/contrib/example_app/tests/test_models/test_event.py +15 -13
- wbcore/contrib/example_app/tests/test_models/test_match.py +23 -23
- wbcore/contrib/example_app/tests/test_models/test_others.py +20 -18
- wbcore/contrib/example_app/tests/test_serializers/test_league_serializer.py +4 -4
- wbcore/contrib/example_app/tests/test_serializers/test_match_serializer.py +9 -4
- wbcore/contrib/example_app/tests/test_serializers/test_team_result_serializer.py +3 -3
- wbcore/contrib/example_app/tests/test_serializers/test_team_serializer.py +10 -10
- wbcore/contrib/example_app/tests/test_utils.py +8 -8
- wbcore/contrib/example_app/tests/test_viewsets/test_event_viewset.py +167 -162
- wbcore/contrib/example_app/tests/test_viewsets/test_league_viewset.py +9 -9
- wbcore/contrib/example_app/tests/test_viewsets/test_match_viewset.py +8 -8
- wbcore/contrib/example_app/tests/test_viewsets/test_person_viewset.py +16 -16
- wbcore/contrib/example_app/tests/test_viewsets/test_role_viewset.py +9 -9
- wbcore/contrib/example_app/tests/test_viewsets/test_sport_viewset.py +9 -9
- wbcore/contrib/example_app/tests/test_viewsets/test_stadium_viewset.py +9 -9
- wbcore/contrib/example_app/tests/test_viewsets/test_team_viewset.py +12 -12
- wbcore/contrib/example_app/tests/test_viewsets/test_teamresult_viewset.py +6 -6
- wbcore/contrib/geography/migrations/0002_geography_geography_geography_tree_i739a.py +17 -0
- wbcore/contrib/guardian/tests/test_utils.py +1 -1
- wbcore/contrib/guardian/utils.py +1 -1
- wbcore/contrib/icons/icons.py +2 -2
- wbcore/contrib/io/factories.py +2 -0
- wbcore/contrib/io/models.py +3 -3
- wbcore/contrib/io/viewsets.py +2 -2
- wbcore/contrib/pandas/fields.py +8 -0
- wbcore/contrib/tags/factories.py +1 -0
- wbcore/contrib/workflow/factories/step.py +1 -0
- wbcore/contrib/workflow/models/step.py +1 -1
- wbcore/docs/__init__.py +0 -2
- wbcore/markdown/views.py +0 -17
- wbcore/pandas/__init__.py +1 -0
- wbcore/pandas/fields.py +1 -0
- wbcore/test/tests.py +1 -1
- wbcore/tests/test_configs.py +0 -5
- wbcore/urls.py +0 -2
- wbcore/utils/figures.py +4 -8
- {wbcore-1.59.5rc0.dist-info → wbcore-1.59.6rc0.dist-info}/METADATA +26 -27
- {wbcore-1.59.5rc0.dist-info → wbcore-1.59.6rc0.dist-info}/RECORD +54 -52
- {wbcore-1.59.5rc0.dist-info → wbcore-1.59.6rc0.dist-info}/WHEEL +0 -0
wbcore/urls.py
CHANGED
|
@@ -15,7 +15,6 @@ from .frontend_user_configuration import FrontendUserConfigurationModelViewSet
|
|
|
15
15
|
from .markdown.views import (
|
|
16
16
|
AssetCreateView,
|
|
17
17
|
AssetRetrieveView,
|
|
18
|
-
BlockDiag,
|
|
19
18
|
TemplateTagView,
|
|
20
19
|
)
|
|
21
20
|
from .menus.views import MenuAPIView
|
|
@@ -65,7 +64,6 @@ urlpatterns = [
|
|
|
65
64
|
path("menu/", MenuAPIView.as_view(), name="menu"),
|
|
66
65
|
path("preset/<str:display_identifier_path>/", PresetAPIView.as_view(), name="preset"),
|
|
67
66
|
path("share/", ShareAPIView.as_view(), name="share"),
|
|
68
|
-
path("markdown/blockdiag/", BlockDiag.as_view(), name="blockdiag"),
|
|
69
67
|
path("markdown/asset/", AssetCreateView.as_view(), name="markdown-asset-upload"),
|
|
70
68
|
path("markdown/asset/<uuid>/", AssetRetrieveView.as_view(), name="asset-retrieve"),
|
|
71
69
|
path("markdown/templatetag/", TemplateTagView.as_view(), name="markdown-tags"),
|
wbcore/utils/figures.py
CHANGED
|
@@ -83,8 +83,7 @@ def get_timeseries_chart(x_data, y_data, red, green, blue):
|
|
|
83
83
|
paper_bgcolor="rgba(0,0,0,0)",
|
|
84
84
|
plot_bgcolor="rgba(0,0,0,0)",
|
|
85
85
|
yaxis=dict(
|
|
86
|
-
title="",
|
|
87
|
-
titlefont=dict(color="#000000"),
|
|
86
|
+
title=dict(text="", font=dict(color="#000000")),
|
|
88
87
|
tickfont=dict(color="#000000"),
|
|
89
88
|
anchor="x",
|
|
90
89
|
side="right",
|
|
@@ -94,8 +93,7 @@ def get_timeseries_chart(x_data, y_data, red, green, blue):
|
|
|
94
93
|
),
|
|
95
94
|
yaxis_type="log",
|
|
96
95
|
xaxis=dict(
|
|
97
|
-
title="",
|
|
98
|
-
titlefont=dict(color="#000000"),
|
|
96
|
+
title=dict(text="", font=dict(color="#000000")),
|
|
99
97
|
tickfont=dict(color="#000000"),
|
|
100
98
|
showline=True,
|
|
101
99
|
linewidth=0.5,
|
|
@@ -158,13 +156,11 @@ def get_factsheet_timeseries_chart(df, color="rgb(120,214,255)", fillcolor="rgba
|
|
|
158
156
|
),
|
|
159
157
|
rangeslider=dict(visible=True),
|
|
160
158
|
type="date",
|
|
161
|
-
title="",
|
|
162
|
-
titlefont=dict(color="#000000"),
|
|
159
|
+
title=dict(text="", font=dict(color="#000000")),
|
|
163
160
|
tickfont=dict(color="#000000"),
|
|
164
161
|
),
|
|
165
162
|
yaxis=dict(
|
|
166
|
-
title="",
|
|
167
|
-
titlefont=dict(color="#000000"),
|
|
163
|
+
title=dict(text="", font=dict(color="#000000")),
|
|
168
164
|
tickfont=dict(color="#000000"),
|
|
169
165
|
anchor="x",
|
|
170
166
|
side="right",
|
|
@@ -1,25 +1,25 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: wbcore
|
|
3
|
-
Version: 1.59.
|
|
3
|
+
Version: 1.59.6rc0
|
|
4
4
|
Author-email: Christopher Wittlinger <c.wittlinger@stainly.com>
|
|
5
|
-
Requires-Dist: boto3==1.35.*
|
|
6
5
|
Requires-Dist: celery[redis]==5.*
|
|
7
6
|
Requires-Dist: croniter==2.*
|
|
8
7
|
Requires-Dist: django-admin-inline-paginator==0.4.0
|
|
9
|
-
Requires-Dist: django-anymail==
|
|
8
|
+
Requires-Dist: django-anymail==13.*
|
|
10
9
|
Requires-Dist: django-better-admin-arrayfield==1.4.*
|
|
11
10
|
Requires-Dist: django-celery-beat==2.*
|
|
12
|
-
Requires-Dist: django-colorfield==0.
|
|
11
|
+
Requires-Dist: django-colorfield==0.14.*
|
|
13
12
|
Requires-Dist: django-configurations[database]==2.5.*
|
|
14
|
-
Requires-Dist: django-cors-headers==4.
|
|
15
|
-
Requires-Dist: django-dynamic-preferences==1.
|
|
16
|
-
Requires-Dist: django-
|
|
17
|
-
Requires-Dist: django-
|
|
13
|
+
Requires-Dist: django-cors-headers==4.9.*
|
|
14
|
+
Requires-Dist: django-dynamic-preferences==1.17.*
|
|
15
|
+
Requires-Dist: django-eventtools==1.*
|
|
16
|
+
Requires-Dist: django-extensions==4.1.*
|
|
17
|
+
Requires-Dist: django-filter==25.*
|
|
18
18
|
Requires-Dist: django-fsm==2.*
|
|
19
|
-
Requires-Dist: django-guardian==2
|
|
19
|
+
Requires-Dist: django-guardian==3.2.*
|
|
20
20
|
Requires-Dist: django-import-export==4.*
|
|
21
|
-
Requires-Dist: django-maintenance-mode==0.
|
|
22
|
-
Requires-Dist: django-modeltrans>=0.
|
|
21
|
+
Requires-Dist: django-maintenance-mode==0.22.*
|
|
22
|
+
Requires-Dist: django-modeltrans>=0.9
|
|
23
23
|
Requires-Dist: django-mptt==0.*
|
|
24
24
|
Requires-Dist: django-ordered-model==3.7.*
|
|
25
25
|
Requires-Dist: django-picklefield==3.*
|
|
@@ -27,40 +27,39 @@ Requires-Dist: django-rest-fuzzysearch==0.5.*
|
|
|
27
27
|
Requires-Dist: django-reversion-compare==0.18.*
|
|
28
28
|
Requires-Dist: django-reversion==5.1.*
|
|
29
29
|
Requires-Dist: django-storages[boto3]==1.14.*
|
|
30
|
-
Requires-Dist: django==5.
|
|
31
|
-
Requires-Dist: djangorestframework-guardian==0.
|
|
30
|
+
Requires-Dist: django==5.2.*
|
|
31
|
+
Requires-Dist: djangorestframework-guardian==0.4.*
|
|
32
32
|
Requires-Dist: djangorestframework-simplejwt==5.*
|
|
33
33
|
Requires-Dist: djangorestframework==3.15.*
|
|
34
34
|
Requires-Dist: fabric==3.2.*
|
|
35
|
-
Requires-Dist: faker==
|
|
35
|
+
Requires-Dist: faker==38.*
|
|
36
36
|
Requires-Dist: firebase-admin==6.*
|
|
37
37
|
Requires-Dist: graphviz==0.*
|
|
38
38
|
Requires-Dist: humanize==4.*
|
|
39
39
|
Requires-Dist: ics==0.*
|
|
40
|
-
Requires-Dist: igraph==
|
|
40
|
+
Requires-Dist: igraph==1.*
|
|
41
41
|
Requires-Dist: inscriptis==1.*
|
|
42
|
-
Requires-Dist: langchain-openai
|
|
43
|
-
Requires-Dist: langchain
|
|
44
|
-
Requires-Dist: markdown
|
|
45
|
-
Requires-Dist: markdown>=3.8
|
|
42
|
+
Requires-Dist: langchain-openai==1.0.*
|
|
43
|
+
Requires-Dist: langchain==1.0.*
|
|
44
|
+
Requires-Dist: markdown==3.10.*
|
|
46
45
|
Requires-Dist: openpyxl==3.*
|
|
47
|
-
Requires-Dist: phonenumbers==
|
|
48
|
-
Requires-Dist:
|
|
49
|
-
Requires-Dist:
|
|
50
|
-
Requires-Dist: prettytable==0.*
|
|
46
|
+
Requires-Dist: phonenumbers==9.*
|
|
47
|
+
Requires-Dist: plotly==6.*
|
|
48
|
+
Requires-Dist: prettytable==3.*
|
|
51
49
|
Requires-Dist: psycopg[binary]==3.*
|
|
52
|
-
Requires-Dist: pycountry==
|
|
50
|
+
Requires-Dist: pycountry==24.*
|
|
53
51
|
Requires-Dist: pyjwt==2.*
|
|
54
52
|
Requires-Dist: pytest-sftpserver==1.*
|
|
55
53
|
Requires-Dist: python-magic==0.*
|
|
56
54
|
Requires-Dist: python-slugify==8.*
|
|
57
|
-
Requires-Dist: redis==
|
|
55
|
+
Requires-Dist: redis==7.*
|
|
56
|
+
Requires-Dist: reportlab==4.*
|
|
58
57
|
Requires-Dist: requests==2.*
|
|
59
58
|
Requires-Dist: rstr==3.2.*
|
|
60
|
-
Requires-Dist: schwifty==
|
|
59
|
+
Requires-Dist: schwifty==2025.*
|
|
61
60
|
Requires-Dist: tatsu==5.*
|
|
62
61
|
Requires-Dist: tqdm==4.*
|
|
63
|
-
Requires-Dist: weasyprint==
|
|
62
|
+
Requires-Dist: weasyprint==66.*
|
|
64
63
|
Provides-Extra: pandas
|
|
65
64
|
Requires-Dist: numpy==1.*; extra == 'pandas'
|
|
66
65
|
Requires-Dist: pandas==2.2.*; extra == 'pandas'
|
|
@@ -11,17 +11,17 @@ wbcore/messages.py,sha256=fSfELjXkastcd3gFiWGJrGI_dl0BzsKg8UfaApXf5nM,1967
|
|
|
11
11
|
wbcore/pagination.py,sha256=lOW1BzJwlATzfOHo4BJA23avrg_39-LCL6mHctsAoBk,2282
|
|
12
12
|
wbcore/routers.py,sha256=gLbQc8MRHuJax88FBDejtt3_MavE9KkwZMsQvAqJj0I,2174
|
|
13
13
|
wbcore/tasks.py,sha256=PXjAuJ3vQ8ESwucaLi0rfSAQneB5d3b5AODD0XC0naE,4102
|
|
14
|
-
wbcore/urls.py,sha256=
|
|
14
|
+
wbcore/urls.py,sha256=kis0kfmc4TnqHDxY9Kmck_W3jnotMdzDxMeuT2uXukY,4740
|
|
15
15
|
wbcore/views.py,sha256=6vfq4DfKmCJD27T_XvKdigMBy9NbpzcaBO3gYcq60tI,950
|
|
16
16
|
wbcore/workers.py,sha256=26PB4nhSay9LJ3DAj_G3gWZKX3ctu9WT4Ll0lC38L3k,351
|
|
17
17
|
wbcore/cache/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
18
18
|
wbcore/cache/buttons.py,sha256=gyEizLHyWeWAiNxZ4fQ16pxiCy1sxfwIht928HBrOf8,970
|
|
19
19
|
wbcore/cache/decorators.py,sha256=pfXnncxysUuKHFDoMX-oiPQ_eZfmi3i4qSrb0HDg3bA,1120
|
|
20
20
|
wbcore/cache/mixins.py,sha256=N8lCZEHh9u_RiKhRjqBwRTw8OJTMdcydM8BfND_q8Q0,1722
|
|
21
|
-
wbcore/cache/registry.py,sha256=
|
|
21
|
+
wbcore/cache/registry.py,sha256=9KwSVegT-FNYzaEV6uw4WYa4LJ8mkEI2QCgvwyLvA6Q,3680
|
|
22
22
|
wbcore/cache/views.py,sha256=Ehwglwlug2Z4285BPvTE5623sCAlHrDD3np1oZkw_gc,630
|
|
23
|
-
wbcore/configs/__init__.py,sha256=
|
|
24
|
-
wbcore/configs/configs.py,sha256=
|
|
23
|
+
wbcore/configs/__init__.py,sha256=icE1l0NI-0vGErpIyCUx48l-Fys4OCJxK0Wi781Wdek,238
|
|
24
|
+
wbcore/configs/configs.py,sha256=QDgKfNUMFfVYXBvmh_yk_2oFikmAspiSKxuhjePAyd0,1882
|
|
25
25
|
wbcore/configs/decorators.py,sha256=5kdwENMaiw6rzjqTj-D7ezx-9gj2FVg1P5NsFrO-fnc,387
|
|
26
26
|
wbcore/configs/registry.py,sha256=mBOETXfDdGPW7tpXRTyvvEzn4IvAWtPegN13-ml6Jy4,1287
|
|
27
27
|
wbcore/configs/views.py,sha256=GCf8jPF0hAgQ8oIle4jJMliWlWoXj4yBPsZAe7MZS1s,366
|
|
@@ -43,7 +43,7 @@ wbcore/configurations/configurations/rest_framework.py,sha256=u1c0cup3KnSr5CuWjx
|
|
|
43
43
|
wbcore/configurations/configurations/static.py,sha256=-OZXJvFpSlPAYspkeq97PL1VdiV1nh5_BYPO0jGmiVk,690
|
|
44
44
|
wbcore/configurations/configurations/templates.py,sha256=Jjx6Pd8K4gAVhRXOM8sMq5PoVyB6Ll5HnOEQU6OeevY,591
|
|
45
45
|
wbcore/configurations/configurations/uvicorn.py,sha256=ZkklzlFwvMnOljNvr-Pl9QSGAGlNw-dYQjSiGx2GC-Y,368
|
|
46
|
-
wbcore/configurations/configurations/wbcore.py,sha256=
|
|
46
|
+
wbcore/configurations/configurations/wbcore.py,sha256=t11pM-AFCMaFrQQxH9Kz58lVSYQO7ZeQCrkBZTlxAys,3023
|
|
47
47
|
wbcore/content_type/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
48
48
|
wbcore/content_type/admin.py,sha256=0o4M2ARAxW4qZ_lA8hIootT69GRyOih_-K_A5ouNkUw,255
|
|
49
49
|
wbcore/content_type/filters.py,sha256=s7GNjnesOcvNIKKa_w1XsTs21Rocp8Mo1tvVdVdbq3Q,629
|
|
@@ -61,7 +61,7 @@ wbcore/contrib/agenda/admin/__init__.py,sha256=p4dBh0EWaa65Ulr7mQg5wbKpUiZ3eJ30c
|
|
|
61
61
|
wbcore/contrib/agenda/admin/calendar_item.py,sha256=Uil7ifzO8dDSnGpKjK7GXq-jI3_QjJ8J51sMzcdHEoo,438
|
|
62
62
|
wbcore/contrib/agenda/admin/conference_room.py,sha256=U7JWv562VLbQt3EKGN82Hv5empODQKm1Ai16UET-wK4,616
|
|
63
63
|
wbcore/contrib/agenda/factories/__init__.py,sha256=HtWkd-1NBWASbKiUGoRij02KaWKv5YfRQ013XNKGrwM,115
|
|
64
|
-
wbcore/contrib/agenda/factories/calendar_item.py,sha256=
|
|
64
|
+
wbcore/contrib/agenda/factories/calendar_item.py,sha256=B94TrO5D2tN4wKUxW7eWc9s0sHKZdmHf0TKnBHF04a8,1408
|
|
65
65
|
wbcore/contrib/agenda/factories/conference_room.py,sha256=XOuWhzkKIHp3ZXdMrKIpXoxoWilo7LJY5g9QPOQn0WY,525
|
|
66
66
|
wbcore/contrib/agenda/filters/__init__.py,sha256=RtsTRlUrL4dP0pA86ws_4u1-bqoU_YslwbnuJhe8NGU,145
|
|
67
67
|
wbcore/contrib/agenda/filters/calendar_item.py,sha256=c0v0W8aTNUvG0a87kMwYc9LWRcyckWQUlcPGnIhCNmU,2697
|
|
@@ -133,7 +133,7 @@ wbcore/contrib/authentication/urls.py,sha256=OUeLXEwuF6yS-oXeBpkC5aCviEC-nPbM3CS
|
|
|
133
133
|
wbcore/contrib/authentication/utils.py,sha256=jmOZtY_z6oW_r6npGPH00IbPcUjWZ1NchodMgcHXEbs,341
|
|
134
134
|
wbcore/contrib/authentication/factories/__init__.py,sha256=hpYaVz57Ko4lh6rZex31HuO-pyJ-LmegzGH26hSrIqo,243
|
|
135
135
|
wbcore/contrib/authentication/factories/tokens.py,sha256=CX3HI3ynapYdknmiMrF7WikmF-LWMqKmYMMlLJgUDrI,414
|
|
136
|
-
wbcore/contrib/authentication/factories/users.py,sha256=
|
|
136
|
+
wbcore/contrib/authentication/factories/users.py,sha256=GyVe5ud-BFvZonkwQprcllUzAm56GokYp_Bl8R9nwBs,3764
|
|
137
137
|
wbcore/contrib/authentication/factories/users_activities.py,sha256=tbcpZyXokn6fDZ6fuZkGtYL7Jtm0aWIiZBY63urx_iw,480
|
|
138
138
|
wbcore/contrib/authentication/fixtures/authentication.json,sha256=9sRKzduD4j9-NYP-Ou9Lw1hIB3DWIPwAfO-T_JFebvI,1848
|
|
139
139
|
wbcore/contrib/authentication/locale/de/LC_MESSAGES/django.po,sha256=f0xhk8zpD3ir1RaVGCoYaGwNpYJAiwhZgoZJ_cfxL90,20901
|
|
@@ -292,7 +292,7 @@ wbcore/contrib/directory/admin/entries.py,sha256=A5WfBpRaHtZOHVlU6_ficp3CIOzB_pT
|
|
|
292
292
|
wbcore/contrib/directory/admin/relationships.py,sha256=-reoYuU4ZnM24wRZ3ny55ZGu3esPn7cl-qYAdnBPD2I,2312
|
|
293
293
|
wbcore/contrib/directory/factories/__init__.py,sha256=KIjvlqpnFetFpSEjYM1VKHO9FOWDhsIGueM3Framm7I,892
|
|
294
294
|
wbcore/contrib/directory/factories/contacts.py,sha256=M3CvWESxaZ_KDmQUfn0tsQBY0rUjSrIOVNE8D3lfgnM,1950
|
|
295
|
-
wbcore/contrib/directory/factories/entries.py,sha256=
|
|
295
|
+
wbcore/contrib/directory/factories/entries.py,sha256=kz94tVbfSItuu-1tanfYRXYsWt6h7tet5UzKrU6W7LY,5124
|
|
296
296
|
wbcore/contrib/directory/factories/relationships.py,sha256=7IheRchJbDgB7mqy8LADcTtNB89cjodMoOSk1dAi_ww,2282
|
|
297
297
|
wbcore/contrib/directory/filters/__init__.py,sha256=uGgFoX06eC7P354m2q-29Ct5ijO3kCowh6Hqkpf_Pk8,670
|
|
298
298
|
wbcore/contrib/directory/filters/contacts.py,sha256=Ig9Qw4ZPStm121iLW1oLXWb9pW97Ydb3rNKYWrtQ3UU,7448
|
|
@@ -316,6 +316,7 @@ wbcore/contrib/directory/migrations/0010_remove_addresscontact_city.py,sha256=Xu
|
|
|
316
316
|
wbcore/contrib/directory/migrations/0011_person_description_person_i18n.py,sha256=1L-KnvbOkPl3MQk4Jco0TnmyDML-LkdOzk6PA193VHs,654
|
|
317
317
|
wbcore/contrib/directory/migrations/0012_alter_person_managers.py,sha256=Y-GWOA5-qXLZowsPQdvuXVcPDHkw9Pg40dEn11kdjEI,456
|
|
318
318
|
wbcore/contrib/directory/migrations/0013_alter_clientmanagerrelationship_options.py,sha256=sj9-aCqnzwqKyfYAyLfc1TW2o9X_oVVtNkT30fRuVdQ,560
|
|
319
|
+
wbcore/contrib/directory/migrations/0014_alter_entry_relationship_managers_and_more.py,sha256=KdejO9bxK0u7N-F5Ck-YeKjIiJ954rgdJ1EeobAMPl8,1318
|
|
319
320
|
wbcore/contrib/directory/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
320
321
|
wbcore/contrib/directory/models/__init__.py,sha256=XtnmU5YUr3SGig6PsSfGsWUaiBaX6kaHShBv3sbxZ14,526
|
|
321
322
|
wbcore/contrib/directory/models/contacts.py,sha256=8KVCmzNARTzeQgRtXe78QKhJr0SvEJ-aZcsRuYaMIbE,18322
|
|
@@ -464,7 +465,7 @@ wbcore/contrib/dynamic_preferences/viewsets.py,sha256=bM6_L1sAUzg6BQ--BkU4-OT6wq
|
|
|
464
465
|
wbcore/contrib/example_app/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
465
466
|
wbcore/contrib/example_app/admin.py,sha256=Eo9dnGvXdUEgfpzi2qmovfzJExFYd_ZgGVV2oOdsqKI,2686
|
|
466
467
|
wbcore/contrib/example_app/apps.py,sha256=h5pkRPxGGVlXFq95eGayfPL9XJAwFHGrsigYxFXLWN4,168
|
|
467
|
-
wbcore/contrib/example_app/models.py,sha256=
|
|
468
|
+
wbcore/contrib/example_app/models.py,sha256=_fyLDzUBJHrEq8PTbVGGmqGdll0mKp48EribeojqCZM,32831
|
|
468
469
|
wbcore/contrib/example_app/urls.py,sha256=KbHORgxYJc-w7415BSDf52eSsfjuvZV-0VKLLzRz90o,4813
|
|
469
470
|
wbcore/contrib/example_app/utils.py,sha256=zHEwC7IzIHpZoqFNVnuA75w0IIKKMR9xMpIYkNWKi5A,697
|
|
470
471
|
wbcore/contrib/example_app/views.py,sha256=1e8iMtBxclH9Vbi_z73pHgeb_kI3Gmaiq3KI6JmJKqI,287
|
|
@@ -472,11 +473,11 @@ wbcore/contrib/example_app/factories/__init__.py,sha256=eOak3Fa5SSIzUuBQxgozarS7
|
|
|
472
473
|
wbcore/contrib/example_app/factories/event.py,sha256=BKlodLmQvVmq2cf0LIeriix9Agxznu-NHS1_Ns_AhWg,1049
|
|
473
474
|
wbcore/contrib/example_app/factories/league.py,sha256=xor6ZUBlNaJV_OTG8_NFjbJ7gc-n0k0Goj60p-jVqeg,648
|
|
474
475
|
wbcore/contrib/example_app/factories/match.py,sha256=hrXTsLn7ohHi_QDcehXsiNEQSqDM0tLGQEHBii0xIiM,1109
|
|
475
|
-
wbcore/contrib/example_app/factories/person.py,sha256=
|
|
476
|
+
wbcore/contrib/example_app/factories/person.py,sha256=XagW9YmHJxUbL3Oz7cH1EPrFNHkcIMuPQH7bEMx56Jk,1101
|
|
476
477
|
wbcore/contrib/example_app/factories/role.py,sha256=_Y-ysHyP8HqvTDXl7m0imc3CIFWuqQpWHQnwOavlmCQ,215
|
|
477
478
|
wbcore/contrib/example_app/factories/sport.py,sha256=lnkL2ri9c8IExAZJpMiO7FvmE6VT4yYJsRza5M2aj9U,343
|
|
478
479
|
wbcore/contrib/example_app/factories/stadium.py,sha256=ELQvxKIJVyzICXbvihqBhRK8a_DVGwLXF29fZiLBevY,461
|
|
479
|
-
wbcore/contrib/example_app/factories/team.py,sha256=
|
|
480
|
+
wbcore/contrib/example_app/factories/team.py,sha256=jNvkEBLP66A1NZ3E7PmUQw1i3FGfcKYarb52K9nHoxU,1343
|
|
480
481
|
wbcore/contrib/example_app/filters/__init__.py,sha256=01WWlH11C4ES6JSHeaKvJ3NqqVPw4i5B9VBUHYkOw_E,552
|
|
481
482
|
wbcore/contrib/example_app/filters/event.py,sha256=Zj20x6zIPoPICrZOyXrUA9T71rAM42iVcKQCyg-629Y,2999
|
|
482
483
|
wbcore/contrib/example_app/filters/league.py,sha256=bLl8cywYR1elXBuXRWtK3DQoKpXGKiS5Skx_B-iA_M4,2824
|
|
@@ -510,32 +511,32 @@ wbcore/contrib/example_app/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRk
|
|
|
510
511
|
wbcore/contrib/example_app/tests/conftest.py,sha256=QyZxcZOxi8gQR2lXyQ1G3Ag9OdJnNAQhoZ-DyqE7WzI,430
|
|
511
512
|
wbcore/contrib/example_app/tests/signals.py,sha256=KfPXtAHWC4lF3gDO8-PNFL_PkYZUnmOJMExwRcQ7SuU,238
|
|
512
513
|
wbcore/contrib/example_app/tests/test_displays.py,sha256=kahxT31FdFyfIaoVMedPxMgAfkwTM74OUgWS9zI1hQM,1764
|
|
513
|
-
wbcore/contrib/example_app/tests/test_filters.py,sha256=
|
|
514
|
-
wbcore/contrib/example_app/tests/test_utils.py,sha256=
|
|
514
|
+
wbcore/contrib/example_app/tests/test_filters.py,sha256=jkHuGmrhlr3j8bFSwGNR97jRsbcEpJz_VRT73bWgPcQ,3201
|
|
515
|
+
wbcore/contrib/example_app/tests/test_utils.py,sha256=IU15jXblB_vDHTDK9s0iVkOQtZQC0FViJJcbfzd5snE,1062
|
|
515
516
|
wbcore/contrib/example_app/tests/e2e/__init__.py,sha256=ocedjDOqGoZJBujJMaP4uWMmcPrWpXkUKItKBLfXr4M,118
|
|
516
517
|
wbcore/contrib/example_app/tests/e2e/e2e_example_app_utility.py,sha256=0Kn70E_g3O1WN3L7J2t3CKyxJ-f0VGnpXgzN6Ii-5K0,1962
|
|
517
|
-
wbcore/contrib/example_app/tests/e2e/test_league.py,sha256=
|
|
518
|
-
wbcore/contrib/example_app/tests/e2e/test_person.py,sha256=
|
|
519
|
-
wbcore/contrib/example_app/tests/e2e/test_teams.py,sha256=
|
|
520
|
-
wbcore/contrib/example_app/tests/test_models/test_event.py,sha256=
|
|
521
|
-
wbcore/contrib/example_app/tests/test_models/test_match.py,sha256=
|
|
522
|
-
wbcore/contrib/example_app/tests/test_models/test_others.py,sha256=
|
|
523
|
-
wbcore/contrib/example_app/tests/test_serializers/test_league_serializer.py,sha256=
|
|
524
|
-
wbcore/contrib/example_app/tests/test_serializers/test_match_serializer.py,sha256=
|
|
518
|
+
wbcore/contrib/example_app/tests/e2e/test_league.py,sha256=VVyYgUeJcnvhRCzPFyDar0WInv5MpcJ9n0x3xSafqKs,2813
|
|
519
|
+
wbcore/contrib/example_app/tests/e2e/test_person.py,sha256=Ngl2agoBFfunMEFR7TGeRh6NTyj55tTG4DIHx-jJqP4,2854
|
|
520
|
+
wbcore/contrib/example_app/tests/e2e/test_teams.py,sha256=dvMskLYUEycqenh83cTQOK7AFwBh-bDftxAJaWiexG8,2295
|
|
521
|
+
wbcore/contrib/example_app/tests/test_models/test_event.py,sha256=V1zZcTqku4TKyDTfiIlVgb8pEwgQQ-vNLeI6vhzTIcs,3033
|
|
522
|
+
wbcore/contrib/example_app/tests/test_models/test_match.py,sha256=dWUGRGqmT3kIQ-C0zTOOTy_pyp-oEmp_TxBWlmrttqY,8671
|
|
523
|
+
wbcore/contrib/example_app/tests/test_models/test_others.py,sha256=mCyoaX_0tJmp1xHyPY2f_PhxzP8VMbt4fkYkV17J9-s,5915
|
|
524
|
+
wbcore/contrib/example_app/tests/test_serializers/test_league_serializer.py,sha256=ikP8gkRsR8pIG0RMBwjq43WiC9h-xZ5EAlEOU4ehxh8,1441
|
|
525
|
+
wbcore/contrib/example_app/tests/test_serializers/test_match_serializer.py,sha256=F0RXyeeHjcqnYAf1JDdeCzWyXCXMKs1xZr75SLLhG9w,5695
|
|
525
526
|
wbcore/contrib/example_app/tests/test_serializers/test_role_serializer.py,sha256=P8NUNCjbiz8grwX0nBoG8Y7v2GkZe_oq-As4rCBLpX0,516
|
|
526
527
|
wbcore/contrib/example_app/tests/test_serializers/test_sport_serializer.py,sha256=ilE43gIfG8H8x98KBrZOdI27U1P44dujAkLwc6Cmob0,527
|
|
527
528
|
wbcore/contrib/example_app/tests/test_serializers/test_stadium_serializer.py,sha256=d5OadgCZHC1UMSTarpunQHP8LP-rEjB1wWz5oUROQo8,547
|
|
528
|
-
wbcore/contrib/example_app/tests/test_serializers/test_team_result_serializer.py,sha256=
|
|
529
|
-
wbcore/contrib/example_app/tests/test_serializers/test_team_serializer.py,sha256
|
|
530
|
-
wbcore/contrib/example_app/tests/test_viewsets/test_event_viewset.py,sha256=
|
|
531
|
-
wbcore/contrib/example_app/tests/test_viewsets/test_league_viewset.py,sha256=
|
|
532
|
-
wbcore/contrib/example_app/tests/test_viewsets/test_match_viewset.py,sha256=
|
|
533
|
-
wbcore/contrib/example_app/tests/test_viewsets/test_person_viewset.py,sha256
|
|
534
|
-
wbcore/contrib/example_app/tests/test_viewsets/test_role_viewset.py,sha256=
|
|
535
|
-
wbcore/contrib/example_app/tests/test_viewsets/test_sport_viewset.py,sha256=
|
|
536
|
-
wbcore/contrib/example_app/tests/test_viewsets/test_stadium_viewset.py,sha256=
|
|
537
|
-
wbcore/contrib/example_app/tests/test_viewsets/test_team_viewset.py,sha256=
|
|
538
|
-
wbcore/contrib/example_app/tests/test_viewsets/test_teamresult_viewset.py,sha256
|
|
529
|
+
wbcore/contrib/example_app/tests/test_serializers/test_team_result_serializer.py,sha256=bXo7v4lbgVd6fXMJxMQcOCGjmuj6o6QD0UDQ-3mbx_Q,1137
|
|
530
|
+
wbcore/contrib/example_app/tests/test_serializers/test_team_serializer.py,sha256=-x7F9mSFCUGuKwz-dka1uBrCYcK7EGXnn2NSgSsiILg,3095
|
|
531
|
+
wbcore/contrib/example_app/tests/test_viewsets/test_event_viewset.py,sha256=WItaov41m5pjwVqOxeTVGe8UZQiojJprItNiryKmUe8,8151
|
|
532
|
+
wbcore/contrib/example_app/tests/test_viewsets/test_league_viewset.py,sha256=FaKAmQj-1T4ojV1iYcPDMsGHpKNXGqlaWE6h0TTbdKc,3765
|
|
533
|
+
wbcore/contrib/example_app/tests/test_viewsets/test_match_viewset.py,sha256=FZkfZARFjR20IiMjObmqH9o5XZ_B8j4Ws5eJqJYaCOU,2870
|
|
534
|
+
wbcore/contrib/example_app/tests/test_viewsets/test_person_viewset.py,sha256=vNp5QnBDg8e5AuROhtCMM7hDzLYEVadXzNOQFF3PfvM,7635
|
|
535
|
+
wbcore/contrib/example_app/tests/test_viewsets/test_role_viewset.py,sha256=jWsYz-wWFQ6gu-EZiYHtj_cMy7EJhtqEzSj0UvUA6SI,3286
|
|
536
|
+
wbcore/contrib/example_app/tests/test_viewsets/test_sport_viewset.py,sha256=tiYotuMN4UNkIe-9TtOFocPrcfkKrL0Ua0WN0rf0xsk,3292
|
|
537
|
+
wbcore/contrib/example_app/tests/test_viewsets/test_stadium_viewset.py,sha256=JeqfT4O34tjnepryEJCwmlfPautMAoKZQEUtL_W1Di0,3351
|
|
538
|
+
wbcore/contrib/example_app/tests/test_viewsets/test_team_viewset.py,sha256=RebLlRwqz2wM1hmFVmml_dLaa9OzqzE2LRtj4vFHgFw,4243
|
|
539
|
+
wbcore/contrib/example_app/tests/test_viewsets/test_teamresult_viewset.py,sha256=ulVp3HnAM1apBs4svMc2VvZMow3XWMbtR4bA4ZbBnVk,2581
|
|
539
540
|
wbcore/contrib/example_app/tests/test_viewsets/test_utils_viewsets.py,sha256=s3W6w4hojZwmXOU1mYCNL7_GsS6PVHB4gKyznjWjRwE,5058
|
|
540
541
|
wbcore/contrib/example_app/viewsets/__init__.py,sha256=OSYKL4GYm6rIobWC4-ZTd1B0k1fcaaIrs0RHQ6EB56Q,1271
|
|
541
542
|
wbcore/contrib/example_app/viewsets/event.py,sha256=luXL6GilsVdb834Gk4YGWnsQS5Fnot-onBoXuRtBMnU,10130
|
|
@@ -589,6 +590,7 @@ wbcore/contrib/geography/import_export/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JC
|
|
|
589
590
|
wbcore/contrib/geography/import_export/resources/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
590
591
|
wbcore/contrib/geography/import_export/resources/geography.py,sha256=ACX7m9RjPBnDg7M2jJX7x--gD3btH_FbF1Buhb_-raM,387
|
|
591
592
|
wbcore/contrib/geography/migrations/0001_initial.py,sha256=aK3R_L0jKa-5KEBJGrmS2U8ZgsP7Wno5gpL8Joa_N2k,4458
|
|
593
|
+
wbcore/contrib/geography/migrations/0002_geography_geography_geography_tree_i739a.py,sha256=XxPGoJOigxUDp4YK_j9PUTtsYjPidlVtUsdWhIAfu-g,398
|
|
592
594
|
wbcore/contrib/geography/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
593
595
|
wbcore/contrib/geography/release_notes/1_0_0.md,sha256=NrP1LZ-N04QilS28vyPzokjfwjTGWs3eZ8ML3Gpw7nA,165
|
|
594
596
|
wbcore/contrib/geography/release_notes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -625,7 +627,7 @@ wbcore/contrib/guardian/configurations.py,sha256=rzSTs_4zbADDSnmqgqRHYd83gKdPAGy
|
|
|
625
627
|
wbcore/contrib/guardian/filters.py,sha256=36dXy8IaSyPDKc7QkAip4d_12U1luCOKH3ujXgjBHqg,752
|
|
626
628
|
wbcore/contrib/guardian/tasks.py,sha256=hCUKRkcASTnSjLIQTOgU5C6pNDCL2soyij-JzTjLU08,588
|
|
627
629
|
wbcore/contrib/guardian/urls.py,sha256=UCUiYxALnbEH7ZNKs4jp_xBx6vHClsVi9Hd_NR1_0Wg,412
|
|
628
|
-
wbcore/contrib/guardian/utils.py,sha256=
|
|
630
|
+
wbcore/contrib/guardian/utils.py,sha256=3CP48t9r8puWQ1lFCmoPTVLnrXQc02h7bwEthnWQMCo,5198
|
|
629
631
|
wbcore/contrib/guardian/migrations/0001_initial.py,sha256=IB4_ls922OVdC3r_9FhIFR_xom0wic2NOwYG9gRo8S8,4609
|
|
630
632
|
wbcore/contrib/guardian/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
631
633
|
wbcore/contrib/guardian/models/__init__.py,sha256=63_HSsJbwNgPPt67vyZKHm5dqB8X-YIAF6tRlK9YgQk,64
|
|
@@ -635,7 +637,7 @@ wbcore/contrib/guardian/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5N
|
|
|
635
637
|
wbcore/contrib/guardian/tests/conftest.py,sha256=5HFVx8rTnexM2qlPyzDTmhngVZrKVO7ibSqm5i2KoFg,67
|
|
636
638
|
wbcore/contrib/guardian/tests/test_model_mixins.py,sha256=CdlCl19I4Fff8MIRgk06lwSGxKB6pu20dIRHAY3VkVg,4062
|
|
637
639
|
wbcore/contrib/guardian/tests/test_tasks.py,sha256=hrVyC_hXYIELlZqOszrK5PtfileTQZ86-q16Xz6k5cw,3305
|
|
638
|
-
wbcore/contrib/guardian/tests/test_utils.py,sha256=
|
|
640
|
+
wbcore/contrib/guardian/tests/test_utils.py,sha256=PWdfQmvtaXyqLP5E201S8FFkdXh4hBDcoVoU-sVJSro,8178
|
|
639
641
|
wbcore/contrib/guardian/tests/test_viewsets.py,sha256=bRVHVtAZ06cZbpprJJKmJQHfTwzn7CT1w9Xq78QbiZ0,2308
|
|
640
642
|
wbcore/contrib/guardian/viewsets/__init__.py,sha256=Fc9L_HXR1AnSAKn8OdwBSrLu9Zg2F1Fh4l0C1Pt0e6Y,60
|
|
641
643
|
wbcore/contrib/guardian/viewsets/mixins.py,sha256=Nu0_7zFuudd-sUJy6eEIUTIWUE4JMCHUY-xJLo5onvQ,235
|
|
@@ -656,7 +658,7 @@ wbcore/contrib/i18n/tests/conftest.py,sha256=S0kfCoA_Aq-05_75AXfPod0oWitji1un8_w
|
|
|
656
658
|
wbcore/contrib/i18n/tests/test_viewsets.py,sha256=cWDwIdVwEmVMbidU6fLVxjFFJH8FF8VuiM-sp4d7slE,2060
|
|
657
659
|
wbcore/contrib/icons/__init__.py,sha256=zMehywxDfn8IvNcMW-6TSai6FpXE7Dd4m6X2GI5l4Bk,26
|
|
658
660
|
wbcore/contrib/icons/apps.py,sha256=CbfoZkSePdV9nlUwxtNk0qMiWIR8XtBSNCmUbH1Clg8,102
|
|
659
|
-
wbcore/contrib/icons/icons.py,sha256=
|
|
661
|
+
wbcore/contrib/icons/icons.py,sha256=IcC6zxyWGELr8qJWY2Obb_R1wJPdcxOZ56h1r2ElESo,6715
|
|
660
662
|
wbcore/contrib/icons/models.py,sha256=CaLITnSbltSJTKd_kieT1FAK0vrvKURVElilzqFF4wE,304
|
|
661
663
|
wbcore/contrib/icons/serializers.py,sha256=C08Gr43K3dv2jB7DcAqnBz-RD9r6O9t2E_JIV8k-P-Q,582
|
|
662
664
|
wbcore/contrib/icons/backends/__init__.py,sha256=GrA72d_857UivZzBmLkqgqLEqccF0L2pjpAcDTsPWls,118
|
|
@@ -668,10 +670,10 @@ wbcore/contrib/io/apps.py,sha256=6k6kj1S5ytYSg8YLWAkuRu39BpZJUuCd4RPH1PmaCng,130
|
|
|
668
670
|
wbcore/contrib/io/dynamic_preferences_registry.py,sha256=9asttbLsmI0x64QGokmLTrs2oCOdLqSYB55mYHmQBPA,844
|
|
669
671
|
wbcore/contrib/io/enums.py,sha256=9Ph2hUn-cjfvTIhPGxlC07qubPS6R3B9ilvC3tpMm8o,417
|
|
670
672
|
wbcore/contrib/io/exceptions.py,sha256=-9pTtBr4oj7qBpKwnsN7sabu5S6gpDkWTXkA4ZaW9EE,690
|
|
671
|
-
wbcore/contrib/io/factories.py,sha256=
|
|
673
|
+
wbcore/contrib/io/factories.py,sha256=VVtUf_YPJOkT0YmJ0M09bKz1RINd98yb-ZJKwu5F5R0,7133
|
|
672
674
|
wbcore/contrib/io/imports.py,sha256=Hu8ppai06SQ_CDQ2oUbFcwduAhekCp1l1DB89kTn2nQ,13087
|
|
673
675
|
wbcore/contrib/io/mixins.py,sha256=Sy_1mfdJzrIODCRcbfiA6miU8EqKEaJhL7mEjsRhOvY,1297
|
|
674
|
-
wbcore/contrib/io/models.py,sha256=
|
|
676
|
+
wbcore/contrib/io/models.py,sha256=X5zb00EkpiOaAALAoXV4JmtSwn6QApGYWbIMCPwVFJk,40536
|
|
675
677
|
wbcore/contrib/io/resources.py,sha256=eGEpmyrtkB3DgFKV6m57OFzyu6jBZUIXkn5Jopeus9M,6953
|
|
676
678
|
wbcore/contrib/io/serializers.py,sha256=oS5od8ni8wUZml1zM_RAdW9VWrw226Ru4v3RBifOnFY,4639
|
|
677
679
|
wbcore/contrib/io/signals.py,sha256=jCGHjt5Qg2T1aIi4BzWYzWYb2YZT82gUMhG68v2rx58,145
|
|
@@ -679,7 +681,7 @@ wbcore/contrib/io/tasks.py,sha256=auozEPYqu_R7pjwr_1QSS5csGAYIEEWIVqNjSLzZhkw,85
|
|
|
679
681
|
wbcore/contrib/io/urls.py,sha256=v91WUMYKwQhI9mDnpScP6hvYdGSdQZg0yQzEljCZ4lk,1014
|
|
680
682
|
wbcore/contrib/io/utils.py,sha256=SMjQeUEg_cuBKQfnKGj-qjJDC8Z_xCOQ-t7VZxwCZt4,1359
|
|
681
683
|
wbcore/contrib/io/viewset_mixins.py,sha256=RhO8TE9RPQsubSd2H2XgIJLD92tHu-7_gO8JwROxtHI,11419
|
|
682
|
-
wbcore/contrib/io/viewsets.py,sha256=
|
|
684
|
+
wbcore/contrib/io/viewsets.py,sha256=jovVPfg9MnhLPT6c2S_VJud5e232-gDFFe-Zq7JGstY,5005
|
|
683
685
|
wbcore/contrib/io/backends/__init__.py,sha256=5QaSbVikVGaD3RHfBl0I7pFsyKm1YDZAxS4cvzfhPLs,90
|
|
684
686
|
wbcore/contrib/io/backends/abstract.py,sha256=PKhjS6Nr-FwZfCwNlMCWgXaMoGy0XzE-58x1T7JzNoM,2101
|
|
685
687
|
wbcore/contrib/io/backends/mail.py,sha256=arSuRTKeRqgXyrva6dUjnfxFiq4szbrExbw5bsiGxnI,1803
|
|
@@ -788,7 +790,7 @@ wbcore/contrib/notifications/viewsets/notifications.py,sha256=0Y5VJZgu8rwOnYNWDT
|
|
|
788
790
|
wbcore/contrib/notifications/viewsets/configs/notification_types.py,sha256=8x0xmT6brlXh5fiI689fMhtKMjynETD0Xlm1QVYUlD8,1893
|
|
789
791
|
wbcore/contrib/notifications/viewsets/configs/notifications.py,sha256=KHy4V5R3D8AjZp1No7EasjeR-zPzks8eO-2PjlIxMuo,3605
|
|
790
792
|
wbcore/contrib/pandas/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
791
|
-
wbcore/contrib/pandas/fields.py,sha256=
|
|
793
|
+
wbcore/contrib/pandas/fields.py,sha256=JtDxAolmiMYj_-HJqLVX5G7iN2jDm-oh4nbGeteydeY,4293
|
|
792
794
|
wbcore/contrib/pandas/filters.py,sha256=Pi5h3JB9Ugqx-xZ82X8MUIfRHwrY5locBUQH7GDg60w,4821
|
|
793
795
|
wbcore/contrib/pandas/filterset.py,sha256=uoeW54GT-rhgtUedJzq2QjKfpwRdmNFW7C059fm30lg,1036
|
|
794
796
|
wbcore/contrib/pandas/metadata.py,sha256=EIKp94TDtdtCRELl3zWTLU37FzNX-EpVeMgISUgI-FY,772
|
|
@@ -804,7 +806,7 @@ wbcore/contrib/pandas/tests/test_filters/test_pandas.py,sha256=YMdh3kAjuAZyL4iGe
|
|
|
804
806
|
wbcore/contrib/tags/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
805
807
|
wbcore/contrib/tags/admin.py,sha256=gIgCl7P4_d2x5FK1Gs5dYwWISY7beWclwQXHRkoZhrI,433
|
|
806
808
|
wbcore/contrib/tags/apps.py,sha256=DSaqTCfj8DjVBHQdQtrRQvrw-wF_igOE9DUvMv47EK4,234
|
|
807
|
-
wbcore/contrib/tags/factories.py,sha256=
|
|
809
|
+
wbcore/contrib/tags/factories.py,sha256=H1GgkJ0S7X9v8DHZ-Bt5L-VjMBCpbnTHkJHr26Uapxs,618
|
|
808
810
|
wbcore/contrib/tags/filters.py,sha256=-oU7yOyZt4ExYgqPqxdCqjRkZ7N8fAt5x5waSnBHyRk,1448
|
|
809
811
|
wbcore/contrib/tags/serializers.py,sha256=H5pxHrXd7nOiZU67zIKgp3_HCb5ARyluywpnb4N1zTU,2834
|
|
810
812
|
wbcore/contrib/tags/signals.py,sha256=4WDNS2wL-JqSQPaSNDUDnxUEUMmNIs5lnJ7S1H05ydw,726
|
|
@@ -844,7 +846,7 @@ wbcore/contrib/workflow/factories/condition.py,sha256=LpYNUvihM-asb53Ii2AjUZX8RJ
|
|
|
844
846
|
wbcore/contrib/workflow/factories/data.py,sha256=bNd2GzwCX3W9ZCCS9Fh3sI0CwmmGY6kQJs0sLaxSYkg,740
|
|
845
847
|
wbcore/contrib/workflow/factories/display.py,sha256=yyIwdBUiXw4cKHEYpxqB03HUmvZnnlOWXxgbmpDE1eU,789
|
|
846
848
|
wbcore/contrib/workflow/factories/process.py,sha256=ZBYXIfr-ACz0_fXyyGElLGPKXype4QRzHUQrQg71gyw,2870
|
|
847
|
-
wbcore/contrib/workflow/factories/step.py,sha256=
|
|
849
|
+
wbcore/contrib/workflow/factories/step.py,sha256=geMOK-qjfaUnAokPUmJqNIaB0cshQCOEulGJjDLTnm0,4105
|
|
848
850
|
wbcore/contrib/workflow/factories/transition.py,sha256=GXVIHQgWDPR3nOGxHTH46uz4L2Kk7lUdDYgJzh1UzDs,843
|
|
849
851
|
wbcore/contrib/workflow/factories/workflow.py,sha256=L2mHK8WAWwA-bdxtdEymKphZicdqob_JLevDwQSz3JY,701
|
|
850
852
|
wbcore/contrib/workflow/filters/__init__.py,sha256=gWOO90QO6euiyPJKRlxexQ3K4tiX9KZOVSDL68KMepo,561
|
|
@@ -870,7 +872,7 @@ wbcore/contrib/workflow/models/condition.py,sha256=Dwxz4t7qq3E1_PyT5e4r23bd6CbXk
|
|
|
870
872
|
wbcore/contrib/workflow/models/data.py,sha256=rmnZXjyj6merFmZLpneCwNzFczCelFQxF2YqD-sQT9Y,8501
|
|
871
873
|
wbcore/contrib/workflow/models/display.py,sha256=A09tKwOTwa5FUFhj7HEILI0q6X4eHvNDproXceusqe8,923
|
|
872
874
|
wbcore/contrib/workflow/models/process.py,sha256=DMm_NG9g68UomwjbOYCzNPh6PIF80GrDbG5oDdqfk_Y,8541
|
|
873
|
-
wbcore/contrib/workflow/models/step.py,sha256=
|
|
875
|
+
wbcore/contrib/workflow/models/step.py,sha256=xUWX6qzqSxe7aHJaxr_cNgVwIU3EI7Kz-WkNVw3z6ow,29109
|
|
874
876
|
wbcore/contrib/workflow/models/transition.py,sha256=b-1rZTA8rZmxRhAR7RDqkUT7W8DIwjlsKmscvYfmpIs,2344
|
|
875
877
|
wbcore/contrib/workflow/models/workflow.py,sha256=YqoSBtrpRPsRGDNxIhtbChT4yB27V42WKseOy9uroBQ,11690
|
|
876
878
|
wbcore/contrib/workflow/serializers/__init__.py,sha256=b7rERecOTkKCFPlR2ONncXkwvozHWsQYrx5SFkJ0ntU,1313
|
|
@@ -960,7 +962,7 @@ wbcore/contrib/workflow/workflows/assignees.py,sha256=S2n_ympGyczglrWiO2TDKT2XW8
|
|
|
960
962
|
wbcore/crontab/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
961
963
|
wbcore/crontab/serializers.py,sha256=saknQtXrPU2uSbySFKBOcjz854cOmZtCCY_rHab0VPs,813
|
|
962
964
|
wbcore/crontab/viewsets.py,sha256=fMtaAU3P4bDRAygoCqHFm0u73dMCB52Dv1ar0Mz7mkM,335
|
|
963
|
-
wbcore/docs/__init__.py,sha256=
|
|
965
|
+
wbcore/docs/__init__.py,sha256=znrk4gax10cQpqgePg_ZYdz9ZAENE365T5W09sg-vRw,669
|
|
964
966
|
wbcore/docs/orderable.md,sha256=lJYGpZACSsbGTgADpXfOHdBU3GXbsrE9OnlXIV9IHEY,2429
|
|
965
967
|
wbcore/docs/reparent.md,sha256=_pWHAuRwSQZRcvRxa7tsNKVdRP4Nj6O0Zdbwk9AsB9Q,839
|
|
966
968
|
wbcore/filters/__init__.py,sha256=I4NntVOrIgMTPh49Ek5K6J6jEGR6Y8YR_TEVtNOJunw,491
|
|
@@ -997,7 +999,7 @@ wbcore/markdown/dynamic_preferences_registry.py,sha256=HSowJgni2TVUcFBbmN8soYCg9
|
|
|
997
999
|
wbcore/markdown/models.py,sha256=m-flvJWmqLj2PgyOV0VKxDFqPSZ6A7_lQWtd49U6Z7I,1262
|
|
998
1000
|
wbcore/markdown/template.py,sha256=shRAEdHaHVlrM4cY5mKjwva9QBaJrvkJhYaR7gXISQE,1567
|
|
999
1001
|
wbcore/markdown/utils.py,sha256=vde3CzHEh6mwKL74AOYme7R3YnagY_4ShJyAsC2IiEo,1269
|
|
1000
|
-
wbcore/markdown/views.py,sha256=
|
|
1002
|
+
wbcore/markdown/views.py,sha256=bJfakyHP0jANNNUfZihejTcdLN8tx82Cf52NPn1nOjs,1876
|
|
1001
1003
|
wbcore/menus/__init__.py,sha256=pPtHc6xv3zJLwwoZglWV38ACQtnEPoNs1UY7XSSfaWc,89
|
|
1002
1004
|
wbcore/menus/menus.py,sha256=ngZdsAkZEMnkvyj2anNnkL38guJTx56gfKhSBhePrBQ,3012
|
|
1003
1005
|
wbcore/menus/registry.py,sha256=rszt3iAaDuxSabs3EeseX1xdVHUbN5w3e8wqGtGPWjs,815
|
|
@@ -1061,8 +1063,8 @@ wbcore/models/__init__.py,sha256=Ukm6r1FTiPMwcXOmiTmW73aktzFmQicN7Cm7XISD8fg,309
|
|
|
1061
1063
|
wbcore/models/base.py,sha256=VKsnRJReu8SInvpMLV7_3SImVE9StY5H0Fj_stckyz8,7205
|
|
1062
1064
|
wbcore/models/fields.py,sha256=IsHaIzQ2GU_rC7AORdSF9IIc_XkXPkEK5rV0wnijRmU,984
|
|
1063
1065
|
wbcore/models/orderable.py,sha256=3uxEHuixP-qeCp_s86JzYC-ENAqh1NIlNOilht1h9bM,171
|
|
1064
|
-
wbcore/pandas/__init__.py,sha256=
|
|
1065
|
-
wbcore/pandas/fields.py,sha256=
|
|
1066
|
+
wbcore/pandas/__init__.py,sha256=nYHncIbSqUu8nV6_5dzVQomTFYrxPhS_Hivfh6yYcl0,1418
|
|
1067
|
+
wbcore/pandas/fields.py,sha256=_F-gATQs-MJewMVrK5ObNot3c8WYVX-HNn59Zeo8TwM,523
|
|
1066
1068
|
wbcore/pandas/filterset.py,sha256=eWqp1tnR_FNORtdbquFa7XlvjXHozzSU3tBLEA2RlYY,289
|
|
1067
1069
|
wbcore/pandas/utils.py,sha256=1MW00r9k0USDXeoUAdrWXtv691WP5y0Ymc6gn4Z6CR4,662
|
|
1068
1070
|
wbcore/pandas/views.py,sha256=3R8WqcUc2RYF8FQPUw-L_tHId4Di7tvna012PjUxWlI,309
|
|
@@ -1143,14 +1145,14 @@ wbcore/templates/wbcore/admin/csv_form.html,sha256=g8w6oXAyvwOL7ckNmR_wch-vxnh-J
|
|
|
1143
1145
|
wbcore/test/__init__.py,sha256=gxYHDwZugGf-eRh7sG5z7247y5uvyDIHmsm4J0ajBis,713
|
|
1144
1146
|
wbcore/test/mixins.py,sha256=rtjhQCh-u4eGoEC-XTfjsmy1CwiQ1Q4dSs0EpZBz7Q0,32375
|
|
1145
1147
|
wbcore/test/signals.py,sha256=UX7n9zsak30feE1GLXkwAhLEbmRnllNPu17D1top6YI,174
|
|
1146
|
-
wbcore/test/tests.py,sha256=
|
|
1148
|
+
wbcore/test/tests.py,sha256=keUG6btZfJHiQipKq5augse5Hedej2cn6w7kgZRrIYw,4493
|
|
1147
1149
|
wbcore/test/utils.py,sha256=-PNuj4UjeoX2FdRCPObedTQAgUDsmiO672BCwIZtKwE,8406
|
|
1148
1150
|
wbcore/test/e2e_helpers_methods/e2e_checks.py,sha256=teyYS5OQGSy2r7VvhfxkaskPOrQ_jLBNPN64CRUKmzQ,4266
|
|
1149
1151
|
wbcore/test/e2e_helpers_methods/e2e_helper_methods.py,sha256=Uo61TfEwYOP_u9N84gz-asZ4VwK80cWhdlnhJpnw8U8,17654
|
|
1150
1152
|
wbcore/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1151
1153
|
wbcore/tests/conftest.py,sha256=XWVhrLuyY80o_-qMx4HQu0-k2h-GKw-xXnNMyUIcbjQ,1425
|
|
1152
1154
|
wbcore/tests/models.py,sha256=QYJRhVMJZ6nENYuO-ktieiKvw3clxy57n3Is5h0tcmg,207
|
|
1153
|
-
wbcore/tests/test_configs.py,sha256=
|
|
1155
|
+
wbcore/tests/test_configs.py,sha256=NYJrozsPE_ZW1uNqC_wrMpajbGTiHkIy3bono2Lvkos,1766
|
|
1154
1156
|
wbcore/tests/test_enums.py,sha256=KwnEznR6PdWN9AHFMY1qx0krOqAoT7QZF8x-BPsOanM,1741
|
|
1155
1157
|
wbcore/tests/test_list_display.py,sha256=9zX8grPa0lie65vxDAzJUBTjwVIep2mItbu0voSwhHs,721
|
|
1156
1158
|
wbcore/tests/test_pagination.py,sha256=JRdmhLNrBkg_r7Cg1tug-jxjt0hJg4k8m-xcjpsyKMY,1078
|
|
@@ -1204,7 +1206,7 @@ wbcore/utils/cache.py,sha256=3p2sA7UNSO08TmLLrSB-rIUgJ_FkGPj2TdCG-M1OMAc,279
|
|
|
1204
1206
|
wbcore/utils/date.py,sha256=tSNatnQ3CBNvyPjt5sZHctLtY0cOy4OHD4NOqInLdXE,7905
|
|
1205
1207
|
wbcore/utils/deprecations.py,sha256=ju1h3-icVlJnItZkugdOdeX4sY3QJIeFxXxAo9TG_rM,269
|
|
1206
1208
|
wbcore/utils/enum.py,sha256=eTTMt03iCMaNEoB5xsq5IGxkCi8X3xfIRjJNI0ygzWs,533
|
|
1207
|
-
wbcore/utils/figures.py,sha256=
|
|
1209
|
+
wbcore/utils/figures.py,sha256=Z7EsJ-pSWk2UExahKhO7OnPYTJltMFV6LJp8DbLptiI,9199
|
|
1208
1210
|
wbcore/utils/html.py,sha256=Ir_bX4l3EgaWf7bv3ymlt836ekoCVDHedMMu8TzXyj4,157
|
|
1209
1211
|
wbcore/utils/importlib.py,sha256=6_-m6YuGdg-iKQU_MU1yCDS0_nhOTAG6UNIQYeAYTiI,461
|
|
1210
1212
|
wbcore/utils/itertools.py,sha256=tgmDS9FMzq3oy5PzAMcBreNAN8EjpoC6waRt738dcW8,1410
|
|
@@ -1231,6 +1233,6 @@ wbcore/viewsets/generics.py,sha256=lKDq9UY_Tyc56u1bqaIEvHGgoaXwXxpZ1c3fLVteptI,1
|
|
|
1231
1233
|
wbcore/viewsets/mixins.py,sha256=IdHd_uixOv3ExKoHxTgL5Bt8OELIwfYwhBZm0nsvZfc,12054
|
|
1232
1234
|
wbcore/viewsets/utils.py,sha256=4520Ij3ASM8lOa8QZkCqbBfOexVRiZu688eW-PGqMOA,882
|
|
1233
1235
|
wbcore/viewsets/viewsets.py,sha256=FPPESunEjlunDr5VFsjTfsquTS3iDSQkw0H6QjMKPqk,6574
|
|
1234
|
-
wbcore-1.59.
|
|
1235
|
-
wbcore-1.59.
|
|
1236
|
-
wbcore-1.59.
|
|
1236
|
+
wbcore-1.59.6rc0.dist-info/METADATA,sha256=VTbp66knyzJHTclsb0mYzK-P6lyCammJjAim7lZ3MGM,2319
|
|
1237
|
+
wbcore-1.59.6rc0.dist-info/WHEEL,sha256=aha0VrrYvgDJ3Xxl3db_g_MDIW-ZexDdrc_m-Hk8YY4,105
|
|
1238
|
+
wbcore-1.59.6rc0.dist-info/RECORD,,
|
|
File without changes
|