udata 14.0.3.dev1__py3-none-any.whl → 14.7.3.dev4__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.
- udata/api/__init__.py +2 -0
- udata/api_fields.py +120 -19
- udata/app.py +18 -20
- udata/auth/__init__.py +4 -7
- udata/auth/forms.py +3 -3
- udata/auth/views.py +13 -6
- udata/commands/dcat.py +1 -1
- udata/commands/serve.py +3 -11
- udata/core/activity/api.py +5 -6
- udata/core/badges/tests/test_tasks.py +0 -2
- udata/core/csv.py +5 -0
- udata/core/dataservices/api.py +8 -1
- udata/core/dataservices/apiv2.py +3 -6
- udata/core/dataservices/models.py +5 -2
- udata/core/dataservices/rdf.py +2 -1
- udata/core/dataservices/tasks.py +6 -2
- udata/core/dataset/api.py +30 -4
- udata/core/dataset/api_fields.py +1 -1
- udata/core/dataset/apiv2.py +1 -1
- udata/core/dataset/constants.py +2 -9
- udata/core/dataset/models.py +21 -9
- udata/core/dataset/permissions.py +31 -0
- udata/core/dataset/rdf.py +18 -16
- udata/core/dataset/tasks.py +16 -7
- udata/core/discussions/api.py +15 -1
- udata/core/discussions/models.py +6 -0
- udata/core/legal/__init__.py +0 -0
- udata/core/legal/mails.py +128 -0
- udata/core/organization/api.py +16 -5
- udata/core/organization/api_fields.py +3 -3
- udata/core/organization/apiv2.py +3 -4
- udata/core/organization/mails.py +1 -1
- udata/core/organization/models.py +40 -7
- udata/core/organization/notifications.py +84 -0
- udata/core/organization/permissions.py +1 -1
- udata/core/organization/tasks.py +3 -0
- udata/core/pages/models.py +49 -0
- udata/core/pages/tests/test_api.py +165 -1
- udata/core/post/api.py +25 -70
- udata/core/post/constants.py +8 -0
- udata/core/post/models.py +109 -17
- udata/core/post/tests/test_api.py +140 -3
- udata/core/post/tests/test_models.py +24 -0
- udata/core/reports/api.py +18 -0
- udata/core/reports/models.py +42 -2
- udata/core/reuse/api.py +8 -0
- udata/core/reuse/apiv2.py +3 -6
- udata/core/reuse/models.py +1 -1
- udata/core/spatial/forms.py +2 -2
- udata/core/topic/models.py +8 -2
- udata/core/user/api.py +10 -3
- udata/core/user/api_fields.py +3 -3
- udata/core/user/models.py +33 -8
- udata/features/notifications/api.py +7 -18
- udata/features/notifications/models.py +59 -0
- udata/features/notifications/tasks.py +25 -0
- udata/features/transfer/actions.py +2 -0
- udata/features/transfer/models.py +17 -0
- udata/features/transfer/notifications.py +96 -0
- udata/flask_mongoengine/engine.py +0 -4
- udata/flask_mongoengine/pagination.py +1 -1
- udata/frontend/markdown.py +2 -1
- udata/harvest/actions.py +20 -0
- udata/harvest/api.py +24 -7
- udata/harvest/backends/base.py +27 -1
- udata/harvest/backends/ckan/harvesters.py +21 -4
- udata/harvest/backends/dcat.py +4 -1
- udata/harvest/commands.py +33 -0
- udata/harvest/filters.py +17 -6
- udata/harvest/models.py +16 -0
- udata/harvest/permissions.py +27 -0
- udata/harvest/tests/ckan/test_ckan_backend.py +33 -0
- udata/harvest/tests/test_actions.py +46 -2
- udata/harvest/tests/test_api.py +161 -6
- udata/harvest/tests/test_base_backend.py +86 -1
- udata/harvest/tests/test_dcat_backend.py +68 -3
- udata/harvest/tests/test_filters.py +6 -0
- udata/i18n.py +1 -4
- udata/mail.py +14 -0
- udata/migrations/2021-08-17-harvest-integrity.py +23 -16
- udata/migrations/2025-10-31-create-membership-request-notifications.py +55 -0
- udata/migrations/2025-12-04-add-uuid-to-discussion-messages.py +28 -0
- udata/migrations/2025-12-16-create-transfer-request-notifications.py +69 -0
- udata/migrations/2026-01-14-add-default-kind-to-posts.py +17 -0
- udata/mongo/slug_fields.py +1 -1
- udata/rdf.py +65 -11
- udata/routing.py +2 -2
- udata/settings.py +11 -0
- udata/tasks.py +2 -0
- udata/templates/mail/message.html +3 -1
- udata/tests/api/__init__.py +7 -17
- udata/tests/api/test_activities_api.py +36 -0
- udata/tests/api/test_datasets_api.py +69 -0
- udata/tests/api/test_organizations_api.py +0 -3
- udata/tests/api/test_reports_api.py +157 -0
- udata/tests/api/test_user_api.py +1 -1
- udata/tests/apiv2/test_dataservices.py +14 -0
- udata/tests/apiv2/test_organizations.py +9 -0
- udata/tests/apiv2/test_reuses.py +11 -0
- udata/tests/cli/test_cli_base.py +0 -1
- udata/tests/dataservice/test_dataservice_tasks.py +29 -0
- udata/tests/dataset/test_dataset_model.py +13 -1
- udata/tests/dataset/test_dataset_rdf.py +164 -5
- udata/tests/dataset/test_dataset_tasks.py +25 -0
- udata/tests/frontend/test_auth.py +58 -1
- udata/tests/frontend/test_csv.py +0 -3
- udata/tests/helpers.py +31 -27
- udata/tests/organization/test_notifications.py +67 -2
- udata/tests/search/test_search_integration.py +70 -0
- udata/tests/site/test_site_csv_exports.py +22 -10
- udata/tests/test_activity.py +9 -9
- udata/tests/test_api_fields.py +10 -0
- udata/tests/test_discussions.py +5 -5
- udata/tests/test_legal_mails.py +359 -0
- udata/tests/test_notifications.py +15 -57
- udata/tests/test_notifications_task.py +43 -0
- udata/tests/test_owned.py +81 -1
- udata/tests/test_transfer.py +181 -2
- udata/tests/test_uris.py +33 -0
- udata/translations/ar/LC_MESSAGES/udata.mo +0 -0
- udata/translations/ar/LC_MESSAGES/udata.po +309 -158
- udata/translations/de/LC_MESSAGES/udata.mo +0 -0
- udata/translations/de/LC_MESSAGES/udata.po +313 -160
- udata/translations/es/LC_MESSAGES/udata.mo +0 -0
- udata/translations/es/LC_MESSAGES/udata.po +312 -160
- udata/translations/fr/LC_MESSAGES/udata.mo +0 -0
- udata/translations/fr/LC_MESSAGES/udata.po +475 -202
- udata/translations/it/LC_MESSAGES/udata.mo +0 -0
- udata/translations/it/LC_MESSAGES/udata.po +317 -162
- udata/translations/pt/LC_MESSAGES/udata.mo +0 -0
- udata/translations/pt/LC_MESSAGES/udata.po +315 -161
- udata/translations/sr/LC_MESSAGES/udata.mo +0 -0
- udata/translations/sr/LC_MESSAGES/udata.po +323 -164
- udata/translations/udata.pot +169 -124
- udata/uris.py +0 -2
- udata/utils.py +23 -0
- udata-14.7.3.dev4.dist-info/METADATA +109 -0
- {udata-14.0.3.dev1.dist-info → udata-14.7.3.dev4.dist-info}/RECORD +142 -135
- udata/core/post/forms.py +0 -30
- udata/flask_mongoengine/json.py +0 -38
- udata/templates/mail/base.html +0 -105
- udata/templates/mail/base.txt +0 -6
- udata/templates/mail/button.html +0 -3
- udata/templates/mail/layouts/1-column.html +0 -19
- udata/templates/mail/layouts/2-columns.html +0 -20
- udata/templates/mail/layouts/center-panel.html +0 -16
- udata-14.0.3.dev1.dist-info/METADATA +0 -132
- {udata-14.0.3.dev1.dist-info → udata-14.7.3.dev4.dist-info}/WHEEL +0 -0
- {udata-14.0.3.dev1.dist-info → udata-14.7.3.dev4.dist-info}/entry_points.txt +0 -0
- {udata-14.0.3.dev1.dist-info → udata-14.7.3.dev4.dist-info}/licenses/LICENSE +0 -0
- {udata-14.0.3.dev1.dist-info → udata-14.7.3.dev4.dist-info}/top_level.txt +0 -0
|
@@ -1,47 +1,47 @@
|
|
|
1
1
|
udata/__init__.py,sha256=U0HEYqKCLOY43O1UCVeuAb3b3SSX1pPhsJGpHJmK67k,75
|
|
2
|
-
udata/api_fields.py,sha256=
|
|
3
|
-
udata/app.py,sha256=
|
|
2
|
+
udata/api_fields.py,sha256=aUJ8X2BSqG6NXsdeZ6Q7VvENrAT75tPAQ4tcgEZlZaA,40999
|
|
3
|
+
udata/app.py,sha256=E4s0z50dHULPY1ZxxCB1H01Qd-EWupT6fk9zg2L9KUw,8521
|
|
4
4
|
udata/cors.py,sha256=7An9bsiNZk0PbNqDy8--ZJ0vmq1ubrtcfGB3DWAHBlA,3681
|
|
5
5
|
udata/errors.py,sha256=E8W7b4PH7c5B85g_nsUMt8fHqMVpDFOZFkO6wMPl6bA,117
|
|
6
6
|
udata/factories.py,sha256=MoklZnU8iwNL25dm3JsoXhoQs1PQWSVYL1WvcUBtJqM,492
|
|
7
|
-
udata/i18n.py,sha256=
|
|
8
|
-
udata/mail.py,sha256
|
|
9
|
-
udata/rdf.py,sha256=
|
|
10
|
-
udata/routing.py,sha256=
|
|
7
|
+
udata/i18n.py,sha256=R7WdU0EZslj5xEHdqbyQ4iOORGjiqcVvQFCnmQEkpHA,2602
|
|
8
|
+
udata/mail.py,sha256=-5OjGWqW7X5EuLLsJfhdqIrjlBGJ3T0V_wVLKc9OyPQ,3722
|
|
9
|
+
udata/rdf.py,sha256=Utj7qNJJP5oaRRnTSXx3pjujrRETesP9F6cZPDLUrSs,24065
|
|
10
|
+
udata/routing.py,sha256=3YQu9L81QYe4NxPSR_qyXe5WQLOgtm3sYKrkRxoxY-4,7741
|
|
11
11
|
udata/sentry.py,sha256=j_6PSHV1id21KFX1XvpQR-Ur4d24310HgIq7MynEZ2Q,2887
|
|
12
|
-
udata/settings.py,sha256=
|
|
12
|
+
udata/settings.py,sha256=tk9VyAxg-umX3QW8hfFRsdA683IHxrEOBV-lJOWScGg,22490
|
|
13
13
|
udata/sitemap.py,sha256=oRRWoPI7ZsFFnUAOqGT1YuXFFKHBe8EcRnUCNHD7xjM,979
|
|
14
14
|
udata/tags.py,sha256=8R2gJieQtHgj7ZWIckMCkQu39fqzEUehxlYRfSD6bYQ,631
|
|
15
|
-
udata/tasks.py,sha256=
|
|
15
|
+
udata/tasks.py,sha256=nP_FqUrRaNvfVLByekN0sRXYTAE2PADMhY5PLTgmN5s,5257
|
|
16
16
|
udata/tracking.py,sha256=WOcqA1RlHN8EPFuEc2kNau54mec4-pvi-wUFrMXevzg,345
|
|
17
|
-
udata/uris.py,sha256=
|
|
18
|
-
udata/utils.py,sha256=
|
|
17
|
+
udata/uris.py,sha256=YMIZv6ypIYfYGAeLUJuBt58fbkpJ6fSzdWDKCbAylKA,4391
|
|
18
|
+
udata/utils.py,sha256=Uxw3glbyKKqp_BC7c9_zAsTPiOOKxhuFyqxbWjvTG80,14531
|
|
19
19
|
udata/worker.py,sha256=K-Wafye5-uXP4kQlffRKws2J9YbJ6m6n2QjcVsY8Nsg,118
|
|
20
20
|
udata/wsgi.py,sha256=MY8en9K9eDluvJYUxTdzqSDoYaDgCVZ69ZcUvxAvgqA,77
|
|
21
|
-
udata/api/__init__.py,sha256
|
|
21
|
+
udata/api/__init__.py,sha256=y-ULl38jINI7RfdZezCZ544nIGiZo9_pgo3Zj4NKA8w,11854
|
|
22
22
|
udata/api/commands.py,sha256=LJ4u-yhGij7QuH7OR92u3n7BEptqWMjDwMnG8pqdBxo,3523
|
|
23
23
|
udata/api/errors.py,sha256=P_UigBf6HAL73LbXKULagmp5Cuw-H1Ms6LmXxOmFIeg,211
|
|
24
24
|
udata/api/fields.py,sha256=w3qpMGntcOQa5bwFenZNJrnIoEZGZkEhRq0OwWFHsgc,3801
|
|
25
25
|
udata/api/oauth2.py,sha256=1cSdZjCYT6W0XNKkvKA7LN38WaanLRu2NPUCYZt-AEM,12583
|
|
26
26
|
udata/api/parsers.py,sha256=iQEwgMwdVz_gXlVZYaRCGrUFWvcf7_8uCIxw7Iw-hpw,1405
|
|
27
27
|
udata/api/signals.py,sha256=t8s7tF1KYeAygqbR4GdA76_UYvthAsyRbJaqsMmFsK4,162
|
|
28
|
-
udata/auth/__init__.py,sha256=
|
|
29
|
-
udata/auth/forms.py,sha256=
|
|
28
|
+
udata/auth/__init__.py,sha256=A16I1wcHcPWz__mwKG-2cRn7firJx6TM-c1VupcHTTs,3263
|
|
29
|
+
udata/auth/forms.py,sha256=PiHbCXnrNGJyI8-OchfHvcbUAlujRx8b7Pp0iU51LBA,4151
|
|
30
30
|
udata/auth/helpers.py,sha256=7Yr5k7ImdgqxVap4Bjq_ylTXmzq4NR0KgEOOhqSbaf4,267
|
|
31
31
|
udata/auth/mails.py,sha256=-HbXbxSeertEfcpEo3FBG2JwZw-De3-annl-DiuS9PY,5101
|
|
32
32
|
udata/auth/password_validation.py,sha256=ODVdEsiXbtq_8ws4Yf3hs5Sq7jz-IDa1RxAm_WPIJnA,1806
|
|
33
33
|
udata/auth/proconnect.py,sha256=hsvQ71Hqy42NvwgYtcMniRXWax3Q7LX1INcmaS7gaIQ,5073
|
|
34
|
-
udata/auth/views.py,sha256=
|
|
34
|
+
udata/auth/views.py,sha256=jM0HHWmAfZr6wAULNQbdrRxAX7HCMyLCCh6_uFxrLIQ,7912
|
|
35
35
|
udata/commands/__init__.py,sha256=-jwfKRGqbJMG-NcVG6AMRhVx2yPnwhAt8dzHAeVvy0k,7231
|
|
36
36
|
udata/commands/cache.py,sha256=bLdrf_fCWFYX9ULlL2ADsZRwijkI4pArsJxfx24OivM,341
|
|
37
37
|
udata/commands/db.py,sha256=8Fe4f4qZwdq2hYaOx8pwIROqJo2FK2t4LFa5OjaPCRY,19823
|
|
38
|
-
udata/commands/dcat.py,sha256=
|
|
38
|
+
udata/commands/dcat.py,sha256=h4FYUO1O_Dvx33SFkUnJTYHsTv0KDiNyuerXq6KuZHM,3923
|
|
39
39
|
udata/commands/fixtures.py,sha256=Mo_Q0tARawiUK3ZidWlJLrO8uvqnSYcg_OeWMzCwkvk,11376
|
|
40
40
|
udata/commands/images.py,sha256=0rVojLik5DYgJ6W4uNEfMP2g2QUU2V761tj3z6lo8no,2050
|
|
41
41
|
udata/commands/info.py,sha256=U8s5CnSG9NTA0UeeVJrBuWdfYEh3AwHSyx4NZjs1zas,832
|
|
42
42
|
udata/commands/init.py,sha256=8CpH8MklzPkpxczs43lFM5ZNrHCJRbUtzHapgYNHs7M,1520
|
|
43
43
|
udata/commands/purge.py,sha256=49_NQ-Qih2RTbXPY3ajYl00ZpFrLlu6vD-EBxRfspCs,1218
|
|
44
|
-
udata/commands/serve.py,sha256=
|
|
44
|
+
udata/commands/serve.py,sha256=dKYIM3Xnay3rcxijFK7EzC2L8tbdU4eE8yu5SZbeFEg,2165
|
|
45
45
|
udata/commands/test.py,sha256=0snHTDolowQK-DmAKnhF_mBuDOBMApAbEc35GEiwH0M,893
|
|
46
46
|
udata/commands/worker.py,sha256=bjXQGCwkbZxkcxLMPA2Lr0nkNjXLpGNDMkkQXjwBLPI,3976
|
|
47
47
|
udata/commands/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -49,14 +49,14 @@ udata/commands/tests/test_fixtures.py,sha256=6e0qDQWRRCJpofhwxHPw8yoeAP81tr6H3KX
|
|
|
49
49
|
udata/core/__init__.py,sha256=rPkzAmhURfV4x9v2iY_vOakNd75xseYW2jWNIoh-aRg,423
|
|
50
50
|
udata/core/captchetat.py,sha256=PNobWeJiYSgpSZQ9vJpuEvk5xSkAD5sgrWhKcVPbncg,2953
|
|
51
51
|
udata/core/constants.py,sha256=IV_eeDhWjHTLJIjCBJvAu6lfMKBBdisIPeYS8cPu_io,12
|
|
52
|
-
udata/core/csv.py,sha256=
|
|
52
|
+
udata/core/csv.py,sha256=mjjwGtNypGMX7_H2prOIDJYq7C9Z2tjLIVW6dnSSAoQ,8860
|
|
53
53
|
udata/core/linkable.py,sha256=8YuTzZo5Y36CVIYxESC-EPJ-zKsQTRbi4OIZTp-wWig,587
|
|
54
54
|
udata/core/owned.py,sha256=OQT7wdk7dAqGvWDiJRVkKJxerDc9_Io910nvLmfBAVI,5561
|
|
55
55
|
udata/core/access_type/api.py,sha256=vlebojzwzHhULEURXn0hHaasZgsckuyf1sR6qDlXgAk,661
|
|
56
56
|
udata/core/access_type/constants.py,sha256=qqBLTzYAuSZaTmFXY-nIws9Dv0JCUbxrVCrbvqYPscY,5634
|
|
57
57
|
udata/core/access_type/models.py,sha256=bIqUM57SsrCnoQ7lai6yGM5sNEpMSCANrZAYW1iIunk,1500
|
|
58
58
|
udata/core/activity/__init__.py,sha256=dLTseBmVYbQzxB7OR7Dz0LtIwEjNQvgUSR7SwfInb68,399
|
|
59
|
-
udata/core/activity/api.py,sha256=
|
|
59
|
+
udata/core/activity/api.py,sha256=ptt6DP8bufjnHYD9kfxyDz7Qg8snoHy-Ni_1M3QFl0Y,4276
|
|
60
60
|
udata/core/activity/models.py,sha256=Fq0w988HjfCg9ii0jPV1NM2rGIumgDKACCSfbo2cC14,4924
|
|
61
61
|
udata/core/activity/signals.py,sha256=Io2A43as3yR-DZ5R3wzM_bTpn528pxWsZDUFZ9xtj2Y,191
|
|
62
62
|
udata/core/activity/tasks.py,sha256=F3PY12dnpT5Z8VuYfuOyDP6VPKPJmq1Sm4lSiPfmUCA,1498
|
|
@@ -75,7 +75,7 @@ udata/core/badges/tasks.py,sha256=6ulyDIE6GmR1U9UtQWzGA6joupqRF8GntR6CWFifSzY,13
|
|
|
75
75
|
udata/core/badges/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
76
76
|
udata/core/badges/tests/test_commands.py,sha256=3MMs6DnltAQUClrd7xdi2dYT0qIfmcxojOFL-I9q5Bg,1295
|
|
77
77
|
udata/core/badges/tests/test_model.py,sha256=pTmGFPNKMvphFMOCYmVaqxCEBdsVAfUVcG5Bhmn3WzI,5409
|
|
78
|
-
udata/core/badges/tests/test_tasks.py,sha256=
|
|
78
|
+
udata/core/badges/tests/test_tasks.py,sha256=0ScMM0NWY7QAAo8LVZzmp2atatuvNwdnQrqX9zhUJbE,2118
|
|
79
79
|
udata/core/contact_point/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
80
80
|
udata/core/contact_point/api.py,sha256=vZI4Ue8hYi1n2aplQ80q_l50aQ4s1YKJwIABFw3lurg,2772
|
|
81
81
|
udata/core/contact_point/api_fields.py,sha256=qx_80yeRMS6rKSjQZOSGZk56le0t6l2s9_qJ5us8eZg,1396
|
|
@@ -84,49 +84,49 @@ udata/core/contact_point/forms.py,sha256=oBe1agSJFyx2QRgYzPRg2A7qVscaBTaKG4V-AyI
|
|
|
84
84
|
udata/core/contact_point/models.py,sha256=4GKbf0C1r1id35t4eQ3RcZIEfS_9kb6WW4QaXqejwQc,1161
|
|
85
85
|
udata/core/dataservices/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
86
86
|
udata/core/dataservices/activities.py,sha256=wcYQCyYpKciCz99VqQqKti72a5Fyhc-AvDZBWdF0KUc,1763
|
|
87
|
-
udata/core/dataservices/api.py,sha256=
|
|
88
|
-
udata/core/dataservices/apiv2.py,sha256
|
|
87
|
+
udata/core/dataservices/api.py,sha256=u1aiwIwz9ypw8I6XT8gAbpN6M3qJGcVSK2UaFRJT5tg,10263
|
|
88
|
+
udata/core/dataservices/apiv2.py,sha256=hHwWp0mJtrFJMdylO2_2vPmvdJwFbJNsG9ufcPWONyE,1250
|
|
89
89
|
udata/core/dataservices/constants.py,sha256=PlfoLJv1rqRSUHbCe80vGkfTl9B0hUYgCxrop_e5JUY,45
|
|
90
90
|
udata/core/dataservices/csv.py,sha256=HWI2JrN_Vuw0te9FHlJ6eyqcRcKHOKXuzg45D4Ti6F0,1106
|
|
91
91
|
udata/core/dataservices/factories.py,sha256=pKVoArNSCIbvGA-cWUc7vr8TmjYsUvOXzzcuUB5JyF4,964
|
|
92
|
-
udata/core/dataservices/models.py,sha256=
|
|
92
|
+
udata/core/dataservices/models.py,sha256=iRrAo3rO6fU_kE8K4-e69Y1YJWXC9I-Gfye_3yYW5gQ,12306
|
|
93
93
|
udata/core/dataservices/permissions.py,sha256=98zM_R4v2ZtRubflB7ajaVQz-DVc-pZBMgtKUYy34oI,169
|
|
94
|
-
udata/core/dataservices/rdf.py,sha256=
|
|
94
|
+
udata/core/dataservices/rdf.py,sha256=Xs5TAJ2sah0DFOk3pMGs-xoxLjKf53-5CWUyAp50sTE,8122
|
|
95
95
|
udata/core/dataservices/search.py,sha256=9Ylg-veM6x1sv-xAugx-lHIHJSqiGAN60Ww8ZYikjzY,4708
|
|
96
|
-
udata/core/dataservices/tasks.py,sha256=
|
|
96
|
+
udata/core/dataservices/tasks.py,sha256=DgOsTjQMx3poI0DdLPlTysRVNhf9dYNg-Zc_ut2S2ec,3045
|
|
97
97
|
udata/core/dataset/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
98
98
|
udata/core/dataset/actions.py,sha256=mX6xox0PiMrbcAPZ3VZsI26rfM-ciYfEXxN6sqqImKA,1222
|
|
99
99
|
udata/core/dataset/activities.py,sha256=eGxMUnC47YHxTgcls6igQ3qP7cYgwFtPfj0asCylGsI,3315
|
|
100
|
-
udata/core/dataset/api.py,sha256
|
|
101
|
-
udata/core/dataset/api_fields.py,sha256=
|
|
102
|
-
udata/core/dataset/apiv2.py,sha256=
|
|
100
|
+
udata/core/dataset/api.py,sha256=-86CS5U8UZUe6qMAVkRYwDa04OxxVOwkxSWNiMsZVzo,36538
|
|
101
|
+
udata/core/dataset/api_fields.py,sha256=k_80CjLwQS4mdDQwwissxu0_NzAxKKFb3TCKQtLGSvc,18591
|
|
102
|
+
udata/core/dataset/apiv2.py,sha256=lpQtEXvIc1ZbYI4Yy7CCUqxDWqsoCNauHlQ4OtYAofU,21576
|
|
103
103
|
udata/core/dataset/commands.py,sha256=3mKSdJ-M7ggdG29AVn77C4ouZanbYoqkTaGQoBKOp3s,3471
|
|
104
|
-
udata/core/dataset/constants.py,sha256=
|
|
104
|
+
udata/core/dataset/constants.py,sha256=cwJ5v4DbSIarlMIqmUFQSAEyeV6v86NL3a0-2j0yHlw,6984
|
|
105
105
|
udata/core/dataset/csv.py,sha256=mNU5cuuNzrMgFF7Z0AKN8clsv458tpJHX1_pzAjpd-4,3653
|
|
106
106
|
udata/core/dataset/events.py,sha256=bSM0nFEX14r4JHc-bAM-7OOuD3JAxUIpw9GgXbOsUyw,4078
|
|
107
107
|
udata/core/dataset/exceptions.py,sha256=uKiayLSpSzsnLvClObS6hOO0qXEqvURKN7_w8eimQNU,498
|
|
108
108
|
udata/core/dataset/factories.py,sha256=tb18axsk8Tx5iUIqWM9IELdt-2Ryp2UN0-iY4fdea4U,9059
|
|
109
109
|
udata/core/dataset/forms.py,sha256=q345go8G6qN1_YTX1Uhpl7M2kqF_44KA91OnFMcOGYk,8207
|
|
110
110
|
udata/core/dataset/metrics.py,sha256=s8Xs_rqRXfNWsErkiJTuRMG5o_cU5iSK8mUJFKVSc7w,1204
|
|
111
|
-
udata/core/dataset/models.py,sha256=
|
|
112
|
-
udata/core/dataset/permissions.py,sha256=
|
|
111
|
+
udata/core/dataset/models.py,sha256=fmJCuRbqVEJR6EzBQWBiPhrf-F-kQMdSGi6LJ_hw13c,42440
|
|
112
|
+
udata/core/dataset/permissions.py,sha256=qZCo_wKRwm_hONKdAPhYcb4PqJj7qW4PBqH5WJ0FWB4,2199
|
|
113
113
|
udata/core/dataset/preview.py,sha256=uFEpK-p5nIAlY8hVOMhd7mtkwFt6C_PQRMNxPvAyoo4,839
|
|
114
|
-
udata/core/dataset/rdf.py,sha256=
|
|
114
|
+
udata/core/dataset/rdf.py,sha256=wYX1olDd6n9M6QEm76q7nV_RVUuwSUDzz46ujIpWg64,32730
|
|
115
115
|
udata/core/dataset/recommendations.py,sha256=DlGSLU8D0nW6Ds1rjBav1WxC-0VW5yOCjkO5w-ltFcI,7171
|
|
116
116
|
udata/core/dataset/search.py,sha256=UEYMPwj4kDkGlGaUmsYECh1c3_BjCt1RDcMLDGrV_dA,6019
|
|
117
117
|
udata/core/dataset/signals.py,sha256=WN4sV-lJlNsRkhcnhoy0SYJvCoYmK_5QFYZd1u-h4gs,161
|
|
118
|
-
udata/core/dataset/tasks.py,sha256=
|
|
118
|
+
udata/core/dataset/tasks.py,sha256=RWVWbSdJevyJqzNCB0xKYdXMnCcU3XLlLN4bjw_VI1o,11688
|
|
119
119
|
udata/core/dataset/transport.py,sha256=ihCXirY1dZjOfXKbf9HRCJTfIOc75rM1McwbeGjsW6A,1296
|
|
120
120
|
udata/core/discussions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
121
121
|
udata/core/discussions/actions.py,sha256=kjdBLDIeu0yWTSxQGgOpN1WoxUqbMygn4SiBk_S9T5I,1051
|
|
122
|
-
udata/core/discussions/api.py,sha256
|
|
122
|
+
udata/core/discussions/api.py,sha256=-fMnPzyqdcAeBM3JoLPaZLF7WRT8SNneUk1mfGuVLas,13822
|
|
123
123
|
udata/core/discussions/constants.py,sha256=8crl2Lmkv9dmJe4KACM0JJcpoHePmGtmvI6ixfvukhc,277
|
|
124
124
|
udata/core/discussions/csv.py,sha256=vIuMPJBrAOQmQ4P9SSY1wun0Av1qOE7i0TlQi-Vy7iU,772
|
|
125
125
|
udata/core/discussions/factories.py,sha256=CgQaUmmyDu90XtyBsqXVa-TmZMrN7Dwuu1Cnr5wNrVc,350
|
|
126
126
|
udata/core/discussions/forms.py,sha256=sR8tFBIBh-Rbx9VPzFzG1N54QY1y7UrdeboQ_60gXXQ,1265
|
|
127
127
|
udata/core/discussions/mails.py,sha256=FOov-8LIpFyv3WbNi5ivEUUowudMVGsfPgEijON_R_U,2608
|
|
128
128
|
udata/core/discussions/metrics.py,sha256=WMalLO9GEHXlqE2WbZX-HQUpvte6cRwuHuoL96QwWSg,354
|
|
129
|
-
udata/core/discussions/models.py,sha256=
|
|
129
|
+
udata/core/discussions/models.py,sha256=o36lTljOOr7C0walpl0V9xYQZh2O4q_hxC1gIRN8hB8,6340
|
|
130
130
|
udata/core/discussions/notifications.py,sha256=5MuoZDPmmvkloZ3i8I6TELgE1KXZ_cB9QiDerFBD9dM,1052
|
|
131
131
|
udata/core/discussions/permissions.py,sha256=VY2_PEsazz1fBgCX9-K-_spRgxUoNY4HuNDShqZjw6E,1583
|
|
132
132
|
udata/core/discussions/signals.py,sha256=tJ83RJIsBAny08Q6IDwehE6lDDRf6ynIFCl0WqnayoU,543
|
|
@@ -142,6 +142,8 @@ udata/core/jobs/api.py,sha256=Cml8mTEXFPw9SBd-1sYBH50YrVv4nvxo7R1o5VpPXE0,5959
|
|
|
142
142
|
udata/core/jobs/commands.py,sha256=85P5hDPdKMJzV_xbobNT8nqEW71HchPjTUJ-1u5wddE,4402
|
|
143
143
|
udata/core/jobs/forms.py,sha256=B-B6jXHZsYV-PWAkD8DLoOlh6trv4l1hGZ4HOPm-PD4,1495
|
|
144
144
|
udata/core/jobs/models.py,sha256=xK8T3FCmhtERNbZmh1Tq_ZTO6vojM172tTc0oplNoQ0,1358
|
|
145
|
+
udata/core/legal/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
146
|
+
udata/core/legal/mails.py,sha256=1Xlz9eXaiTN2cI0_Q8DBNDASVirKbjUrz2XC18m_n9w,5611
|
|
145
147
|
udata/core/metrics/__init__.py,sha256=lNvQZS4j-PTfN7kYOwaIW3qgxH2eSMdFc2zSYVqxHP0,329
|
|
146
148
|
udata/core/metrics/commands.py,sha256=JmEBsjmvQl0W32g4m_n7OdtB3zcAvcMCvlzJa0DzZJ4,6191
|
|
147
149
|
udata/core/metrics/helpers.py,sha256=DRefxJfpePuDcWmV7b-gaNE6tjEcttQaWmKpYNBSECM,4370
|
|
@@ -150,52 +152,52 @@ udata/core/metrics/signals.py,sha256=9mdJW__gR2GJT3huBr6HN2SDhKYJRgNbW9dnh48cAnU
|
|
|
150
152
|
udata/core/metrics/tasks.py,sha256=5hVSvBFF2-k_MZGn1XrzEWLgRp3TlrZJtPjX1Y_niS4,4963
|
|
151
153
|
udata/core/organization/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
152
154
|
udata/core/organization/activities.py,sha256=Mw4-R8Q6G745IZnCDgrj7h2ax2crGYRhZtcewSK6_Ok,1213
|
|
153
|
-
udata/core/organization/api.py,sha256=
|
|
154
|
-
udata/core/organization/api_fields.py,sha256=
|
|
155
|
-
udata/core/organization/apiv2.py,sha256=
|
|
155
|
+
udata/core/organization/api.py,sha256=RGyxe5LRqkyk5HzsXRB9r6z_YhGVqNeKkiaEgMaOvU8,22908
|
|
156
|
+
udata/core/organization/api_fields.py,sha256=NXZc__i31ntun3Zt4OGt2EdpodbtQvHqzuta-TskNPY,7776
|
|
157
|
+
udata/core/organization/apiv2.py,sha256=0zn-16vdCgpLkqWGw9XcVp43mrFLGR5mQEPJ-gkv9vA,3002
|
|
156
158
|
udata/core/organization/commands.py,sha256=DsRAtFDZvTciYNsUWumQWdn0jnNmKW-PwfIHUUZoBb8,1591
|
|
157
159
|
udata/core/organization/constants.py,sha256=fncNtA-vFrRM22K1Wo6iYu9DQZjzknYxH6TIYfxM9kA,563
|
|
158
160
|
udata/core/organization/csv.py,sha256=zdLeB4La-TeOEELg0WI3FryoQWnoAYit_DssInVSHRI,979
|
|
159
161
|
udata/core/organization/factories.py,sha256=g8ubBcz79xbjvpunZ02IDOakFg1KE6cXjNkE9vFyFAc,624
|
|
160
162
|
udata/core/organization/forms.py,sha256=tscDb1_yOpbTx3ahl8ttA7oDkX9jIyzLc4gOf6WbN3s,3552
|
|
161
|
-
udata/core/organization/mails.py,sha256=
|
|
163
|
+
udata/core/organization/mails.py,sha256=JxVzsJe4hoFbohB5hmWY33BmqMg8Bz-nwYDvnvUzXW8,4944
|
|
162
164
|
udata/core/organization/metrics.py,sha256=CEhkZLUufDyWi2XyizMoXkuddz7xDJvmdkPTweqfWyI,1144
|
|
163
|
-
udata/core/organization/models.py,sha256=
|
|
164
|
-
udata/core/organization/notifications.py,sha256=
|
|
165
|
-
udata/core/organization/permissions.py,sha256=
|
|
165
|
+
udata/core/organization/models.py,sha256=cGuavWXqCaCZgTveGKu7dCOFNYN5mv899w19_0Sez0g,12009
|
|
166
|
+
udata/core/organization/notifications.py,sha256=bAtb-Of3KCAu30KBg0Y55qHJk9kx82HlMWSCYOfYyHM,3710
|
|
167
|
+
udata/core/organization/permissions.py,sha256=hcnFuc8RkDesFSnq-ei4LV0ZUpRUf8zXyxRoXT_aLQc,1274
|
|
166
168
|
udata/core/organization/rdf.py,sha256=KYJXTE5Yxhp3Cb7GZsRT1BY3Bd7rcRfwFSK9dWG2xQ4,1807
|
|
167
169
|
udata/core/organization/search.py,sha256=VDBbCfGykgYqgs5IHWg_scadVkP0WQKTEzRfF01XOGc,2241
|
|
168
170
|
udata/core/organization/signals.py,sha256=Ft1MBU9S41uxFN-rUrKHhiwedR1OYGv-ncuroKg8orY,488
|
|
169
|
-
udata/core/organization/tasks.py,sha256=
|
|
171
|
+
udata/core/organization/tasks.py,sha256=Y4K701eCx0CqpH10QetSldRBFfyY-aZO6Myet_JGMsw,4614
|
|
170
172
|
udata/core/pages/api.py,sha256=lecERyPBHIVpkVi7NGSI5WwIzIgcZ9l6tRvTVki6fZM,1474
|
|
171
173
|
udata/core/pages/factories.py,sha256=YCCtfh4oXCcH8LZc3u-0A_ajx5XWrZLVEmy23AKpS2s,155
|
|
172
|
-
udata/core/pages/models.py,sha256=
|
|
174
|
+
udata/core/pages/models.py,sha256=MX0SG0lRLdM4SEwlT8GWoG0VWrMKBAIPxOZeVlYlNIM,3924
|
|
173
175
|
udata/core/pages/permissions.py,sha256=TK3DKBxacwhn6gLc70JzUN9OsVwInxTvz6GWxrKBeEY,155
|
|
174
|
-
udata/core/pages/tests/test_api.py,sha256=
|
|
176
|
+
udata/core/pages/tests/test_api.py,sha256=RIf9QkU9tKcZkm9Cv65A47AQSBLOD5TgiABTOCvZzZo,11026
|
|
175
177
|
udata/core/post/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
176
|
-
udata/core/post/api.py,sha256=
|
|
177
|
-
udata/core/post/constants.py,sha256=
|
|
178
|
+
udata/core/post/api.py,sha256=7ZveOosAOjOJnovhQpBZZVxo9YfM90CRIshe9Gr2XuQ,4874
|
|
179
|
+
udata/core/post/constants.py,sha256=zDzcutG9MlkH9eEBHWUhfaQ84tD55DjW6Io1aAnZF4Y,345
|
|
178
180
|
udata/core/post/factories.py,sha256=lcFe3zIadG7bc1jsydkOT7GfQX53V0x09Flpclyl6gI,619
|
|
179
|
-
udata/core/post/
|
|
180
|
-
udata/core/post/models.py,sha256=QnglHx8y20FxbXEQWolrUERdfcyG-_RQjJUov355gQI,2166
|
|
181
|
+
udata/core/post/models.py,sha256=PWqpTnEldY-Ir977Vz8WWD6WybZ-tNhEhjry3ckhJZM,4666
|
|
181
182
|
udata/core/post/permissions.py,sha256=uofU0TehhOGYyUoRXf3wuy816_D3xwMmaJbDvV336sw,83
|
|
182
183
|
udata/core/post/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
183
|
-
udata/core/post/tests/test_api.py,sha256
|
|
184
|
+
udata/core/post/tests/test_api.py,sha256=-65IBi3nwVkfaGTzs8FA0SmSI2kw7Yx4IsQjHFv-Cjg,11451
|
|
185
|
+
udata/core/post/tests/test_models.py,sha256=vvjEVjCCpTX750oORR0_n-_HiHF6hBydDquoxgpKsgQ,743
|
|
184
186
|
udata/core/reports/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
185
|
-
udata/core/reports/api.py,sha256=
|
|
187
|
+
udata/core/reports/api.py,sha256=qrGi1DdRN4mO4nWcyG9rKMiBlw4C8UnzecJFqNAgF_8,2185
|
|
186
188
|
udata/core/reports/constants.py,sha256=LRZSX3unyqZeB4yQjK3ws_hGbJcXYk4bu1Rhnhi5DEs,1235
|
|
187
|
-
udata/core/reports/models.py,sha256=
|
|
189
|
+
udata/core/reports/models.py,sha256=_Niab0hL4tzM4V1A1WdcPoVxRPvJ6TZFLQXV-cka-uE,3629
|
|
188
190
|
udata/core/reuse/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
189
191
|
udata/core/reuse/activities.py,sha256=5D7cV-hGZnzHsp8hohZqqgK3RSGQpfAqJ_Wfq_AYfM8,1420
|
|
190
|
-
udata/core/reuse/api.py,sha256=
|
|
192
|
+
udata/core/reuse/api.py,sha256=zRHYVkpceWwXyIKM7eMBz0VZAL0TMSdo7m-CicxbN5w,13779
|
|
191
193
|
udata/core/reuse/api_fields.py,sha256=ccym6v9Ap68PlHZmIMMtHQFnEyV7Gbxrfdw0b6rj51A,1232
|
|
192
|
-
udata/core/reuse/apiv2.py,sha256=
|
|
194
|
+
udata/core/reuse/apiv2.py,sha256=EGAGY90rZpuKWi2kq7hBPCO9DIpbm9085ebwQSl42wM,882
|
|
193
195
|
udata/core/reuse/constants.py,sha256=JgDBrjOKSt9q0auv9rjzbGsch83H-Oi8YXAKeI5hO4o,1215
|
|
194
196
|
udata/core/reuse/csv.py,sha256=c9t9nyAqjx-QNyeku6RpcC8kSdlQ12wxzXCJHUj6GBY,899
|
|
195
197
|
udata/core/reuse/factories.py,sha256=GrQqYTIvwQrwkvJrbTr38-2faFW_PC99gn3yOVpgFec,850
|
|
196
198
|
udata/core/reuse/mails.py,sha256=gICTjgn3p23tgltjO_RjHw3bio3o1j5zXAgW99LBD8Y,798
|
|
197
199
|
udata/core/reuse/metrics.py,sha256=sVh7BlW3OKRvFDHFyD4pPUV91jOOhj8qeWbBkLPn5Gg,176
|
|
198
|
-
udata/core/reuse/models.py,sha256=
|
|
200
|
+
udata/core/reuse/models.py,sha256=t9I6LaInHQ7sfbEoLy84Eu7W4czbWUdRpNE81q8Nc2g,9178
|
|
199
201
|
udata/core/reuse/permissions.py,sha256=j-ancS7gvLl5vJu0TNYqpYD-2So-UzoDE4IHLxRoMGg,621
|
|
200
202
|
udata/core/reuse/search.py,sha256=HGsl8j1kTR0y2kGGa_q_XTD1qWo8y6RL_RDRMRjiIOk,3082
|
|
201
203
|
udata/core/reuse/signals.py,sha256=nDrEUpYKN0AdYiEbrR0z3nzXzjaRcD8SAMutwIDsQPM,155
|
|
@@ -220,7 +222,7 @@ udata/core/spatial/api_fields.py,sha256=6YVv7w6UyX_m7uGKNtexw8EOQk_I39GWlwCb3Qj_
|
|
|
220
222
|
udata/core/spatial/commands.py,sha256=jvYwUnDwIN9NLJ4Xau3TIh4n4Lbs5vcONydZPGhyBQs,6917
|
|
221
223
|
udata/core/spatial/constants.py,sha256=T024yKsXuBkaZ1MAFZPfLh2X_EFFVQ7Sfg4VHCmZQM4,147
|
|
222
224
|
udata/core/spatial/factories.py,sha256=-eQupRrIOQLouw9Bvv4UBqizFKQ4l4CHZBht2cv7irE,3096
|
|
223
|
-
udata/core/spatial/forms.py,sha256=
|
|
225
|
+
udata/core/spatial/forms.py,sha256=RPF30I8t92N32mcs6YA-FFkdR2xG1-UybWFfboKNQmk,3065
|
|
224
226
|
udata/core/spatial/geoids.py,sha256=-7MGX9Swe1Hfdla6QPL35xwm1dE3WVNmJaN3HPZQ99k,1159
|
|
225
227
|
udata/core/spatial/models.py,sha256=RKZtBDPiCzc0NiYY631fES16I5O0Fx9dmF7KFSChIV0,4919
|
|
226
228
|
udata/core/spatial/tasks.py,sha256=1WVZkmgTbgrJ2-IF479hBzeO_5xtqflTNxHh7nzwnIw,229
|
|
@@ -246,14 +248,14 @@ udata/core/topic/api_fields.py,sha256=zMjoTSoe7-Q8F-i7Ry5EAUv-ds4Lzao3jfETZq-Vg0
|
|
|
246
248
|
udata/core/topic/apiv2.py,sha256=WVyZDNew8m0qVFn9RLKW0SeLQHuUwWIcGAfomzua7sw,6449
|
|
247
249
|
udata/core/topic/factories.py,sha256=Rhx12aTrYFZScu53IhYNP0zJKfiVZPba34ybZ7gGSwo,3010
|
|
248
250
|
udata/core/topic/forms.py,sha256=OkWFo0FkSnjZ2LURoq2i2cpingFz1TrOEI3TJ7qQ8pk,3465
|
|
249
|
-
udata/core/topic/models.py,sha256=
|
|
251
|
+
udata/core/topic/models.py,sha256=CBcMk_3A9NE1lahHJCk_r9_yQIK9L9Fd0D2KAA0NU0s,4732
|
|
250
252
|
udata/core/topic/parsers.py,sha256=oteskLLFje-zufAYzSl1zsy-MLac2hpXhGI0S3igA1g,4560
|
|
251
253
|
udata/core/topic/permissions.py,sha256=RtFPPlxuU_Bv7ip6LDO4AoPrKFnIOEs9cCMXaSSmEdk,118
|
|
252
254
|
udata/core/topic/tasks.py,sha256=_OrPfuZ9rKENp4p4IkoyV-Yqp9bxI3nNxhpfKrbgl-w,357
|
|
253
255
|
udata/core/user/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
254
256
|
udata/core/user/activities.py,sha256=d91G45XEgoxYUJetkSjVolSM-nqmNSuM5b-6geayGE4,3338
|
|
255
|
-
udata/core/user/api.py,sha256=
|
|
256
|
-
udata/core/user/api_fields.py,sha256=
|
|
257
|
+
udata/core/user/api.py,sha256=xO6Bsc_5IHH8DV7y2gmT-sTWhBVvIeRJOvXXv4hAoQE,13903
|
|
258
|
+
udata/core/user/api_fields.py,sha256=lzhB380tCesjesHkXWc9CwFq4E0ThJFbYwRAHUBtNKA,5986
|
|
257
259
|
udata/core/user/apiv2.py,sha256=4eNsvJjb4ChJQFrXtVbkOtAvXEcQcQpZf8vkEbriXRA,1125
|
|
258
260
|
udata/core/user/commands.py,sha256=8dyowvylgYqdScgzVGgr61MWLshlS6-UopZGAMvp4zA,3539
|
|
259
261
|
udata/core/user/constants.py,sha256=aTluhTR2RGZ_cdG7-mkEoT5Ndbg8BNUwwzCOld0aLMY,77
|
|
@@ -261,7 +263,7 @@ udata/core/user/factories.py,sha256=kkwaojciLzfuAOeRnL1E7XCcGPo8waAal_G2eeuVc0k,
|
|
|
261
263
|
udata/core/user/forms.py,sha256=yotqZozH9ViKuNI8SwdKocDEi7NXVs_XUMpdr_bIe5s,966
|
|
262
264
|
udata/core/user/mails.py,sha256=JPoPdjt38T3QECR7g7dqc5MbWxm1wwCNUYIO1I4VSaI,1945
|
|
263
265
|
udata/core/user/metrics.py,sha256=J4zgjcAudQAi6NUIb47o2Pfe0xZ_Eu17ta9HjhE-HvE,1274
|
|
264
|
-
udata/core/user/models.py,sha256=
|
|
266
|
+
udata/core/user/models.py,sha256=9WIba-F4rmsIeECiJqu-vtPcGdZ2f4EazpOcUznuAKA,12362
|
|
265
267
|
udata/core/user/permissions.py,sha256=Wbd8bLqSjqp9RHJ6ffLBj74L-LECcAhWazuw4Hq-2Gk,435
|
|
266
268
|
udata/core/user/rdf.py,sha256=_tN8KlJHt8mYwJhLKoULhmZ3sapUGmX1Sl5W8uawxeU,718
|
|
267
269
|
udata/core/user/tasks.py,sha256=iaL997_aYTvHSXekHWWHuYb6a1WNQkc48dtfOdE_4SI,2924
|
|
@@ -274,64 +276,66 @@ udata/event/values.py,sha256=l68Qvb5jCMRZooHcgSGJLpCQSm4ouEO52-KNtxT4wdo,196
|
|
|
274
276
|
udata/features/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
275
277
|
udata/features/notifications/__init__.py,sha256=R4-dHlQxCsLNWXhV05UnPiVuIpKEpV9KBboWnrdNSOo,352
|
|
276
278
|
udata/features/notifications/actions.py,sha256=i8KvFbsC_JJnPOXSitfdNIdK6ABy8G88E5iwLiGYOyw,759
|
|
277
|
-
udata/features/notifications/api.py,sha256=
|
|
279
|
+
udata/features/notifications/api.py,sha256=mdexblDEqhfQkcTfTT1ZO7dguDunXsopYF5mLuh3IZ0,665
|
|
280
|
+
udata/features/notifications/models.py,sha256=s92gODW0sIULQ4TMdJjMWGnlYDpPJ8YRRZ-vMPYXgaI,1967
|
|
281
|
+
udata/features/notifications/tasks.py,sha256=dLXiQmElW9cmFAKLzZZgG4aruyRJsMPG7Dsy-U3H0f0,720
|
|
278
282
|
udata/features/transfer/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
279
|
-
udata/features/transfer/actions.py,sha256=
|
|
283
|
+
udata/features/transfer/actions.py,sha256=Ofv0eLMR4Y2qrUPpIjmmDXCmpphQNU3OdfciVQigUm4,1893
|
|
280
284
|
udata/features/transfer/api.py,sha256=64lJWb7hFusaGF3bCtJ17-VxhBymzyb7x886vkNProY,6715
|
|
281
285
|
udata/features/transfer/factories.py,sha256=2dAvRaemGieLn5aVEXQ6cmIGD2dTX5I0Ql2RrT77PfU,208
|
|
282
|
-
udata/features/transfer/models.py,sha256=
|
|
283
|
-
udata/features/transfer/notifications.py,sha256=
|
|
286
|
+
udata/features/transfer/models.py,sha256=5kYBdRFhH42O_GTLW83r8_hqoCF2zgiG9drIWtZ7tlI,1448
|
|
287
|
+
udata/features/transfer/notifications.py,sha256=tNyA6A7s9mNqfcztXrDV9-9u2p9_Kp6byOLBZ-CNxoI,4474
|
|
284
288
|
udata/features/transfer/permissions.py,sha256=0Iwt_I3S3QACpq4Ba6Ovb8RUBuozj2pbXDtFFp9jdLI,953
|
|
285
289
|
udata/flask_mongoengine/__init__.py,sha256=Ijqs6lu009OSWgUFdw1AdihjbbLL7-BekwZojXg92bU,599
|
|
286
290
|
udata/flask_mongoengine/connection.py,sha256=b4dPVa8X_xbCFJ8ngt-RWLZtjNCHyZQSw-0fhRL6ySA,5191
|
|
287
291
|
udata/flask_mongoengine/document.py,sha256=KY_PtwbLuqtnlV105YX6ot5GVHq9k61EGv-V6Nf8r78,2200
|
|
288
|
-
udata/flask_mongoengine/engine.py,sha256=
|
|
292
|
+
udata/flask_mongoengine/engine.py,sha256=mBY1qQVQtBl5bzuc6F_j5Vcy6kYbJnGDPev4r3Um3Os,6650
|
|
289
293
|
udata/flask_mongoengine/fields.py,sha256=moNEAt6_QYu3-Tv9uwI7Okak61iLQSn5_J-0IiP1pB0,3290
|
|
290
|
-
udata/flask_mongoengine/json.py,sha256=ChAgqhfCoSljjcAzDm0-B_vAMlLsPT-1bynZa7A3YnU,1242
|
|
291
294
|
udata/flask_mongoengine/model_form.py,sha256=LI6eqd2zykhron29U280mjt0uZlBpM8GP9NDKrB46Tw,718
|
|
292
|
-
udata/flask_mongoengine/pagination.py,sha256=
|
|
295
|
+
udata/flask_mongoengine/pagination.py,sha256=dVWk8Pdg5WCMMorREQ4Kd5J31udWmPvyZLuY9NapDF0,5608
|
|
293
296
|
udata/flask_mongoengine/wtf.py,sha256=BU2ahk6xkUmM18oaUf539RXFTP04O8S2CvEniYGJ1co,1226
|
|
294
297
|
udata/forms/__init__.py,sha256=WdBOu40HijJi0A6kjUkuT-WEP2YNW3k_ftSzQS_Zl9Y,789
|
|
295
298
|
udata/forms/fields.py,sha256=7zPxvgvUG4X3Yt1nm1NvksY9RcgUtNsgPTHiZ8J_rVY,30042
|
|
296
299
|
udata/forms/validators.py,sha256=CRgmB6oow5O8LDR45LajlJJ9HX3RBCI08fapoWMH1vo,2727
|
|
297
300
|
udata/forms/widgets.py,sha256=7qymIpynrQmNlA8hrkcF0RB8eLwOJFkjca_KOZ0zqtE,1332
|
|
298
301
|
udata/frontend/__init__.py,sha256=EzIwb8cQ1z4ItMAQO9EM9NOeKpOt7aXEHbbBCLnQQ2M,264
|
|
299
|
-
udata/frontend/markdown.py,sha256=
|
|
302
|
+
udata/frontend/markdown.py,sha256=mRn5e1zJIaKsHFX4BuBrcIBL1Kj2GbfY_2gHxwo3fb8,4346
|
|
300
303
|
udata/harvest/__init__.py,sha256=C4y5w4vGb_F9Opy62lzV3eHo4DkNyRgPCq-wsarPXiQ,28
|
|
301
|
-
udata/harvest/actions.py,sha256=
|
|
302
|
-
udata/harvest/api.py,sha256=
|
|
303
|
-
udata/harvest/commands.py,sha256=
|
|
304
|
+
udata/harvest/actions.py,sha256=CDFveXEhl3xwoA9_F_DGPd2rnFUg0Ocsny5uEgxNQuQ,10190
|
|
305
|
+
udata/harvest/api.py,sha256=Fv4wHGuyXDeUXLnkrE8oBC1A3eQXEfA1HhZWfpnLYSU,17081
|
|
306
|
+
udata/harvest/commands.py,sha256=R-f4_2I6ixavdzOjKGh54u279kSJAG47pU_09wVgyNA,6125
|
|
304
307
|
udata/harvest/csv.py,sha256=TcHWJLiEbK8ouwGGYZy9US4nMxfWk1Ydw8sMlPit1tk,392
|
|
305
308
|
udata/harvest/exceptions.py,sha256=-sTbXece_YQstXlnpSZX5EJGTONYZ4J2RgByG0WlqAI,302
|
|
306
|
-
udata/harvest/filters.py,sha256=
|
|
309
|
+
udata/harvest/filters.py,sha256=lSCJlkt5BBtM1Oiws9ehBSaGGXbJWwiTBtZ9A_W4550,2988
|
|
307
310
|
udata/harvest/forms.py,sha256=vLyIzsl4nXvPpeJrtnOoRyuvZW8-Hu5O6NISYpg2jrI,4327
|
|
308
|
-
udata/harvest/models.py,sha256=
|
|
311
|
+
udata/harvest/models.py,sha256=0lue43w6f_R-o-54w3Wb5loYCvOZuFWjydg-DYR2luo,7563
|
|
309
312
|
udata/harvest/notifications.py,sha256=8WkHtD68v6rfZC6jCmAuuuRp4NN6q71ZkksZU5m9oJc,867
|
|
313
|
+
udata/harvest/permissions.py,sha256=Dmw63R6W0tyeg2rjJC-hLPwMdTeCCc9AUKH5lLdAJWc,879
|
|
310
314
|
udata/harvest/signals.py,sha256=3AhFHMPIFH5vz01NX5ycR_RWH14MXFWnCT6__LSa-QI,1338
|
|
311
315
|
udata/harvest/tasks.py,sha256=OMc4Jw_M_UgOokxj9IfRKqEqjwi9t9Eih79X_uzr5FA,1676
|
|
312
316
|
udata/harvest/backends/__init__.py,sha256=HIr7kSdmMUMnfCYnkJ4MydC_GcqbYoBozSbee7l6Qs8,1031
|
|
313
|
-
udata/harvest/backends/base.py,sha256=
|
|
314
|
-
udata/harvest/backends/dcat.py,sha256=
|
|
317
|
+
udata/harvest/backends/base.py,sha256=ww_PzXrJZP91QaujJ-psOd8ilzr_5NuLOe0SNogE7M4,19183
|
|
318
|
+
udata/harvest/backends/dcat.py,sha256=FwFJ0SHhKkyrUUfILYn3iZ79dQJqGUF3BhW7Qrxb5f0,19573
|
|
315
319
|
udata/harvest/backends/maaf.py,sha256=SN_831VeWphR63EC9v0n94bRH-9B5htTE70HSsVfzyc,8373
|
|
316
320
|
udata/harvest/backends/maaf.xsd,sha256=vEyG8Vqw7Yn_acjRdXjqUJgxOj4pv8bibep-FX-f3BQ,18322
|
|
317
321
|
udata/harvest/backends/ckan/__init__.py,sha256=JE7Qa7kX7Yd8OvmJnAO_NupZe0tqYyhhkgJ-iGNxX64,35
|
|
318
|
-
udata/harvest/backends/ckan/harvesters.py,sha256=
|
|
322
|
+
udata/harvest/backends/ckan/harvesters.py,sha256=q_tkdpPE9lCTSe1l1KK-sFsujCVqUZfoCflZV5Hw5bE,11356
|
|
319
323
|
udata/harvest/backends/ckan/schemas/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
320
324
|
udata/harvest/backends/ckan/schemas/ckan.py,sha256=59VQoIxPBb5vOHFzzMtdnPcxHL4qNOTkPYa4cqn-7xQ,2353
|
|
321
325
|
udata/harvest/backends/ckan/schemas/dkan.py,sha256=RyQGPEaKqnunIrr9yApcz7WEfgye0IT1bV85wa2E8Lc,2774
|
|
322
326
|
udata/harvest/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
323
327
|
udata/harvest/tests/factories.py,sha256=_V_RICVo33rhnZd5Kk7eZrxuIYHSBi8iWWGHFMLUdhU,2292
|
|
324
328
|
udata/harvest/tests/person.jsonld,sha256=I7Ynh-PQlNeD51I1LrCgYOEjhL-WBeb65xzIE_sHuAA,3230
|
|
325
|
-
udata/harvest/tests/test_actions.py,sha256=
|
|
326
|
-
udata/harvest/tests/test_api.py,sha256=
|
|
327
|
-
udata/harvest/tests/test_base_backend.py,sha256=
|
|
328
|
-
udata/harvest/tests/test_dcat_backend.py,sha256=
|
|
329
|
-
udata/harvest/tests/test_filters.py,sha256=
|
|
329
|
+
udata/harvest/tests/test_actions.py,sha256=nB53_Hi4U38R4gjce9ZnwRXHJfbxbQ1n4mIKkKgfdcA,27899
|
|
330
|
+
udata/harvest/tests/test_api.py,sha256=aWWkYpDhUdcSVz2C9jooLWLWKhu28D3Rs2xydmvQUT8,27657
|
|
331
|
+
udata/harvest/tests/test_base_backend.py,sha256=iu_GFkadVnc82pg4auhUhpfIFcrfSVbZ_c8ZVDaYObc,22279
|
|
332
|
+
udata/harvest/tests/test_dcat_backend.py,sha256=A_OJ9LcDfC7tCLRu8-_nNA8x2PWjTHbnec6QAgvYL8o,56381
|
|
333
|
+
udata/harvest/tests/test_filters.py,sha256=uXcoUGBgEL8EPShFtrZikVOTqKMrfc6ljtXgc_ES5O8,2621
|
|
330
334
|
udata/harvest/tests/test_models.py,sha256=TIpNRx3gjwI5wznr_y2Ad5fdESfhqhPoOOOSBfvyfQI,850
|
|
331
335
|
udata/harvest/tests/test_notifications.py,sha256=i4TZo-hFN6aIi1c9MouqS-ElihccBnqKb_Ed0QQWgyo,835
|
|
332
336
|
udata/harvest/tests/test_tasks.py,sha256=rPyrqfQllcMZYeRmBg-a1zsY7ofWQvJmqyQ_MI2oPVo,701
|
|
333
337
|
udata/harvest/tests/ckan/conftest.py,sha256=SNIRJ7uh6ssIB56mwIdDgteHKUY040yX4gzaGMREjJw,1893
|
|
334
|
-
udata/harvest/tests/ckan/test_ckan_backend.py,sha256=
|
|
338
|
+
udata/harvest/tests/ckan/test_ckan_backend.py,sha256=fLM2AZFrNQH3ujEBZLZSGwWZBTkbsnCpteYHQ8JGuRo,23397
|
|
335
339
|
udata/harvest/tests/ckan/test_ckan_backend_errors.py,sha256=f1bMtFmHDTD1tX52I7TzadVWV_ttL6sIjtxqLsefgT4,4296
|
|
336
340
|
udata/harvest/tests/ckan/test_ckan_backend_filters.py,sha256=Ck-A-oLePMkC3yuRosCl1YoijOtc4yNurep9HcEOG5w,4298
|
|
337
341
|
udata/harvest/tests/ckan/test_dkan_backend.py,sha256=WDUNcbhvfNXeSquALQmcv33tRo1OLMRWygmaL5gJQPs,2013
|
|
@@ -368,7 +372,7 @@ udata/migrations/2021-05-27-fix-default-schema-name.py,sha256=n377iZDBGMivMvm_Ar
|
|
|
368
372
|
udata/migrations/2021-07-05-remove-unused-badges.py,sha256=KJdDgCkCCevsmZ1n-xHnUwYgMK4MmgM67UEE_8oDdAA,921
|
|
369
373
|
udata/migrations/2021-07-07-update-schema-for-community-resources.py,sha256=gj-CAQsGQ_lc7bmgZSo6sMqKLjgIYaLQShfC42Lql8w,866
|
|
370
374
|
udata/migrations/2021-08-17-follow-integrity.py,sha256=wUpsXwTCaXFdhFW3zltvswm_Z0d0RafYsEandgJJ1QQ,532
|
|
371
|
-
udata/migrations/2021-08-17-harvest-integrity.py,sha256=
|
|
375
|
+
udata/migrations/2021-08-17-harvest-integrity.py,sha256=pm9ofGmXay1DMmlB2K-VsAOPqwLrKUFvOsWC8x9Zi7w,2013
|
|
372
376
|
udata/migrations/2021-08-17-oauth2client-integrity.py,sha256=SP8xqZCIBrNfFDlDMU4zcq5JaXdJ__qm19QtsGNvQic,598
|
|
373
377
|
udata/migrations/2021-08-17-transfer-integrity.py,sha256=zXVwwS7YnsiXB7sY0fPSOXXTzJb0aRyJWVK4cT-SAcM,607
|
|
374
378
|
udata/migrations/2021-08-17-users-integrity.py,sha256=IwRsIy0iQYzSm0-ESbfu7jjemRrm0o5RVRhJstllIKY,2094
|
|
@@ -402,7 +406,11 @@ udata/migrations/2025-09-04-update-legacy-frequencies.py,sha256=8YAROAHhytf6Kses
|
|
|
402
406
|
udata/migrations/2025-10-01-delete-orphaned-topic-elements.py,sha256=Mhx5ANOihZL4botxtjvfsll-xKBtkVQBkPcSq0BJ-Ec,788
|
|
403
407
|
udata/migrations/2025-10-21-remove-ckan-harvest-modified-at.py,sha256=85oGDAOLB7K9KzPRHHokc36EeMKLdWaOb3IkpwYkL3E,837
|
|
404
408
|
udata/migrations/2025-10-29-harvesters-sources-integrity.py,sha256=tt8ThVhtgiBSvRxZEO4LQiDPW4RKZDsOkPepTntOVew,571
|
|
409
|
+
udata/migrations/2025-10-31-create-membership-request-notifications.py,sha256=CZfUG7024dQj-Lz9fyp0duoATeBLlGSGb-8Gvr9B97Y,2228
|
|
405
410
|
udata/migrations/2025-11-13-delete-user-email-index.py,sha256=3fSkKzDxaA-DDHRUAMg-IVFNsQrEHw8cFsDsZPX6dqE,569
|
|
411
|
+
udata/migrations/2025-12-04-add-uuid-to-discussion-messages.py,sha256=DODVCMMvBP1pF4mY69nK1tzYPMFuR51bfuEciron_mg,759
|
|
412
|
+
udata/migrations/2025-12-16-create-transfer-request-notifications.py,sha256=8FUhomefvyetWxa18-vDRrK_L7nyhGqt9dX4mw9j-LI,2971
|
|
413
|
+
udata/migrations/2026-01-14-add-default-kind-to-posts.py,sha256=DLibQ_BDtlU4SkYfi998rG_Yvmbchu1hKGYlNLBZgek,447
|
|
406
414
|
udata/models/__init__.py,sha256=Z3RLj1KIFNc4RZCqHNtIrMm7RZ_5_60HLL9H5nS4lUk,1198
|
|
407
415
|
udata/mongo/__init__.py,sha256=y4Rv-kq3o_kcEulcNpePLzocXPBNpx3Jd82G-VZPaMc,1421
|
|
408
416
|
udata/mongo/datetime_fields.py,sha256=xACagQZu1OKPvpcznI-bMC1tJfAvo-VBUe7OOadnBdg,2089
|
|
@@ -411,7 +419,7 @@ udata/mongo/engine.py,sha256=JF9N55j7joDIn9NrItMtlIrA5CwVLhS_jlB2ptX94oA,2408
|
|
|
411
419
|
udata/mongo/errors.py,sha256=SpTMAc_aNIfGkqyXGCbTlIAmYxU86rGM_NtIYaB642c,472
|
|
412
420
|
udata/mongo/extras_fields.py,sha256=knb0fwt8eIEOA0jjeUAs9Gmn_cfUNVPuRdGEVcJzE2Y,4218
|
|
413
421
|
udata/mongo/queryset.py,sha256=fXfYkUHsCWAUoub3OR7v825USPv-PQQIHkv4U5FnjYg,3954
|
|
414
|
-
udata/mongo/slug_fields.py,sha256=
|
|
422
|
+
udata/mongo/slug_fields.py,sha256=94xJitpNBI89otYeZ66UvanbT_2phSva1xv4wwow8vM,7523
|
|
415
423
|
udata/mongo/taglist_field.py,sha256=d4xUzXNaNgOlhllKNaTIhAiyjPhfOuXU99fYv3ds1u4,1371
|
|
416
424
|
udata/mongo/url_field.py,sha256=UmUr9c5SxDFDpS5QsRTq2pKcCTOr1SoB4UITwNjtuaI,1345
|
|
417
425
|
udata/mongo/uuid_fields.py,sha256=tuQ3zs_BnQHjaiKSIYv43jxvYtOvRLw9nP5CQ3fcMks,482
|
|
@@ -429,14 +437,8 @@ udata/storage/s3.py,sha256=enxbTm1IZksiKLkbafASrO2bqO44OTCn4F7_FeMjhgg,1557
|
|
|
429
437
|
udata/templates/404.html,sha256=1N3gFGvwhUgBzwx4_e946T0aAsBwtg3cvbClViuFuVI,1140
|
|
430
438
|
udata/templates/comments/dataset_archived.txt,sha256=DDRZ_9ldyhz0SKki3piypJ7WpWB2kSCOsFyyJw_sPmE,324
|
|
431
439
|
udata/templates/macros/forms.html,sha256=LEhdB8WUHXJR3E1Gs41QEFzDauhvmhEWCnW4JlnnF64,2206
|
|
432
|
-
udata/templates/mail/
|
|
433
|
-
udata/templates/mail/base.txt,sha256=epaSraWLlrXYEovdVROhxgOAsJmZI6RXxpNwtOX_UI4,176
|
|
434
|
-
udata/templates/mail/button.html,sha256=FdCKFJYclhjDUh7CddHx8qcQjJF_7mF0s7mG_tb9cL8,417
|
|
435
|
-
udata/templates/mail/message.html,sha256=ly0vOJHwFZC7v_Y8BnT-_tO5nI_f8i3Xi3oAwJ3d5rE,10217
|
|
440
|
+
udata/templates/mail/message.html,sha256=saqzEL0dzzr41znvgFNZjsr7RAgMvUBMQDNdNrhUOok,1803
|
|
436
441
|
udata/templates/mail/message.txt,sha256=ci5u8PCWtwid39RPGxAjEUfqmC0ILLZhV0QIJbV--v8,488
|
|
437
|
-
udata/templates/mail/layouts/1-column.html,sha256=cGnVjykaMK7CeO3HtSq-aWK8A-KHJ--IVjsdaQfmS_I,524
|
|
438
|
-
udata/templates/mail/layouts/2-columns.html,sha256=TbYO8O0j5w7uLCSVN4liP-Y-xOplCLnDDGMnZIJ_s-c,580
|
|
439
|
-
udata/templates/mail/layouts/center-panel.html,sha256=kULj5NDcuifryn_1wTeKkxaAhdmQhrYL6i7r1YjcCOM,387
|
|
440
442
|
udata/templates/security/change_email.html,sha256=vUBJsYofvUKmEV2CcFi9VVILI8NkHwe4TlbwCd2pD1w,828
|
|
441
443
|
udata/templates/security/change_password.html,sha256=Is7IEziM8HZi4zzbkUtOubEDqCDuhbd3I9zg6WxdRNA,902
|
|
442
444
|
udata/templates/security/forgot_password.html,sha256=gC_wnSPkJI2WOhy3Z2FS3OjYTv69iL1o6t5vIFoXbBM,897
|
|
@@ -446,68 +448,72 @@ udata/templates/security/reset_password.html,sha256=R0AMqkmPulFZpCoqP6NzP-dSTcdx
|
|
|
446
448
|
udata/templates/security/send_confirmation.html,sha256=llnEawIMXWP8Wu9EUL2czY38Z7URk-hRCEK9A4cxVJQ,784
|
|
447
449
|
udata/tests/__init__.py,sha256=yaEd8auFOkEg2DX0m0mutomNTHSiugyVEO9QPMyvjeE,2650
|
|
448
450
|
udata/tests/es-fake-result.json,sha256=z0CX9Gs-NRj49dmtdFvw8ZKsAbMhDt97Na6JX3ucX34,3155
|
|
449
|
-
udata/tests/helpers.py,sha256=
|
|
451
|
+
udata/tests/helpers.py,sha256=67i83_ClNyYu3MH30hgkkHo-wjyeQ3eBuLkYHBuZiVM,6705
|
|
450
452
|
udata/tests/models.py,sha256=5oTC-cgKSL0sUdlqjUiJ6U8-YZBQanObb-MhZhQIV3M,238
|
|
451
453
|
udata/tests/plugin.py,sha256=K2oQMYnWnElg0C0zPUQJqelPp0VuNj09hfGkLNd3KmY,708
|
|
452
454
|
udata/tests/schemas.json,sha256=szM1jDpkogfOG4xWbjIGjLgG8l9-ZyE3JKQtecJyD1E,4990
|
|
453
|
-
udata/tests/test_activity.py,sha256=
|
|
454
|
-
udata/tests/test_api_fields.py,sha256=
|
|
455
|
+
udata/tests/test_activity.py,sha256=YAPQZAVDqfC91_lgzJxfaMZH_U5PmFAkRQXPh_n3Ljs,9797
|
|
456
|
+
udata/tests/test_api_fields.py,sha256=iS75yPnvQMAAwSU5WYhyuWj0rfQk18ctu_tJwryQL30,13296
|
|
455
457
|
udata/tests/test_cors.py,sha256=6_YNrn_zwve2eiRjBskBu7fO3NTpxewFlAhl06po5mg,2911
|
|
456
458
|
udata/tests/test_dcat_commands.py,sha256=lNro98quTA_PnVATnum2mokSKBRfSVd_MxSzA32nbjY,939
|
|
457
|
-
udata/tests/test_discussions.py,sha256=
|
|
459
|
+
udata/tests/test_discussions.py,sha256=y_nVPWDTx3t-_dVGXYtFaTWDudf-QnJS-f3TQpZaAKA,47615
|
|
460
|
+
udata/tests/test_legal_mails.py,sha256=WyHYkzWRiikZUqTYG-trXJKimSgNqenCorYC2txwh34,13901
|
|
458
461
|
udata/tests/test_mail.py,sha256=IvWCtRJ1qikJp4rSu-q8bqYbQTSkW8GOawuwsgSR7io,5906
|
|
459
462
|
udata/tests/test_migrations.py,sha256=PC9hWaWBqQR1E_tEqAbJF-xC1fBlBA7U9oN8ROczPaY,7739
|
|
460
463
|
udata/tests/test_model.py,sha256=j9_9xiLLPAFibL5Rz6uMD7Npjz0bS1Nu88A3fQF_3UI,22194
|
|
461
|
-
udata/tests/test_notifications.py,sha256=
|
|
462
|
-
udata/tests/
|
|
464
|
+
udata/tests/test_notifications.py,sha256=54MHOEHG6mp1p6jE7JYVA6XkAp9qsu-H274C-VE8kig,1063
|
|
465
|
+
udata/tests/test_notifications_task.py,sha256=NonJfdMiiOeJX6XEz8fwYn0FDa_x0XBgnaKzXhr-njE,1420
|
|
466
|
+
udata/tests/test_owned.py,sha256=Mlzr-hVEbmZEeAMfBLkpN59voqDqPmj_QNUQXxHQMOk,13202
|
|
463
467
|
udata/tests/test_rdf.py,sha256=jrd1hkM__KoThkE_cY0XGFUAP4vw26b12AijNBT5f_o,5307
|
|
464
468
|
udata/tests/test_routing.py,sha256=oOO_vxS2hc0YuDbr8S7rgKTj5HSrxjjkTqSgcDoxmR0,10926
|
|
465
469
|
udata/tests/test_storages.py,sha256=jJ74ieRNDk5IiqW28HTifksa5_vNey_cmqdvZ0nSRVs,9813
|
|
466
470
|
udata/tests/test_tags.py,sha256=vIkI7FfWii6irMLJr7FuuugJGWZ0tTJAe58W8zu34rk,3732
|
|
467
471
|
udata/tests/test_topics.py,sha256=KKcvsnRzdTy0n3jM2pG6G-CIj3qMfwCGhp0CluBFDLk,6209
|
|
468
|
-
udata/tests/test_transfer.py,sha256=
|
|
469
|
-
udata/tests/test_uris.py,sha256=
|
|
472
|
+
udata/tests/test_transfer.py,sha256=5ya5UtGUOkPrYo6kW0R0OiIi9L-NKa64g67yjY8IXIg,14913
|
|
473
|
+
udata/tests/test_uris.py,sha256=RZpWlmR4nAVjBnzOubI3BdNie_skgJc75ES92QOJAjk,9714
|
|
470
474
|
udata/tests/test_utils.py,sha256=3BGnlvw-GOE6tLHQteo-uUeYuzq4rsjePOuytFGkpOg,7967
|
|
471
|
-
udata/tests/api/__init__.py,sha256=
|
|
472
|
-
udata/tests/api/test_activities_api.py,sha256=
|
|
475
|
+
udata/tests/api/__init__.py,sha256=ByLEucyyN2y-hqEF8N9C_Qreo5mEjgwu1ej5Yd-GPY4,7065
|
|
476
|
+
udata/tests/api/test_activities_api.py,sha256=eABVVDs4BN7phzMqi6jE8LDN6PgLKUoVffVSwnd2iN0,6387
|
|
473
477
|
udata/tests/api/test_auth_api.py,sha256=vLyDU1hdF2QEwpNTNUgP2QPUjL0y61lzj5Viaaj96io,25938
|
|
474
478
|
udata/tests/api/test_base_api.py,sha256=jbT9s_YYuh-37xR98VMS5mAHHIL0g-6F_kkhFBb4E3A,2272
|
|
475
479
|
udata/tests/api/test_contact_points.py,sha256=QmnTmJZ5oIohsUH_E_wfFalRx-Fx91jO7gs7PErpLqQ,8690
|
|
476
480
|
udata/tests/api/test_dataservices_api.py,sha256=UPMH6OEEczYvebyV7thf7LjrEYFctgIm1TuJV1VC-OI,29914
|
|
477
|
-
udata/tests/api/test_datasets_api.py,sha256=
|
|
481
|
+
udata/tests/api/test_datasets_api.py,sha256=twJki_rjq8SHteOVqPsFc58pKuzyhlo2a9Lr4qTOCeI,113761
|
|
478
482
|
udata/tests/api/test_fields.py,sha256=OW85Z5MES5HeWOpapeem8OvR1cIcrqW-xMWpdZO4LZ8,1033
|
|
479
483
|
udata/tests/api/test_follow_api.py,sha256=4nFXG5pZ_Hf2PJ4KEdHJX_uggjc9RpB8v0fidkAcw9I,5792
|
|
480
484
|
udata/tests/api/test_me_api.py,sha256=MiKN9P75h2HyMxepuxt2SiLs3Yhgl22iQXKbvTR42sg,13796
|
|
481
|
-
udata/tests/api/test_organizations_api.py,sha256=
|
|
482
|
-
udata/tests/api/test_reports_api.py,sha256=
|
|
485
|
+
udata/tests/api/test_organizations_api.py,sha256=5jlz_Y6fSIp3s6k5irG2plrTMxXK-1nDtNNJyF7ga9s,43681
|
|
486
|
+
udata/tests/api/test_reports_api.py,sha256=KD9pqagxvhWQlM9k64RHRtSA8C_h3vjAbYj2YmMe2tM,12175
|
|
483
487
|
udata/tests/api/test_reuses_api.py,sha256=iSwYLO-IwdUz6sR-A7hdDlZo_pTXsA_94LhPWYzdSl8,30634
|
|
484
488
|
udata/tests/api/test_security_api.py,sha256=V5Nj2vpSx8_l_foN5pk6dLTBFG1hP7dxxLxYcmdGcAo,4569
|
|
485
489
|
udata/tests/api/test_swagger.py,sha256=g3WCFnZBcg18nW-DDq-pYg9xDfy9EwLnltW9ckbaGAA,807
|
|
486
490
|
udata/tests/api/test_tags_api.py,sha256=7XROh60k0rI9lzzJbFagbSEtE3nFdx3cnHNdOxixvhk,2394
|
|
487
491
|
udata/tests/api/test_transfer_api.py,sha256=uYeouDL42X8ruzclgaVOa6VCA3_wc8Hq8HLa8jgpZyM,7485
|
|
488
|
-
udata/tests/api/test_user_api.py,sha256=
|
|
492
|
+
udata/tests/api/test_user_api.py,sha256=Xi4vcG1cpdh7L669tWdSUwOLUvD4E4qf_ShnoyBNwUU,16854
|
|
489
493
|
udata/tests/apiv2/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
494
|
+
udata/tests/apiv2/test_dataservices.py,sha256=-eg9ztOdFkgbXVrLZnv4uzwqxqMBS560HayR67Zjkng,550
|
|
490
495
|
udata/tests/apiv2/test_datasets.py,sha256=lugL_CE2MlP4R--GEersBIwJOn66xVmLz5lU8L4YpcA,23216
|
|
491
496
|
udata/tests/apiv2/test_me_api.py,sha256=YxSCtZBlSXgzQPgwMJoZHMcpSoKjL6IKz2jhJi8xL5I,1399
|
|
492
|
-
udata/tests/apiv2/test_organizations.py,sha256=
|
|
497
|
+
udata/tests/apiv2/test_organizations.py,sha256=rWIoYLL5-vP_pvX0W-H9YigAp64LYTLhJE-XhmFqNGs,6721
|
|
498
|
+
udata/tests/apiv2/test_reuses.py,sha256=zxS_YrsR4-c8gjFek711Mm057hPkyskcD0l6qi1852I,408
|
|
493
499
|
udata/tests/apiv2/test_swagger.py,sha256=fIwblhKFnbXnLJb_Qs33P0c44LRm0c1JODblKEcf_4M,832
|
|
494
500
|
udata/tests/apiv2/test_topics.py,sha256=pHHsPo7Qs8DoDqLBBcB0GtoptkHHXT25Jo96B2Vg_4k,37970
|
|
495
|
-
udata/tests/cli/test_cli_base.py,sha256=
|
|
501
|
+
udata/tests/cli/test_cli_base.py,sha256=opaL3La-ig47wpak7A-zdRUzj2hIXIYXD_0t842YrBQ,465
|
|
496
502
|
udata/tests/contact_point/test_contact_point_models.py,sha256=qPAEXd9BN9q-H0PSxQ7g6yUHG8xKZ0AElOsqeOaVL7U,957
|
|
497
503
|
udata/tests/data/image.jpg,sha256=hdmpaCjOhmAAfNGuTqWKEjv7IC4GXJx-nP_rT274hc8,337049
|
|
498
504
|
udata/tests/data/image.png,sha256=GAqXz7w_u7CapODIUF45UpVddmqelnGQkcrwKZq3448,266488
|
|
499
505
|
udata/tests/dataservice/test_csv_adapter.py,sha256=trGzWENGpkDFI84XZhwwNR61_nmukphKvS6aOKf7uBo,1981
|
|
500
506
|
udata/tests/dataservice/test_dataservice_rdf.py,sha256=dsBLkpn1kYVVcOVx6O5fn-UacQXFHpTFoNaZ_ciRWo0,6405
|
|
501
|
-
udata/tests/dataservice/test_dataservice_tasks.py,sha256=
|
|
507
|
+
udata/tests/dataservice/test_dataservice_tasks.py,sha256=ANbPcKhWzAGZABXVYKDLhGUItr5qFc9Trdq3eMWSlT8,3003
|
|
502
508
|
udata/tests/dataset/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
503
509
|
udata/tests/dataset/test_csv_adapter.py,sha256=d5Wx2yqXpXh93IY5JtnGVTDo9O_3j0F_XnfmXnA__UI,3902
|
|
504
510
|
udata/tests/dataset/test_dataset_actions.py,sha256=8d-6AUKCt3Nnb_uEaztV0BzNYFDyqAYLrThRD-ubLNA,741
|
|
505
511
|
udata/tests/dataset/test_dataset_commands.py,sha256=e-tLIveg_Vp7nfOd5VhcPSiUQZ-VBv2no2lAu-2j6BE,820
|
|
506
512
|
udata/tests/dataset/test_dataset_events.py,sha256=tKCQ55y_pc0wOKv2B2iej5dDxWalguU9FLtr6J2y8hE,3682
|
|
507
|
-
udata/tests/dataset/test_dataset_model.py,sha256=
|
|
508
|
-
udata/tests/dataset/test_dataset_rdf.py,sha256=
|
|
513
|
+
udata/tests/dataset/test_dataset_model.py,sha256=YWhQ6RxVdgUrQbtvwATzypyl8XyNpdDjHDetyK37chU,35795
|
|
514
|
+
udata/tests/dataset/test_dataset_rdf.py,sha256=__jm3_J5-r1u9YaBZPNFYaPlYCQ6Rt4Qr5elA-WKVzw,60503
|
|
509
515
|
udata/tests/dataset/test_dataset_recommendations.py,sha256=UMwAsLHs6_XA1vp7-lnTjaPOc9E6zQYqw9VIuSCNUtk,7102
|
|
510
|
-
udata/tests/dataset/test_dataset_tasks.py,sha256=
|
|
516
|
+
udata/tests/dataset/test_dataset_tasks.py,sha256=6YmDBJUv3pIPNFj6DvY7FLsa4k7XxGeQ7BgOLrJOeTY,4564
|
|
511
517
|
udata/tests/dataset/test_resource_preview.py,sha256=387FEdNHWZyEeOlmSETMIFlnhVuKQ-U4o2RkWgxXwik,2208
|
|
512
518
|
udata/tests/dataset/test_transport_tasks.py,sha256=GgXu_MXGKmVzugi-7SUVNJ_PkTo36kJsASapYaxlcQw,2998
|
|
513
519
|
udata/tests/features/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -526,8 +532,8 @@ udata/tests/forms/test_publish_as_field.py,sha256=o-agTC4Lq-wJXxACWTPBIlPUovQnjv
|
|
|
526
532
|
udata/tests/forms/test_reference_field.py,sha256=oa57TatMG9Ul5Z_ehCsLK0Zau31n3xaRU0gLAmZlg9w,6290
|
|
527
533
|
udata/tests/forms/test_user_forms.py,sha256=Uo0l-4jd7pyp6d7_4GVBp9InLwlWYEh984utQHat7Ng,1142
|
|
528
534
|
udata/tests/forms/test_uuid_field.py,sha256=256hFDZSWBeoRQuKIAF5RBt4hAKssSHFVAqMMHz8rcc,1788
|
|
529
|
-
udata/tests/frontend/test_auth.py,sha256=
|
|
530
|
-
udata/tests/frontend/test_csv.py,sha256=
|
|
535
|
+
udata/tests/frontend/test_auth.py,sha256=nO9OvTc9SX2QRShyseV6WoEPlqSbrE8wmQ-pRdaWhWU,2921
|
|
536
|
+
udata/tests/frontend/test_csv.py,sha256=v7hpTtWgPrMRJxED-6Ql-RNYI62thuy36eO4tAkHe9I,11583
|
|
531
537
|
udata/tests/frontend/test_error_handlers.py,sha256=oUk-x5uUwDDDv1b7_wMBWVu26Dolh5tH_ScrnOIFRxA,3106
|
|
532
538
|
udata/tests/frontend/test_markdown.py,sha256=khpmtc9cvBAFSuSZhy8P1hg-8ILRW171_Jue00Aps_0,13875
|
|
533
539
|
udata/tests/metrics/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -536,7 +542,7 @@ udata/tests/metrics/test_metrics.py,sha256=CIi4G8A59_Eo0iqCRBBokOpw_4w_cwYRB396o
|
|
|
536
542
|
udata/tests/metrics/test_tasks.py,sha256=fUYvdjZ38dRfnCbRM-mtSqUROTojHeye3bOuFlMJMyQ,6327
|
|
537
543
|
udata/tests/organization/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
538
544
|
udata/tests/organization/test_csv_adapter.py,sha256=kCwHTCGaw7BsWUv1nmQAu2HizSKj5iKrdKDRVCXsbh0,1260
|
|
539
|
-
udata/tests/organization/test_notifications.py,sha256=
|
|
545
|
+
udata/tests/organization/test_notifications.py,sha256=u_oir9hB-7-OFS6yzG3hrJ8hLNNvL376U5N9GrY44NY,3913
|
|
540
546
|
udata/tests/organization/test_organization_model.py,sha256=R5VGD9qjxvveBrWAFlwPFSWMyTZ8dm1K0DhC3725vwY,4290
|
|
541
547
|
udata/tests/organization/test_organization_rdf.py,sha256=sds2xQmscFZqP5Vh6yOCP_4-71z8pSWxR4aK33h--nY,7906
|
|
542
548
|
udata/tests/organization/test_organization_tasks.py,sha256=9Ta-f4R3RoKdARYUFWHO4pE1nijceTHzyEvI34lYBJo,2876
|
|
@@ -547,9 +553,10 @@ udata/tests/search/__init__.py,sha256=ub8kS6vG9EjzkJ-9sAR7j1eLSYpud1Gzry4MQ8fpgx
|
|
|
547
553
|
udata/tests/search/test_adapter.py,sha256=4Sh8T-a8TYRMWUNe93WkVOy2b5q7i5hvjFUjXbX3UZw,8648
|
|
548
554
|
udata/tests/search/test_query.py,sha256=aFZKFTJjlih5csy3eNp4MxL5hg13NqiIsrS5bCTOLrI,2182
|
|
549
555
|
udata/tests/search/test_results.py,sha256=vHMkywoW6SQKGy5OtCriYpSo-KbVEdjVzOf8un2mjZE,2043
|
|
556
|
+
udata/tests/search/test_search_integration.py,sha256=icDg7wJowl2P9ZUhFKe__MbQBH5QjLDx3d7U_fVpdAk,2623
|
|
550
557
|
udata/tests/site/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
551
558
|
udata/tests/site/test_site_api.py,sha256=j9pu91KfkL8-O0lyTA546cJJGZyENEauebF_uuxKVTE,1363
|
|
552
|
-
udata/tests/site/test_site_csv_exports.py,sha256=
|
|
559
|
+
udata/tests/site/test_site_csv_exports.py,sha256=XNNCUsX3Q17ov2nBOEfBLklKpwF3wxIG_1ZeayFfKls,17758
|
|
553
560
|
udata/tests/site/test_site_metrics.py,sha256=B7g0iSNWQVFCC1HZ7bGLj1bdN5yuHsJGx0qfWdxjP1Y,2381
|
|
554
561
|
udata/tests/site/test_site_model.py,sha256=JTA6cZoz1ofPmsOV5BjGo1b85xEI6nTIvVug1_X5K28,2163
|
|
555
562
|
udata/tests/site/test_site_rdf.py,sha256=amf0nEjg3XYp-OlrpogJQvpNSeNHIjbFvZ7eAdXKbQ4,15302
|
|
@@ -562,24 +569,24 @@ udata/tests/workers/test_jobs_commands.py,sha256=Sm3ibGEtS2iV_w1KfdQEIAsvo_2vnNV
|
|
|
562
569
|
udata/tests/workers/test_tasks_routing.py,sha256=7FJUVcSPKkqA3tcFjjgCnbl4vC-4iGuL7myzr7lVHc8,2431
|
|
563
570
|
udata/tests/workers/test_workers_api.py,sha256=x8EkULR9G5TKl5WwjdVwfFEttbudpiWIYN2umETrCzY,8805
|
|
564
571
|
udata/tests/workers/test_workers_helpers.py,sha256=_983ChRxas3gsjykaEpXWQUbk2qTMJgeFZpIAHTuhLk,647
|
|
565
|
-
udata/translations/udata.pot,sha256=
|
|
566
|
-
udata/translations/ar/LC_MESSAGES/udata.mo,sha256=
|
|
567
|
-
udata/translations/ar/LC_MESSAGES/udata.po,sha256=
|
|
568
|
-
udata/translations/de/LC_MESSAGES/udata.mo,sha256=
|
|
569
|
-
udata/translations/de/LC_MESSAGES/udata.po,sha256=
|
|
570
|
-
udata/translations/es/LC_MESSAGES/udata.mo,sha256=
|
|
571
|
-
udata/translations/es/LC_MESSAGES/udata.po,sha256=
|
|
572
|
-
udata/translations/fr/LC_MESSAGES/udata.mo,sha256=
|
|
573
|
-
udata/translations/fr/LC_MESSAGES/udata.po,sha256=
|
|
574
|
-
udata/translations/it/LC_MESSAGES/udata.mo,sha256=
|
|
575
|
-
udata/translations/it/LC_MESSAGES/udata.po,sha256=
|
|
576
|
-
udata/translations/pt/LC_MESSAGES/udata.mo,sha256=
|
|
577
|
-
udata/translations/pt/LC_MESSAGES/udata.po,sha256=
|
|
578
|
-
udata/translations/sr/LC_MESSAGES/udata.mo,sha256=
|
|
579
|
-
udata/translations/sr/LC_MESSAGES/udata.po,sha256=
|
|
580
|
-
udata-14.
|
|
581
|
-
udata-14.
|
|
582
|
-
udata-14.
|
|
583
|
-
udata-14.
|
|
584
|
-
udata-14.
|
|
585
|
-
udata-14.
|
|
572
|
+
udata/translations/udata.pot,sha256=51A3gKJMKHGHct_1aR7PXROJ5D_8oXrbr2YkPlnGfnI,46703
|
|
573
|
+
udata/translations/ar/LC_MESSAGES/udata.mo,sha256=tNGqnNc4Cn3Q2BDsDGbko7-EbBEMSwAMh59kSC0Z48c,10213
|
|
574
|
+
udata/translations/ar/LC_MESSAGES/udata.po,sha256=ALJbwhI5mCTh1XFLuu-UPs98BogAB3Zsk0ihfBv6VpM,51626
|
|
575
|
+
udata/translations/de/LC_MESSAGES/udata.mo,sha256=eArFdWx9qEGa4vHyXBdi5nP7zdTKRPhMz6uuBZ9Mh7g,12119
|
|
576
|
+
udata/translations/de/LC_MESSAGES/udata.po,sha256=iEw1wqB1ExkBR-yTaSLfe-hsP-96uFqpbVgkarjVN2w,51628
|
|
577
|
+
udata/translations/es/LC_MESSAGES/udata.mo,sha256=D5eIeuL3rYunDWpTzFhNebL7BPP12tQ8HOuyXEWefSU,8014
|
|
578
|
+
udata/translations/es/LC_MESSAGES/udata.po,sha256=msc_YJlIibe6jc_4ZVFObLenrCZt5b3VryF8kKLiZa0,50093
|
|
579
|
+
udata/translations/fr/LC_MESSAGES/udata.mo,sha256=Yyu5Ro06ounz8hh7q4vNkTeYqYuHMJUNbU0iqoIwgak,40381
|
|
580
|
+
udata/translations/fr/LC_MESSAGES/udata.po,sha256=S9ooUp5xbMUqJkT5S_X4ppRAUJS-uOf5WFiz9oEfQEw,65292
|
|
581
|
+
udata/translations/it/LC_MESSAGES/udata.mo,sha256=VrvxmQ3smD8cEzPbGtNqM6JhjkRStGv4ZDBfnk2NAlg,12811
|
|
582
|
+
udata/translations/it/LC_MESSAGES/udata.po,sha256=aLAWwPj2uOuPSQIWGlxrUNyTuIRxtP7GKoaB2O9lAx8,51872
|
|
583
|
+
udata/translations/pt/LC_MESSAGES/udata.mo,sha256=Oby79oKMSdosDyLf7kcyA5sMrkPA23Z1D_2P1wXa5ig,13787
|
|
584
|
+
udata/translations/pt/LC_MESSAGES/udata.po,sha256=ITT0K4iN9LpznN-tKi8IxGl7u8TqTdB0V6L5aBiYq7U,52226
|
|
585
|
+
udata/translations/sr/LC_MESSAGES/udata.mo,sha256=dwPAcu-_30frD0_kOM63GCV6mtwHYmdY1l9qcFIRYwc,19782
|
|
586
|
+
udata/translations/sr/LC_MESSAGES/udata.po,sha256=4GtL30EXTZBQUS_7pvgkHCc5foY3eypGTSEK7ZFVHK0,57217
|
|
587
|
+
udata-14.7.3.dev4.dist-info/licenses/LICENSE,sha256=V8j_M8nAz8PvAOZQocyRDX7keai8UJ9skgmnwqETmdY,34520
|
|
588
|
+
udata-14.7.3.dev4.dist-info/METADATA,sha256=JfKuYS2NiI3tn5_HcCMWRAk9NCdTHl2SrVnAf2CYmsQ,4358
|
|
589
|
+
udata-14.7.3.dev4.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
590
|
+
udata-14.7.3.dev4.dist-info/entry_points.txt,sha256=XwrEzP-n_6CKnwTsrNHzyCTWbMwg2FkvxVVB686f_C0,476
|
|
591
|
+
udata-14.7.3.dev4.dist-info/top_level.txt,sha256=EF6CE6YSHd_og-8LCEA4q25ALUpWVe8D0okOLdMAE3A,6
|
|
592
|
+
udata-14.7.3.dev4.dist-info/RECORD,,
|