udata 9.1.2.dev30754__py2.py3-none-any.whl → 9.1.4.dev30983__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.
Potentially problematic release.
This version of udata might be problematic. Click here for more details.
- tasks/helpers.py +6 -5
- udata/__init__.py +1 -1
- udata/api/__init__.py +2 -3
- udata/api/commands.py +0 -1
- udata/api/fields.py +22 -1
- udata/api_fields.py +22 -12
- udata/app.py +1 -1
- udata/assets.py +1 -1
- udata/auth/__init__.py +8 -12
- udata/commands/db.py +3 -3
- udata/commands/dcat.py +1 -1
- udata/commands/fixtures.py +110 -54
- udata/commands/init.py +2 -2
- udata/commands/tests/test_fixtures.py +71 -0
- udata/core/activity/tasks.py +1 -1
- udata/core/badges/models.py +0 -2
- udata/core/contact_point/api.py +1 -3
- udata/core/dataservices/tasks.py +1 -1
- udata/core/dataset/actions.py +2 -2
- udata/core/dataset/forms.py +0 -2
- udata/core/dataset/models.py +12 -10
- udata/core/dataset/rdf.py +1 -1
- udata/core/discussions/api.py +1 -1
- udata/core/discussions/models.py +2 -2
- udata/core/discussions/tasks.py +1 -1
- udata/core/organization/api.py +3 -4
- udata/core/organization/api_fields.py +2 -1
- udata/core/organization/apiv2.py +1 -1
- udata/core/reports/api.py +11 -0
- udata/core/reports/models.py +6 -1
- udata/core/reuse/metrics.py +1 -1
- udata/core/reuse/permissions.py +2 -1
- udata/core/reuse/search.py +2 -2
- udata/core/reuse/tasks.py +2 -2
- udata/core/spatial/commands.py +3 -3
- udata/core/spatial/factories.py +1 -1
- udata/core/spatial/forms.py +1 -1
- udata/core/spatial/models.py +2 -2
- udata/core/spatial/tests/test_models.py +1 -1
- udata/core/spatial/translations.py +3 -1
- udata/core/user/api.py +4 -4
- udata/core/user/metrics.py +1 -1
- udata/frontend/__init__.py +1 -1
- udata/harvest/actions.py +1 -1
- udata/harvest/backends/__init__.py +1 -1
- udata/harvest/tasks.py +0 -1
- udata/harvest/tests/factories.py +0 -2
- udata/harvest/tests/test_base_backend.py +0 -1
- udata/harvest/tests/test_dcat_backend.py +16 -17
- udata/migrations/2020-07-24-remove-s-from-scope-oauth.py +1 -1
- udata/migrations/2021-07-05-remove-unused-badges.py +0 -1
- udata/migrations/2023-02-08-rename-internal-dates.py +0 -2
- udata/migrations/2024-06-11-fix-reuse-datasets-references.py +0 -1
- udata/models/__init__.py +1 -0
- udata/routing.py +5 -0
- udata/search/commands.py +1 -1
- udata/search/query.py +1 -1
- udata/sentry.py +11 -2
- udata/settings.py +1 -0
- udata/tags.py +3 -3
- udata/tests/api/test_base_api.py +1 -1
- udata/tests/api/test_contact_points.py +4 -4
- udata/tests/api/test_datasets_api.py +10 -10
- udata/tests/api/test_organizations_api.py +39 -39
- udata/tests/api/test_reports_api.py +53 -3
- udata/tests/api/test_tags_api.py +2 -2
- udata/tests/api/test_transfer_api.py +1 -1
- udata/tests/apiv2/test_datasets.py +4 -4
- udata/tests/dataset/test_dataset_model.py +3 -3
- udata/tests/frontend/__init__.py +0 -2
- udata/tests/frontend/test_auth.py +0 -1
- udata/tests/organization/test_csv_adapter.py +0 -2
- udata/tests/organization/test_notifications.py +3 -3
- udata/tests/reuse/test_reuse_model.py +0 -1
- udata/tests/site/test_site_rdf.py +1 -3
- udata/tests/test_cors.py +0 -3
- udata/tests/test_owned.py +4 -4
- udata/tests/test_routing.py +1 -1
- udata/tests/test_tags.py +1 -1
- udata/tests/test_transfer.py +1 -2
- udata/tests/workers/test_jobs_commands.py +1 -1
- udata/utils.py +15 -14
- {udata-9.1.2.dev30754.dist-info → udata-9.1.4.dev30983.dist-info}/METADATA +20 -4
- {udata-9.1.2.dev30754.dist-info → udata-9.1.4.dev30983.dist-info}/RECORD +88 -89
- udata/commands/tests/fixtures.py +0 -44
- udata/tests/features/territories/commands.py +0 -9
- {udata-9.1.2.dev30754.dist-info → udata-9.1.4.dev30983.dist-info}/LICENSE +0 -0
- {udata-9.1.2.dev30754.dist-info → udata-9.1.4.dev30983.dist-info}/WHEEL +0 -0
- {udata-9.1.2.dev30754.dist-info → udata-9.1.4.dev30983.dist-info}/entry_points.txt +0 -0
- {udata-9.1.2.dev30754.dist-info → udata-9.1.4.dev30983.dist-info}/top_level.txt +0 -0
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
tasks/__init__.py,sha256=oZ9yTY3eyOXRbN18_83l1b4BpqjIBVqw-FqD1LFWGxo,8122
|
|
2
|
-
tasks/helpers.py,sha256=
|
|
3
|
-
udata/__init__.py,sha256=
|
|
4
|
-
udata/api_fields.py,sha256=
|
|
5
|
-
udata/app.py,sha256=
|
|
6
|
-
udata/assets.py,sha256=
|
|
2
|
+
tasks/helpers.py,sha256=70fS9tI_m0DTWmKx9Zl5-LG-nxdz_ZaPyvvsFkN2r48,1091
|
|
3
|
+
udata/__init__.py,sha256=iIfkZcu-LQi4btmqKGrdK2F_zRkl8dI8cm8sFeYz9Fk,101
|
|
4
|
+
udata/api_fields.py,sha256=dRA-rFVLuLvrtOJ6459Ow9Jz0n0l2WO3YRfLCdPHs6Q,15497
|
|
5
|
+
udata/app.py,sha256=xjk2D3EgboYBpTwBwdIxd2klt2yMoWMyCrkry5fz0LA,7292
|
|
6
|
+
udata/assets.py,sha256=H5Hrc2vnKM0IFLyWfLXmJ2Kj35w1i8W1D8Cgy8_cUj4,657
|
|
7
7
|
udata/cors.py,sha256=QyhlcnkLo9SmJhgK3FRjLcD5YC-03bU514UVMAHfbSc,2995
|
|
8
8
|
udata/entrypoints.py,sha256=mbAAUVT8ZenzSYdang2PbAwZcK1pENtA3axBmPRiWCw,2717
|
|
9
9
|
udata/errors.py,sha256=E8W7b4PH7c5B85g_nsUMt8fHqMVpDFOZFkO6wMPl6bA,117
|
|
@@ -11,28 +11,28 @@ udata/factories.py,sha256=MoklZnU8iwNL25dm3JsoXhoQs1PQWSVYL1WvcUBtJqM,492
|
|
|
11
11
|
udata/i18n.py,sha256=Q7UELAhKOW7DmUX8BjEMnqqhQxcR6d3ioSmj90A62cg,8992
|
|
12
12
|
udata/mail.py,sha256=MShopArrtXyn8SnXtNbWUR0C4mTj1gI3a3Lf_1We-j4,2167
|
|
13
13
|
udata/rdf.py,sha256=GDqnBuJd2KryJDpJjPuH0WpkZIPoOEa2uOACr5mNCik,13835
|
|
14
|
-
udata/routing.py,sha256=
|
|
15
|
-
udata/sentry.py,sha256=
|
|
16
|
-
udata/settings.py,sha256=
|
|
14
|
+
udata/routing.py,sha256=x9WcpYikR45j3C_0Bi2Zoa2treSCW_oDYWMHwbdLAmE,7242
|
|
15
|
+
udata/sentry.py,sha256=ekcxqUSqxfM98TtvCsPaOoX5i2l6PEcYt7kb4l3od-Q,3223
|
|
16
|
+
udata/settings.py,sha256=ZcLUXKv-nRPjDSmb-vS1gVAT2xqChjdi2GMx1d5zpcw,17853
|
|
17
17
|
udata/sitemap.py,sha256=oRRWoPI7ZsFFnUAOqGT1YuXFFKHBe8EcRnUCNHD7xjM,979
|
|
18
|
-
udata/tags.py,sha256=
|
|
18
|
+
udata/tags.py,sha256=ydq4uokd6bzdeGVSpEXASVtGvDfO2LfQs9mptvvKJCM,631
|
|
19
19
|
udata/tasks.py,sha256=hLdmHV7ozeq803BRjU6X3DT3oVsZrV1beQILpbjsfQI,4978
|
|
20
20
|
udata/terms.md,sha256=nFx978tUQ3vTEv6POykXaZvcQ5e_gcvmO4ZgcfbSWXo,187
|
|
21
21
|
udata/tracking.py,sha256=WOcqA1RlHN8EPFuEc2kNau54mec4-pvi-wUFrMXevzg,345
|
|
22
22
|
udata/uris.py,sha256=Nxy-kvj46FhRDNW7sebFI-X7nFJEP5ViwgGQvAHmBW0,3561
|
|
23
|
-
udata/utils.py,sha256=
|
|
23
|
+
udata/utils.py,sha256=AbPqkgtdjuQScOCoTcZl3eDiEmU0p-agr1lqvEJwaS0,8661
|
|
24
24
|
udata/worker.py,sha256=K-Wafye5-uXP4kQlffRKws2J9YbJ6m6n2QjcVsY8Nsg,118
|
|
25
25
|
udata/wsgi.py,sha256=MY8en9K9eDluvJYUxTdzqSDoYaDgCVZ69ZcUvxAvgqA,77
|
|
26
26
|
udata/admin/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
27
27
|
udata/admin/views.py,sha256=00fI1O55apOlwIc0li2BdvEEGMd5l5isd5A_eHvzu3Y,331
|
|
28
|
-
udata/api/__init__.py,sha256=
|
|
29
|
-
udata/api/commands.py,sha256=
|
|
28
|
+
udata/api/__init__.py,sha256=p2FcJ1I4k4HERFvYYQNitO23FnfBc-kXpMlWb7u__RM,10644
|
|
29
|
+
udata/api/commands.py,sha256=SwZYuANyGoI-lplWg18d0Ej8e7znmIA5EUKIU0jBA6U,3227
|
|
30
30
|
udata/api/errors.py,sha256=P_UigBf6HAL73LbXKULagmp5Cuw-H1Ms6LmXxOmFIeg,211
|
|
31
|
-
udata/api/fields.py,sha256=
|
|
31
|
+
udata/api/fields.py,sha256=BO2bHPWN6CT2bNpEkkosBGVUSV383nl8MUed_wlxLmw,4176
|
|
32
32
|
udata/api/oauth2.py,sha256=80NtFfQpd-DAhRDN-4h0zi5gB2qHoBIrF8NXzbCnMS4,11621
|
|
33
33
|
udata/api/parsers.py,sha256=iQEwgMwdVz_gXlVZYaRCGrUFWvcf7_8uCIxw7Iw-hpw,1405
|
|
34
34
|
udata/api/signals.py,sha256=t8s7tF1KYeAygqbR4GdA76_UYvthAsyRbJaqsMmFsK4,162
|
|
35
|
-
udata/auth/__init__.py,sha256=
|
|
35
|
+
udata/auth/__init__.py,sha256=RRMYs8rYIwXncx3Z62NFtVhuQzxQrFQpC1lBhl68WJI,1992
|
|
36
36
|
udata/auth/forms.py,sha256=5cY5Iy-J0XgNHo1RbQjZze7hDUVanghHOAYYY2Al1qI,2351
|
|
37
37
|
udata/auth/helpers.py,sha256=7Yr5k7ImdgqxVap4Bjq_ylTXmzq4NR0KgEOOhqSbaf4,267
|
|
38
38
|
udata/auth/mails.py,sha256=AOV2MCBwOx7iAJlQ_OFVO7hT5-_4yQ0_zsAXoHAftZY,1673
|
|
@@ -40,33 +40,33 @@ udata/auth/password_validation.py,sha256=ODVdEsiXbtq_8ws4Yf3hs5Sq7jz-IDa1RxAm_WP
|
|
|
40
40
|
udata/auth/views.py,sha256=PX4bRHATNzPHWu01_KC3mgcZpAEahdcDAJVBhy4oL4Y,6110
|
|
41
41
|
udata/commands/__init__.py,sha256=Won_rW_hIU9TA3o4oNe6kI46l1fnDBM_oW0Hc1XS9F8,7711
|
|
42
42
|
udata/commands/cache.py,sha256=bLdrf_fCWFYX9ULlL2ADsZRwijkI4pArsJxfx24OivM,341
|
|
43
|
-
udata/commands/db.py,sha256=
|
|
44
|
-
udata/commands/dcat.py,sha256=
|
|
45
|
-
udata/commands/fixtures.py,sha256=
|
|
43
|
+
udata/commands/db.py,sha256=x5ui77hoT-JcECneBhhXZtpH4g65gaj7SyeM0bnORhA,14694
|
|
44
|
+
udata/commands/dcat.py,sha256=L1J1AxQCmMDmwdxzugQNfy4VZQYf1rI1wPhSdUaMB5E,3419
|
|
45
|
+
udata/commands/fixtures.py,sha256=vjfa7aK4RgCUrobvjdYkDdD4ZrmgEq0uut8bdi2rPYc,8314
|
|
46
46
|
udata/commands/images.py,sha256=0rVojLik5DYgJ6W4uNEfMP2g2QUU2V761tj3z6lo8no,2050
|
|
47
47
|
udata/commands/info.py,sha256=A5WMo3_N_rlt3cySVJrZqKWrbIowX97ZLKMIFQE5178,1545
|
|
48
|
-
udata/commands/init.py,sha256=
|
|
48
|
+
udata/commands/init.py,sha256=8CpH8MklzPkpxczs43lFM5ZNrHCJRbUtzHapgYNHs7M,1520
|
|
49
49
|
udata/commands/purge.py,sha256=78kwiQV0Y63ulbAEkZCLNq1V1wCIekIEMdmW2HRREhU,1202
|
|
50
50
|
udata/commands/serve.py,sha256=0-Uy_fRCYABsmJ8MFxpLZJyAl61TGCk7KsT8WiiexBc,2512
|
|
51
51
|
udata/commands/static.py,sha256=OUYPAR1giaPk52DK-v-nQYUSx-YQ4cF7YXLt1t5wtBU,2199
|
|
52
52
|
udata/commands/test.py,sha256=0snHTDolowQK-DmAKnhF_mBuDOBMApAbEc35GEiwH0M,893
|
|
53
53
|
udata/commands/worker.py,sha256=bjXQGCwkbZxkcxLMPA2Lr0nkNjXLpGNDMkkQXjwBLPI,3976
|
|
54
54
|
udata/commands/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
55
|
-
udata/commands/tests/
|
|
55
|
+
udata/commands/tests/test_fixtures.py,sha256=RibGEIEfeDkUIuw_hDL2s6HJ2kpvrpsREdlyY_ZRUm8,3241
|
|
56
56
|
udata/core/__init__.py,sha256=O7C9WWCXiLWnWPnPbFRszWhOmvRQiI4gD-5qkWvPGRo,385
|
|
57
57
|
udata/core/owned.py,sha256=xcIg9fNndowuLs7BEkuxAsEdf6JApomU_Gl6L-SgTJI,4515
|
|
58
58
|
udata/core/activity/__init__.py,sha256=OaiFyq7HB4xL4SuMPD1N8IFNpntwx9ZayVzelciOieI,298
|
|
59
59
|
udata/core/activity/api.py,sha256=blVYf3unQbkYbm8FY7jv0w7_W52Frghmj2vYATh9Tsc,3445
|
|
60
60
|
udata/core/activity/models.py,sha256=Ln9YUsdCBMFmUlw5GA2gIJ50sMorMFzZGo8u8sy7pIE,2072
|
|
61
61
|
udata/core/activity/signals.py,sha256=Io2A43as3yR-DZ5R3wzM_bTpn528pxWsZDUFZ9xtj2Y,191
|
|
62
|
-
udata/core/activity/tasks.py,sha256=
|
|
62
|
+
udata/core/activity/tasks.py,sha256=lEnISnHXPMeeErWIhJbSYOlxnrc6yAKC-T28qTEWQn0,1235
|
|
63
63
|
udata/core/badges/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
64
64
|
udata/core/badges/api.py,sha256=PkOx-bA9dFXIQZhUYg8r5OLBo1aNJiUJbKVCPOS7wm0,762
|
|
65
65
|
udata/core/badges/commands.py,sha256=J6dKsoZmCbWM3HHOktPt-AHoMj-AhNPL0jxiV4yVlgw,1143
|
|
66
66
|
udata/core/badges/factories.py,sha256=rDQC28fKLtYA6l69EqiyOQyN4C2jVj87EdKBEo4sYsw,297
|
|
67
67
|
udata/core/badges/fields.py,sha256=I_6APmd8AElTnzqCUa1rj0YR9IP3JgYd8lVtWScsghI,232
|
|
68
68
|
udata/core/badges/forms.py,sha256=SgaCPo9BHo8BP5zJ5zZj8cKPIuezh4eKiM1fu6su_LY,533
|
|
69
|
-
udata/core/badges/models.py,sha256=
|
|
69
|
+
udata/core/badges/models.py,sha256=QZGdfPJGqXWILMNWv3b1X4WJDLUHLiJVKj9GDct0cgk,2919
|
|
70
70
|
udata/core/badges/permissions.py,sha256=yY8vqonNJbQl4tUqpsJ-zhQqAMET6SGN37odrl3b2yI,550
|
|
71
71
|
udata/core/badges/signals.py,sha256=gD68zbdL-mM0epJp8MbkBhqcgqKd2_U-pEEUpwoII7w,237
|
|
72
72
|
udata/core/badges/tasks.py,sha256=gkp3gfXGb8-uqpb9U9P2aPz2Eb_g3Lol0K5IRsaJ2yg,432
|
|
@@ -74,7 +74,7 @@ udata/core/badges/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG
|
|
|
74
74
|
udata/core/badges/tests/test_commands.py,sha256=KrzUsW4jtiFAvq6n83MkDXc1gung0XX8ditQfOXvomI,1364
|
|
75
75
|
udata/core/badges/tests/test_model.py,sha256=05bG0CLqOhedYNeqgI8oCBm7mnGMQUf1Z10OrFzcBgA,4859
|
|
76
76
|
udata/core/contact_point/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
77
|
-
udata/core/contact_point/api.py,sha256=
|
|
77
|
+
udata/core/contact_point/api.py,sha256=MgPRiSIzujHY1Q3BCUjcYW65upTU2xn4iuiAWnHAlVs,1820
|
|
78
78
|
udata/core/contact_point/api_fields.py,sha256=w6DyfvaIrX12mwaCLjk6ioAt81-GuRxdv69bTAhar1U,970
|
|
79
79
|
udata/core/contact_point/factories.py,sha256=MWu3fbE6G84e-7_gtsM5OifZPxHFRWDjw__qjd5fwDc,248
|
|
80
80
|
udata/core/contact_point/forms.py,sha256=uioyzAySatniPdDdoBYyHj9n-m1LkMtaJpCnyS0-IRU,572
|
|
@@ -85,9 +85,9 @@ udata/core/dataservices/factories.py,sha256=LDk8vvG0zhW8J-ZX5LoJQDU13pqeIyjQ05mu
|
|
|
85
85
|
udata/core/dataservices/models.py,sha256=2eF6LImNXOKiLgqktNd5Lc-FS7NA47yQJ_VDoDoQvFU,5883
|
|
86
86
|
udata/core/dataservices/permissions.py,sha256=98zM_R4v2ZtRubflB7ajaVQz-DVc-pZBMgtKUYy34oI,169
|
|
87
87
|
udata/core/dataservices/rdf.py,sha256=l1vItR7jhaTxs5f6kU6MAR32uvRR233GDbp1hIUbP3k,4673
|
|
88
|
-
udata/core/dataservices/tasks.py,sha256=
|
|
88
|
+
udata/core/dataservices/tasks.py,sha256=a43x1oKNF-EYmzM3O-8GQPJvZsgJmQiXOZx8Qti3M4E,960
|
|
89
89
|
udata/core/dataset/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
90
|
-
udata/core/dataset/actions.py,sha256=
|
|
90
|
+
udata/core/dataset/actions.py,sha256=mX6xox0PiMrbcAPZ3VZsI26rfM-ciYfEXxN6sqqImKA,1222
|
|
91
91
|
udata/core/dataset/activities.py,sha256=v8k1jwhdx62Z2ARZq8Q-x86OWSsBK99hRloPl74OCgA,1502
|
|
92
92
|
udata/core/dataset/api.py,sha256=zmchWUnGPV-7iQ4QXta1nCvhtYAAijdRz9FuZst1BM0,28781
|
|
93
93
|
udata/core/dataset/api_fields.py,sha256=ZF24FhKYe5jlV8jXG6YR0Hko9WOuV0446FAlLkEgAWE,17295
|
|
@@ -98,26 +98,26 @@ udata/core/dataset/csv.py,sha256=XMl8MaYCEyGmkCZqRSWrGRxCht2C9e3aQYGwDQLXYT0,361
|
|
|
98
98
|
udata/core/dataset/events.py,sha256=7Zo_JdmCiSBRfL2uRRHgfQ_L8662SIV1Y0YlVQiV9To,3255
|
|
99
99
|
udata/core/dataset/exceptions.py,sha256=uKiayLSpSzsnLvClObS6hOO0qXEqvURKN7_w8eimQNU,498
|
|
100
100
|
udata/core/dataset/factories.py,sha256=fRDWDlybR_ud4pDs1-ntWuYHKtV9LMHeBOBp2SmTT6M,9006
|
|
101
|
-
udata/core/dataset/forms.py,sha256=
|
|
102
|
-
udata/core/dataset/models.py,sha256=
|
|
101
|
+
udata/core/dataset/forms.py,sha256=H2oeAD8XckMugnwUcyuKv7o1Xq1rEIlLz9FtxujqbIE,6196
|
|
102
|
+
udata/core/dataset/models.py,sha256=BlGajxJNGaO5zW9z7F_4mJfCTgSoWVCy5GjnZSLHkLY,36440
|
|
103
103
|
udata/core/dataset/permissions.py,sha256=zXQ6kU-Ni3Pl5tDtat-ZPupug9InsNeCN7xRLc2Vcrc,1097
|
|
104
104
|
udata/core/dataset/preview.py,sha256=IwCqiNTjjXbtA_SSKF52pwnzKKEz0GyYM95QNn2Dkog,2561
|
|
105
|
-
udata/core/dataset/rdf.py,sha256=
|
|
105
|
+
udata/core/dataset/rdf.py,sha256=92NHqeKpVVQqSnhIIxVu1KDQCQTeXOSDMCn4vnhNWP4,22785
|
|
106
106
|
udata/core/dataset/search.py,sha256=2Ce77dvGSAR8iv9uA8mUW1qV7sViTNbQJSFuFgCUymE,5538
|
|
107
107
|
udata/core/dataset/signals.py,sha256=WN4sV-lJlNsRkhcnhoy0SYJvCoYmK_5QFYZd1u-h4gs,161
|
|
108
108
|
udata/core/dataset/tasks.py,sha256=yDPK2oKSzTXfST8Up7vMd13XPEK5r6iapq7hUIow6BI,8493
|
|
109
109
|
udata/core/discussions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
110
110
|
udata/core/discussions/actions.py,sha256=seKxsKut6xLkobfC2Yy2wpD_-flsT8HcFPcN6SDpz6k,789
|
|
111
|
-
udata/core/discussions/api.py,sha256=
|
|
111
|
+
udata/core/discussions/api.py,sha256=Fjt6F04jRHwYrtMYcokjfDxBQqRJWgyh1H5jrDyLtvA,8376
|
|
112
112
|
udata/core/discussions/constants.py,sha256=nbZgXESpg0TykIGPxW8xUtHtk7TwQoyOL0Ky4U4B7c8,27
|
|
113
113
|
udata/core/discussions/factories.py,sha256=CgQaUmmyDu90XtyBsqXVa-TmZMrN7Dwuu1Cnr5wNrVc,350
|
|
114
114
|
udata/core/discussions/forms.py,sha256=CalmOTslnfBY-SJatvqN2UjFJ-1S1rF57sbW8UbvmPE,838
|
|
115
115
|
udata/core/discussions/metrics.py,sha256=WMalLO9GEHXlqE2WbZX-HQUpvte6cRwuHuoL96QwWSg,354
|
|
116
|
-
udata/core/discussions/models.py,sha256=
|
|
116
|
+
udata/core/discussions/models.py,sha256=c3anqp7DAmh-xEGBLsEt7f19rXhxSNOkPaJcLVeR-04,4053
|
|
117
117
|
udata/core/discussions/notifications.py,sha256=5MuoZDPmmvkloZ3i8I6TELgE1KXZ_cB9QiDerFBD9dM,1052
|
|
118
118
|
udata/core/discussions/permissions.py,sha256=r8uB_w29R6fICr0TUHIX_7JkXUpFcVBWWZRYW-xC0rY,640
|
|
119
119
|
udata/core/discussions/signals.py,sha256=tJ83RJIsBAny08Q6IDwehE6lDDRf6ynIFCl0WqnayoU,543
|
|
120
|
-
udata/core/discussions/tasks.py,sha256=
|
|
120
|
+
udata/core/discussions/tasks.py,sha256=XC3e26iNmK9wH-B8exBP3EX3yahlX-z6lSi-ODzBgng,2807
|
|
121
121
|
udata/core/followers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
122
122
|
udata/core/followers/api.py,sha256=qeArJ-bqXlLHZWBZk2aVDX66FHS4TKH0ctpM9JRnIhU,2531
|
|
123
123
|
udata/core/followers/metrics.py,sha256=nKgoiM2Gu-XHrgEf9duW1My66zFSKbmw25BGqo5wWtY,190
|
|
@@ -137,9 +137,9 @@ udata/core/metrics/signals.py,sha256=9mdJW__gR2GJT3huBr6HN2SDhKYJRgNbW9dnh48cAnU
|
|
|
137
137
|
udata/core/metrics/tasks.py,sha256=Z6821OgupmDCN7Hj3esdb_udZbc1Haw7YpM48ytMIs4,797
|
|
138
138
|
udata/core/organization/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
139
139
|
udata/core/organization/activities.py,sha256=NY9pDzOVcdo2HZ-ax77lioiDGUZ8jpUguSLt_824saQ,1133
|
|
140
|
-
udata/core/organization/api.py,sha256=
|
|
141
|
-
udata/core/organization/api_fields.py,sha256=
|
|
142
|
-
udata/core/organization/apiv2.py,sha256=
|
|
140
|
+
udata/core/organization/api.py,sha256=a8zGiLz4DE2tfbJFBGJqm8aRdEFWafUoql-yOajZDeY,17418
|
|
141
|
+
udata/core/organization/api_fields.py,sha256=eE8Zswe01entlHoTTkbNkHTzm6N4THtv6Xhp9n2jj1Q,7193
|
|
142
|
+
udata/core/organization/apiv2.py,sha256=1HQRQNu8r5dKPOGdkQyYfn7romhOoZydd4ZVUA0tQIk,3169
|
|
143
143
|
udata/core/organization/commands.py,sha256=DsRAtFDZvTciYNsUWumQWdn0jnNmKW-PwfIHUUZoBb8,1591
|
|
144
144
|
udata/core/organization/constants.py,sha256=r4umDp6BTA83DhcoFCILOQDtqfrWiCpIjmaZ8OxodHc,563
|
|
145
145
|
udata/core/organization/csv.py,sha256=sZDKEkqneuoEzFZ-2ul5yEnFnsER7MeG1tyMZfRKNdQ,1606
|
|
@@ -163,9 +163,9 @@ udata/core/post/permissions.py,sha256=uofU0TehhOGYyUoRXf3wuy816_D3xwMmaJbDvV336s
|
|
|
163
163
|
udata/core/post/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
164
164
|
udata/core/post/tests/test_api.py,sha256=y4fXgjC0y9tqR4iOWHin9rADSPdo1BJjXJGilnqL23c,3946
|
|
165
165
|
udata/core/reports/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
166
|
-
udata/core/reports/api.py,sha256=
|
|
166
|
+
udata/core/reports/api.py,sha256=RzmsU3IWD0u8oVKSEDvxE2yO2vRXxVx_gJBwFN0DyJY,1680
|
|
167
167
|
udata/core/reports/constants.py,sha256=LRZSX3unyqZeB4yQjK3ws_hGbJcXYk4bu1Rhnhi5DEs,1235
|
|
168
|
-
udata/core/reports/models.py,sha256=
|
|
168
|
+
udata/core/reports/models.py,sha256=AsW5p2ZIdR4c6vNzglEN7MX03It-t9u7ktOsVZqvzSs,2702
|
|
169
169
|
udata/core/reuse/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
170
170
|
udata/core/reuse/activities.py,sha256=mAdHhqqpUF5zSh4e5AEo0J7alc3RflTbudDaKOzyTQw,1406
|
|
171
171
|
udata/core/reuse/api.py,sha256=KjxcP1RdARFgRRJotp4pAwClmdLdH4JhhyjYmRzJ_y4,10232
|
|
@@ -175,12 +175,12 @@ udata/core/reuse/constants.py,sha256=JgDBrjOKSt9q0auv9rjzbGsch83H-Oi8YXAKeI5hO4o
|
|
|
175
175
|
udata/core/reuse/csv.py,sha256=4TcQbk4kWN_HbnpEUfgfW9_x7ZqNDk5s4YuJ839p3EE,896
|
|
176
176
|
udata/core/reuse/factories.py,sha256=GrQqYTIvwQrwkvJrbTr38-2faFW_PC99gn3yOVpgFec,850
|
|
177
177
|
udata/core/reuse/forms.py,sha256=Fv2XfHt-zP7WpC8Z8qTlXFRlx8HHEd8nU28lUEA5MXk,1836
|
|
178
|
-
udata/core/reuse/metrics.py,sha256=
|
|
178
|
+
udata/core/reuse/metrics.py,sha256=sVh7BlW3OKRvFDHFyD4pPUV91jOOhj8qeWbBkLPn5Gg,176
|
|
179
179
|
udata/core/reuse/models.py,sha256=3KSmNSOPuFRSJclBCxoXo9hg7DXIZTqZLRy5DepHA9Y,5861
|
|
180
|
-
udata/core/reuse/permissions.py,sha256=
|
|
181
|
-
udata/core/reuse/search.py,sha256=
|
|
180
|
+
udata/core/reuse/permissions.py,sha256=j-ancS7gvLl5vJu0TNYqpYD-2So-UzoDE4IHLxRoMGg,621
|
|
181
|
+
udata/core/reuse/search.py,sha256=NkCRE8mGBdmlau0S9SsNPG0_zvB7MMNws64HGsq4yWM,3056
|
|
182
182
|
udata/core/reuse/signals.py,sha256=nDrEUpYKN0AdYiEbrR0z3nzXzjaRcD8SAMutwIDsQPM,155
|
|
183
|
-
udata/core/reuse/tasks.py,sha256=
|
|
183
|
+
udata/core/reuse/tasks.py,sha256=oyi6SGNfCKRLLuS-tLUCs_jcfa43jOn4Wuzq65Vnj8A,1529
|
|
184
184
|
udata/core/site/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
185
185
|
udata/core/site/api.py,sha256=GH8NPEoiScbaUBoSlF-SuZea60c8jfCcQ3782lJOIVI,6213
|
|
186
186
|
udata/core/site/factories.py,sha256=O0nLFmjrFyemzcs-YwNukq5nqd383KBGrgL5bOQsGbA,378
|
|
@@ -198,19 +198,19 @@ udata/core/spam/tests/test_spam.py,sha256=Yu06Z3hU-XPX51mvdgH_nHQFeug_PXWy6P7QxN
|
|
|
198
198
|
udata/core/spatial/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
199
199
|
udata/core/spatial/api.py,sha256=mELKeXSamaN1KfZWw9FykFDAfxhldhHcptNt2xQnM_o,5607
|
|
200
200
|
udata/core/spatial/api_fields.py,sha256=ZEmgzRrcMr944h3EqN5sLTIeLy-a1VlvxAGDD8NXGIY,2816
|
|
201
|
-
udata/core/spatial/commands.py,sha256=
|
|
201
|
+
udata/core/spatial/commands.py,sha256=BMYAZqueaU6QlfN4ny4fsMF9l7rcjPp73mj8CIilyZ0,6931
|
|
202
202
|
udata/core/spatial/constants.py,sha256=T024yKsXuBkaZ1MAFZPfLh2X_EFFVQ7Sfg4VHCmZQM4,147
|
|
203
|
-
udata/core/spatial/factories.py,sha256
|
|
204
|
-
udata/core/spatial/forms.py,sha256=
|
|
203
|
+
udata/core/spatial/factories.py,sha256=-eQupRrIOQLouw9Bvv4UBqizFKQ4l4CHZBht2cv7irE,3096
|
|
204
|
+
udata/core/spatial/forms.py,sha256=a6bYpRpuPZ9pZvZiLBZrhYQwwL4c7g686-Mknk9R0ek,3041
|
|
205
205
|
udata/core/spatial/geoids.py,sha256=-7MGX9Swe1Hfdla6QPL35xwm1dE3WVNmJaN3HPZQ99k,1159
|
|
206
|
-
udata/core/spatial/models.py,sha256=
|
|
206
|
+
udata/core/spatial/models.py,sha256=AmCSk39xVJ5mzwsohbQn22q5KJrYKOLUVEKktoPXxlo,5230
|
|
207
207
|
udata/core/spatial/tasks.py,sha256=1WVZkmgTbgrJ2-IF479hBzeO_5xtqflTNxHh7nzwnIw,229
|
|
208
|
-
udata/core/spatial/translations.py,sha256=
|
|
208
|
+
udata/core/spatial/translations.py,sha256=hmtF45cOanPNGX4vBq4iItKwmMKWKcenThTO-DncC54,541
|
|
209
209
|
udata/core/spatial/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
210
210
|
udata/core/spatial/tests/test_api.py,sha256=IMp3aPOaIygTYsomhefrATKA-wzeEixJ-5nSi2g45PE,10976
|
|
211
211
|
udata/core/spatial/tests/test_fields.py,sha256=UOUE9NdQeoXaR_pWvoNQnZY2XYJBAFmU9AIFJ99Tf-g,9782
|
|
212
212
|
udata/core/spatial/tests/test_geoid.py,sha256=5-NhtvrOs-eoN5f18G6uyI23OB2nc8wQz9xQl3pieXY,1533
|
|
213
|
-
udata/core/spatial/tests/test_models.py,sha256=
|
|
213
|
+
udata/core/spatial/tests/test_models.py,sha256=XBHnW6i3AwJ7zaWZniwfwjspwfw2W71h9VlGyjGgXX8,932
|
|
214
214
|
udata/core/storages/__init__.py,sha256=uX2PECcYjZYBkk_xaJNxxSPUYTw0CZTKLx1rdqhi7MI,1200
|
|
215
215
|
udata/core/storages/api.py,sha256=2-ZFdiV0GzMxDVcMXOMmrmbVATRFUV-3c8px_4mQYFw,5142
|
|
216
216
|
udata/core/storages/tasks.py,sha256=9Ug8TaF3j-9ukbfSmdStIipLtq3I755EJmCLQ5wyVWM,788
|
|
@@ -232,14 +232,14 @@ udata/core/topic/parsers.py,sha256=YTMWPi1KtdQNZF_dX68X7x1BLyq_zynr1iommOeJmiA,2
|
|
|
232
232
|
udata/core/topic/permissions.py,sha256=RtFPPlxuU_Bv7ip6LDO4AoPrKFnIOEs9cCMXaSSmEdk,118
|
|
233
233
|
udata/core/user/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
234
234
|
udata/core/user/activities.py,sha256=x-mSiwx7TzM2ci6KMkMiNx0sFs8J3LTJNbigtE8cA0s,2807
|
|
235
|
-
udata/core/user/api.py,sha256=
|
|
235
|
+
udata/core/user/api.py,sha256=uyuyCxmbRdWrqIIIAX5vNa5Drp3huI8FdZrA0Bvb94c,12813
|
|
236
236
|
udata/core/user/api_fields.py,sha256=9aUdaYPUON-cFhTA10Mch5gYK9zkrFBLe4rrTxnQXoE,5491
|
|
237
237
|
udata/core/user/apiv2.py,sha256=4eNsvJjb4ChJQFrXtVbkOtAvXEcQcQpZf8vkEbriXRA,1125
|
|
238
238
|
udata/core/user/commands.py,sha256=d33hjgUi8WLA8YFvoq__FJJ_E-fk8f4tWo1iuT8jJvM,3156
|
|
239
239
|
udata/core/user/constants.py,sha256=aTluhTR2RGZ_cdG7-mkEoT5Ndbg8BNUwwzCOld0aLMY,77
|
|
240
240
|
udata/core/user/factories.py,sha256=O9QHItNG2NXm_dxojMieJyc-kZta5WSFesoOJImvzwg,789
|
|
241
241
|
udata/core/user/forms.py,sha256=yotqZozH9ViKuNI8SwdKocDEi7NXVs_XUMpdr_bIe5s,966
|
|
242
|
-
udata/core/user/metrics.py,sha256
|
|
242
|
+
udata/core/user/metrics.py,sha256=-3KQU3jHyVhL3kDL-gVw0dtN-8WZk4QubTfH-L9PyyI,922
|
|
243
243
|
udata/core/user/models.py,sha256=KVDUx9fP_7TFshgosNaJ5MTUBbVd54PVxeQL_BIjlns,9752
|
|
244
244
|
udata/core/user/permissions.py,sha256=Wbd8bLqSjqp9RHJ6ffLBj74L-LECcAhWazuw4Hq-2Gk,435
|
|
245
245
|
udata/core/user/rdf.py,sha256=F6SDX65ECtVOjDtHXI9WMmq33pN7HWb5ntOqe3LQsbQ,834
|
|
@@ -272,11 +272,11 @@ udata/forms/__init__.py,sha256=OXNShgt05tADLYQ-cXPdB16qQtj2i48GxSsCVdR6cfI,843
|
|
|
272
272
|
udata/forms/fields.py,sha256=9s8ywCD2LCtHnD5Z2fx9cxH6XI2nbHEj73kz17qZGHk,28576
|
|
273
273
|
udata/forms/validators.py,sha256=CRgmB6oow5O8LDR45LajlJJ9HX3RBCI08fapoWMH1vo,2727
|
|
274
274
|
udata/forms/widgets.py,sha256=XMVxBlQMGfb0nQvqwLMsAVcEdsBdaZGQZ82F81FdmlM,1332
|
|
275
|
-
udata/frontend/__init__.py,sha256=
|
|
275
|
+
udata/frontend/__init__.py,sha256=Aa5BX19jTAcjGiGKszPabbOju5thvA7XFz4aYvxwXQw,3567
|
|
276
276
|
udata/frontend/csv.py,sha256=FAlIAfcuigo01D_hSRTnvZ7B-HMHXqn5TXeCm6sO230,8520
|
|
277
277
|
udata/frontend/markdown.py,sha256=ppaiy_Mv6iNRjNqPjVquc9Wx7breY1mcsN41b4fM18w,4353
|
|
278
278
|
udata/harvest/__init__.py,sha256=C4y5w4vGb_F9Opy62lzV3eHo4DkNyRgPCq-wsarPXiQ,28
|
|
279
|
-
udata/harvest/actions.py,sha256=
|
|
279
|
+
udata/harvest/actions.py,sha256=2N71fgOa0whX87F4XcXmxZNllfzjTxpePMIu57rTBwI,9869
|
|
280
280
|
udata/harvest/api.py,sha256=XBBtrCxE3yPG5qa48wOkTR625o2WVzwIlOeSPd07dcc,15573
|
|
281
281
|
udata/harvest/commands.py,sha256=7dSYjphW8sxyZRef-ixJEsQc36bPIVKMN_wt4IRcKUY,4766
|
|
282
282
|
udata/harvest/csv.py,sha256=iQpytpQvrt7wiLuUHQv3hgxAoWEsjk3g_SxbLdXn8_Q,396
|
|
@@ -286,16 +286,16 @@ udata/harvest/forms.py,sha256=6VI-elj4KIztmRR7SYPMYbL3XM9VlTiOzm1ts6KakKE,3246
|
|
|
286
286
|
udata/harvest/models.py,sha256=QBDcdu3N5QILolmiisx9RN5xzfD9tPC06cXO8z5XF4A,6113
|
|
287
287
|
udata/harvest/notifications.py,sha256=8WkHtD68v6rfZC6jCmAuuuRp4NN6q71ZkksZU5m9oJc,867
|
|
288
288
|
udata/harvest/signals.py,sha256=3AhFHMPIFH5vz01NX5ycR_RWH14MXFWnCT6__LSa-QI,1338
|
|
289
|
-
udata/harvest/tasks.py,sha256=
|
|
290
|
-
udata/harvest/backends/__init__.py,sha256=
|
|
289
|
+
udata/harvest/tasks.py,sha256=uu2bbsZyrh1iya-ar9M5QNGUzDm9loYhaAypdj41_F4,1616
|
|
290
|
+
udata/harvest/backends/__init__.py,sha256=gDT_0eyl7yGYZuQ6iClXhMcbtmA4c44EPTC7mBwBJf0,439
|
|
291
291
|
udata/harvest/backends/base.py,sha256=6mB9B8GMnAhggjpWtA98r2fQNULoq9xlL_c3nCe76pM,15984
|
|
292
292
|
udata/harvest/backends/dcat.py,sha256=oLeRRcryUrBg_LXjBhzVreManwKRWOAHFPdfZaaSN2c,15215
|
|
293
293
|
udata/harvest/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
294
|
-
udata/harvest/tests/factories.py,sha256=
|
|
294
|
+
udata/harvest/tests/factories.py,sha256=bdimaIgCvSr-HxLMN0pnfQyaYgP4CRmu4h10iJG2F8k,2095
|
|
295
295
|
udata/harvest/tests/test_actions.py,sha256=s5yK4YQXVvrbLgKMx8_-ifFBC5QmUYBJWvkfNAZuy_Y,26504
|
|
296
296
|
udata/harvest/tests/test_api.py,sha256=AV6NCk8HjJ1D6Wkzx6l-pW6jd-UoIPGS_-LGkRS9jys,18449
|
|
297
|
-
udata/harvest/tests/test_base_backend.py,sha256=
|
|
298
|
-
udata/harvest/tests/test_dcat_backend.py,sha256=
|
|
297
|
+
udata/harvest/tests/test_base_backend.py,sha256=ReNgS3xw27uHzr274fY3XljqsO5fTSD6Pre_Q47MaXE,12339
|
|
298
|
+
udata/harvest/tests/test_dcat_backend.py,sha256=Pm4z9mgLz4edFtGObNRqRLhTK4Kr-4toi2gpQfG_jf4,34006
|
|
299
299
|
udata/harvest/tests/test_filters.py,sha256=2nXGnLTlM0iSOZBDBxmJp1KO3_59RXLS0vmXvEs2-KE,2468
|
|
300
300
|
udata/harvest/tests/test_models.py,sha256=f9NRR2_S4oZFgF8qOumg0vv-lpnEBJbI5vNtcwFdSqM,831
|
|
301
301
|
udata/harvest/tests/test_notifications.py,sha256=MMzTzkv-GXMNFeOwAi31rdTsAXyLCLOSna41zOtaJG0,816
|
|
@@ -325,13 +325,13 @@ udata/linkchecker/checker.py,sha256=LB6WSMp5yvdmfdlq2ygp7uHoYEVsK0IPk6qnmhrS4GI,
|
|
|
325
325
|
udata/linkchecker/commands.py,sha256=14c78P0FTLncuJpAgPizoCY62bUIknKumev1FPZ4JQU,454
|
|
326
326
|
udata/linkchecker/models.py,sha256=V5PBSOGnCXZrZLoFQwKb91enpgVTbX4Q3_oWOPihJic,423
|
|
327
327
|
udata/linkchecker/tasks.py,sha256=jETwfn6v-mP4jh_ovz4EwlxBUcRij_wHJVK1AmC0qo4,1918
|
|
328
|
-
udata/migrations/2020-07-24-remove-s-from-scope-oauth.py,sha256=
|
|
328
|
+
udata/migrations/2020-07-24-remove-s-from-scope-oauth.py,sha256=bCfBRcd4azHSV-fpZQaiHkWu7likHoWNpq9PeJvi5S0,665
|
|
329
329
|
udata/migrations/2020-08-24-add-fs-filename.py,sha256=7mz5ufFvY67NDKEmQn0HS3u1SdR9uH077ngJfd2uot4,1819
|
|
330
330
|
udata/migrations/2020-09-28-update-reuses-datasets-metrics.py,sha256=d7zizz1fwy-jCOJWmfveBpBZJSHJu46HSIBf3Xnd0eI,407
|
|
331
331
|
udata/migrations/2020-10-16-migrate-ods-resources.py,sha256=mquEvN_MFgiMetFD5nqKExD24ZkzSmS40Noi4eBVYas,1031
|
|
332
332
|
udata/migrations/2021-04-08-update-schema-with-new-structure.py,sha256=D96w9J-kfifgpoW9y6f66SsfConwfF26kpsJOuwuvYw,881
|
|
333
333
|
udata/migrations/2021-05-27-fix-default-schema-name.py,sha256=n377iZDBGMivMvm_ArXeufG5MjS9duBrs3menCrFFAs,806
|
|
334
|
-
udata/migrations/2021-07-05-remove-unused-badges.py,sha256=
|
|
334
|
+
udata/migrations/2021-07-05-remove-unused-badges.py,sha256=KJdDgCkCCevsmZ1n-xHnUwYgMK4MmgM67UEE_8oDdAA,921
|
|
335
335
|
udata/migrations/2021-07-07-update-schema-for-community-resources.py,sha256=gj-CAQsGQ_lc7bmgZSo6sMqKLjgIYaLQShfC42Lql8w,866
|
|
336
336
|
udata/migrations/2021-08-17-follow-integrity.py,sha256=wUpsXwTCaXFdhFW3zltvswm_Z0d0RafYsEandgJJ1QQ,532
|
|
337
337
|
udata/migrations/2021-08-17-harvest-integrity.py,sha256=L0mEqlY6ekspIpPFq93grI6Gn1tT_Ii1WHaq_ORAMbU,1611
|
|
@@ -343,12 +343,12 @@ udata/migrations/2022-04-21-improve-extension-detection.py,sha256=UX2JBepFagsyH9
|
|
|
343
343
|
udata/migrations/2022-09-22-clean-inactive-harvest-datasets.py,sha256=ogsPjHcjRlRn7iWogl220Rcze07TvVqzub5hdqAP8Mg,1023
|
|
344
344
|
udata/migrations/2022-10-10-add-fs_uniquifier-to-user-model.py,sha256=UrMUEdoLuw2N7CAp0sUncQXowikcoZr82PE6lFnEnF4,588
|
|
345
345
|
udata/migrations/2022-10-10-migrate-harvest-extras.py,sha256=AtnLvu_RxMlvY03XRc67-mtzkIoK4nUCtfaOfZBtOb0,2331
|
|
346
|
-
udata/migrations/2023-02-08-rename-internal-dates.py,sha256=
|
|
346
|
+
udata/migrations/2023-02-08-rename-internal-dates.py,sha256=jE1oR16Zc98450mATKpKEcv1hF8XeeHBw2ggLXD5XJQ,2032
|
|
347
347
|
udata/migrations/2024-01-29-fix-reuse-and-dataset-with-private-None.py,sha256=9LMwAdv7527qsrQQikZAskFsheqwZpEP_VewjwROm6o,592
|
|
348
348
|
udata/migrations/2024-03-22-migrate-activity-kwargs-to-extras.py,sha256=ucoXSqZlGToMCNiba0pRw_WoYb-lSBKvnbBLe-YVVrs,402
|
|
349
|
-
udata/migrations/2024-06-11-fix-reuse-datasets-references.py,sha256=
|
|
349
|
+
udata/migrations/2024-06-11-fix-reuse-datasets-references.py,sha256=p0ksSutxk93rY9AMPyN7w_9lU5Y3sRU75iWOLR8MmsY,768
|
|
350
350
|
udata/migrations/__init__.py,sha256=RBCBDaTlLjuMs_Qzwji6Z6T4r7FCGXhESKoxQbT5qAA,11221
|
|
351
|
-
udata/models/__init__.py,sha256=
|
|
351
|
+
udata/models/__init__.py,sha256=txbZwa-lRG3mq99eQ9E5YcFWiNUdjDVSyJJvlqUMFfs,1413
|
|
352
352
|
udata/mongo/__init__.py,sha256=y4Rv-kq3o_kcEulcNpePLzocXPBNpx3Jd82G-VZPaMc,1421
|
|
353
353
|
udata/mongo/badges_field.py,sha256=UmSaQkiOFtIb116GAT2B0OE6ypOrq8Jx7GdULEr05LU,985
|
|
354
354
|
udata/mongo/datetime_fields.py,sha256=ZIyyl7ltMMY9yQkEK3YsCGO3ZzSF0ixWPj12RE6Rmas,1894
|
|
@@ -365,9 +365,9 @@ udata/notifications/__init__.py,sha256=ZrSpV2zI9bZ0oz8tGsnA8hjDdGeU7YDdgvOLo70ao
|
|
|
365
365
|
udata/notifications/mattermost.py,sha256=v8VrDg0iEVsioSSEgukhCK0lz9Lxy8H16z_gTQry1ko,783
|
|
366
366
|
udata/search/__init__.py,sha256=09cBlIPoQePn20KL9AjfDwazFUmXTBiAOcUrcFtSA-o,3945
|
|
367
367
|
udata/search/adapter.py,sha256=Ier9dgE6Cg8dmz8-n0_03ixnuAWVk3ZQkevbIg-i_U8,2205
|
|
368
|
-
udata/search/commands.py,sha256=
|
|
368
|
+
udata/search/commands.py,sha256=_gKSBQGqZ06aE-6m-NqBH2xlIzezscNgpr9GyxCZLgA,5415
|
|
369
369
|
udata/search/fields.py,sha256=WJKB6_oMT_fRToFongfYesr0mQOIdWEyiTXEHkg4Y58,1757
|
|
370
|
-
udata/search/query.py,sha256=
|
|
370
|
+
udata/search/query.py,sha256=n5cNWbvWeCK-B-LILTSXaiYpddpVuUtQ5pC6yR9fg3k,3048
|
|
371
371
|
udata/search/result.py,sha256=LEL-QRSZ6SC0LaVDHyFfhXDvvB0-fc2U56FpAmgs1OQ,1893
|
|
372
372
|
udata/static/7799dece2c79854f63f09e7dfa528b88.jpg,sha256=VIc5H6XbYVVwlSKIa-68AP10M_-3rl9j5YVJfNUXSuU,123770
|
|
373
373
|
udata/static/7a4b4c6ebdb549fcbe47408f9457493e.gif,sha256=dSMJZzu9nZsroL1Y0KcHGixZww4oJNhbzSo7wKB-8fE,329
|
|
@@ -580,7 +580,7 @@ udata/tests/models.py,sha256=5oTC-cgKSL0sUdlqjUiJ6U8-YZBQanObb-MhZhQIV3M,238
|
|
|
580
580
|
udata/tests/plugin.py,sha256=dT3KfQiVYwLM61TbB894wzTelnlPIsCHaiPEH-Jirfk,11580
|
|
581
581
|
udata/tests/schemas.json,sha256=szM1jDpkogfOG4xWbjIGjLgG8l9-ZyE3JKQtecJyD1E,4990
|
|
582
582
|
udata/tests/test_activity.py,sha256=x-pDK6VW9wAG0uxYRZQ3DWTRjfCU729iaMGMJb1rWYU,3195
|
|
583
|
-
udata/tests/test_cors.py,sha256=
|
|
583
|
+
udata/tests/test_cors.py,sha256=tarfoSC_5B1qK18IkPrIdftB9i4T7i9PxUF9AAvqmAU,1780
|
|
584
584
|
udata/tests/test_discussions.py,sha256=UN2mlZp-h3m3HqdF_nz9WOxwPKgXok47E2Rrp2dknYI,30464
|
|
585
585
|
udata/tests/test_i18n.py,sha256=u60344JNRG_8s0t89ghXtQ1FbF4TayEHBzuBFxqnQ_Y,3152
|
|
586
586
|
udata/tests/test_linkchecker.py,sha256=W8jrwKYXM8wWXZFjiaBwpWGRBhZ8bsSHGHzL9voDN7U,10218
|
|
@@ -588,34 +588,34 @@ udata/tests/test_mail.py,sha256=ijcrniawbvftm5UF8KDApBoxMHyZwULAA25LrnLmeI8,1629
|
|
|
588
588
|
udata/tests/test_migrations.py,sha256=Iq0gt3hjK6ohliIvEpqyt0tYJz0MKIzBg_yfw7dOcHo,15698
|
|
589
589
|
udata/tests/test_model.py,sha256=JWY6GKLk4fyIQoJiijH1yqC3o709vuYm5ljtMia-xIc,20525
|
|
590
590
|
udata/tests/test_notifications.py,sha256=m8G-fwBgOP5JQud5QMWVC6CBQL_h042VgrGMowK5ow0,2333
|
|
591
|
-
udata/tests/test_owned.py,sha256=
|
|
591
|
+
udata/tests/test_owned.py,sha256=adygSUX0OuBZzZ3f37Y_qm21lSpypBDJpLUkZ7kfRaM,5662
|
|
592
592
|
udata/tests/test_rdf.py,sha256=HtGgUtUH2Q8hFuIYvz8Pk3ctcM_egaUkRn7n8ID0Ldk,2828
|
|
593
|
-
udata/tests/test_routing.py,sha256=
|
|
593
|
+
udata/tests/test_routing.py,sha256=8AWHQ2yeT7jWycz9JDdSMpMe3HjLPpO_y1jGJ2DwzhE,10035
|
|
594
594
|
udata/tests/test_storages.py,sha256=OG_PnKtPlZmmhKnbbLrvL-EMEg35wAMsTC76jVEAOLU,9602
|
|
595
|
-
udata/tests/test_tags.py,sha256=
|
|
595
|
+
udata/tests/test_tags.py,sha256=Gzn9uOvlBkLe-Nf09qvaV3jooJhhXHKtRsnkkKgvEtY,3752
|
|
596
596
|
udata/tests/test_topics.py,sha256=nBQZvbk2F1QYd6qiZDtVKuJ8_Ee8g0hT6dTGDw1Vwuk,1323
|
|
597
|
-
udata/tests/test_transfer.py,sha256=
|
|
597
|
+
udata/tests/test_transfer.py,sha256=_0pBwYs3T7OSZ7bO3KmQ81SjwCJyT4EVf8YYHXOkwdk,7779
|
|
598
598
|
udata/tests/test_uris.py,sha256=MxafZ0SyzSNRomVpZnH1ChzWaHOi1MQiXe1gmKnBc6o,8517
|
|
599
599
|
udata/tests/test_utils.py,sha256=3BGnlvw-GOE6tLHQteo-uUeYuzq4rsjePOuytFGkpOg,7967
|
|
600
600
|
udata/tests/api/__init__.py,sha256=y4sL7LD1-KwONHF0q_Rhk2W6BmGUlp7Uz2JnX3e27sk,1218
|
|
601
601
|
udata/tests/api/test_auth_api.py,sha256=0Y_JXQ4x8jvc_pp4g3H6gZ_X0QVGM6TaZ2IN9LeOWEg,21657
|
|
602
|
-
udata/tests/api/test_base_api.py,sha256=
|
|
603
|
-
udata/tests/api/test_contact_points.py,sha256=
|
|
602
|
+
udata/tests/api/test_base_api.py,sha256=2w_vz0eEuq3P3aN-ByvxGc3VZAo7XtgatFfcrzf2uEU,2244
|
|
603
|
+
udata/tests/api/test_contact_points.py,sha256=pyakkKnM4lH_asuEoXq9lQyJC9to6ZxSp4QQrHh1c1U,1041
|
|
604
604
|
udata/tests/api/test_dataservices_api.py,sha256=CeYyjezBvjHkE4rEneprw19artxgdSL3VmfqxZQCrus,11993
|
|
605
|
-
udata/tests/api/test_datasets_api.py,sha256=
|
|
605
|
+
udata/tests/api/test_datasets_api.py,sha256=LQAUaYY8Sj2HibHu6Qg1T46LlLxlPRa_aP0r1Z7A0jc,80614
|
|
606
606
|
udata/tests/api/test_fields.py,sha256=OW85Z5MES5HeWOpapeem8OvR1cIcrqW-xMWpdZO4LZ8,1033
|
|
607
607
|
udata/tests/api/test_follow_api.py,sha256=fccgVNfcqET221PPS3p7qzb9hpvbBBUGhV-l4UeOpyk,3352
|
|
608
608
|
udata/tests/api/test_me_api.py,sha256=ZJKGH9fFv-4cSGcYAGd6IJA_PwPjVGIqWNy_DhFA8ms,13827
|
|
609
|
-
udata/tests/api/test_organizations_api.py,sha256=
|
|
610
|
-
udata/tests/api/test_reports_api.py,sha256=
|
|
609
|
+
udata/tests/api/test_organizations_api.py,sha256=YcO2fWELdmPD4Oc8h5MTrLI-Gfbx16RN4nE14zzKGFw,35049
|
|
610
|
+
udata/tests/api/test_reports_api.py,sha256=fCSz9NwMXBs6cxdXBVVI6y564AtovmZYw3xkgxQ9KE8,6217
|
|
611
611
|
udata/tests/api/test_reuses_api.py,sha256=v9RJcJ_fdR8dgnq6H7j58_7n83BhoFJJ9YOd7CJwsyw,16769
|
|
612
612
|
udata/tests/api/test_swagger.py,sha256=eE6La9qdTYTIUFevRVPJgtj17Jq_8uOlsDwzCNR0LL8,760
|
|
613
|
-
udata/tests/api/test_tags_api.py,sha256=
|
|
613
|
+
udata/tests/api/test_tags_api.py,sha256=wQR67DeRQvLn8fvgwUMpnT135xamo2fNSSqhEMm0v-g,2429
|
|
614
614
|
udata/tests/api/test_topics_api.py,sha256=s4pqHTWl3ly8HQd2YmVclHFrjrf0212u5iDSOTSBbZg,9375
|
|
615
|
-
udata/tests/api/test_transfer_api.py,sha256=
|
|
615
|
+
udata/tests/api/test_transfer_api.py,sha256=5cp4-O-nxkxDibsVbsG2lZ2qAsTBX2BpoMPTm8bvT8k,3085
|
|
616
616
|
udata/tests/api/test_user_api.py,sha256=Xtme7l_15rHjTqSzjxNLv5Q8I_T5_eY2rIgzuNVJlRk,14357
|
|
617
617
|
udata/tests/apiv2/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
618
|
-
udata/tests/apiv2/test_datasets.py,sha256=
|
|
618
|
+
udata/tests/apiv2/test_datasets.py,sha256=BEXvt67DulDsxQ1-6wRScHPY1f3F3uAKofudoX3Zz7E,19454
|
|
619
619
|
udata/tests/apiv2/test_me_api.py,sha256=RAgu5iKGB3Pp8cDN-427ovly-VOz5MTL4GpPZ1NcVXI,1418
|
|
620
620
|
udata/tests/apiv2/test_organizations.py,sha256=os_43s-coSRqjgY-5fAjSiRlB3g2685u7d-Es0aOhks,6390
|
|
621
621
|
udata/tests/apiv2/test_swagger.py,sha256=RKedaq-2UeyEuxlmUaAN7pmEe-lQYYmpDUVc8HF3CH4,785
|
|
@@ -630,13 +630,12 @@ udata/tests/dataset/test_csv_adapter.py,sha256=Bupsw2vmkZjFLAbVATSek-6M_WZRsidXN
|
|
|
630
630
|
udata/tests/dataset/test_dataset_actions.py,sha256=bgDjVYjOvu3sX_FCTCzf2snZYSprsqor2nAhIVuokSs,722
|
|
631
631
|
udata/tests/dataset/test_dataset_commands.py,sha256=zMPJG2wYwKBee2zI65kmboxf59Zqa84DDjT8V5wj9uo,801
|
|
632
632
|
udata/tests/dataset/test_dataset_events.py,sha256=vF40F6vGLgflO7b-5MyAIWlWLVO12CtBkeBdfpMzZdo,2828
|
|
633
|
-
udata/tests/dataset/test_dataset_model.py,sha256=
|
|
633
|
+
udata/tests/dataset/test_dataset_model.py,sha256=oaqm7q3DwZa4GLCyv7rj3rvtBIKxdCf4wUQdYo1pOiU,29745
|
|
634
634
|
udata/tests/dataset/test_dataset_rdf.py,sha256=byBjy_f2fs9_DV0P5HzDkYObJGNXHSCiuN4c5X_3M8E,30086
|
|
635
635
|
udata/tests/dataset/test_dataset_tasks.py,sha256=rSafDjCiOyEb2_tVUDN4wqGylF6Yf9VNB769SLmxlwI,2283
|
|
636
636
|
udata/tests/dataset/test_resource_preview.py,sha256=fp9mSL7unhyM66GR0gwhgX3OGQ4TJt7G9xU-CjsL3HI,3908
|
|
637
637
|
udata/tests/features/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
638
638
|
udata/tests/features/territories/__init__.py,sha256=gMD73RL-ymcWvGPDPM0aPxz7WAfd1VEDL8YHRI7HT0Q,956
|
|
639
|
-
udata/tests/features/territories/commands.py,sha256=LMestg7oCC52GSHmrpD4l10MRgquLnS_TsjPzy72enQ,240
|
|
640
639
|
udata/tests/features/territories/test_territories_api.py,sha256=vhZ1HK-booNbRGpUww4pN9XPp39rgaaI_4sbtJgHApk,7576
|
|
641
640
|
udata/tests/forms/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
642
641
|
udata/tests/forms/test_basic_fields.py,sha256=RPVdW3fQF6hhxpqF6FPr6GEpDoFO7-hAptDNXvajA_Q,2096
|
|
@@ -653,19 +652,19 @@ udata/tests/forms/test_publish_as_field.py,sha256=OD-gB6RxMIYaZTMjlP6cxnap_urycP
|
|
|
653
652
|
udata/tests/forms/test_reference_field.py,sha256=oa57TatMG9Ul5Z_ehCsLK0Zau31n3xaRU0gLAmZlg9w,6290
|
|
654
653
|
udata/tests/forms/test_user_forms.py,sha256=qmk6ZBqDrVBtwAugkWUATeBDechhL2JGXhUldBBNqGg,1014
|
|
655
654
|
udata/tests/forms/test_uuid_field.py,sha256=256hFDZSWBeoRQuKIAF5RBt4hAKssSHFVAqMMHz8rcc,1788
|
|
656
|
-
udata/tests/frontend/__init__.py,sha256=
|
|
657
|
-
udata/tests/frontend/test_auth.py,sha256=
|
|
655
|
+
udata/tests/frontend/__init__.py,sha256=mFRcaFV6kFGorzrBzfm5Idx9l94XWY41r6j8r4AkmWA,787
|
|
656
|
+
udata/tests/frontend/test_auth.py,sha256=zFnzTKtE0LJ4I4al7TTvlroDe2P7rgWisRE-LNAA9O0,785
|
|
658
657
|
udata/tests/frontend/test_csv.py,sha256=egLcw9WkrqVrPLAp1jwXruMSLsI-C5EsfWsxNC-XNbI,11795
|
|
659
658
|
udata/tests/frontend/test_hooks.py,sha256=rPDzxWDz6Ryv3RkRLm37F4Zp9xdcbgq0OyzCCInaG2I,4077
|
|
660
659
|
udata/tests/frontend/test_markdown.py,sha256=8E0XjByzmsY-RGdF2ESoL9Rklkfz3vcdJWKWhIxpw7c,13066
|
|
661
660
|
udata/tests/organization/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
662
|
-
udata/tests/organization/test_csv_adapter.py,sha256=
|
|
663
|
-
udata/tests/organization/test_notifications.py,sha256=
|
|
661
|
+
udata/tests/organization/test_csv_adapter.py,sha256=vgTVbPMqKipcdg7wi99pHk9ZNhqtuU-yneEaVW3pZmU,1564
|
|
662
|
+
udata/tests/organization/test_notifications.py,sha256=PGmME5BbYVtcPffeSE1sx47J6iAfm4RDAZIRv_MXDFE,1366
|
|
664
663
|
udata/tests/organization/test_organization_model.py,sha256=98ud3w37hn4VXqJgpxM43UGr2mE1YHM1m0IMCPE9J9E,2030
|
|
665
664
|
udata/tests/organization/test_organization_rdf.py,sha256=ryr3OeJ6u8KeRlcSp7EL2mib7gvBNLVjKJ_0c824Uh0,6307
|
|
666
665
|
udata/tests/organization/test_organization_tasks.py,sha256=ehPirwfLqaEcnJ9TLk3jGw3Xh-CVx1WXhvIDFYrT2iQ,2845
|
|
667
666
|
udata/tests/reuse/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
668
|
-
udata/tests/reuse/test_reuse_model.py,sha256=
|
|
667
|
+
udata/tests/reuse/test_reuse_model.py,sha256=ro_p0GmDvkaP6jQmCxDDLiGBFetDInjn9McnHRglWZY,3989
|
|
669
668
|
udata/tests/reuse/test_reuse_task.py,sha256=4gMsKHjGafb6kpRKnqF167Htd-Ff0tRD4iQajW1e_lg,1380
|
|
670
669
|
udata/tests/search/__init__.py,sha256=ub8kS6vG9EjzkJ-9sAR7j1eLSYpud1Gzry4MQ8fpgxM,1493
|
|
671
670
|
udata/tests/search/test_adapter.py,sha256=mi-M53JQSPYxU8ahkqtfyIrIyhz_cC_ATdLbWWa3onM,6941
|
|
@@ -675,11 +674,11 @@ udata/tests/site/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,
|
|
|
675
674
|
udata/tests/site/test_site_api.py,sha256=rVvaGFAXVy_HilxpFrifJp-ESjPd-oAfvLd5eq9kwyA,2190
|
|
676
675
|
udata/tests/site/test_site_metrics.py,sha256=VHc90fREz0xIk98cF0YnsIamego_XyA0z6b4e_ItjGc,2126
|
|
677
676
|
udata/tests/site/test_site_model.py,sha256=zpRg5jrFPUwhGsljlO5lpCrhJLHiHYoNl28AOw5mI4c,1312
|
|
678
|
-
udata/tests/site/test_site_rdf.py,sha256=
|
|
677
|
+
udata/tests/site/test_site_rdf.py,sha256=YESWrKTyk8z8ptVKQtRSXdGD3F6ETx9W5HHZMYRIFyk,12824
|
|
679
678
|
udata/tests/user/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
680
679
|
udata/tests/user/test_user_rdf.py,sha256=BRdv9ivLLUQoImFOuIohDoZAQXMXCruaNJ37siKul5o,1771
|
|
681
680
|
udata/tests/workers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
682
|
-
udata/tests/workers/test_jobs_commands.py,sha256=
|
|
681
|
+
udata/tests/workers/test_jobs_commands.py,sha256=TAfJUUPBSkwtFHZpIa6k9n-o_SUni7q4bQsiuXXuqGY,5463
|
|
683
682
|
udata/tests/workers/test_tasks_routing.py,sha256=m7Zu9X7GW3oKkSDcHM-dC20Vba3Fruui44bMBVU1dcc,2228
|
|
684
683
|
udata/tests/workers/test_workers_api.py,sha256=x8EkULR9G5TKl5WwjdVwfFEttbudpiWIYN2umETrCzY,8805
|
|
685
684
|
udata/tests/workers/test_workers_helpers.py,sha256=_983ChRxas3gsjykaEpXWQUbk2qTMJgeFZpIAHTuhLk,647
|
|
@@ -698,9 +697,9 @@ udata/translations/pt/LC_MESSAGES/udata.mo,sha256=WpPzAqVd2Onv_kz45ULUySKPLrpjcc
|
|
|
698
697
|
udata/translations/pt/LC_MESSAGES/udata.po,sha256=18Op9RUITewoDRewlOdYzzq6gjsf1lsvepACV1d7zxs,44976
|
|
699
698
|
udata/translations/sr/LC_MESSAGES/udata.mo,sha256=NIYRNhVoETZUvIvWm3cCW7DtMBAnS2vXzZjMF5ZzD_c,28500
|
|
700
699
|
udata/translations/sr/LC_MESSAGES/udata.po,sha256=rQB-4V4WJ7bURj6g2j653vItr5TMHadcLQxec7_fDmg,51545
|
|
701
|
-
udata-9.1.
|
|
702
|
-
udata-9.1.
|
|
703
|
-
udata-9.1.
|
|
704
|
-
udata-9.1.
|
|
705
|
-
udata-9.1.
|
|
706
|
-
udata-9.1.
|
|
700
|
+
udata-9.1.4.dev30983.dist-info/LICENSE,sha256=V8j_M8nAz8PvAOZQocyRDX7keai8UJ9skgmnwqETmdY,34520
|
|
701
|
+
udata-9.1.4.dev30983.dist-info/METADATA,sha256=99ViYDU6RrkTQpGiSfSYEhiNLJiJuZbMRnzT7hKLD9w,128480
|
|
702
|
+
udata-9.1.4.dev30983.dist-info/WHEEL,sha256=DZajD4pwLWue70CAfc7YaxT1wLUciNBvN_TTcvXpltE,110
|
|
703
|
+
udata-9.1.4.dev30983.dist-info/entry_points.txt,sha256=3SKiqVy4HUqxf6iWspgMqH8d88Htk6KoLbG1BU-UddQ,451
|
|
704
|
+
udata-9.1.4.dev30983.dist-info/top_level.txt,sha256=39OCg-VWFWOq4gCKnjKNu-s3OwFlZIu_dVH8Gl6ndHw,12
|
|
705
|
+
udata-9.1.4.dev30983.dist-info/RECORD,,
|
udata/commands/tests/fixtures.py
DELETED
|
@@ -1,44 +0,0 @@
|
|
|
1
|
-
import json
|
|
2
|
-
from tempfile import NamedTemporaryFile
|
|
3
|
-
|
|
4
|
-
from udata import models
|
|
5
|
-
from udata.commands.fixtures import generate_fixtures
|
|
6
|
-
from udata.tests import DBTestMixin, TestCase
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
class FixturesTest(DBTestMixin, TestCase):
|
|
10
|
-
def test_generate_fixtures(self):
|
|
11
|
-
with NamedTemporaryFile(delete=True) as fixtures_fd:
|
|
12
|
-
json_fixtures = [
|
|
13
|
-
{
|
|
14
|
-
"resources": [
|
|
15
|
-
{
|
|
16
|
-
"description": "test description",
|
|
17
|
-
"filetype": "remote",
|
|
18
|
-
"title": "test",
|
|
19
|
-
"url": "https://dev.local",
|
|
20
|
-
}
|
|
21
|
-
],
|
|
22
|
-
"dataset": {
|
|
23
|
-
"description": "### Le Test",
|
|
24
|
-
"frequency": "punctual",
|
|
25
|
-
"tags": ["action-publique"],
|
|
26
|
-
"title": "test",
|
|
27
|
-
},
|
|
28
|
-
"organization": {"description": "test description", "name": "Test"},
|
|
29
|
-
"reuses": [
|
|
30
|
-
{
|
|
31
|
-
"description": "test description",
|
|
32
|
-
"title": "test",
|
|
33
|
-
"url": "https://dev.local",
|
|
34
|
-
}
|
|
35
|
-
],
|
|
36
|
-
}
|
|
37
|
-
]
|
|
38
|
-
with open(fixtures_fd, "w") as f:
|
|
39
|
-
json.dump(json_fixtures, f)
|
|
40
|
-
generate_fixtures(fixtures_fd)
|
|
41
|
-
self.assertEqual(models.Organization.objects.count(), 1)
|
|
42
|
-
self.assertEqual(models.Dataset.objects.count(), 1)
|
|
43
|
-
self.assertEqual(models.Reuse.objects.count(), 1)
|
|
44
|
-
self.assertEqual(models.User.objects.count(), 1)
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|