udata 9.1.4__py2.py3-none-any.whl → 9.1.4.dev30973__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/__init__.py +2 -2
- udata/__init__.py +1 -1
- udata/api/__init__.py +3 -2
- udata/api/commands.py +1 -0
- udata/api/fields.py +1 -22
- udata/api_fields.py +37 -140
- udata/app.py +1 -1
- udata/auth/__init__.py +12 -8
- udata/commands/db.py +3 -3
- udata/commands/dcat.py +1 -1
- udata/commands/fixtures.py +40 -60
- udata/commands/purge.py +1 -2
- udata/commands/tests/test_fixtures.py +11 -44
- udata/core/activity/api.py +1 -14
- udata/core/activity/tasks.py +1 -1
- udata/core/badges/models.py +2 -6
- udata/core/contact_point/api.py +3 -1
- udata/core/dataservices/api.py +1 -37
- udata/core/dataservices/models.py +0 -38
- udata/core/dataservices/tasks.py +1 -1
- udata/core/dataset/events.py +1 -4
- udata/core/dataset/forms.py +2 -0
- udata/core/dataset/models.py +10 -12
- 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/metrics/models.py +1 -4
- udata/core/organization/api.py +7 -11
- udata/core/organization/api_fields.py +4 -10
- udata/core/organization/apiv2.py +1 -1
- udata/core/organization/csv.py +0 -1
- udata/core/organization/rdf.py +1 -4
- udata/core/owned.py +2 -4
- udata/core/post/api.py +2 -2
- udata/core/reuse/api.py +25 -32
- udata/core/reuse/api_fields.py +101 -2
- udata/core/reuse/apiv2.py +4 -4
- udata/core/reuse/forms.py +45 -0
- udata/core/reuse/models.py +16 -98
- udata/core/site/api.py +29 -3
- 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 +1 -3
- udata/core/topic/api.py +2 -2
- udata/core/topic/apiv2.py +2 -1
- udata/core/user/api.py +8 -28
- udata/core/user/metrics.py +1 -1
- udata/cors.py +4 -4
- udata/features/transfer/api.py +2 -1
- udata/harvest/actions.py +1 -1
- udata/harvest/backends/__init__.py +1 -1
- udata/harvest/tasks.py +1 -0
- udata/harvest/tests/factories.py +2 -0
- udata/harvest/tests/test_base_backend.py +1 -0
- udata/harvest/tests/test_dcat_backend.py +17 -16
- udata/migrations/2020-07-24-remove-s-from-scope-oauth.py +1 -1
- udata/migrations/2021-07-05-remove-unused-badges.py +1 -0
- udata/migrations/2023-02-08-rename-internal-dates.py +2 -0
- udata/migrations/2024-06-11-fix-reuse-datasets-references.py +1 -0
- udata/mongo/datetime_fields.py +4 -11
- udata/mongo/document.py +0 -2
- udata/mongo/taglist_field.py +0 -26
- udata/search/commands.py +1 -1
- udata/search/query.py +1 -1
- udata/settings.py +0 -1
- udata/static/admin.js +36 -36
- udata/static/admin.js.map +1 -1
- udata/static/chunks/{12.576e63b7a990f8eab784.js → 12.5b900cac4417e10ef3a0.js} +2 -2
- udata/static/chunks/12.5b900cac4417e10ef3a0.js.map +1 -0
- udata/static/chunks/{28.1ef31a46255dc2bf56d1.js → 28.1759a7f57d526e6db574.js} +2 -2
- udata/static/chunks/28.1759a7f57d526e6db574.js.map +1 -0
- udata/static/common.js +1 -1
- udata/static/common.js.map +1 -1
- udata/tests/api/test_base_api.py +1 -1
- udata/tests/api/test_contact_points.py +4 -4
- udata/tests/api/test_dataservices_api.py +0 -59
- udata/tests/api/test_datasets_api.py +10 -10
- udata/tests/api/test_organizations_api.py +39 -39
- udata/tests/api/test_reuses_api.py +0 -49
- udata/tests/api/test_tags_api.py +4 -4
- udata/tests/api/test_transfer_api.py +1 -1
- udata/tests/api/test_user_api.py +0 -11
- udata/tests/apiv2/test_datasets.py +4 -4
- udata/tests/dataset/test_dataset_events.py +0 -28
- udata/tests/dataset/test_dataset_model.py +3 -3
- udata/tests/frontend/__init__.py +2 -0
- udata/tests/frontend/test_auth.py +1 -0
- udata/tests/organization/test_csv_adapter.py +2 -0
- udata/tests/organization/test_notifications.py +3 -3
- udata/tests/organization/test_organization_rdf.py +6 -31
- udata/tests/reuse/test_reuse_model.py +1 -0
- udata/tests/site/test_site_rdf.py +3 -1
- udata/tests/test_cors.py +3 -0
- 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 +2 -1
- udata/tests/workers/test_jobs_commands.py +1 -1
- udata/utils.py +0 -12
- {udata-9.1.4.dist-info → udata-9.1.4.dev30973.dist-info}/METADATA +4 -16
- {udata-9.1.4.dist-info → udata-9.1.4.dev30973.dist-info}/RECORD +109 -109
- udata/static/chunks/12.576e63b7a990f8eab784.js.map +0 -1
- udata/static/chunks/28.1ef31a46255dc2bf56d1.js.map +0 -1
- udata/tests/api/test_activities_api.py +0 -69
- {udata-9.1.4.dist-info → udata-9.1.4.dev30973.dist-info}/LICENSE +0 -0
- {udata-9.1.4.dist-info → udata-9.1.4.dev30973.dist-info}/WHEEL +0 -0
- {udata-9.1.4.dist-info → udata-9.1.4.dev30973.dist-info}/entry_points.txt +0 -0
- {udata-9.1.4.dist-info → udata-9.1.4.dev30973.dist-info}/top_level.txt +0 -0
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
tasks/__init__.py,sha256=
|
|
1
|
+
tasks/__init__.py,sha256=oZ9yTY3eyOXRbN18_83l1b4BpqjIBVqw-FqD1LFWGxo,8122
|
|
2
2
|
tasks/helpers.py,sha256=70fS9tI_m0DTWmKx9Zl5-LG-nxdz_ZaPyvvsFkN2r48,1091
|
|
3
|
-
udata/__init__.py,sha256=
|
|
4
|
-
udata/api_fields.py,sha256=
|
|
5
|
-
udata/app.py,sha256=
|
|
3
|
+
udata/__init__.py,sha256=iIfkZcu-LQi4btmqKGrdK2F_zRkl8dI8cm8sFeYz9Fk,101
|
|
4
|
+
udata/api_fields.py,sha256=P51s1QnBLQvtvfK3PI2hOhWaobP6Ok_MqAz5PhJayzk,15429
|
|
5
|
+
udata/app.py,sha256=lMxCLveZyMmaimkryDjD-VpHBC5OMEgd95VszM84y-8,7284
|
|
6
6
|
udata/assets.py,sha256=H5Hrc2vnKM0IFLyWfLXmJ2Kj35w1i8W1D8Cgy8_cUj4,657
|
|
7
|
-
udata/cors.py,sha256=
|
|
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
|
|
10
10
|
udata/factories.py,sha256=MoklZnU8iwNL25dm3JsoXhoQs1PQWSVYL1WvcUBtJqM,492
|
|
@@ -13,26 +13,26 @@ udata/mail.py,sha256=MShopArrtXyn8SnXtNbWUR0C4mTj1gI3a3Lf_1We-j4,2167
|
|
|
13
13
|
udata/rdf.py,sha256=GDqnBuJd2KryJDpJjPuH0WpkZIPoOEa2uOACr5mNCik,13835
|
|
14
14
|
udata/routing.py,sha256=x9WcpYikR45j3C_0Bi2Zoa2treSCW_oDYWMHwbdLAmE,7242
|
|
15
15
|
udata/sentry.py,sha256=ekcxqUSqxfM98TtvCsPaOoX5i2l6PEcYt7kb4l3od-Q,3223
|
|
16
|
-
udata/settings.py,sha256=
|
|
16
|
+
udata/settings.py,sha256=ZcLUXKv-nRPjDSmb-vS1gVAT2xqChjdi2GMx1d5zpcw,17853
|
|
17
17
|
udata/sitemap.py,sha256=oRRWoPI7ZsFFnUAOqGT1YuXFFKHBe8EcRnUCNHD7xjM,979
|
|
18
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=hbld2aEAQWh5DmcWot6cYLpUf34lON0ux0aV_SFqu6E,10680
|
|
29
|
+
udata/api/commands.py,sha256=jqsUetPmTrxsvvGHIAf_qNMS3Wb4auBRYVMOWMKqe_g,3266
|
|
30
30
|
udata/api/errors.py,sha256=P_UigBf6HAL73LbXKULagmp5Cuw-H1Ms6LmXxOmFIeg,211
|
|
31
|
-
udata/api/fields.py,sha256=
|
|
31
|
+
udata/api/fields.py,sha256=FIvRmhIJivEKQWkcXeSM7c6uJwIYX3_JV9DAdMOQO_E,3077
|
|
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=WmCXQp7KVAYEHrM68bTePUzJ8Zc1GVwNoCKwmGb_pTk,1840
|
|
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=64x0614tCUl2f-c6b9K_TcRMyydZCnmCWrz5WI6tUkg,14701
|
|
44
|
+
udata/commands/dcat.py,sha256=L1BTywlHFBOkddZnKfWr8P4QjRMZksYCwhUNfJv5tkc,3409
|
|
45
|
+
udata/commands/fixtures.py,sha256=exRyCLhPZLtI6SQf7oXp_tIcz84MJ1soi0jdwODQXMc,8369
|
|
46
46
|
udata/commands/images.py,sha256=0rVojLik5DYgJ6W4uNEfMP2g2QUU2V761tj3z6lo8no,2050
|
|
47
47
|
udata/commands/info.py,sha256=A5WMo3_N_rlt3cySVJrZqKWrbIowX97ZLKMIFQE5178,1545
|
|
48
48
|
udata/commands/init.py,sha256=8CpH8MklzPkpxczs43lFM5ZNrHCJRbUtzHapgYNHs7M,1520
|
|
49
|
-
udata/commands/purge.py,sha256=
|
|
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/test_fixtures.py,sha256=
|
|
55
|
+
udata/commands/tests/test_fixtures.py,sha256=7gZSyiqrn6G84tZ1koPkgnYwnrskmZaqjRTXEPmnA9s,3326
|
|
56
56
|
udata/core/__init__.py,sha256=O7C9WWCXiLWnWPnPbFRszWhOmvRQiI4gD-5qkWvPGRo,385
|
|
57
|
-
udata/core/owned.py,sha256=
|
|
57
|
+
udata/core/owned.py,sha256=xcIg9fNndowuLs7BEkuxAsEdf6JApomU_Gl6L-SgTJI,4515
|
|
58
58
|
udata/core/activity/__init__.py,sha256=OaiFyq7HB4xL4SuMPD1N8IFNpntwx9ZayVzelciOieI,298
|
|
59
|
-
udata/core/activity/api.py,sha256=
|
|
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=UC_VHKZy3djV5Z3PTJBdGo3wuhmj5J8NwyDkIH_4ehY,1243
|
|
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=86IoPUr7LWTMC6UeGfRQ7uKsi00C9CnofRGkgUHjwl4,2987
|
|
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,18 +74,18 @@ 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=Fg7k2NpQLrG-08lA7GYOQE1U397Q5Nq3CgHS9NqScB8,1920
|
|
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
|
|
81
81
|
udata/core/contact_point/models.py,sha256=yB82UcZJGeVhSIsvnpAT8yao7fmAyl59WVGphP3LGHw,309
|
|
82
82
|
udata/core/dataservices/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
83
|
-
udata/core/dataservices/api.py,sha256=
|
|
83
|
+
udata/core/dataservices/api.py,sha256=7d4Gn9z9P40AapeMMEk63QY60Htg-LurUC63NzUfr2I,3092
|
|
84
84
|
udata/core/dataservices/factories.py,sha256=LDk8vvG0zhW8J-ZX5LoJQDU13pqeIyjQ05muuMro_eA,876
|
|
85
|
-
udata/core/dataservices/models.py,sha256=
|
|
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=3NEnsLssZANE97pc3hGnjGtXD2Z5VFguSyfBKE2UJ0g,970
|
|
89
89
|
udata/core/dataset/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
90
90
|
udata/core/dataset/actions.py,sha256=mX6xox0PiMrbcAPZ3VZsI26rfM-ciYfEXxN6sqqImKA,1222
|
|
91
91
|
udata/core/dataset/activities.py,sha256=v8k1jwhdx62Z2ARZq8Q-x86OWSsBK99hRloPl74OCgA,1502
|
|
@@ -95,29 +95,29 @@ udata/core/dataset/apiv2.py,sha256=VTE4eYx5udzOdHDUkD7TYpuCtppZMKp1okTSEE1fcgI,1
|
|
|
95
95
|
udata/core/dataset/commands.py,sha256=__hPAk_6iHtgMnEG51ux0vbNWJHxUjXhi1ukH4hF5jY,3714
|
|
96
96
|
udata/core/dataset/constants.py,sha256=pkOvrdNBq3k1ojJcv6oSg7kK1IUtb3PqLni-YJ3rKSY,2880
|
|
97
97
|
udata/core/dataset/csv.py,sha256=XMl8MaYCEyGmkCZqRSWrGRxCht2C9e3aQYGwDQLXYT0,3618
|
|
98
|
-
udata/core/dataset/events.py,sha256=
|
|
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=wDlSTH_epic8erPiLMcjv0tRmv4TSna_j1-0rjrULVY,6237
|
|
102
|
+
udata/core/dataset/models.py,sha256=_fGM8wQXbwlQN5a-pilMPlmi7O5derV8NKzrLxOFwtc,36285
|
|
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=LrlyO8cj79eOv3O1vRvr39andyDs-UCWYUdzJ6dZnIA,22786
|
|
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=AS210U3bP0y2A9C6VejZz0WnmnqX0gX2rMYA42O3ZBg,8369
|
|
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=VpO8lHyfEmMh07THA7nog7h-R7Z1q7AeRRRjmxwd-0I,4055
|
|
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=5NQECJOjF6ig6rcRB5TVa3ZdeIX0XRm2mKY3AeWb0xk,2816
|
|
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
|
|
@@ -132,29 +132,29 @@ udata/core/jobs/forms.py,sha256=B-B6jXHZsYV-PWAkD8DLoOlh6trv4l1hGZ4HOPm-PD4,1495
|
|
|
132
132
|
udata/core/jobs/models.py,sha256=xK8T3FCmhtERNbZmh1Tq_ZTO6vojM172tTc0oplNoQ0,1358
|
|
133
133
|
udata/core/metrics/__init__.py,sha256=CB0MhZqNe4gKLBO-6zoGisXK7FtavxWx_Kkkle-INrc,398
|
|
134
134
|
udata/core/metrics/commands.py,sha256=p9KlEcQBpjCGuU733jtEMRPxwq0yt1FLdwIYeDgAjks,5132
|
|
135
|
-
udata/core/metrics/models.py,sha256=
|
|
135
|
+
udata/core/metrics/models.py,sha256=ISJNod02EjL9EymJZzLn-V0QK53hOZZeKu07zCUOWlA,290
|
|
136
136
|
udata/core/metrics/signals.py,sha256=9mdJW__gR2GJT3huBr6HN2SDhKYJRgNbW9dnh48cAnU,176
|
|
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=swiww_eycUQtG_t6Hor_17MPYvIfUCMEbpaxy4m-fT0,17419
|
|
141
|
+
udata/core/organization/api_fields.py,sha256=_Q13BwZIXNucBF5AZszZSP43Ty30lWkKxwUi2V3AGag,7133
|
|
142
|
+
udata/core/organization/apiv2.py,sha256=sHWDAdFtD_mw2rqZ_p8tDXfc7wXdFrjNCT2g10ygyDg,3200
|
|
143
143
|
udata/core/organization/commands.py,sha256=DsRAtFDZvTciYNsUWumQWdn0jnNmKW-PwfIHUUZoBb8,1591
|
|
144
144
|
udata/core/organization/constants.py,sha256=r4umDp6BTA83DhcoFCILOQDtqfrWiCpIjmaZ8OxodHc,563
|
|
145
|
-
udata/core/organization/csv.py,sha256=
|
|
145
|
+
udata/core/organization/csv.py,sha256=sZDKEkqneuoEzFZ-2ul5yEnFnsER7MeG1tyMZfRKNdQ,1606
|
|
146
146
|
udata/core/organization/factories.py,sha256=g8ubBcz79xbjvpunZ02IDOakFg1KE6cXjNkE9vFyFAc,624
|
|
147
147
|
udata/core/organization/forms.py,sha256=tscDb1_yOpbTx3ahl8ttA7oDkX9jIyzLc4gOf6WbN3s,3552
|
|
148
148
|
udata/core/organization/metrics.py,sha256=UlHOBOph9s_QW-X7dkEivVITdyZ0ku9kLKl7BmSpGTI,778
|
|
149
149
|
udata/core/organization/models.py,sha256=Jwqq5Yh0jxOuO4yesEO1-57oFRdfpahbZz407AZk7fg,8426
|
|
150
150
|
udata/core/organization/notifications.py,sha256=i_36-l2y7fOGmnBmr5NDWmGGmrGRaCWbU-6XS4c2wQs,917
|
|
151
151
|
udata/core/organization/permissions.py,sha256=GD-9TMtRppVCPaC1ysXYrONvGJV-ArzAOXm2XMKf9yo,1256
|
|
152
|
-
udata/core/organization/rdf.py,sha256=
|
|
152
|
+
udata/core/organization/rdf.py,sha256=VdvR-oTYmsuHsOev_tAcwUvnHkcJlhNHFewwbmjSU0k,1752
|
|
153
153
|
udata/core/organization/search.py,sha256=Oie3BvGdyYTtiC8noJerlfDg5glMEk7acRQz7K5sVAk,2162
|
|
154
154
|
udata/core/organization/signals.py,sha256=Ft1MBU9S41uxFN-rUrKHhiwedR1OYGv-ncuroKg8orY,488
|
|
155
155
|
udata/core/organization/tasks.py,sha256=2Pd9ixeKNd7BGxBHrHYbR9AelhqkflX3ocnGgtoa8Uc,5641
|
|
156
156
|
udata/core/post/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
157
|
-
udata/core/post/api.py,sha256=
|
|
157
|
+
udata/core/post/api.py,sha256=ECEKpb9mwlJ2HU17pwF4QHqKuHJwIhhL6cHHXUlOhY0,5465
|
|
158
158
|
udata/core/post/constants.py,sha256=W-xjOTv0lorD-RCV0YGtK0cT_RwgYmfrC8Ff6ywH7bM,215
|
|
159
159
|
udata/core/post/factories.py,sha256=lcFe3zIadG7bc1jsydkOT7GfQX53V0x09Flpclyl6gI,619
|
|
160
160
|
udata/core/post/forms.py,sha256=gY4HhteFkZr3u4EoQ5QNEHMOTtNNiEKHyehVXKYcm3Y,963
|
|
@@ -168,20 +168,21 @@ udata/core/reports/constants.py,sha256=LRZSX3unyqZeB4yQjK3ws_hGbJcXYk4bu1Rhnhi5D
|
|
|
168
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
|
-
udata/core/reuse/api.py,sha256=
|
|
172
|
-
udata/core/reuse/api_fields.py,sha256=
|
|
173
|
-
udata/core/reuse/apiv2.py,sha256=
|
|
171
|
+
udata/core/reuse/api.py,sha256=KjxcP1RdARFgRRJotp4pAwClmdLdH4JhhyjYmRzJ_y4,10232
|
|
172
|
+
udata/core/reuse/api_fields.py,sha256=KLzXWWWAgtk7KsvUdBTc45L_rc465PO0c7P2e0Aq1hQ,5514
|
|
173
|
+
udata/core/reuse/apiv2.py,sha256=nl2QgkhXOdqsBoQxuKeJDIxqXu3neK-b5WYzw0grtas,825
|
|
174
174
|
udata/core/reuse/constants.py,sha256=JgDBrjOKSt9q0auv9rjzbGsch83H-Oi8YXAKeI5hO4o,1215
|
|
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
|
+
udata/core/reuse/forms.py,sha256=Fv2XfHt-zP7WpC8Z8qTlXFRlx8HHEd8nU28lUEA5MXk,1836
|
|
177
178
|
udata/core/reuse/metrics.py,sha256=sVh7BlW3OKRvFDHFyD4pPUV91jOOhj8qeWbBkLPn5Gg,176
|
|
178
|
-
udata/core/reuse/models.py,sha256=
|
|
179
|
+
udata/core/reuse/models.py,sha256=3KSmNSOPuFRSJclBCxoXo9hg7DXIZTqZLRy5DepHA9Y,5861
|
|
179
180
|
udata/core/reuse/permissions.py,sha256=j-ancS7gvLl5vJu0TNYqpYD-2So-UzoDE4IHLxRoMGg,621
|
|
180
181
|
udata/core/reuse/search.py,sha256=NkCRE8mGBdmlau0S9SsNPG0_zvB7MMNws64HGsq4yWM,3056
|
|
181
182
|
udata/core/reuse/signals.py,sha256=nDrEUpYKN0AdYiEbrR0z3nzXzjaRcD8SAMutwIDsQPM,155
|
|
182
183
|
udata/core/reuse/tasks.py,sha256=oyi6SGNfCKRLLuS-tLUCs_jcfa43jOn4Wuzq65Vnj8A,1529
|
|
183
184
|
udata/core/site/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
184
|
-
udata/core/site/api.py,sha256=
|
|
185
|
+
udata/core/site/api.py,sha256=GH8NPEoiScbaUBoSlF-SuZea60c8jfCcQ3782lJOIVI,6213
|
|
185
186
|
udata/core/site/factories.py,sha256=O0nLFmjrFyemzcs-YwNukq5nqd383KBGrgL5bOQsGbA,378
|
|
186
187
|
udata/core/site/forms.py,sha256=avEZ4rJhibF7sKexqMlKt1qMFiUHNrmJGKjZqcAyjrc,459
|
|
187
188
|
udata/core/site/models.py,sha256=PVB4I2dTQDr5p5md3faVDGZSgOcGKbloHzjzdOG96_I,6266
|
|
@@ -197,19 +198,19 @@ udata/core/spam/tests/test_spam.py,sha256=Yu06Z3hU-XPX51mvdgH_nHQFeug_PXWy6P7QxN
|
|
|
197
198
|
udata/core/spatial/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
198
199
|
udata/core/spatial/api.py,sha256=mELKeXSamaN1KfZWw9FykFDAfxhldhHcptNt2xQnM_o,5607
|
|
199
200
|
udata/core/spatial/api_fields.py,sha256=ZEmgzRrcMr944h3EqN5sLTIeLy-a1VlvxAGDD8NXGIY,2816
|
|
200
|
-
udata/core/spatial/commands.py,sha256=
|
|
201
|
+
udata/core/spatial/commands.py,sha256=e2eUJ5p3JsNMiGBGh6B9-f-LDl2l-LCzsaJXB6xHso4,6925
|
|
201
202
|
udata/core/spatial/constants.py,sha256=T024yKsXuBkaZ1MAFZPfLh2X_EFFVQ7Sfg4VHCmZQM4,147
|
|
202
|
-
udata/core/spatial/factories.py,sha256
|
|
203
|
-
udata/core/spatial/forms.py,sha256=
|
|
203
|
+
udata/core/spatial/factories.py,sha256=aHUr52lNB1ZvQGlztMEiuZzrEETW5ja8ZTG8SOQzCUI,3114
|
|
204
|
+
udata/core/spatial/forms.py,sha256=KxYDP7TKao6y6VzUlQOhz06IxGLyD_RDoBZxc6td1TA,3031
|
|
204
205
|
udata/core/spatial/geoids.py,sha256=-7MGX9Swe1Hfdla6QPL35xwm1dE3WVNmJaN3HPZQ99k,1159
|
|
205
|
-
udata/core/spatial/models.py,sha256=
|
|
206
|
+
udata/core/spatial/models.py,sha256=2MOt745m8ubuT76vPlpfiQ0CTEmVvtKMK2DIeUrZl98,5188
|
|
206
207
|
udata/core/spatial/tasks.py,sha256=1WVZkmgTbgrJ2-IF479hBzeO_5xtqflTNxHh7nzwnIw,229
|
|
207
|
-
udata/core/spatial/translations.py,sha256=
|
|
208
|
+
udata/core/spatial/translations.py,sha256=jPwD1UwWw1OpIoD8aXusLP187HgurGVl3fUhyInx44g,533
|
|
208
209
|
udata/core/spatial/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
209
210
|
udata/core/spatial/tests/test_api.py,sha256=IMp3aPOaIygTYsomhefrATKA-wzeEixJ-5nSi2g45PE,10976
|
|
210
211
|
udata/core/spatial/tests/test_fields.py,sha256=UOUE9NdQeoXaR_pWvoNQnZY2XYJBAFmU9AIFJ99Tf-g,9782
|
|
211
212
|
udata/core/spatial/tests/test_geoid.py,sha256=5-NhtvrOs-eoN5f18G6uyI23OB2nc8wQz9xQl3pieXY,1533
|
|
212
|
-
udata/core/spatial/tests/test_models.py,sha256=
|
|
213
|
+
udata/core/spatial/tests/test_models.py,sha256=iGLPku_gg1QF_dx1rYNi56f84PLdpneskyK4gVyCprU,949
|
|
213
214
|
udata/core/storages/__init__.py,sha256=uX2PECcYjZYBkk_xaJNxxSPUYTw0CZTKLx1rdqhi7MI,1200
|
|
214
215
|
udata/core/storages/api.py,sha256=2-ZFdiV0GzMxDVcMXOMmrmbVATRFUV-3c8px_4mQYFw,5142
|
|
215
216
|
udata/core/storages/tasks.py,sha256=9Ug8TaF3j-9ukbfSmdStIipLtq3I755EJmCLQ5wyVWM,788
|
|
@@ -222,8 +223,8 @@ udata/core/tags/models.py,sha256=xzBoNwqBG5A5Ou83DWT858ccbTCkNnim_xBWgy1oyz4,550
|
|
|
222
223
|
udata/core/tags/tasks.py,sha256=-wA9iCWlwe0IBy9N5oL-ryny0QKKIqaupEgRzM3TuqE,975
|
|
223
224
|
udata/core/tags/views.py,sha256=A6RlezsRGXeWd8cyCpKe4JeEkb7nvtDWKHEc53rponE,384
|
|
224
225
|
udata/core/topic/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
225
|
-
udata/core/topic/api.py,sha256=
|
|
226
|
-
udata/core/topic/apiv2.py,sha256=
|
|
226
|
+
udata/core/topic/api.py,sha256=yclnzrVkRgAFi6y2qwBdk3P36i3IgTKsGWDfvatuy8o,5337
|
|
227
|
+
udata/core/topic/apiv2.py,sha256=B3grxzMmbjkuvHtFLeESelX3DBXIF0MwvvTEpWVzANo,10409
|
|
227
228
|
udata/core/topic/factories.py,sha256=RpUpwLd2gYwwS0vc7FcbQ-4tC0FSsAg7O8bPgozYKgE,684
|
|
228
229
|
udata/core/topic/forms.py,sha256=NGC_k6PRw8uswEHaXW1Q3ih_2sx2-dNUY--LD-me80Y,973
|
|
229
230
|
udata/core/topic/models.py,sha256=c1585vMpNZwyQsntg0lWNKzZnnNz9P3RiQYvMrPs7PE,2082
|
|
@@ -231,14 +232,14 @@ udata/core/topic/parsers.py,sha256=YTMWPi1KtdQNZF_dX68X7x1BLyq_zynr1iommOeJmiA,2
|
|
|
231
232
|
udata/core/topic/permissions.py,sha256=RtFPPlxuU_Bv7ip6LDO4AoPrKFnIOEs9cCMXaSSmEdk,118
|
|
232
233
|
udata/core/user/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
233
234
|
udata/core/user/activities.py,sha256=x-mSiwx7TzM2ci6KMkMiNx0sFs8J3LTJNbigtE8cA0s,2807
|
|
234
|
-
udata/core/user/api.py,sha256=
|
|
235
|
+
udata/core/user/api.py,sha256=U-66P4yOe1CnjMpoI1kUSlHjcmtskUVFnvyW918pmIM,12748
|
|
235
236
|
udata/core/user/api_fields.py,sha256=9aUdaYPUON-cFhTA10Mch5gYK9zkrFBLe4rrTxnQXoE,5491
|
|
236
237
|
udata/core/user/apiv2.py,sha256=4eNsvJjb4ChJQFrXtVbkOtAvXEcQcQpZf8vkEbriXRA,1125
|
|
237
238
|
udata/core/user/commands.py,sha256=d33hjgUi8WLA8YFvoq__FJJ_E-fk8f4tWo1iuT8jJvM,3156
|
|
238
239
|
udata/core/user/constants.py,sha256=aTluhTR2RGZ_cdG7-mkEoT5Ndbg8BNUwwzCOld0aLMY,77
|
|
239
240
|
udata/core/user/factories.py,sha256=O9QHItNG2NXm_dxojMieJyc-kZta5WSFesoOJImvzwg,789
|
|
240
241
|
udata/core/user/forms.py,sha256=yotqZozH9ViKuNI8SwdKocDEi7NXVs_XUMpdr_bIe5s,966
|
|
241
|
-
udata/core/user/metrics.py,sha256
|
|
242
|
+
udata/core/user/metrics.py,sha256=2uJZ_QkOInthcOL7GE34jz4vSMk1X6yBAoqFqcsECeQ,926
|
|
242
243
|
udata/core/user/models.py,sha256=KVDUx9fP_7TFshgosNaJ5MTUBbVd54PVxeQL_BIjlns,9752
|
|
243
244
|
udata/core/user/permissions.py,sha256=Wbd8bLqSjqp9RHJ6ffLBj74L-LECcAhWazuw4Hq-2Gk,435
|
|
244
245
|
udata/core/user/rdf.py,sha256=F6SDX65ECtVOjDtHXI9WMmq33pN7HWb5ntOqe3LQsbQ,834
|
|
@@ -262,7 +263,7 @@ udata/features/territories/api.py,sha256=I2FsKe5sOWn860f52wHiocdLr9tB0w8ttk9QNRe
|
|
|
262
263
|
udata/features/territories/models.py,sha256=6LWC-xBv6vTGeqHYpvKZQ9DXHXaPGqJP4rz-gETwTwU,1537
|
|
263
264
|
udata/features/transfer/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
264
265
|
udata/features/transfer/actions.py,sha256=MDKiSAUYbccSuCV1cmw95_gMfMeRLq0iM9G3d7IKsaM,1762
|
|
265
|
-
udata/features/transfer/api.py,sha256=
|
|
266
|
+
udata/features/transfer/api.py,sha256=NiZOGZ4RIrYfS_UEDPbwPR6c1wGy65QcP1PGu4AtaZM,4891
|
|
266
267
|
udata/features/transfer/factories.py,sha256=2dAvRaemGieLn5aVEXQ6cmIGD2dTX5I0Ql2RrT77PfU,208
|
|
267
268
|
udata/features/transfer/models.py,sha256=3dFq9GdeGC1h82lIQtNbnKP40kdCLikO6hVYIy-TVVA,921
|
|
268
269
|
udata/features/transfer/notifications.py,sha256=jeH5buqTuWcokgXfEj-EZ7C3YCrtw-NikfrH2bqFyHM,1121
|
|
@@ -275,7 +276,7 @@ udata/frontend/__init__.py,sha256=Aa5BX19jTAcjGiGKszPabbOju5thvA7XFz4aYvxwXQw,35
|
|
|
275
276
|
udata/frontend/csv.py,sha256=FAlIAfcuigo01D_hSRTnvZ7B-HMHXqn5TXeCm6sO230,8520
|
|
276
277
|
udata/frontend/markdown.py,sha256=ppaiy_Mv6iNRjNqPjVquc9Wx7breY1mcsN41b4fM18w,4353
|
|
277
278
|
udata/harvest/__init__.py,sha256=C4y5w4vGb_F9Opy62lzV3eHo4DkNyRgPCq-wsarPXiQ,28
|
|
278
|
-
udata/harvest/actions.py,sha256=
|
|
279
|
+
udata/harvest/actions.py,sha256=U-FqpVwV2k8LiAThaqFhzOsweA5SDlCkuMdVW54ctIA,9870
|
|
279
280
|
udata/harvest/api.py,sha256=XBBtrCxE3yPG5qa48wOkTR625o2WVzwIlOeSPd07dcc,15573
|
|
280
281
|
udata/harvest/commands.py,sha256=7dSYjphW8sxyZRef-ixJEsQc36bPIVKMN_wt4IRcKUY,4766
|
|
281
282
|
udata/harvest/csv.py,sha256=iQpytpQvrt7wiLuUHQv3hgxAoWEsjk3g_SxbLdXn8_Q,396
|
|
@@ -285,16 +286,16 @@ udata/harvest/forms.py,sha256=6VI-elj4KIztmRR7SYPMYbL3XM9VlTiOzm1ts6KakKE,3246
|
|
|
285
286
|
udata/harvest/models.py,sha256=QBDcdu3N5QILolmiisx9RN5xzfD9tPC06cXO8z5XF4A,6113
|
|
286
287
|
udata/harvest/notifications.py,sha256=8WkHtD68v6rfZC6jCmAuuuRp4NN6q71ZkksZU5m9oJc,867
|
|
287
288
|
udata/harvest/signals.py,sha256=3AhFHMPIFH5vz01NX5ycR_RWH14MXFWnCT6__LSa-QI,1338
|
|
288
|
-
udata/harvest/tasks.py,sha256=
|
|
289
|
-
udata/harvest/backends/__init__.py,sha256=
|
|
289
|
+
udata/harvest/tasks.py,sha256=ks5YCWBJLkK8lM3M9erci0uFTlORTNl-AbVLJnCnVIU,1641
|
|
290
|
+
udata/harvest/backends/__init__.py,sha256=5zUF8Tetl2Ac2YDTduWIYvOWW3yb8O9oYt779-7BR1o,447
|
|
290
291
|
udata/harvest/backends/base.py,sha256=6mB9B8GMnAhggjpWtA98r2fQNULoq9xlL_c3nCe76pM,15984
|
|
291
292
|
udata/harvest/backends/dcat.py,sha256=oLeRRcryUrBg_LXjBhzVreManwKRWOAHFPdfZaaSN2c,15215
|
|
292
293
|
udata/harvest/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
293
|
-
udata/harvest/tests/factories.py,sha256=
|
|
294
|
+
udata/harvest/tests/factories.py,sha256=w5xgYMdA0kem0qPDo6AVyB0I8MMwiVkGGRkoRQ2Hw7w,2197
|
|
294
295
|
udata/harvest/tests/test_actions.py,sha256=s5yK4YQXVvrbLgKMx8_-ifFBC5QmUYBJWvkfNAZuy_Y,26504
|
|
295
296
|
udata/harvest/tests/test_api.py,sha256=AV6NCk8HjJ1D6Wkzx6l-pW6jd-UoIPGS_-LGkRS9jys,18449
|
|
296
|
-
udata/harvest/tests/test_base_backend.py,sha256=
|
|
297
|
-
udata/harvest/tests/test_dcat_backend.py,sha256=
|
|
297
|
+
udata/harvest/tests/test_base_backend.py,sha256=Gd_mcheR-TO7TLRT8uJS7HdMjS1hAlT9-E0Zn1MLRQM,12373
|
|
298
|
+
udata/harvest/tests/test_dcat_backend.py,sha256=y97ufhaTJLJDU_Spgf5_CxZvzq5Uu2y-sDdlvAaX1Fs,34019
|
|
298
299
|
udata/harvest/tests/test_filters.py,sha256=2nXGnLTlM0iSOZBDBxmJp1KO3_59RXLS0vmXvEs2-KE,2468
|
|
299
300
|
udata/harvest/tests/test_models.py,sha256=f9NRR2_S4oZFgF8qOumg0vv-lpnEBJbI5vNtcwFdSqM,831
|
|
300
301
|
udata/harvest/tests/test_notifications.py,sha256=MMzTzkv-GXMNFeOwAi31rdTsAXyLCLOSna41zOtaJG0,816
|
|
@@ -324,13 +325,13 @@ udata/linkchecker/checker.py,sha256=LB6WSMp5yvdmfdlq2ygp7uHoYEVsK0IPk6qnmhrS4GI,
|
|
|
324
325
|
udata/linkchecker/commands.py,sha256=14c78P0FTLncuJpAgPizoCY62bUIknKumev1FPZ4JQU,454
|
|
325
326
|
udata/linkchecker/models.py,sha256=V5PBSOGnCXZrZLoFQwKb91enpgVTbX4Q3_oWOPihJic,423
|
|
326
327
|
udata/linkchecker/tasks.py,sha256=jETwfn6v-mP4jh_ovz4EwlxBUcRij_wHJVK1AmC0qo4,1918
|
|
327
|
-
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=_mwGxHD08NeGGrit7Thj8MyIKVxMos3HX7D8VM3YGrw,665
|
|
328
329
|
udata/migrations/2020-08-24-add-fs-filename.py,sha256=7mz5ufFvY67NDKEmQn0HS3u1SdR9uH077ngJfd2uot4,1819
|
|
329
330
|
udata/migrations/2020-09-28-update-reuses-datasets-metrics.py,sha256=d7zizz1fwy-jCOJWmfveBpBZJSHJu46HSIBf3Xnd0eI,407
|
|
330
331
|
udata/migrations/2020-10-16-migrate-ods-resources.py,sha256=mquEvN_MFgiMetFD5nqKExD24ZkzSmS40Noi4eBVYas,1031
|
|
331
332
|
udata/migrations/2021-04-08-update-schema-with-new-structure.py,sha256=D96w9J-kfifgpoW9y6f66SsfConwfF26kpsJOuwuvYw,881
|
|
332
333
|
udata/migrations/2021-05-27-fix-default-schema-name.py,sha256=n377iZDBGMivMvm_ArXeufG5MjS9duBrs3menCrFFAs,806
|
|
333
|
-
udata/migrations/2021-07-05-remove-unused-badges.py,sha256=
|
|
334
|
+
udata/migrations/2021-07-05-remove-unused-badges.py,sha256=blrRDQjIwSvH_sKjuI5auaEvy32blMces8kU4N3EAFA,963
|
|
334
335
|
udata/migrations/2021-07-07-update-schema-for-community-resources.py,sha256=gj-CAQsGQ_lc7bmgZSo6sMqKLjgIYaLQShfC42Lql8w,866
|
|
335
336
|
udata/migrations/2021-08-17-follow-integrity.py,sha256=wUpsXwTCaXFdhFW3zltvswm_Z0d0RafYsEandgJJ1QQ,532
|
|
336
337
|
udata/migrations/2021-08-17-harvest-integrity.py,sha256=L0mEqlY6ekspIpPFq93grI6Gn1tT_Ii1WHaq_ORAMbU,1611
|
|
@@ -342,31 +343,31 @@ udata/migrations/2022-04-21-improve-extension-detection.py,sha256=UX2JBepFagsyH9
|
|
|
342
343
|
udata/migrations/2022-09-22-clean-inactive-harvest-datasets.py,sha256=ogsPjHcjRlRn7iWogl220Rcze07TvVqzub5hdqAP8Mg,1023
|
|
343
344
|
udata/migrations/2022-10-10-add-fs_uniquifier-to-user-model.py,sha256=UrMUEdoLuw2N7CAp0sUncQXowikcoZr82PE6lFnEnF4,588
|
|
344
345
|
udata/migrations/2022-10-10-migrate-harvest-extras.py,sha256=AtnLvu_RxMlvY03XRc67-mtzkIoK4nUCtfaOfZBtOb0,2331
|
|
345
|
-
udata/migrations/2023-02-08-rename-internal-dates.py,sha256=
|
|
346
|
+
udata/migrations/2023-02-08-rename-internal-dates.py,sha256=v0WqYNpGJ2dQ6no99sMJFotMb67A2wHIvENqjLQn4mE,2066
|
|
346
347
|
udata/migrations/2024-01-29-fix-reuse-and-dataset-with-private-None.py,sha256=9LMwAdv7527qsrQQikZAskFsheqwZpEP_VewjwROm6o,592
|
|
347
348
|
udata/migrations/2024-03-22-migrate-activity-kwargs-to-extras.py,sha256=ucoXSqZlGToMCNiba0pRw_WoYb-lSBKvnbBLe-YVVrs,402
|
|
348
|
-
udata/migrations/2024-06-11-fix-reuse-datasets-references.py,sha256=
|
|
349
|
+
udata/migrations/2024-06-11-fix-reuse-datasets-references.py,sha256=4xL5_YFfUsbWFuSqXVzhkbzns20m5AclFfu0cdXhyk4,787
|
|
349
350
|
udata/migrations/__init__.py,sha256=RBCBDaTlLjuMs_Qzwji6Z6T4r7FCGXhESKoxQbT5qAA,11221
|
|
350
351
|
udata/models/__init__.py,sha256=txbZwa-lRG3mq99eQ9E5YcFWiNUdjDVSyJJvlqUMFfs,1413
|
|
351
352
|
udata/mongo/__init__.py,sha256=y4Rv-kq3o_kcEulcNpePLzocXPBNpx3Jd82G-VZPaMc,1421
|
|
352
353
|
udata/mongo/badges_field.py,sha256=UmSaQkiOFtIb116GAT2B0OE6ypOrq8Jx7GdULEr05LU,985
|
|
353
|
-
udata/mongo/datetime_fields.py,sha256=
|
|
354
|
-
udata/mongo/document.py,sha256=
|
|
354
|
+
udata/mongo/datetime_fields.py,sha256=ZIyyl7ltMMY9yQkEK3YsCGO3ZzSF0ixWPj12RE6Rmas,1894
|
|
355
|
+
udata/mongo/document.py,sha256=lpbcR81z1rDt40aKTG6mykT6RswIMEKGmfRT_aDEkfQ,1230
|
|
355
356
|
udata/mongo/engine.py,sha256=KdvaQnpw6un47CHpu3q9PYWwTtovVmsKZK_k1DmN48M,2552
|
|
356
357
|
udata/mongo/errors.py,sha256=rlilT8dOmGiAP19r8arnNi_VBENZG2UjczILwYx33t4,232
|
|
357
358
|
udata/mongo/extras_fields.py,sha256=FfyVvRkpLn4pUeCqwI33NBJblHOywGlnA05RCEZ-ugs,4139
|
|
358
359
|
udata/mongo/queryset.py,sha256=HWPhQBywLlqLZTSjg-Q00AHFlsddYb2Q3SmTt77QdsM,3097
|
|
359
360
|
udata/mongo/slug_fields.py,sha256=4MqarfSm_hIxat_ugUC-2cQDvM5vXYn75g1WhTKyaC4,6432
|
|
360
|
-
udata/mongo/taglist_field.py,sha256=
|
|
361
|
+
udata/mongo/taglist_field.py,sha256=91MqSwZ1jZPmGgymYNV_2rHZPdglT15503i4m9HqSsM,550
|
|
361
362
|
udata/mongo/url_field.py,sha256=UmUr9c5SxDFDpS5QsRTq2pKcCTOr1SoB4UITwNjtuaI,1345
|
|
362
363
|
udata/mongo/uuid_fields.py,sha256=tuQ3zs_BnQHjaiKSIYv43jxvYtOvRLw9nP5CQ3fcMks,482
|
|
363
364
|
udata/notifications/__init__.py,sha256=ZrSpV2zI9bZ0oz8tGsnA8hjDdGeU7YDdgvOLo70aohg,54
|
|
364
365
|
udata/notifications/mattermost.py,sha256=v8VrDg0iEVsioSSEgukhCK0lz9Lxy8H16z_gTQry1ko,783
|
|
365
366
|
udata/search/__init__.py,sha256=09cBlIPoQePn20KL9AjfDwazFUmXTBiAOcUrcFtSA-o,3945
|
|
366
367
|
udata/search/adapter.py,sha256=Ier9dgE6Cg8dmz8-n0_03ixnuAWVk3ZQkevbIg-i_U8,2205
|
|
367
|
-
udata/search/commands.py,sha256=
|
|
368
|
+
udata/search/commands.py,sha256=CCEqHDjCEzN9MNhlDShPTLQarQt4v6zazDrCA5wBFbE,5416
|
|
368
369
|
udata/search/fields.py,sha256=WJKB6_oMT_fRToFongfYesr0mQOIdWEyiTXEHkg4Y58,1757
|
|
369
|
-
udata/search/query.py,sha256=
|
|
370
|
+
udata/search/query.py,sha256=DwVpyq8ChLJ7T9eDuwCnzaHqACiE1RjR4g_BktA32M4,3057
|
|
370
371
|
udata/search/result.py,sha256=LEL-QRSZ6SC0LaVDHyFfhXDvvB0-fc2U56FpAmgs1OQ,1893
|
|
371
372
|
udata/static/7799dece2c79854f63f09e7dfa528b88.jpg,sha256=VIc5H6XbYVVwlSKIa-68AP10M_-3rl9j5YVJfNUXSuU,123770
|
|
372
373
|
udata/static/7a4b4c6ebdb549fcbe47408f9457493e.gif,sha256=dSMJZzu9nZsroL1Y0KcHGixZww4oJNhbzSo7wKB-8fE,329
|
|
@@ -420,10 +421,10 @@ udata/static/SourceSansPro-SemiboldIt.ttf,sha256=EK3ye-6bT-g3T7TSBW-kaoHWkUtlL3o
|
|
|
420
421
|
udata/static/SourceSansPro-SemiboldIt.ttf.woff2,sha256=JBtSfqRaYeoVAVQ3ynlAwX-to2RlkE3yAaVkv6-s-NA,44608
|
|
421
422
|
udata/static/admin.css,sha256=RC7GvbVK8c5wDuELPeVdQpy3ab7HbHl1T4hUo5n-NVk,185167
|
|
422
423
|
udata/static/admin.css.map,sha256=tUhFfsJUK3RrWCih9gUkf-Ywccuztxf4tqvXcN6zP3Y,626542
|
|
423
|
-
udata/static/admin.js,sha256=
|
|
424
|
-
udata/static/admin.js.map,sha256=
|
|
425
|
-
udata/static/common.js,sha256=
|
|
426
|
-
udata/static/common.js.map,sha256=
|
|
424
|
+
udata/static/admin.js,sha256=_NT8RjG3V30C6FGb42ElCvWNyi6EyxIYnOAtNU86VFE,1327854
|
|
425
|
+
udata/static/admin.js.map,sha256=pFAg8lZ2A3PUG0HAiugOnLw7kQNMylulMAg5sQQxsjM,8511808
|
|
426
|
+
udata/static/common.js,sha256=7fP7XWcX8j5Bonv1fZUSdsrfigPJuBpgBLz-xiDOajg,2252
|
|
427
|
+
udata/static/common.js.map,sha256=jCSsuPP1qEoAvZvIfRqTV5Kj1g8ZaEI1DzL4ki8sOlI,14137
|
|
427
428
|
udata/static/fontawesome-webfont.eot,sha256=e_yrbbmdXPvxcFygU23ceFhUMsxfpBu9etDwCQM7KXk,165742
|
|
428
429
|
udata/static/fontawesome-webfont.svg,sha256=rWFXkmwWIrpOHQPUePFUE2hSS_xG9R5C_g2UX37zI-Q,444379
|
|
429
430
|
udata/static/fontawesome-webfont.ttf,sha256=qljzPyOaD7AvXHpsRcBD16msmgkzNYBmlOzW1O3A1qg,165548
|
|
@@ -444,8 +445,8 @@ udata/static/chunks/10.c1c9496ebfc8949f3de2.js,sha256=_c1TZ9A3QYiV16Ia4ZTOtCdgS4
|
|
|
444
445
|
udata/static/chunks/10.c1c9496ebfc8949f3de2.js.map,sha256=nUjRgXE2w07GZL2B3pmsW7PFExt9O1V7r7WeGs2IITo,2736101
|
|
445
446
|
udata/static/chunks/11.18f1cc16362b76373c40.js,sha256=OsdV4LAscV5dG4OZr6Iz7s43SX4bRX47VO_w3sTTAHw,395574
|
|
446
447
|
udata/static/chunks/11.18f1cc16362b76373c40.js.map,sha256=r3Qy-8c3rm4xyZPhiVNdBpCvQF0skPASzssvQ683oZ0,2268995
|
|
447
|
-
udata/static/chunks/12.
|
|
448
|
-
udata/static/chunks/12.
|
|
448
|
+
udata/static/chunks/12.5b900cac4417e10ef3a0.js,sha256=HH_uptj3SiZdIBEqA4A15oqJni9ZP9GzTV3nHTFyenk,420850
|
|
449
|
+
udata/static/chunks/12.5b900cac4417e10ef3a0.js.map,sha256=6TKsNgW1YkNWNSWhcHNMpR_HKpSwJ64A2aOnXfxNti8,2440921
|
|
449
450
|
udata/static/chunks/13.fd1ca1cf5b2c1854ed51.js,sha256=P83sk30g5FSkpngTNv39pTEqSi4OGWFoIz136FdZZOQ,420359
|
|
450
451
|
udata/static/chunks/13.fd1ca1cf5b2c1854ed51.js.map,sha256=jxwNI240zC4enwYriyuuv--c0nFlO2A1fssZtvDWncQ,2429413
|
|
451
452
|
udata/static/chunks/14.42393a4d555321f07b8b.js,sha256=PDjrjHWtEH25yDvj3V-lbvvAosaOrp7rpU4-86HCtRk,290138
|
|
@@ -478,8 +479,8 @@ udata/static/chunks/26.980f1773d9ad3068ab73.js,sha256=ur_pR8pePPRvWBRE8lshiohPvO
|
|
|
478
479
|
udata/static/chunks/26.980f1773d9ad3068ab73.js.map,sha256=SA4nrbUWL5qMJioFiNU6jRueuZb0fL30HBAvWqqhubk,560885
|
|
479
480
|
udata/static/chunks/27.d27b63112823e700bf20.js,sha256=U3CxvL-58HZZbmP4JE1QQ7rV2Qps5_gBHzPd2myMb_A,113966
|
|
480
481
|
udata/static/chunks/27.d27b63112823e700bf20.js.map,sha256=tcZjdNuzAfCIa6Mz3AofziK5cgbKedCQlTZfKbuHWZs,566084
|
|
481
|
-
udata/static/chunks/28.
|
|
482
|
-
udata/static/chunks/28.
|
|
482
|
+
udata/static/chunks/28.1759a7f57d526e6db574.js,sha256=_0N_1mgjE7bLKYtkwWBMH6OtAyiAb4qfvkd97O70_8Q,112696
|
|
483
|
+
udata/static/chunks/28.1759a7f57d526e6db574.js.map,sha256=uSOyNUGSgllJdPV4IGokdi50gPxd4AVSO24m0Z3V4G8,560427
|
|
483
484
|
udata/static/chunks/29.056b71a60b1ba45eb81b.js,sha256=F8EOLry55IL2wpUttbgskR01yKg_0QfOZjGLN1SrJ-8,112500
|
|
484
485
|
udata/static/chunks/29.056b71a60b1ba45eb81b.js.map,sha256=NtngdAMN98Q7bYHpue5WK7Xkm1LH4MaXbFlyXUsM5sI,559084
|
|
485
486
|
udata/static/chunks/3.31f4515503a814e0e3a3.js,sha256=mPesYUEarykevUo2oviHkwBvB2yc8BVEap8jM1zygsE,6234
|
|
@@ -579,7 +580,7 @@ udata/tests/models.py,sha256=5oTC-cgKSL0sUdlqjUiJ6U8-YZBQanObb-MhZhQIV3M,238
|
|
|
579
580
|
udata/tests/plugin.py,sha256=dT3KfQiVYwLM61TbB894wzTelnlPIsCHaiPEH-Jirfk,11580
|
|
580
581
|
udata/tests/schemas.json,sha256=szM1jDpkogfOG4xWbjIGjLgG8l9-ZyE3JKQtecJyD1E,4990
|
|
581
582
|
udata/tests/test_activity.py,sha256=x-pDK6VW9wAG0uxYRZQ3DWTRjfCU729iaMGMJb1rWYU,3195
|
|
582
|
-
udata/tests/test_cors.py,sha256=
|
|
583
|
+
udata/tests/test_cors.py,sha256=UNU-5EF1G8Znjw7s5i7uTTVgg5HpJX30NGslKtjoZTE,1879
|
|
583
584
|
udata/tests/test_discussions.py,sha256=UN2mlZp-h3m3HqdF_nz9WOxwPKgXok47E2Rrp2dknYI,30464
|
|
584
585
|
udata/tests/test_i18n.py,sha256=u60344JNRG_8s0t89ghXtQ1FbF4TayEHBzuBFxqnQ_Y,3152
|
|
585
586
|
udata/tests/test_linkchecker.py,sha256=W8jrwKYXM8wWXZFjiaBwpWGRBhZ8bsSHGHzL9voDN7U,10218
|
|
@@ -587,35 +588,34 @@ udata/tests/test_mail.py,sha256=ijcrniawbvftm5UF8KDApBoxMHyZwULAA25LrnLmeI8,1629
|
|
|
587
588
|
udata/tests/test_migrations.py,sha256=Iq0gt3hjK6ohliIvEpqyt0tYJz0MKIzBg_yfw7dOcHo,15698
|
|
588
589
|
udata/tests/test_model.py,sha256=JWY6GKLk4fyIQoJiijH1yqC3o709vuYm5ljtMia-xIc,20525
|
|
589
590
|
udata/tests/test_notifications.py,sha256=m8G-fwBgOP5JQud5QMWVC6CBQL_h042VgrGMowK5ow0,2333
|
|
590
|
-
udata/tests/test_owned.py,sha256=
|
|
591
|
+
udata/tests/test_owned.py,sha256=br8grBEs8rJY2uOPSbIZgyZ31iaDXZd1EBgwDIU3MFo,5658
|
|
591
592
|
udata/tests/test_rdf.py,sha256=HtGgUtUH2Q8hFuIYvz8Pk3ctcM_egaUkRn7n8ID0Ldk,2828
|
|
592
|
-
udata/tests/test_routing.py,sha256=
|
|
593
|
+
udata/tests/test_routing.py,sha256=F3CI72c-IwU4vR8V4Z0TFbv3-DTVTN7fD7tSW6UJP5Y,10035
|
|
593
594
|
udata/tests/test_storages.py,sha256=OG_PnKtPlZmmhKnbbLrvL-EMEg35wAMsTC76jVEAOLU,9602
|
|
594
|
-
udata/tests/test_tags.py,sha256=
|
|
595
|
+
udata/tests/test_tags.py,sha256=zsK_M2Sraim6Vd-uS0moQYj3_RsspjL4Z_Xr8qWNUhY,3752
|
|
595
596
|
udata/tests/test_topics.py,sha256=nBQZvbk2F1QYd6qiZDtVKuJ8_Ee8g0hT6dTGDw1Vwuk,1323
|
|
596
|
-
udata/tests/test_transfer.py,sha256=
|
|
597
|
+
udata/tests/test_transfer.py,sha256=xhZwzkwGFvow5ejk9N_-4jS40lhJi7tEaVTWw7Do4TM,7832
|
|
597
598
|
udata/tests/test_uris.py,sha256=MxafZ0SyzSNRomVpZnH1ChzWaHOi1MQiXe1gmKnBc6o,8517
|
|
598
599
|
udata/tests/test_utils.py,sha256=3BGnlvw-GOE6tLHQteo-uUeYuzq4rsjePOuytFGkpOg,7967
|
|
599
600
|
udata/tests/api/__init__.py,sha256=y4sL7LD1-KwONHF0q_Rhk2W6BmGUlp7Uz2JnX3e27sk,1218
|
|
600
|
-
udata/tests/api/test_activities_api.py,sha256=RjDDeNle3T-ydVnh6BRypqxAE_244-DXaKkuUCT0HVU,2823
|
|
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=
|
|
604
|
-
udata/tests/api/test_dataservices_api.py,sha256=
|
|
605
|
-
udata/tests/api/test_datasets_api.py,sha256=
|
|
602
|
+
udata/tests/api/test_base_api.py,sha256=ADSfG5knDp5LxCqEaidPgfo2wqhkPUglKrBx_rMghxI,2252
|
|
603
|
+
udata/tests/api/test_contact_points.py,sha256=lqy-PF9ePFJB3BkPSTfAgzhw3AI7Gwl3pU2VWY4fw-k,1055
|
|
604
|
+
udata/tests/api/test_dataservices_api.py,sha256=CeYyjezBvjHkE4rEneprw19artxgdSL3VmfqxZQCrus,11993
|
|
605
|
+
udata/tests/api/test_datasets_api.py,sha256=LSuZqJCJHXw04IXlOL2xhbWsAEMes9YX5pjFhiJk1Ag,80625
|
|
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=
|
|
609
|
+
udata/tests/api/test_organizations_api.py,sha256=5hBs7-gsMfy4IFsrLYyUMGyxhtCs71K4QvPFAXyDsz4,35049
|
|
610
610
|
udata/tests/api/test_reports_api.py,sha256=fCSz9NwMXBs6cxdXBVVI6y564AtovmZYw3xkgxQ9KE8,6217
|
|
611
|
-
udata/tests/api/test_reuses_api.py,sha256=
|
|
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=MgSmKZeQ8L-fO-LwOGlDm_YN7lmEyvTpkDgaPiENHw8,2429
|
|
614
614
|
udata/tests/api/test_topics_api.py,sha256=s4pqHTWl3ly8HQd2YmVclHFrjrf0212u5iDSOTSBbZg,9375
|
|
615
|
-
udata/tests/api/test_transfer_api.py,sha256=
|
|
616
|
-
udata/tests/api/test_user_api.py,sha256=
|
|
615
|
+
udata/tests/api/test_transfer_api.py,sha256=pyvwmc1K0AJ5yNlC9dgauBK-CacoLFGKhYvZGAp8blA,3092
|
|
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=aLO3RPciZEY7zP0_QFcCuSoW_GWSGz045vS16ROaAMw,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
|
|
@@ -629,8 +629,8 @@ udata/tests/dataset/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSu
|
|
|
629
629
|
udata/tests/dataset/test_csv_adapter.py,sha256=Bupsw2vmkZjFLAbVATSek-6M_WZRsidXNGd28UQRVdE,3444
|
|
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
|
-
udata/tests/dataset/test_dataset_events.py,sha256=
|
|
633
|
-
udata/tests/dataset/test_dataset_model.py,sha256=
|
|
632
|
+
udata/tests/dataset/test_dataset_events.py,sha256=vF40F6vGLgflO7b-5MyAIWlWLVO12CtBkeBdfpMzZdo,2828
|
|
633
|
+
udata/tests/dataset/test_dataset_model.py,sha256=UZZGMjKykxSTOnVZvpvJ6LGOwyD0Bb3hF3yUHTHgq3I,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
|
|
@@ -652,19 +652,19 @@ udata/tests/forms/test_publish_as_field.py,sha256=OD-gB6RxMIYaZTMjlP6cxnap_urycP
|
|
|
652
652
|
udata/tests/forms/test_reference_field.py,sha256=oa57TatMG9Ul5Z_ehCsLK0Zau31n3xaRU0gLAmZlg9w,6290
|
|
653
653
|
udata/tests/forms/test_user_forms.py,sha256=qmk6ZBqDrVBtwAugkWUATeBDechhL2JGXhUldBBNqGg,1014
|
|
654
654
|
udata/tests/forms/test_uuid_field.py,sha256=256hFDZSWBeoRQuKIAF5RBt4hAKssSHFVAqMMHz8rcc,1788
|
|
655
|
-
udata/tests/frontend/__init__.py,sha256=
|
|
656
|
-
udata/tests/frontend/test_auth.py,sha256=
|
|
655
|
+
udata/tests/frontend/__init__.py,sha256=FVi-ZORZp6j0yd4z872F9RNbFygaSlcaPwSql-2JhVk,802
|
|
656
|
+
udata/tests/frontend/test_auth.py,sha256=h3htr39XBOmIMZsiHotEhjTUfqsdAAapwG8BEuFV8RI,832
|
|
657
657
|
udata/tests/frontend/test_csv.py,sha256=egLcw9WkrqVrPLAp1jwXruMSLsI-C5EsfWsxNC-XNbI,11795
|
|
658
658
|
udata/tests/frontend/test_hooks.py,sha256=rPDzxWDz6Ryv3RkRLm37F4Zp9xdcbgq0OyzCCInaG2I,4077
|
|
659
659
|
udata/tests/frontend/test_markdown.py,sha256=8E0XjByzmsY-RGdF2ESoL9Rklkfz3vcdJWKWhIxpw7c,13066
|
|
660
660
|
udata/tests/organization/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
661
|
-
udata/tests/organization/test_csv_adapter.py,sha256=
|
|
662
|
-
udata/tests/organization/test_notifications.py,sha256=
|
|
661
|
+
udata/tests/organization/test_csv_adapter.py,sha256=3_1JNVnPapDCeZVrkAD8N9rreVP43rBPpJJm1sJFa9I,1684
|
|
662
|
+
udata/tests/organization/test_notifications.py,sha256=lt841_Ha7LpvXbOJXhNeuP8O1AAh-7X8OIAX4n9z21A,1366
|
|
663
663
|
udata/tests/organization/test_organization_model.py,sha256=98ud3w37hn4VXqJgpxM43UGr2mE1YHM1m0IMCPE9J9E,2030
|
|
664
|
-
udata/tests/organization/test_organization_rdf.py,sha256=
|
|
664
|
+
udata/tests/organization/test_organization_rdf.py,sha256=ryr3OeJ6u8KeRlcSp7EL2mib7gvBNLVjKJ_0c824Uh0,6307
|
|
665
665
|
udata/tests/organization/test_organization_tasks.py,sha256=ehPirwfLqaEcnJ9TLk3jGw3Xh-CVx1WXhvIDFYrT2iQ,2845
|
|
666
666
|
udata/tests/reuse/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
667
|
-
udata/tests/reuse/test_reuse_model.py,sha256=
|
|
667
|
+
udata/tests/reuse/test_reuse_model.py,sha256=qhUcBWOBIZzNGFNxUFxO5waN1MyqtZlILOOzLguLjvQ,3999
|
|
668
668
|
udata/tests/reuse/test_reuse_task.py,sha256=4gMsKHjGafb6kpRKnqF167Htd-Ff0tRD4iQajW1e_lg,1380
|
|
669
669
|
udata/tests/search/__init__.py,sha256=ub8kS6vG9EjzkJ-9sAR7j1eLSYpud1Gzry4MQ8fpgxM,1493
|
|
670
670
|
udata/tests/search/test_adapter.py,sha256=mi-M53JQSPYxU8ahkqtfyIrIyhz_cC_ATdLbWWa3onM,6941
|
|
@@ -674,11 +674,11 @@ udata/tests/site/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,
|
|
|
674
674
|
udata/tests/site/test_site_api.py,sha256=rVvaGFAXVy_HilxpFrifJp-ESjPd-oAfvLd5eq9kwyA,2190
|
|
675
675
|
udata/tests/site/test_site_metrics.py,sha256=VHc90fREz0xIk98cF0YnsIamego_XyA0z6b4e_ItjGc,2126
|
|
676
676
|
udata/tests/site/test_site_model.py,sha256=zpRg5jrFPUwhGsljlO5lpCrhJLHiHYoNl28AOw5mI4c,1312
|
|
677
|
-
udata/tests/site/test_site_rdf.py,sha256=
|
|
677
|
+
udata/tests/site/test_site_rdf.py,sha256=FIDkP8L6ZcP8YoPyCPvWfbLBVzYm466gMKmqsA7p7U0,12862
|
|
678
678
|
udata/tests/user/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
679
679
|
udata/tests/user/test_user_rdf.py,sha256=BRdv9ivLLUQoImFOuIohDoZAQXMXCruaNJ37siKul5o,1771
|
|
680
680
|
udata/tests/workers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
681
|
-
udata/tests/workers/test_jobs_commands.py,sha256=
|
|
681
|
+
udata/tests/workers/test_jobs_commands.py,sha256=Hnz4QdpKu19qlELsA1V_VU_PFP0RgmtErugCtz352MA,5454
|
|
682
682
|
udata/tests/workers/test_tasks_routing.py,sha256=m7Zu9X7GW3oKkSDcHM-dC20Vba3Fruui44bMBVU1dcc,2228
|
|
683
683
|
udata/tests/workers/test_workers_api.py,sha256=x8EkULR9G5TKl5WwjdVwfFEttbudpiWIYN2umETrCzY,8805
|
|
684
684
|
udata/tests/workers/test_workers_helpers.py,sha256=_983ChRxas3gsjykaEpXWQUbk2qTMJgeFZpIAHTuhLk,647
|
|
@@ -697,9 +697,9 @@ udata/translations/pt/LC_MESSAGES/udata.mo,sha256=WpPzAqVd2Onv_kz45ULUySKPLrpjcc
|
|
|
697
697
|
udata/translations/pt/LC_MESSAGES/udata.po,sha256=18Op9RUITewoDRewlOdYzzq6gjsf1lsvepACV1d7zxs,44976
|
|
698
698
|
udata/translations/sr/LC_MESSAGES/udata.mo,sha256=NIYRNhVoETZUvIvWm3cCW7DtMBAnS2vXzZjMF5ZzD_c,28500
|
|
699
699
|
udata/translations/sr/LC_MESSAGES/udata.po,sha256=rQB-4V4WJ7bURj6g2j653vItr5TMHadcLQxec7_fDmg,51545
|
|
700
|
-
udata-9.1.4.dist-info/LICENSE,sha256=V8j_M8nAz8PvAOZQocyRDX7keai8UJ9skgmnwqETmdY,34520
|
|
701
|
-
udata-9.1.4.dist-info/METADATA,sha256=
|
|
702
|
-
udata-9.1.4.dist-info/WHEEL,sha256=DZajD4pwLWue70CAfc7YaxT1wLUciNBvN_TTcvXpltE,110
|
|
703
|
-
udata-9.1.4.dist-info/entry_points.txt,sha256=3SKiqVy4HUqxf6iWspgMqH8d88Htk6KoLbG1BU-UddQ,451
|
|
704
|
-
udata-9.1.4.dist-info/top_level.txt,sha256=39OCg-VWFWOq4gCKnjKNu-s3OwFlZIu_dVH8Gl6ndHw,12
|
|
705
|
-
udata-9.1.4.dist-info/RECORD,,
|
|
700
|
+
udata-9.1.4.dev30973.dist-info/LICENSE,sha256=V8j_M8nAz8PvAOZQocyRDX7keai8UJ9skgmnwqETmdY,34520
|
|
701
|
+
udata-9.1.4.dev30973.dist-info/METADATA,sha256=rYpIn3V7TfT2TnQWYy2F1lSpLCH7y7yvC1EkWGRLesM,128394
|
|
702
|
+
udata-9.1.4.dev30973.dist-info/WHEEL,sha256=DZajD4pwLWue70CAfc7YaxT1wLUciNBvN_TTcvXpltE,110
|
|
703
|
+
udata-9.1.4.dev30973.dist-info/entry_points.txt,sha256=3SKiqVy4HUqxf6iWspgMqH8d88Htk6KoLbG1BU-UddQ,451
|
|
704
|
+
udata-9.1.4.dev30973.dist-info/top_level.txt,sha256=39OCg-VWFWOq4gCKnjKNu-s3OwFlZIu_dVH8Gl6ndHw,12
|
|
705
|
+
udata-9.1.4.dev30973.dist-info/RECORD,,
|