udata 12.0.2.dev15__py3-none-any.whl → 13.0.1.dev21__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.
- udata/api/__init__.py +1 -0
- udata/api_fields.py +10 -4
- udata/app.py +11 -10
- udata/auth/__init__.py +9 -10
- udata/auth/mails.py +137 -45
- udata/auth/views.py +5 -12
- udata/commands/__init__.py +2 -3
- udata/commands/info.py +1 -3
- udata/commands/tests/test_fixtures.py +6 -3
- udata/core/access_type/api.py +18 -0
- udata/core/access_type/constants.py +98 -0
- udata/core/access_type/models.py +44 -0
- udata/core/activity/models.py +1 -1
- udata/core/badges/models.py +1 -1
- udata/core/badges/tasks.py +35 -1
- udata/core/badges/tests/test_commands.py +2 -4
- udata/core/badges/tests/test_model.py +2 -2
- udata/core/badges/tests/test_tasks.py +55 -0
- udata/core/constants.py +1 -0
- udata/core/contact_point/models.py +8 -0
- udata/core/dataservices/api.py +3 -3
- udata/core/dataservices/apiv2.py +3 -1
- udata/core/dataservices/constants.py +0 -29
- udata/core/dataservices/models.py +44 -44
- udata/core/dataservices/rdf.py +2 -1
- udata/core/dataservices/search.py +5 -9
- udata/core/dataservices/tasks.py +33 -0
- udata/core/dataset/api_fields.py +11 -0
- udata/core/dataset/apiv2.py +11 -0
- udata/core/dataset/constants.py +0 -1
- udata/core/dataset/forms.py +29 -0
- udata/core/dataset/models.py +16 -4
- udata/core/dataset/rdf.py +2 -1
- udata/core/dataset/search.py +2 -2
- udata/core/dataset/tasks.py +86 -8
- udata/core/discussions/mails.py +63 -0
- udata/core/discussions/tasks.py +4 -18
- udata/core/metrics/__init__.py +0 -6
- udata/core/organization/api.py +3 -1
- udata/core/organization/mails.py +144 -0
- udata/core/organization/models.py +2 -1
- udata/core/organization/search.py +1 -1
- udata/core/organization/tasks.py +21 -49
- udata/core/pages/tests/test_api.py +0 -2
- udata/core/reuse/api.py +27 -1
- udata/core/reuse/mails.py +21 -0
- udata/core/reuse/models.py +10 -1
- udata/core/reuse/search.py +1 -1
- udata/core/reuse/tasks.py +2 -3
- udata/core/site/models.py +2 -6
- udata/core/spatial/tests/test_api.py +17 -20
- udata/core/spatial/tests/test_models.py +3 -3
- udata/core/user/mails.py +54 -0
- udata/core/user/models.py +2 -3
- udata/core/user/tasks.py +8 -23
- udata/core/user/tests/test_user_model.py +2 -6
- udata/entrypoints.py +0 -5
- udata/features/identicon/tests/test_backends.py +3 -13
- udata/forms/fields.py +3 -3
- udata/forms/widgets.py +2 -2
- udata/frontend/__init__.py +3 -32
- udata/harvest/actions.py +4 -9
- udata/harvest/api.py +5 -14
- udata/harvest/backends/__init__.py +20 -11
- udata/harvest/backends/base.py +2 -2
- udata/harvest/backends/ckan/harvesters.py +2 -1
- udata/harvest/backends/dcat.py +3 -0
- udata/harvest/backends/maaf.py +1 -0
- udata/harvest/commands.py +6 -4
- udata/harvest/forms.py +9 -6
- udata/harvest/tasks.py +3 -5
- udata/harvest/tests/ckan/test_ckan_backend.py +300 -337
- udata/harvest/tests/ckan/test_ckan_backend_errors.py +94 -99
- udata/harvest/tests/ckan/test_ckan_backend_filters.py +128 -122
- udata/harvest/tests/ckan/test_dkan_backend.py +39 -51
- udata/harvest/tests/dcat/datara--5a26b0f6-0ccf-46ad-ac58-734054b91977.rdf.xml +255 -0
- udata/harvest/tests/dcat/datara--f40c3860-7236-4b30-a141-23b8ae33f7b2.rdf.xml +289 -0
- udata/harvest/tests/factories.py +1 -1
- udata/harvest/tests/test_actions.py +11 -9
- udata/harvest/tests/test_api.py +4 -5
- udata/harvest/tests/test_base_backend.py +5 -4
- udata/harvest/tests/test_dcat_backend.py +50 -19
- udata/harvest/tests/test_models.py +2 -4
- udata/harvest/tests/test_notifications.py +2 -4
- udata/harvest/tests/test_tasks.py +2 -3
- udata/mail.py +90 -53
- udata/migrations/2025-01-05-dataservices-fields-changes.py +8 -14
- udata/migrations/2025-10-21-remove-ckan-harvest-modified-at.py +28 -0
- udata/migrations/2025-10-29-harvesters-sources-integrity.py +27 -0
- udata/mongo/taglist_field.py +3 -3
- udata/rdf.py +32 -15
- udata/sentry.py +3 -4
- udata/settings.py +7 -2
- udata/tags.py +5 -5
- udata/tasks.py +3 -3
- udata/templates/mail/message.html +65 -0
- udata/templates/mail/message.txt +16 -0
- udata/tests/__init__.py +40 -58
- udata/tests/api/__init__.py +87 -2
- udata/tests/api/test_activities_api.py +17 -23
- udata/tests/api/test_auth_api.py +2 -4
- udata/tests/api/test_contact_points.py +48 -54
- udata/tests/api/test_dataservices_api.py +57 -37
- udata/tests/api/test_datasets_api.py +146 -49
- udata/tests/api/test_me_api.py +4 -6
- udata/tests/api/test_organizations_api.py +19 -38
- udata/tests/api/test_reports_api.py +0 -4
- udata/tests/api/test_reuses_api.py +92 -19
- udata/tests/api/test_security_api.py +124 -0
- udata/tests/api/test_swagger.py +2 -3
- udata/tests/api/test_tags_api.py +6 -7
- udata/tests/api/test_transfer_api.py +0 -2
- udata/tests/api/test_user_api.py +8 -10
- udata/tests/apiv2/test_datasets.py +0 -4
- udata/tests/apiv2/test_me_api.py +0 -2
- udata/tests/apiv2/test_organizations.py +0 -2
- udata/tests/apiv2/test_swagger.py +2 -3
- udata/tests/apiv2/test_topics.py +0 -2
- udata/tests/cli/test_cli_base.py +14 -12
- udata/tests/cli/test_db_cli.py +51 -54
- udata/tests/contact_point/test_contact_point_models.py +2 -2
- udata/tests/dataservice/test_csv_adapter.py +2 -5
- udata/tests/dataservice/test_dataservice_rdf.py +8 -6
- udata/tests/dataservice/test_dataservice_tasks.py +36 -38
- udata/tests/dataset/test_csv_adapter.py +2 -5
- udata/tests/dataset/test_dataset_actions.py +2 -4
- udata/tests/dataset/test_dataset_commands.py +2 -4
- udata/tests/dataset/test_dataset_events.py +3 -3
- udata/tests/dataset/test_dataset_model.py +6 -7
- udata/tests/dataset/test_dataset_rdf.py +201 -12
- udata/tests/dataset/test_dataset_recommendations.py +2 -2
- udata/tests/dataset/test_dataset_tasks.py +66 -68
- udata/tests/dataset/test_resource_preview.py +39 -48
- udata/tests/dataset/test_transport_tasks.py +2 -2
- udata/tests/features/territories/__init__.py +0 -6
- udata/tests/features/territories/test_territories_api.py +25 -24
- udata/tests/forms/test_current_user_field.py +2 -2
- udata/tests/forms/test_dict_field.py +2 -4
- udata/tests/forms/test_extras_fields.py +2 -3
- udata/tests/forms/test_image_field.py +2 -2
- udata/tests/forms/test_model_field.py +2 -4
- udata/tests/forms/test_publish_as_field.py +2 -4
- udata/tests/forms/test_user_forms.py +26 -29
- udata/tests/frontend/test_auth.py +2 -3
- udata/tests/frontend/test_csv.py +5 -6
- udata/tests/frontend/test_error_handlers.py +2 -3
- udata/tests/frontend/test_hooks.py +5 -7
- udata/tests/frontend/test_markdown.py +3 -4
- udata/tests/helpers.py +2 -7
- udata/tests/metrics/test_metrics.py +52 -48
- udata/tests/metrics/test_tasks.py +154 -150
- udata/tests/organization/test_csv_adapter.py +2 -5
- udata/tests/organization/test_notifications.py +2 -4
- udata/tests/organization/test_organization_model.py +3 -4
- udata/tests/organization/test_organization_rdf.py +2 -8
- udata/tests/plugin.py +6 -110
- udata/tests/reuse/test_reuse_model.py +3 -4
- udata/tests/site/test_site_api.py +0 -2
- udata/tests/site/test_site_csv_exports.py +0 -2
- udata/tests/site/test_site_metrics.py +2 -4
- udata/tests/site/test_site_model.py +2 -2
- udata/tests/site/test_site_rdf.py +4 -7
- udata/tests/test_activity.py +3 -3
- udata/tests/test_api_fields.py +6 -9
- udata/tests/test_cors.py +0 -2
- udata/tests/test_dcat_commands.py +2 -3
- udata/tests/test_discussions.py +2 -7
- udata/tests/test_mail.py +150 -114
- udata/tests/test_migrations.py +413 -419
- udata/tests/test_model.py +10 -11
- udata/tests/test_notifications.py +2 -3
- udata/tests/test_owned.py +3 -3
- udata/tests/test_rdf.py +19 -15
- udata/tests/test_routing.py +5 -5
- udata/tests/test_storages.py +6 -5
- udata/tests/test_tags.py +2 -4
- udata/tests/test_topics.py +2 -4
- udata/tests/test_transfer.py +4 -5
- udata/tests/topic/test_topic_tasks.py +25 -27
- udata/tests/user/test_user_rdf.py +2 -8
- udata/tests/user/test_user_tasks.py +3 -5
- udata/tests/workers/test_jobs_commands.py +2 -2
- udata/tests/workers/test_tasks_routing.py +27 -27
- udata/translations/ar/LC_MESSAGES/udata.mo +0 -0
- udata/translations/ar/LC_MESSAGES/udata.po +369 -435
- udata/translations/de/LC_MESSAGES/udata.mo +0 -0
- udata/translations/de/LC_MESSAGES/udata.po +371 -437
- udata/translations/es/LC_MESSAGES/udata.mo +0 -0
- udata/translations/es/LC_MESSAGES/udata.po +369 -435
- udata/translations/fr/LC_MESSAGES/udata.mo +0 -0
- udata/translations/fr/LC_MESSAGES/udata.po +381 -447
- udata/translations/it/LC_MESSAGES/udata.mo +0 -0
- udata/translations/it/LC_MESSAGES/udata.po +371 -437
- udata/translations/pt/LC_MESSAGES/udata.mo +0 -0
- udata/translations/pt/LC_MESSAGES/udata.po +371 -437
- udata/translations/sr/LC_MESSAGES/udata.mo +0 -0
- udata/translations/sr/LC_MESSAGES/udata.po +372 -438
- udata/translations/udata.pot +379 -440
- udata/utils.py +14 -2
- {udata-12.0.2.dev15.dist-info → udata-13.0.1.dev21.dist-info}/METADATA +1 -2
- {udata-12.0.2.dev15.dist-info → udata-13.0.1.dev21.dist-info}/RECORD +205 -242
- udata/templates/mail/account_deleted.html +0 -5
- udata/templates/mail/account_deleted.txt +0 -6
- udata/templates/mail/account_inactivity.html +0 -40
- udata/templates/mail/account_inactivity.txt +0 -31
- udata/templates/mail/badge_added_association.html +0 -33
- udata/templates/mail/badge_added_association.txt +0 -11
- udata/templates/mail/badge_added_certified.html +0 -33
- udata/templates/mail/badge_added_certified.txt +0 -11
- udata/templates/mail/badge_added_company.html +0 -33
- udata/templates/mail/badge_added_company.txt +0 -11
- udata/templates/mail/badge_added_local_authority.html +0 -33
- udata/templates/mail/badge_added_local_authority.txt +0 -11
- udata/templates/mail/badge_added_public_service.html +0 -33
- udata/templates/mail/badge_added_public_service.txt +0 -11
- udata/templates/mail/discussion_closed.html +0 -47
- udata/templates/mail/discussion_closed.txt +0 -16
- udata/templates/mail/inactive_account_deleted.html +0 -5
- udata/templates/mail/inactive_account_deleted.txt +0 -6
- udata/templates/mail/membership_refused.html +0 -20
- udata/templates/mail/membership_refused.txt +0 -11
- udata/templates/mail/membership_request.html +0 -46
- udata/templates/mail/membership_request.txt +0 -12
- udata/templates/mail/new_discussion.html +0 -44
- udata/templates/mail/new_discussion.txt +0 -15
- udata/templates/mail/new_discussion_comment.html +0 -45
- udata/templates/mail/new_discussion_comment.txt +0 -16
- udata/templates/mail/new_member.html +0 -27
- udata/templates/mail/new_member.txt +0 -11
- udata/templates/mail/new_reuse.html +0 -37
- udata/templates/mail/new_reuse.txt +0 -9
- udata/templates/mail/test.html +0 -6
- udata/templates/mail/test.txt +0 -6
- udata/templates/mail/user_mail_card.html +0 -26
- udata/templates/security/email/base.html +0 -105
- udata/templates/security/email/base.txt +0 -6
- udata/templates/security/email/button.html +0 -3
- udata/templates/security/email/change_notice.html +0 -22
- udata/templates/security/email/change_notice.txt +0 -8
- udata/templates/security/email/confirmation_instructions.html +0 -20
- udata/templates/security/email/confirmation_instructions.txt +0 -7
- udata/templates/security/email/login_instructions.html +0 -19
- udata/templates/security/email/login_instructions.txt +0 -7
- udata/templates/security/email/reset_instructions.html +0 -24
- udata/templates/security/email/reset_instructions.txt +0 -9
- udata/templates/security/email/reset_notice.html +0 -11
- udata/templates/security/email/reset_notice.txt +0 -4
- udata/templates/security/email/welcome.html +0 -24
- udata/templates/security/email/welcome.txt +0 -9
- udata/templates/security/email/welcome_existing.html +0 -32
- udata/templates/security/email/welcome_existing.txt +0 -14
- udata/terms.md +0 -6
- udata/tests/frontend/__init__.py +0 -23
- udata/tests/metrics/conftest.py +0 -15
- {udata-12.0.2.dev15.dist-info → udata-13.0.1.dev21.dist-info}/WHEEL +0 -0
- {udata-12.0.2.dev15.dist-info → udata-13.0.1.dev21.dist-info}/entry_points.txt +0 -0
- {udata-12.0.2.dev15.dist-info → udata-13.0.1.dev21.dist-info}/licenses/LICENSE +0 -0
- {udata-12.0.2.dev15.dist-info → udata-13.0.1.dev21.dist-info}/top_level.txt +0 -0
|
@@ -1,61 +1,64 @@
|
|
|
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=6FxR3HX-kzkgM1U_d6GLSdvpzXBFWu4-hJEYAQYLP1o,36960
|
|
3
|
+
udata/app.py,sha256=_d5ynvixrBK9X24GSvLmxzGiWzD0-xdeugrvxw2qFQQ,9180
|
|
4
4
|
udata/cors.py,sha256=JttAogsNVSFWEV9-1L2kdbwwsNewn3KjgBErXReNwfc,3801
|
|
5
|
-
udata/entrypoints.py,sha256=
|
|
5
|
+
udata/entrypoints.py,sha256=eBocioLFcVsC8zQYkUq9b3baqn-NDyCbUbTV3GxuxQA,2433
|
|
6
6
|
udata/errors.py,sha256=E8W7b4PH7c5B85g_nsUMt8fHqMVpDFOZFkO6wMPl6bA,117
|
|
7
7
|
udata/factories.py,sha256=MoklZnU8iwNL25dm3JsoXhoQs1PQWSVYL1WvcUBtJqM,492
|
|
8
8
|
udata/i18n.py,sha256=bC9ajf66YgcYoJffvresLZLa32rb6NsY-JGMtFiVsG4,8163
|
|
9
|
-
udata/mail.py,sha256=
|
|
10
|
-
udata/rdf.py,sha256=
|
|
9
|
+
udata/mail.py,sha256=7bd_an28BLn_vDc50XEGfOxv0uju4p29cWmPvfbdzWE,3259
|
|
10
|
+
udata/rdf.py,sha256=re5EVyBwWlzqm46FqBXVpqSehQGZNZzgFZnMuNT6nwM,21745
|
|
11
11
|
udata/routing.py,sha256=Hnc1ktmKVS-RUHNKw2zYTft2HJ903FhjtlcenQ9igwI,8044
|
|
12
|
-
udata/sentry.py,sha256=
|
|
13
|
-
udata/settings.py,sha256=
|
|
12
|
+
udata/sentry.py,sha256=zfy02Aym0cjYh2jp2D8lu1c-k4vFNp2pqGn63sxQSuU,3173
|
|
13
|
+
udata/settings.py,sha256=eUoZhxB-yo8lA2diH01RCsNQ1Tsq96RkNHu1R0ikcD4,22303
|
|
14
14
|
udata/sitemap.py,sha256=oRRWoPI7ZsFFnUAOqGT1YuXFFKHBe8EcRnUCNHD7xjM,979
|
|
15
|
-
udata/tags.py,sha256=
|
|
16
|
-
udata/tasks.py,sha256=
|
|
17
|
-
udata/terms.md,sha256=nFx978tUQ3vTEv6POykXaZvcQ5e_gcvmO4ZgcfbSWXo,187
|
|
15
|
+
udata/tags.py,sha256=8R2gJieQtHgj7ZWIckMCkQu39fqzEUehxlYRfSD6bYQ,631
|
|
16
|
+
udata/tasks.py,sha256=FKuwIwJoBiS0zgrBw2eFL0xnSoig-gfZeCkWqDCf38A,5154
|
|
18
17
|
udata/tracking.py,sha256=WOcqA1RlHN8EPFuEc2kNau54mec4-pvi-wUFrMXevzg,345
|
|
19
18
|
udata/uris.py,sha256=u05ltyLv4ZolaNMbq58kcLizMXWC10mRpJFYzChUHJU,4440
|
|
20
|
-
udata/utils.py,sha256=
|
|
19
|
+
udata/utils.py,sha256=S8ViJSbQgzT3RYbcCW5JTkTjkI1hhifLinPXVuASvl4,13820
|
|
21
20
|
udata/worker.py,sha256=K-Wafye5-uXP4kQlffRKws2J9YbJ6m6n2QjcVsY8Nsg,118
|
|
22
21
|
udata/wsgi.py,sha256=MY8en9K9eDluvJYUxTdzqSDoYaDgCVZ69ZcUvxAvgqA,77
|
|
23
|
-
udata/api/__init__.py,sha256=
|
|
22
|
+
udata/api/__init__.py,sha256=EqVogvRRE5M6kQZdFccndVXmrJTZjDNM5oqxT-4JV24,11994
|
|
24
23
|
udata/api/commands.py,sha256=LJ4u-yhGij7QuH7OR92u3n7BEptqWMjDwMnG8pqdBxo,3523
|
|
25
24
|
udata/api/errors.py,sha256=P_UigBf6HAL73LbXKULagmp5Cuw-H1Ms6LmXxOmFIeg,211
|
|
26
25
|
udata/api/fields.py,sha256=w3qpMGntcOQa5bwFenZNJrnIoEZGZkEhRq0OwWFHsgc,3801
|
|
27
26
|
udata/api/oauth2.py,sha256=1cSdZjCYT6W0XNKkvKA7LN38WaanLRu2NPUCYZt-AEM,12583
|
|
28
27
|
udata/api/parsers.py,sha256=iQEwgMwdVz_gXlVZYaRCGrUFWvcf7_8uCIxw7Iw-hpw,1405
|
|
29
28
|
udata/api/signals.py,sha256=t8s7tF1KYeAygqbR4GdA76_UYvthAsyRbJaqsMmFsK4,162
|
|
30
|
-
udata/auth/__init__.py,sha256=
|
|
29
|
+
udata/auth/__init__.py,sha256=JSSMTpscp0neTvnjoxn2xUxiDvw9EXrA0Gwzs2H-DPw,2567
|
|
31
30
|
udata/auth/forms.py,sha256=80PtpAu8JwHuZUps7n9ga04Bxy6sslbhPbRnwdhURGI,4166
|
|
32
31
|
udata/auth/helpers.py,sha256=7Yr5k7ImdgqxVap4Bjq_ylTXmzq4NR0KgEOOhqSbaf4,267
|
|
33
|
-
udata/auth/mails.py,sha256
|
|
32
|
+
udata/auth/mails.py,sha256=-HbXbxSeertEfcpEo3FBG2JwZw-De3-annl-DiuS9PY,5101
|
|
34
33
|
udata/auth/password_validation.py,sha256=ODVdEsiXbtq_8ws4Yf3hs5Sq7jz-IDa1RxAm_WPIJnA,1806
|
|
35
34
|
udata/auth/proconnect.py,sha256=hsvQ71Hqy42NvwgYtcMniRXWax3Q7LX1INcmaS7gaIQ,5073
|
|
36
|
-
udata/auth/views.py,sha256=
|
|
37
|
-
udata/commands/__init__.py,sha256=
|
|
35
|
+
udata/auth/views.py,sha256=equjMWhf45Me5Bcwn_LCgl6YXlukhxH7Frh-1oj7dYY,7637
|
|
36
|
+
udata/commands/__init__.py,sha256=57C9OGCZODWA-71bHYISKbh0v-cuETftyymM4I91hEQ,7662
|
|
38
37
|
udata/commands/cache.py,sha256=bLdrf_fCWFYX9ULlL2ADsZRwijkI4pArsJxfx24OivM,341
|
|
39
38
|
udata/commands/db.py,sha256=OyVBcuSIqYqNywlZAi19F2yRJCAIdFKKyQ9H9alqbfI,20426
|
|
40
39
|
udata/commands/dcat.py,sha256=f6jT2AGZem-w1CaRH_ahfWB9A4oCDvjG13tPmBpeCqw,3910
|
|
41
40
|
udata/commands/fixtures.py,sha256=Mo_Q0tARawiUK3ZidWlJLrO8uvqnSYcg_OeWMzCwkvk,11376
|
|
42
41
|
udata/commands/images.py,sha256=0rVojLik5DYgJ6W4uNEfMP2g2QUU2V761tj3z6lo8no,2050
|
|
43
|
-
udata/commands/info.py,sha256=
|
|
42
|
+
udata/commands/info.py,sha256=Wpijuib-iUgEqwJpou7mMrk7pNSGzHJhbf0W73GjBe0,1456
|
|
44
43
|
udata/commands/init.py,sha256=8CpH8MklzPkpxczs43lFM5ZNrHCJRbUtzHapgYNHs7M,1520
|
|
45
44
|
udata/commands/purge.py,sha256=49_NQ-Qih2RTbXPY3ajYl00ZpFrLlu6vD-EBxRfspCs,1218
|
|
46
45
|
udata/commands/serve.py,sha256=dl1ktePSKPPGr-byGDoYQtPScgHibYH8YdV8MHnxVIM,2498
|
|
47
46
|
udata/commands/test.py,sha256=0snHTDolowQK-DmAKnhF_mBuDOBMApAbEc35GEiwH0M,893
|
|
48
47
|
udata/commands/worker.py,sha256=bjXQGCwkbZxkcxLMPA2Lr0nkNjXLpGNDMkkQXjwBLPI,3976
|
|
49
48
|
udata/commands/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
50
|
-
udata/commands/tests/test_fixtures.py,sha256=
|
|
49
|
+
udata/commands/tests/test_fixtures.py,sha256=1OIU-JprRYAS-Homrcy6g2eh0IQEp9-msUoT8LDU_rY,5765
|
|
51
50
|
udata/core/__init__.py,sha256=rPkzAmhURfV4x9v2iY_vOakNd75xseYW2jWNIoh-aRg,423
|
|
52
51
|
udata/core/captchetat.py,sha256=PNobWeJiYSgpSZQ9vJpuEvk5xSkAD5sgrWhKcVPbncg,2953
|
|
52
|
+
udata/core/constants.py,sha256=IV_eeDhWjHTLJIjCBJvAu6lfMKBBdisIPeYS8cPu_io,12
|
|
53
53
|
udata/core/csv.py,sha256=qeRtSQXPT5n5EoWZ3_XfnOTW7ITnEzzHctODPeX63Uk,8543
|
|
54
54
|
udata/core/linkable.py,sha256=8YuTzZo5Y36CVIYxESC-EPJ-zKsQTRbi4OIZTp-wWig,587
|
|
55
55
|
udata/core/owned.py,sha256=OQT7wdk7dAqGvWDiJRVkKJxerDc9_Io910nvLmfBAVI,5561
|
|
56
|
+
udata/core/access_type/api.py,sha256=SchqjVHqmw7hfEqoc668aJlBNmlo_IO7DsRRzrNjPDc,626
|
|
57
|
+
udata/core/access_type/constants.py,sha256=MPFt7Wxz1j5d-SFr8LuTx5tKx07DO76Nw3nJgsx1Wjk,4743
|
|
58
|
+
udata/core/access_type/models.py,sha256=bIqUM57SsrCnoQ7lai6yGM5sNEpMSCANrZAYW1iIunk,1500
|
|
56
59
|
udata/core/activity/__init__.py,sha256=dLTseBmVYbQzxB7OR7Dz0LtIwEjNQvgUSR7SwfInb68,399
|
|
57
60
|
udata/core/activity/api.py,sha256=dwdEkJxxwbQ2PsCSnv6fEE8Ps1FiJ4fEHpTog_gk4Rs,4291
|
|
58
|
-
udata/core/activity/models.py,sha256=
|
|
61
|
+
udata/core/activity/models.py,sha256=Fq0w988HjfCg9ii0jPV1NM2rGIumgDKACCSfbo2cC14,4924
|
|
59
62
|
udata/core/activity/signals.py,sha256=Io2A43as3yR-DZ5R3wzM_bTpn528pxWsZDUFZ9xtj2Y,191
|
|
60
63
|
udata/core/activity/tasks.py,sha256=F3PY12dnpT5Z8VuYfuOyDP6VPKPJmq1Sm4lSiPfmUCA,1498
|
|
61
64
|
udata/core/badges/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -64,53 +67,54 @@ udata/core/badges/commands.py,sha256=J6dKsoZmCbWM3HHOktPt-AHoMj-AhNPL0jxiV4yVlgw
|
|
|
64
67
|
udata/core/badges/factories.py,sha256=WLlEoPEYbT9HOwW-oWa8i4cgTKCa6-oOIp_Skaeyujo,304
|
|
65
68
|
udata/core/badges/fields.py,sha256=9UqTMhVIkv4K0-ih1dal7RuKcp2AyxWkN4_x1Ga16Zw,229
|
|
66
69
|
udata/core/badges/forms.py,sha256=ACTfmTJqwwEDRKMoXT4yV2oSq_fW_xpDE0vQLbntmOg,473
|
|
67
|
-
udata/core/badges/models.py,sha256=
|
|
70
|
+
udata/core/badges/models.py,sha256=l97W1AovI6ks7hVWrbOUnBUIDg4WuWLxAhKJ4Fiz9SE,3076
|
|
68
71
|
udata/core/badges/permissions.py,sha256=yY8vqonNJbQl4tUqpsJ-zhQqAMET6SGN37odrl3b2yI,550
|
|
69
72
|
udata/core/badges/signals.py,sha256=gD68zbdL-mM0epJp8MbkBhqcgqKd2_U-pEEUpwoII7w,237
|
|
70
|
-
udata/core/badges/tasks.py,sha256=
|
|
73
|
+
udata/core/badges/tasks.py,sha256=6ulyDIE6GmR1U9UtQWzGA6joupqRF8GntR6CWFifSzY,1398
|
|
71
74
|
udata/core/badges/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
72
|
-
udata/core/badges/tests/test_commands.py,sha256=
|
|
73
|
-
udata/core/badges/tests/test_model.py,sha256=
|
|
75
|
+
udata/core/badges/tests/test_commands.py,sha256=2eOtb6bbNcBI-xgvgspX2ygWmy1yP6VTTH8_42ZetPE,1295
|
|
76
|
+
udata/core/badges/tests/test_model.py,sha256=pTmGFPNKMvphFMOCYmVaqxCEBdsVAfUVcG5Bhmn3WzI,5409
|
|
77
|
+
udata/core/badges/tests/test_tasks.py,sha256=BhBoO1lciq-mADZxojk4Pqtj0BAZarLraeQbDIxascM,2203
|
|
74
78
|
udata/core/contact_point/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
75
79
|
udata/core/contact_point/api.py,sha256=vZI4Ue8hYi1n2aplQ80q_l50aQ4s1YKJwIABFw3lurg,2772
|
|
76
80
|
udata/core/contact_point/api_fields.py,sha256=qx_80yeRMS6rKSjQZOSGZk56le0t6l2s9_qJ5us8eZg,1396
|
|
77
81
|
udata/core/contact_point/factories.py,sha256=YoW2PKKaemYO4lIy5MwpH36uXM_J3rE-IhsqG8Dr9rw,428
|
|
78
82
|
udata/core/contact_point/forms.py,sha256=oBe1agSJFyx2QRgYzPRg2A7qVscaBTaKG4V-AyIwnF8,729
|
|
79
|
-
udata/core/contact_point/models.py,sha256=
|
|
83
|
+
udata/core/contact_point/models.py,sha256=4GKbf0C1r1id35t4eQ3RcZIEfS_9kb6WW4QaXqejwQc,1161
|
|
80
84
|
udata/core/dataservices/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
81
85
|
udata/core/dataservices/activities.py,sha256=wcYQCyYpKciCz99VqQqKti72a5Fyhc-AvDZBWdF0KUc,1763
|
|
82
|
-
udata/core/dataservices/api.py,sha256=
|
|
83
|
-
udata/core/dataservices/apiv2.py,sha256
|
|
84
|
-
udata/core/dataservices/constants.py,sha256=
|
|
86
|
+
udata/core/dataservices/api.py,sha256=LLRfuWxNddc8xC-ZNPYLCoBuYvWNNsp-dSis36iIRr0,9937
|
|
87
|
+
udata/core/dataservices/apiv2.py,sha256=-XfIjxx7LuzICtKvh1W8EbR8zWyrw13_nCKYiRgi98M,1312
|
|
88
|
+
udata/core/dataservices/constants.py,sha256=PlfoLJv1rqRSUHbCe80vGkfTl9B0hUYgCxrop_e5JUY,45
|
|
85
89
|
udata/core/dataservices/csv.py,sha256=HWI2JrN_Vuw0te9FHlJ6eyqcRcKHOKXuzg45D4Ti6F0,1106
|
|
86
90
|
udata/core/dataservices/factories.py,sha256=pKVoArNSCIbvGA-cWUc7vr8TmjYsUvOXzzcuUB5JyF4,964
|
|
87
|
-
udata/core/dataservices/models.py,sha256=
|
|
91
|
+
udata/core/dataservices/models.py,sha256=PPs5uvj5trf1dGYlP4n5FMsFbvm-JggI6VydeR3tZLM,12296
|
|
88
92
|
udata/core/dataservices/permissions.py,sha256=98zM_R4v2ZtRubflB7ajaVQz-DVc-pZBMgtKUYy34oI,169
|
|
89
|
-
udata/core/dataservices/rdf.py,sha256=
|
|
90
|
-
udata/core/dataservices/search.py,sha256=
|
|
91
|
-
udata/core/dataservices/tasks.py,sha256=
|
|
93
|
+
udata/core/dataservices/rdf.py,sha256=7OZfWxfivrCTdaPd3Jw32V5ywYoOWwZ-8qMsBZcPTRw,8081
|
|
94
|
+
udata/core/dataservices/search.py,sha256=9Ylg-veM6x1sv-xAugx-lHIHJSqiGAN60Ww8ZYikjzY,4708
|
|
95
|
+
udata/core/dataservices/tasks.py,sha256=uGN2HD7hQUrDyU74uWUdtLr87F98rwUZzSlUmu9M0kk,2456
|
|
92
96
|
udata/core/dataset/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
93
97
|
udata/core/dataset/actions.py,sha256=mX6xox0PiMrbcAPZ3VZsI26rfM-ciYfEXxN6sqqImKA,1222
|
|
94
98
|
udata/core/dataset/activities.py,sha256=eGxMUnC47YHxTgcls6igQ3qP7cYgwFtPfj0asCylGsI,3315
|
|
95
99
|
udata/core/dataset/api.py,sha256=o8Q7zrtR3ESbGO9aMa8FPGw3qBHujvV8Kt38axv5rsc,35534
|
|
96
|
-
udata/core/dataset/api_fields.py,sha256=
|
|
97
|
-
udata/core/dataset/apiv2.py,sha256=
|
|
100
|
+
udata/core/dataset/api_fields.py,sha256=tmC9zpsMUc3ZNsrYYRBbioGNo12YmTZ0lT3i14n7B0w,18591
|
|
101
|
+
udata/core/dataset/apiv2.py,sha256=6nI_R2Uv-PUl3fyI3EPsW8Ppk5GiXvKSdA3HYondiW0,21576
|
|
98
102
|
udata/core/dataset/commands.py,sha256=3mKSdJ-M7ggdG29AVn77C4ouZanbYoqkTaGQoBKOp3s,3471
|
|
99
|
-
udata/core/dataset/constants.py,sha256=
|
|
103
|
+
udata/core/dataset/constants.py,sha256=cwJ5v4DbSIarlMIqmUFQSAEyeV6v86NL3a0-2j0yHlw,6984
|
|
100
104
|
udata/core/dataset/csv.py,sha256=mNU5cuuNzrMgFF7Z0AKN8clsv458tpJHX1_pzAjpd-4,3653
|
|
101
105
|
udata/core/dataset/events.py,sha256=bSM0nFEX14r4JHc-bAM-7OOuD3JAxUIpw9GgXbOsUyw,4078
|
|
102
106
|
udata/core/dataset/exceptions.py,sha256=uKiayLSpSzsnLvClObS6hOO0qXEqvURKN7_w8eimQNU,498
|
|
103
107
|
udata/core/dataset/factories.py,sha256=tb18axsk8Tx5iUIqWM9IELdt-2Ryp2UN0-iY4fdea4U,9059
|
|
104
|
-
udata/core/dataset/forms.py,sha256=
|
|
108
|
+
udata/core/dataset/forms.py,sha256=q345go8G6qN1_YTX1Uhpl7M2kqF_44KA91OnFMcOGYk,8207
|
|
105
109
|
udata/core/dataset/metrics.py,sha256=s8Xs_rqRXfNWsErkiJTuRMG5o_cU5iSK8mUJFKVSc7w,1204
|
|
106
|
-
udata/core/dataset/models.py,sha256=
|
|
110
|
+
udata/core/dataset/models.py,sha256=wymXnrGWPbIc-n8mSYiWV0RuPdaNW3-SAC7Tb9PvwKA,42223
|
|
107
111
|
udata/core/dataset/permissions.py,sha256=zXQ6kU-Ni3Pl5tDtat-ZPupug9InsNeCN7xRLc2Vcrc,1097
|
|
108
112
|
udata/core/dataset/preview.py,sha256=uFEpK-p5nIAlY8hVOMhd7mtkwFt6C_PQRMNxPvAyoo4,839
|
|
109
|
-
udata/core/dataset/rdf.py,sha256=
|
|
113
|
+
udata/core/dataset/rdf.py,sha256=w3pY9kz2a8CqWJ-9cq1QTF5EFGFw1pZVv825V3zy8pQ,33028
|
|
110
114
|
udata/core/dataset/recommendations.py,sha256=DlGSLU8D0nW6Ds1rjBav1WxC-0VW5yOCjkO5w-ltFcI,7171
|
|
111
|
-
udata/core/dataset/search.py,sha256=
|
|
115
|
+
udata/core/dataset/search.py,sha256=UEYMPwj4kDkGlGaUmsYECh1c3_BjCt1RDcMLDGrV_dA,6019
|
|
112
116
|
udata/core/dataset/signals.py,sha256=WN4sV-lJlNsRkhcnhoy0SYJvCoYmK_5QFYZd1u-h4gs,161
|
|
113
|
-
udata/core/dataset/tasks.py,sha256=
|
|
117
|
+
udata/core/dataset/tasks.py,sha256=5QLL7iFDwaj1jcYfQvHDi9PUJri-TU9-WKS5yvXOHik,10924
|
|
114
118
|
udata/core/dataset/transport.py,sha256=ihCXirY1dZjOfXKbf9HRCJTfIOc75rM1McwbeGjsW6A,1296
|
|
115
119
|
udata/core/discussions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
116
120
|
udata/core/discussions/actions.py,sha256=kjdBLDIeu0yWTSxQGgOpN1WoxUqbMygn4SiBk_S9T5I,1051
|
|
@@ -119,12 +123,13 @@ udata/core/discussions/constants.py,sha256=8crl2Lmkv9dmJe4KACM0JJcpoHePmGtmvI6ix
|
|
|
119
123
|
udata/core/discussions/csv.py,sha256=vIuMPJBrAOQmQ4P9SSY1wun0Av1qOE7i0TlQi-Vy7iU,772
|
|
120
124
|
udata/core/discussions/factories.py,sha256=CgQaUmmyDu90XtyBsqXVa-TmZMrN7Dwuu1Cnr5wNrVc,350
|
|
121
125
|
udata/core/discussions/forms.py,sha256=sR8tFBIBh-Rbx9VPzFzG1N54QY1y7UrdeboQ_60gXXQ,1265
|
|
126
|
+
udata/core/discussions/mails.py,sha256=FOov-8LIpFyv3WbNi5ivEUUowudMVGsfPgEijON_R_U,2608
|
|
122
127
|
udata/core/discussions/metrics.py,sha256=WMalLO9GEHXlqE2WbZX-HQUpvte6cRwuHuoL96QwWSg,354
|
|
123
128
|
udata/core/discussions/models.py,sha256=NrP_MjgTRMMJpa0d_vL28ElJUQ-J5l0Cs3qHxCsHzds,6202
|
|
124
129
|
udata/core/discussions/notifications.py,sha256=5MuoZDPmmvkloZ3i8I6TELgE1KXZ_cB9QiDerFBD9dM,1052
|
|
125
130
|
udata/core/discussions/permissions.py,sha256=VY2_PEsazz1fBgCX9-K-_spRgxUoNY4HuNDShqZjw6E,1583
|
|
126
131
|
udata/core/discussions/signals.py,sha256=tJ83RJIsBAny08Q6IDwehE6lDDRf6ynIFCl0WqnayoU,543
|
|
127
|
-
udata/core/discussions/tasks.py,sha256=
|
|
132
|
+
udata/core/discussions/tasks.py,sha256=V5cB9eaHpi6eJCyYutfmfvwpSfp6MwrTlMyC-SyozDo,2239
|
|
128
133
|
udata/core/followers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
129
134
|
udata/core/followers/api.py,sha256=oCkEl_NUuizkssowlUyzCNK5IUq8GjNLVz1HN4HVqlg,2904
|
|
130
135
|
udata/core/followers/metrics.py,sha256=nKgoiM2Gu-XHrgEf9duW1My66zFSKbmw25BGqo5wWtY,190
|
|
@@ -137,7 +142,7 @@ udata/core/jobs/api.py,sha256=Cml8mTEXFPw9SBd-1sYBH50YrVv4nvxo7R1o5VpPXE0,5959
|
|
|
137
142
|
udata/core/jobs/commands.py,sha256=85P5hDPdKMJzV_xbobNT8nqEW71HchPjTUJ-1u5wddE,4402
|
|
138
143
|
udata/core/jobs/forms.py,sha256=B-B6jXHZsYV-PWAkD8DLoOlh6trv4l1hGZ4HOPm-PD4,1495
|
|
139
144
|
udata/core/jobs/models.py,sha256=xK8T3FCmhtERNbZmh1Tq_ZTO6vojM172tTc0oplNoQ0,1358
|
|
140
|
-
udata/core/metrics/__init__.py,sha256=
|
|
145
|
+
udata/core/metrics/__init__.py,sha256=lNvQZS4j-PTfN7kYOwaIW3qgxH2eSMdFc2zSYVqxHP0,329
|
|
141
146
|
udata/core/metrics/commands.py,sha256=JmEBsjmvQl0W32g4m_n7OdtB3zcAvcMCvlzJa0DzZJ4,6191
|
|
142
147
|
udata/core/metrics/helpers.py,sha256=DRefxJfpePuDcWmV7b-gaNE6tjEcttQaWmKpYNBSECM,4370
|
|
143
148
|
udata/core/metrics/models.py,sha256=Sv2Qhmqdug_atfDc_pyOJCb-8ACpvU-_0FFVPVOFDGk,353
|
|
@@ -145,7 +150,7 @@ udata/core/metrics/signals.py,sha256=9mdJW__gR2GJT3huBr6HN2SDhKYJRgNbW9dnh48cAnU
|
|
|
145
150
|
udata/core/metrics/tasks.py,sha256=5hVSvBFF2-k_MZGn1XrzEWLgRp3TlrZJtPjX1Y_niS4,4963
|
|
146
151
|
udata/core/organization/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
147
152
|
udata/core/organization/activities.py,sha256=Mw4-R8Q6G745IZnCDgrj7h2ax2crGYRhZtcewSK6_Ok,1213
|
|
148
|
-
udata/core/organization/api.py,sha256=
|
|
153
|
+
udata/core/organization/api.py,sha256=RqbnJuwZrkQwEIfhuZf5KV7EmRKXhun5PXKia-8PhM4,22393
|
|
149
154
|
udata/core/organization/api_fields.py,sha256=UlDYS62Wt1capSO0rYf6-m_rza3lCmpTuA93R-sV9w8,7776
|
|
150
155
|
udata/core/organization/apiv2.py,sha256=fLMN5T7s8yF4u7c1WWHXMqQAlyH2OCSyAfmleiFlf7M,3037
|
|
151
156
|
udata/core/organization/commands.py,sha256=DsRAtFDZvTciYNsUWumQWdn0jnNmKW-PwfIHUUZoBb8,1591
|
|
@@ -153,19 +158,20 @@ udata/core/organization/constants.py,sha256=fncNtA-vFrRM22K1Wo6iYu9DQZjzknYxH6TI
|
|
|
153
158
|
udata/core/organization/csv.py,sha256=zdLeB4La-TeOEELg0WI3FryoQWnoAYit_DssInVSHRI,979
|
|
154
159
|
udata/core/organization/factories.py,sha256=g8ubBcz79xbjvpunZ02IDOakFg1KE6cXjNkE9vFyFAc,624
|
|
155
160
|
udata/core/organization/forms.py,sha256=tscDb1_yOpbTx3ahl8ttA7oDkX9jIyzLc4gOf6WbN3s,3552
|
|
161
|
+
udata/core/organization/mails.py,sha256=rFkVunqvq22-CvKMkXfE3yUEAV8GchVYR6PRUqx_hc4,4945
|
|
156
162
|
udata/core/organization/metrics.py,sha256=CEhkZLUufDyWi2XyizMoXkuddz7xDJvmdkPTweqfWyI,1144
|
|
157
|
-
udata/core/organization/models.py,sha256=
|
|
163
|
+
udata/core/organization/models.py,sha256=bYwoCbSmXxUDUZQs-hrSKX-6YiKO-1P_-s27ofgM_Ng,11004
|
|
158
164
|
udata/core/organization/notifications.py,sha256=i_36-l2y7fOGmnBmr5NDWmGGmrGRaCWbU-6XS4c2wQs,917
|
|
159
165
|
udata/core/organization/permissions.py,sha256=GD-9TMtRppVCPaC1ysXYrONvGJV-ArzAOXm2XMKf9yo,1256
|
|
160
166
|
udata/core/organization/rdf.py,sha256=KYJXTE5Yxhp3Cb7GZsRT1BY3Bd7rcRfwFSK9dWG2xQ4,1807
|
|
161
|
-
udata/core/organization/search.py,sha256=
|
|
167
|
+
udata/core/organization/search.py,sha256=VDBbCfGykgYqgs5IHWg_scadVkP0WQKTEzRfF01XOGc,2241
|
|
162
168
|
udata/core/organization/signals.py,sha256=Ft1MBU9S41uxFN-rUrKHhiwedR1OYGv-ncuroKg8orY,488
|
|
163
|
-
udata/core/organization/tasks.py,sha256=
|
|
169
|
+
udata/core/organization/tasks.py,sha256=PD-q7kAAUrMqGuXizYPltfTMYvNNc2Ce6XI9qSkVg2Q,4433
|
|
164
170
|
udata/core/pages/api.py,sha256=lecERyPBHIVpkVi7NGSI5WwIzIgcZ9l6tRvTVki6fZM,1474
|
|
165
171
|
udata/core/pages/factories.py,sha256=YCCtfh4oXCcH8LZc3u-0A_ajx5XWrZLVEmy23AKpS2s,155
|
|
166
172
|
udata/core/pages/models.py,sha256=oRZFNsyHnsqFBXOJCgJah5MKL29Nh9Wm4FELtwsWuMM,2612
|
|
167
173
|
udata/core/pages/permissions.py,sha256=TK3DKBxacwhn6gLc70JzUN9OsVwInxTvz6GWxrKBeEY,155
|
|
168
|
-
udata/core/pages/tests/test_api.py,sha256=
|
|
174
|
+
udata/core/pages/tests/test_api.py,sha256=w60aJs83NX-zOPsCPck9VSTlch3U3FKJio1dw18seis,3271
|
|
169
175
|
udata/core/post/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
170
176
|
udata/core/post/api.py,sha256=ECWSjctZqexRjUHqpaTRPatXMZu38pTDO3jKcPiBTRQ,7250
|
|
171
177
|
udata/core/post/constants.py,sha256=W-xjOTv0lorD-RCV0YGtK0cT_RwgYmfrC8Ff6ywH7bM,215
|
|
@@ -181,23 +187,24 @@ udata/core/reports/constants.py,sha256=LRZSX3unyqZeB4yQjK3ws_hGbJcXYk4bu1Rhnhi5D
|
|
|
181
187
|
udata/core/reports/models.py,sha256=xT6zSXJx8vG0c8cu4VWUQvENUwajusFlPQmenslR3lQ,2662
|
|
182
188
|
udata/core/reuse/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
183
189
|
udata/core/reuse/activities.py,sha256=5D7cV-hGZnzHsp8hohZqqgK3RSGQpfAqJ_Wfq_AYfM8,1420
|
|
184
|
-
udata/core/reuse/api.py,sha256=
|
|
190
|
+
udata/core/reuse/api.py,sha256=5-wd-xXlRli1tjKw0AMxqHIWNdgK7QsBWm6AGHNE3Ps,13476
|
|
185
191
|
udata/core/reuse/api_fields.py,sha256=ccym6v9Ap68PlHZmIMMtHQFnEyV7Gbxrfdw0b6rj51A,1232
|
|
186
192
|
udata/core/reuse/apiv2.py,sha256=mgvL1ZBts872zNSo0Wh3AkNAh2ldzP9yQkRY3WfzGPM,944
|
|
187
193
|
udata/core/reuse/constants.py,sha256=JgDBrjOKSt9q0auv9rjzbGsch83H-Oi8YXAKeI5hO4o,1215
|
|
188
194
|
udata/core/reuse/csv.py,sha256=c9t9nyAqjx-QNyeku6RpcC8kSdlQ12wxzXCJHUj6GBY,899
|
|
189
195
|
udata/core/reuse/factories.py,sha256=GrQqYTIvwQrwkvJrbTr38-2faFW_PC99gn3yOVpgFec,850
|
|
196
|
+
udata/core/reuse/mails.py,sha256=gICTjgn3p23tgltjO_RjHw3bio3o1j5zXAgW99LBD8Y,798
|
|
190
197
|
udata/core/reuse/metrics.py,sha256=sVh7BlW3OKRvFDHFyD4pPUV91jOOhj8qeWbBkLPn5Gg,176
|
|
191
|
-
udata/core/reuse/models.py,sha256=
|
|
198
|
+
udata/core/reuse/models.py,sha256=rGQsrb0CK46Yv8aHkrAcqMil4LIfC94V_fdM4VeA5_o,9179
|
|
192
199
|
udata/core/reuse/permissions.py,sha256=j-ancS7gvLl5vJu0TNYqpYD-2So-UzoDE4IHLxRoMGg,621
|
|
193
|
-
udata/core/reuse/search.py,sha256=
|
|
200
|
+
udata/core/reuse/search.py,sha256=HGsl8j1kTR0y2kGGa_q_XTD1qWo8y6RL_RDRMRjiIOk,3082
|
|
194
201
|
udata/core/reuse/signals.py,sha256=nDrEUpYKN0AdYiEbrR0z3nzXzjaRcD8SAMutwIDsQPM,155
|
|
195
|
-
udata/core/reuse/tasks.py,sha256=
|
|
202
|
+
udata/core/reuse/tasks.py,sha256=ZM2mNhek_z1vRErXsyM5yq4F-DF2IjO8nTzDB2eDLXo,1612
|
|
196
203
|
udata/core/site/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
197
204
|
udata/core/site/api.py,sha256=GhSZfdv0rQgtmqG3h0uGcXrzbX9Zx3GuypgaxcAClsg,8139
|
|
198
205
|
udata/core/site/factories.py,sha256=O0nLFmjrFyemzcs-YwNukq5nqd383KBGrgL5bOQsGbA,378
|
|
199
206
|
udata/core/site/forms.py,sha256=avEZ4rJhibF7sKexqMlKt1qMFiUHNrmJGKjZqcAyjrc,459
|
|
200
|
-
udata/core/site/models.py,sha256=
|
|
207
|
+
udata/core/site/models.py,sha256=3RUZJfEo7X-5jLcfAmGQ53wjFqXzxG68n0aTNivrFNM,8248
|
|
201
208
|
udata/core/site/rdf.py,sha256=CT4TIu9DMiYHaNugW873UAJsQLBtzqQIr_a24CMyEJ8,2037
|
|
202
209
|
udata/core/spam/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
203
210
|
udata/core/spam/api.py,sha256=eqmDB4_VF5EM92675FqFmk4Be5TAnu87dmSVtgXKF4A,1740
|
|
@@ -219,10 +226,10 @@ udata/core/spatial/models.py,sha256=QENGI1z8ovQaqI9zNx5WCKcfXOdVmpVw8bRebgEfM8M,
|
|
|
219
226
|
udata/core/spatial/tasks.py,sha256=1WVZkmgTbgrJ2-IF479hBzeO_5xtqflTNxHh7nzwnIw,229
|
|
220
227
|
udata/core/spatial/translations.py,sha256=eOK0RsaUR2Z77li6Co2E4_XYjG_Mmy8xHgBFoD-3U-E,527
|
|
221
228
|
udata/core/spatial/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
222
|
-
udata/core/spatial/tests/test_api.py,sha256=
|
|
229
|
+
udata/core/spatial/tests/test_api.py,sha256=e814Xmwe8tJgmVcPwiCLGDs3FAQdMaHn0f8vg6PrPLY,13289
|
|
223
230
|
udata/core/spatial/tests/test_fields.py,sha256=UOUE9NdQeoXaR_pWvoNQnZY2XYJBAFmU9AIFJ99Tf-g,9782
|
|
224
231
|
udata/core/spatial/tests/test_geoid.py,sha256=5-NhtvrOs-eoN5f18G6uyI23OB2nc8wQz9xQl3pieXY,1533
|
|
225
|
-
udata/core/spatial/tests/test_models.py,sha256=
|
|
232
|
+
udata/core/spatial/tests/test_models.py,sha256=ckFBRrVl6zCKk86wuUKAZlkYsaaqGoBqFP1u3PiQkWs,903
|
|
226
233
|
udata/core/storages/__init__.py,sha256=uX2PECcYjZYBkk_xaJNxxSPUYTw0CZTKLx1rdqhi7MI,1200
|
|
227
234
|
udata/core/storages/api.py,sha256=2-ZFdiV0GzMxDVcMXOMmrmbVATRFUV-3c8px_4mQYFw,5142
|
|
228
235
|
udata/core/storages/tasks.py,sha256=9Ug8TaF3j-9ukbfSmdStIipLtq3I755EJmCLQ5wyVWM,788
|
|
@@ -252,12 +259,13 @@ udata/core/user/commands.py,sha256=8dyowvylgYqdScgzVGgr61MWLshlS6-UopZGAMvp4zA,3
|
|
|
252
259
|
udata/core/user/constants.py,sha256=aTluhTR2RGZ_cdG7-mkEoT5Ndbg8BNUwwzCOld0aLMY,77
|
|
253
260
|
udata/core/user/factories.py,sha256=kkwaojciLzfuAOeRnL1E7XCcGPo8waAal_G2eeuVc0k,825
|
|
254
261
|
udata/core/user/forms.py,sha256=yotqZozH9ViKuNI8SwdKocDEi7NXVs_XUMpdr_bIe5s,966
|
|
262
|
+
udata/core/user/mails.py,sha256=JPoPdjt38T3QECR7g7dqc5MbWxm1wwCNUYIO1I4VSaI,1945
|
|
255
263
|
udata/core/user/metrics.py,sha256=J4zgjcAudQAi6NUIb47o2Pfe0xZ_Eu17ta9HjhE-HvE,1274
|
|
256
|
-
udata/core/user/models.py,sha256=
|
|
264
|
+
udata/core/user/models.py,sha256=ABBmG13JAyOq5maIqPXAeZMaf8j-WQLgQI_G4Eh6W94,11246
|
|
257
265
|
udata/core/user/permissions.py,sha256=Wbd8bLqSjqp9RHJ6ffLBj74L-LECcAhWazuw4Hq-2Gk,435
|
|
258
266
|
udata/core/user/rdf.py,sha256=_tN8KlJHt8mYwJhLKoULhmZ3sapUGmX1Sl5W8uawxeU,718
|
|
259
|
-
udata/core/user/tasks.py,sha256=
|
|
260
|
-
udata/core/user/tests/test_user_model.py,sha256=
|
|
267
|
+
udata/core/user/tasks.py,sha256=iaL997_aYTvHSXekHWWHuYb6a1WNQkc48dtfOdE_4SI,2924
|
|
268
|
+
udata/core/user/tests/test_user_model.py,sha256=UuCAePsd5F5fsD-TqE0b9uwpY9hG7q8C7Iv0d9ZzMtI,2835
|
|
261
269
|
udata/db/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
262
270
|
udata/db/tasks.py,sha256=6PDnvvrE0lmQ3ss7sDLu8MUYHxUWW17NGgHCq9UnraY,151
|
|
263
271
|
udata/event/__init__.py,sha256=2G9g1C_dp3yap4ehJE950Bnl1uQtD00TsvTFZhvhRS8,41
|
|
@@ -267,7 +275,7 @@ udata/features/identicon/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZ
|
|
|
267
275
|
udata/features/identicon/api.py,sha256=R2ffdhP2QH3XIGhZMFQZpmhl83NOO66InZ3wbvk3xzs,376
|
|
268
276
|
udata/features/identicon/backends.py,sha256=tYQq7Ara6-GxJShi2Ynlra9hYLj4J62rlC7McRHVol4,3691
|
|
269
277
|
udata/features/identicon/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
270
|
-
udata/features/identicon/tests/test_backends.py,sha256=
|
|
278
|
+
udata/features/identicon/tests/test_backends.py,sha256=009gkQJgxD-UvZGnVKrcXPW6KMq0TnR4raAFasqPRLY,655
|
|
271
279
|
udata/features/notifications/__init__.py,sha256=R4-dHlQxCsLNWXhV05UnPiVuIpKEpV9KBboWnrdNSOo,352
|
|
272
280
|
udata/features/notifications/actions.py,sha256=i8KvFbsC_JJnPOXSitfdNIdK6ABy8G88E5iwLiGYOyw,759
|
|
273
281
|
udata/features/notifications/api.py,sha256=FEiFg-8L_ZxwUD5TvA5xPIUPV4PQFSd0XKyUuhsuGlc,932
|
|
@@ -291,49 +299,49 @@ udata/flask_mongoengine/model_form.py,sha256=LI6eqd2zykhron29U280mjt0uZlBpM8GP9N
|
|
|
291
299
|
udata/flask_mongoengine/pagination.py,sha256=AmKZqC6Pe4K8Y2TF1kj5O4gM5_m1NVthtJQVvoayX2M,5592
|
|
292
300
|
udata/flask_mongoengine/wtf.py,sha256=BU2ahk6xkUmM18oaUf539RXFTP04O8S2CvEniYGJ1co,1226
|
|
293
301
|
udata/forms/__init__.py,sha256=WdBOu40HijJi0A6kjUkuT-WEP2YNW3k_ftSzQS_Zl9Y,789
|
|
294
|
-
udata/forms/fields.py,sha256=
|
|
302
|
+
udata/forms/fields.py,sha256=7zPxvgvUG4X3Yt1nm1NvksY9RcgUtNsgPTHiZ8J_rVY,30042
|
|
295
303
|
udata/forms/validators.py,sha256=CRgmB6oow5O8LDR45LajlJJ9HX3RBCI08fapoWMH1vo,2727
|
|
296
|
-
udata/forms/widgets.py,sha256=
|
|
297
|
-
udata/frontend/__init__.py,sha256=
|
|
304
|
+
udata/forms/widgets.py,sha256=7qymIpynrQmNlA8hrkcF0RB8eLwOJFkjca_KOZ0zqtE,1332
|
|
305
|
+
udata/frontend/__init__.py,sha256=eJ7WHEWwwxLqPGlxtJbTcZs4g3IhZjn9nfpv9a9bVfQ,5597
|
|
298
306
|
udata/frontend/markdown.py,sha256=5kNMVOMLlGvJfpIVONaQv4JT1pi6qWNcnb_BVV_VNJQ,4324
|
|
299
307
|
udata/harvest/__init__.py,sha256=C4y5w4vGb_F9Opy62lzV3eHo4DkNyRgPCq-wsarPXiQ,28
|
|
300
|
-
udata/harvest/actions.py,sha256=
|
|
301
|
-
udata/harvest/api.py,sha256=
|
|
302
|
-
udata/harvest/commands.py,sha256=
|
|
308
|
+
udata/harvest/actions.py,sha256=ikTllRpJIgu-BFQd35PAfHtYfCI0nYHeLdp7-UcgHgQ,9598
|
|
309
|
+
udata/harvest/api.py,sha256=807CONm74QHECHcywNxsp_dFh8jOkJU9p9cTtdgJGuE,16525
|
|
310
|
+
udata/harvest/commands.py,sha256=tGbGTygiEQ9UFQo3zfnNf7rtPaOZLrIYpmXkSQUAmAQ,5077
|
|
303
311
|
udata/harvest/csv.py,sha256=TcHWJLiEbK8ouwGGYZy9US4nMxfWk1Ydw8sMlPit1tk,392
|
|
304
312
|
udata/harvest/exceptions.py,sha256=-sTbXece_YQstXlnpSZX5EJGTONYZ4J2RgByG0WlqAI,302
|
|
305
313
|
udata/harvest/filters.py,sha256=7wEZ_JOFzYe9-3QmMuHo8jtFsOAnped1se0JrAloySU,2616
|
|
306
|
-
udata/harvest/forms.py,sha256=
|
|
314
|
+
udata/harvest/forms.py,sha256=vLyIzsl4nXvPpeJrtnOoRyuvZW8-Hu5O6NISYpg2jrI,4327
|
|
307
315
|
udata/harvest/models.py,sha256=Z-94kUMbT5rDcL5MEV2njw5bssFPKxiW2o9C3xoVnoE,7016
|
|
308
316
|
udata/harvest/notifications.py,sha256=8WkHtD68v6rfZC6jCmAuuuRp4NN6q71ZkksZU5m9oJc,867
|
|
309
317
|
udata/harvest/signals.py,sha256=3AhFHMPIFH5vz01NX5ycR_RWH14MXFWnCT6__LSa-QI,1338
|
|
310
|
-
udata/harvest/tasks.py,sha256=
|
|
311
|
-
udata/harvest/backends/__init__.py,sha256=
|
|
312
|
-
udata/harvest/backends/base.py,sha256=
|
|
313
|
-
udata/harvest/backends/dcat.py,sha256=
|
|
314
|
-
udata/harvest/backends/maaf.py,sha256=
|
|
318
|
+
udata/harvest/tasks.py,sha256=OMc4Jw_M_UgOokxj9IfRKqEqjwi9t9Eih79X_uzr5FA,1676
|
|
319
|
+
udata/harvest/backends/__init__.py,sha256=jcofWRSyEkA4Fu_8IrS4rzVf0aeBE0-8Oqg8Byoghxo,888
|
|
320
|
+
udata/harvest/backends/base.py,sha256=CghIvDkmNz8n5m8WoVQeaWGjdbhtFdNOhsn3-QZErFA,18200
|
|
321
|
+
udata/harvest/backends/dcat.py,sha256=owVrY-WXBHWlZRNT_iY56y4tO-9ezFqwzsKP9FbahAs,19499
|
|
322
|
+
udata/harvest/backends/maaf.py,sha256=SN_831VeWphR63EC9v0n94bRH-9B5htTE70HSsVfzyc,8373
|
|
315
323
|
udata/harvest/backends/maaf.xsd,sha256=vEyG8Vqw7Yn_acjRdXjqUJgxOj4pv8bibep-FX-f3BQ,18322
|
|
316
324
|
udata/harvest/backends/ckan/__init__.py,sha256=JE7Qa7kX7Yd8OvmJnAO_NupZe0tqYyhhkgJ-iGNxX64,35
|
|
317
|
-
udata/harvest/backends/ckan/harvesters.py,sha256=
|
|
325
|
+
udata/harvest/backends/ckan/harvesters.py,sha256=gXiQJuj5QpOvY7ddmpEwuW7kPaAZMM_DQ9OHfOo2bRA,10632
|
|
318
326
|
udata/harvest/backends/ckan/schemas/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
319
327
|
udata/harvest/backends/ckan/schemas/ckan.py,sha256=59VQoIxPBb5vOHFzzMtdnPcxHL4qNOTkPYa4cqn-7xQ,2353
|
|
320
328
|
udata/harvest/backends/ckan/schemas/dkan.py,sha256=RyQGPEaKqnunIrr9yApcz7WEfgye0IT1bV85wa2E8Lc,2774
|
|
321
329
|
udata/harvest/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
322
|
-
udata/harvest/tests/factories.py,sha256=
|
|
330
|
+
udata/harvest/tests/factories.py,sha256=_V_RICVo33rhnZd5Kk7eZrxuIYHSBi8iWWGHFMLUdhU,2292
|
|
323
331
|
udata/harvest/tests/person.jsonld,sha256=I7Ynh-PQlNeD51I1LrCgYOEjhL-WBeb65xzIE_sHuAA,3230
|
|
324
|
-
udata/harvest/tests/test_actions.py,sha256=
|
|
325
|
-
udata/harvest/tests/test_api.py,sha256=
|
|
326
|
-
udata/harvest/tests/test_base_backend.py,sha256=
|
|
327
|
-
udata/harvest/tests/test_dcat_backend.py,sha256=
|
|
332
|
+
udata/harvest/tests/test_actions.py,sha256=26_cH1B_J2DIVrBaHPhKIz0DLB1znMQztk3Dq5tRWVU,26158
|
|
333
|
+
udata/harvest/tests/test_api.py,sha256=Wtj0jO3jOPZxliAk1V87xUsZUxz8239HJ9N6yb6shFQ,21684
|
|
334
|
+
udata/harvest/tests/test_base_backend.py,sha256=yvAxO5XFnEpibVi9gUYbqhwdMupJbuwjfajwGqC19OA,19312
|
|
335
|
+
udata/harvest/tests/test_dcat_backend.py,sha256=0yoIw-I1nFJr36FEtintYMWBJOJYYeGTzXEStdgZKb0,53449
|
|
328
336
|
udata/harvest/tests/test_filters.py,sha256=PT2qopEIoXsqi8MsNDRuhNH7jGXiQo8r0uJrCOUd4aM,2465
|
|
329
|
-
udata/harvest/tests/test_models.py,sha256=
|
|
330
|
-
udata/harvest/tests/test_notifications.py,sha256=
|
|
331
|
-
udata/harvest/tests/test_tasks.py,sha256=
|
|
337
|
+
udata/harvest/tests/test_models.py,sha256=TIpNRx3gjwI5wznr_y2Ad5fdESfhqhPoOOOSBfvyfQI,850
|
|
338
|
+
udata/harvest/tests/test_notifications.py,sha256=i4TZo-hFN6aIi1c9MouqS-ElihccBnqKb_Ed0QQWgyo,835
|
|
339
|
+
udata/harvest/tests/test_tasks.py,sha256=rPyrqfQllcMZYeRmBg-a1zsY7ofWQvJmqyQ_MI2oPVo,701
|
|
332
340
|
udata/harvest/tests/ckan/conftest.py,sha256=SNIRJ7uh6ssIB56mwIdDgteHKUY040yX4gzaGMREjJw,1893
|
|
333
|
-
udata/harvest/tests/ckan/test_ckan_backend.py,sha256=
|
|
334
|
-
udata/harvest/tests/ckan/test_ckan_backend_errors.py,sha256=
|
|
335
|
-
udata/harvest/tests/ckan/test_ckan_backend_filters.py,sha256=
|
|
336
|
-
udata/harvest/tests/ckan/test_dkan_backend.py,sha256=
|
|
341
|
+
udata/harvest/tests/ckan/test_ckan_backend.py,sha256=TQ7GYXxjcBWaVHzADmVkdjM03PeIs44B3NUEHM0M5dY,22238
|
|
342
|
+
udata/harvest/tests/ckan/test_ckan_backend_errors.py,sha256=f1bMtFmHDTD1tX52I7TzadVWV_ttL6sIjtxqLsefgT4,4296
|
|
343
|
+
udata/harvest/tests/ckan/test_ckan_backend_filters.py,sha256=Ck-A-oLePMkC3yuRosCl1YoijOtc4yNurep9HcEOG5w,4298
|
|
344
|
+
udata/harvest/tests/ckan/test_dkan_backend.py,sha256=WDUNcbhvfNXeSquALQmcv33tRo1OLMRWygmaL5gJQPs,2013
|
|
337
345
|
udata/harvest/tests/ckan/data/dkan-french-w-license.json,sha256=ud6wxyV3uvPSouY0-QB0qf88djamFW_WR6CbZzDCacs,7905
|
|
338
346
|
udata/harvest/tests/csw_dcat/XSLT.xml,sha256=vnJF2rom7oPVpzI9jwzwG6ek1TDXTY8GfbuQq_3vFxs,180475
|
|
339
347
|
udata/harvest/tests/csw_dcat/geo-ide_single-dataset.xml,sha256=WLaL46XspKW0ams4SJ4MiHLbDTNgPfTeolMYQrybbTg,42837
|
|
@@ -346,6 +354,8 @@ udata/harvest/tests/csw_dcat/geonetworkv4-page-5.xml,sha256=0VmPp1kspik7YAmOFyr-
|
|
|
346
354
|
udata/harvest/tests/dcat/bnodes.jsonld,sha256=Leqny-ccp30564yojQYYckw_HKbhR0f5qUCaavc2ruE,7964
|
|
347
355
|
udata/harvest/tests/dcat/bnodes.xml,sha256=k1AGGPD8P4qSIxzS2vorJMNnf1sw4Deq3Kwm_rDJMaM,12137
|
|
348
356
|
udata/harvest/tests/dcat/catalog.xml,sha256=7bXxQDAu-BRppqIq4WAu6QAdOGOSbf900zBzJttP30k,12785
|
|
357
|
+
udata/harvest/tests/dcat/datara--5a26b0f6-0ccf-46ad-ac58-734054b91977.rdf.xml,sha256=2ihzv_Jh89yiQEfutO7duj5FkXvf87Iub5upmd3nTyc,16855
|
|
358
|
+
udata/harvest/tests/dcat/datara--f40c3860-7236-4b30-a141-23b8ae33f7b2.rdf.xml,sha256=RebjVr9yNttVtHAuDCA-oK85XcT-9nOl0_pTBKyNwBc,21951
|
|
349
359
|
udata/harvest/tests/dcat/evian.json,sha256=R3RxP5azUuf9aZ9fU7n6iJkfbJ6oj-Zej2cjOtkYr8M,16647
|
|
350
360
|
udata/harvest/tests/dcat/flat.jsonld,sha256=BAw08MDhtW9Px3q6RAoTIqO_OwJmAwBS9EpC8BY_x98,8459
|
|
351
361
|
udata/harvest/tests/dcat/geonetwork.xml,sha256=9_pksE74Zzkbgs9okj6hEbo8CJS0FZjEnIdvopKfm7k,7928
|
|
@@ -383,7 +393,7 @@ udata/migrations/2024-10-09-remove-extras-harvest.py,sha256=cCuuUMZXcmTVhUle-sdE
|
|
|
383
393
|
udata/migrations/2024-10-30-rename-organization-badges.py,sha256=Yu8PTayYY0m4YJJ3W7JLsQwC-PDoC6BELqFfDhG66bE,695
|
|
384
394
|
udata/migrations/2024-11-19-keep-only-local_authority-if-also-public_service-organization-badges.py,sha256=xFn0nVqAh8Vee9-s8YFZHg5F-kukOr5B4fyz62G40eA,658
|
|
385
395
|
udata/migrations/2024-12-05-contact-point-is-now-a-list.py,sha256=il2qSFhOTq-YhqhFaq_5OwysUlKXaK_En-qGP6v9rf0,1065
|
|
386
|
-
udata/migrations/2025-01-05-dataservices-fields-changes.py,sha256=
|
|
396
|
+
udata/migrations/2025-01-05-dataservices-fields-changes.py,sha256=aywophUH-C5Cx8HdojS0TQS6E6qP6P2e_9IipCsbKa0,4403
|
|
387
397
|
udata/migrations/2025-03-20-save-quality-for-datasets.py,sha256=FPTfGVByXSHr18V4RFlktC7t-H-5rgEcZQMTRpMrGqo,607
|
|
388
398
|
udata/migrations/2025-04-24-topic-featured-default-false.py,sha256=t4OyhehtPQiosKtAo9SWRWm3ObGUHvqD_roXQ34vIH4,369
|
|
389
399
|
udata/migrations/2025-05-22-purge-duplicate-activities.py,sha256=iemQwEWtbxedtpkeTFIeoNP7WcY7ntnDrjUClPzzWfg,4212
|
|
@@ -397,6 +407,8 @@ udata/migrations/2025-07-22-fix-duplicate-contact-points.py,sha256=ZEw2PX1E3jJiD
|
|
|
397
407
|
udata/migrations/2025-07-30-purge-old-harvest-dynamic-fields.py,sha256=ijeu6WvX6etOJrv0cEMCRJzj1pSetBguF-aUB1-2y_0,1017
|
|
398
408
|
udata/migrations/2025-09-04-update-legacy-frequencies.py,sha256=8YAROAHhytf6Kses_54aFscmPNes2aHRYqTwNpawdVk,1693
|
|
399
409
|
udata/migrations/2025-10-01-delete-orphaned-topic-elements.py,sha256=Mhx5ANOihZL4botxtjvfsll-xKBtkVQBkPcSq0BJ-Ec,788
|
|
410
|
+
udata/migrations/2025-10-21-remove-ckan-harvest-modified-at.py,sha256=85oGDAOLB7K9KzPRHHokc36EeMKLdWaOb3IkpwYkL3E,837
|
|
411
|
+
udata/migrations/2025-10-29-harvesters-sources-integrity.py,sha256=tt8ThVhtgiBSvRxZEO4LQiDPW4RKZDsOkPepTntOVew,571
|
|
400
412
|
udata/migrations/__init__.py,sha256=RBCBDaTlLjuMs_Qzwji6Z6T4r7FCGXhESKoxQbT5qAA,11221
|
|
401
413
|
udata/models/__init__.py,sha256=RT0WaPKm2linlYnTmD0xck7M2XuIoIJ94E0ErzNGzaw,1418
|
|
402
414
|
udata/mongo/__init__.py,sha256=y4Rv-kq3o_kcEulcNpePLzocXPBNpx3Jd82G-VZPaMc,1421
|
|
@@ -407,7 +419,7 @@ udata/mongo/errors.py,sha256=SpTMAc_aNIfGkqyXGCbTlIAmYxU86rGM_NtIYaB642c,472
|
|
|
407
419
|
udata/mongo/extras_fields.py,sha256=knb0fwt8eIEOA0jjeUAs9Gmn_cfUNVPuRdGEVcJzE2Y,4218
|
|
408
420
|
udata/mongo/queryset.py,sha256=fXfYkUHsCWAUoub3OR7v825USPv-PQQIHkv4U5FnjYg,3954
|
|
409
421
|
udata/mongo/slug_fields.py,sha256=tEUlwozrdQfF42KR5dxk5PUNSX7zISTIXsSgHxR4YMg,7522
|
|
410
|
-
udata/mongo/taglist_field.py,sha256=
|
|
422
|
+
udata/mongo/taglist_field.py,sha256=d4xUzXNaNgOlhllKNaTIhAiyjPhfOuXU99fYv3ds1u4,1371
|
|
411
423
|
udata/mongo/url_field.py,sha256=UmUr9c5SxDFDpS5QsRTq2pKcCTOr1SoB4UITwNjtuaI,1345
|
|
412
424
|
udata/mongo/uuid_fields.py,sha256=tuQ3zs_BnQHjaiKSIYv43jxvYtOvRLw9nP5CQ3fcMks,482
|
|
413
425
|
udata/notifications/__init__.py,sha256=ZrSpV2zI9bZ0oz8tGsnA8hjDdGeU7YDdgvOLo70aohg,54
|
|
@@ -424,42 +436,11 @@ udata/storage/s3.py,sha256=enxbTm1IZksiKLkbafASrO2bqO44OTCn4F7_FeMjhgg,1557
|
|
|
424
436
|
udata/templates/404.html,sha256=1N3gFGvwhUgBzwx4_e946T0aAsBwtg3cvbClViuFuVI,1140
|
|
425
437
|
udata/templates/comments/dataset_archived.txt,sha256=DDRZ_9ldyhz0SKki3piypJ7WpWB2kSCOsFyyJw_sPmE,324
|
|
426
438
|
udata/templates/macros/forms.html,sha256=LEhdB8WUHXJR3E1Gs41QEFzDauhvmhEWCnW4JlnnF64,2206
|
|
427
|
-
udata/templates/mail/account_deleted.html,sha256=7INK4GqaOyqe36pXiT4xU_cAZLuNxOeY3zoy4Yjz1R4,146
|
|
428
|
-
udata/templates/mail/account_deleted.txt,sha256=4EmPnt4QWMWSUkfTaMUga4BCFjGlZGKTgh9JDUzKjDk,110
|
|
429
|
-
udata/templates/mail/account_inactivity.html,sha256=kUBCs0BKY8bDfMvZ3YGWi8jEHYT2UrukFeNPpqPhiJo,1220
|
|
430
|
-
udata/templates/mail/account_inactivity.txt,sha256=dzi3xC2jrO5MfLXXMbD_oXIfhVQv-H6FsJF0PAjCzbQ,898
|
|
431
|
-
udata/templates/mail/badge_added_association.html,sha256=MkKJmRoDqJLXIMn5PJ5O1gSHVG0iGqvolZL5697nJlw,863
|
|
432
|
-
udata/templates/mail/badge_added_association.txt,sha256=9PtTd3fOc1DS18lGoMuefTyTduL816DbQYoa8J4BokE,302
|
|
433
|
-
udata/templates/mail/badge_added_certified.html,sha256=ts3Y5nbAbw1lq5dq2lktRTY6Y84pwdB15sxk3pJDevk,844
|
|
434
|
-
udata/templates/mail/badge_added_certified.txt,sha256=x0GYzYWnIT9_JWvc5f6KeuS71Om5jxIdleqv7eF1NqU,295
|
|
435
|
-
udata/templates/mail/badge_added_company.html,sha256=nnILeh9rJsPD4Ra8aTPz_bVhBU-n42RP0L4gxQvcc3Q,858
|
|
436
|
-
udata/templates/mail/badge_added_company.txt,sha256=-jUYTeCrNE6bJx9XZLDW71ktvC8jk79inVob0GKSWUU,297
|
|
437
|
-
udata/templates/mail/badge_added_local_authority.html,sha256=emmNTnlYBlt4065L4NSLXjSgDbyJLzvW5dMdydgd2gE,866
|
|
438
|
-
udata/templates/mail/badge_added_local_authority.txt,sha256=D9Ye15c4ZOHeSr7D4vF6hVzjlcefaabYftBmTk6Qi4E,305
|
|
439
|
-
udata/templates/mail/badge_added_public_service.html,sha256=ugxrGL7Y0VvhhY9C2HMgJH5vyVmtG62fBKQ4As09wfs,863
|
|
440
|
-
udata/templates/mail/badge_added_public_service.txt,sha256=c76ub7iU1cAUuNZV2jLzpJ07ZNqeGLr6PhIkicUvWhQ,304
|
|
441
439
|
udata/templates/mail/base.html,sha256=ZhMwp8gSJ7QtBYJXB8CY54wj6nb7lFYq7nASStFBM2s,7064
|
|
442
440
|
udata/templates/mail/base.txt,sha256=epaSraWLlrXYEovdVROhxgOAsJmZI6RXxpNwtOX_UI4,176
|
|
443
441
|
udata/templates/mail/button.html,sha256=FdCKFJYclhjDUh7CddHx8qcQjJF_7mF0s7mG_tb9cL8,417
|
|
444
|
-
udata/templates/mail/
|
|
445
|
-
udata/templates/mail/
|
|
446
|
-
udata/templates/mail/inactive_account_deleted.html,sha256=W27Os2tZioe7Ip4ZxHswNq8TAls1U0emZEHK4Qo2Kpc,196
|
|
447
|
-
udata/templates/mail/inactive_account_deleted.txt,sha256=7-7QU2v4CgoT2Vt8YkEbRsywiM-mAvGvdeB4_OIM2G8,160
|
|
448
|
-
udata/templates/mail/membership_refused.html,sha256=BI6jwR3NMemxgt4CwKJqeEwNnlVcHmLGp-PD3oUi9Jc,612
|
|
449
|
-
udata/templates/mail/membership_refused.txt,sha256=rXur42ZD3W65SCblUrZqMK34RHz0oSYL4-rb_kKmE0g,217
|
|
450
|
-
udata/templates/mail/membership_request.html,sha256=XligyS4iQGnYX8MnA9jarQU6Opos4pmvboEJazOVfDA,1340
|
|
451
|
-
udata/templates/mail/membership_request.txt,sha256=SzFrteKjCoolzIuGKzhTDX-WMcxB2CbrbnLVefEne20,405
|
|
452
|
-
udata/templates/mail/new_discussion.html,sha256=EtKQhGVd9I0yeNbe5CsI4opRPtcbLzBzPnp9LuFtYdY,1106
|
|
453
|
-
udata/templates/mail/new_discussion.txt,sha256=ygPIDEORSB6rS4EVNLi8t5DT__LcFxlihcEZZevxbtA,418
|
|
454
|
-
udata/templates/mail/new_discussion_comment.html,sha256=0SKKBPcMfYK1Ck874q2Akv41XY5UYOm3lFyOe9FoXps,1179
|
|
455
|
-
udata/templates/mail/new_discussion_comment.txt,sha256=IT0sxrEitZ90nC4CWCrHSpS37f38NeWc8cyx5U3C5ws,398
|
|
456
|
-
udata/templates/mail/new_member.html,sha256=EgPuEfN6EGcT3bxn2MwMU45Sx5fWgO_H3TFgmLZ53WQ,748
|
|
457
|
-
udata/templates/mail/new_member.txt,sha256=wwBNI1AR1lXSYgnWSEeCPt2V7j1oMbjbFJmEGWTf1us,251
|
|
458
|
-
udata/templates/mail/new_reuse.html,sha256=6cqt8tg_6zfwjGi2oOpicON_y95vgABTzqpJjg0vHHE,1018
|
|
459
|
-
udata/templates/mail/new_reuse.txt,sha256=1yZHOOYNZHho6qEFKPSUzAkhXscJJ1OQuXWZRgN616U,270
|
|
460
|
-
udata/templates/mail/test.html,sha256=8oNjUUHmBnPZbrar9Qv3hg8jSesTKOqvXO6xqeO6BT0,232
|
|
461
|
-
udata/templates/mail/test.txt,sha256=BWdNQPvlodCXIhfwk7N21WezrlpUenB0ChZDtsWsDj4,158
|
|
462
|
-
udata/templates/mail/user_mail_card.html,sha256=PQCUZZxaMr1NV9SUfCLPo1q9QDT-SZQDUYV-5hE1Hgw,1609
|
|
442
|
+
udata/templates/mail/message.html,sha256=uZkcHhekHUr4OL97ezTsiKHPg163iEGZqwo_Ei70ugU,13363
|
|
443
|
+
udata/templates/mail/message.txt,sha256=ci5u8PCWtwid39RPGxAjEUfqmC0ILLZhV0QIJbV--v8,488
|
|
463
444
|
udata/templates/mail/layouts/1-column.html,sha256=cGnVjykaMK7CeO3HtSq-aWK8A-KHJ--IVjsdaQfmS_I,524
|
|
464
445
|
udata/templates/mail/layouts/2-columns.html,sha256=TbYO8O0j5w7uLCSVN4liP-Y-xOplCLnDDGMnZIJ_s-c,580
|
|
465
446
|
udata/templates/mail/layouts/center-panel.html,sha256=kULj5NDcuifryn_1wTeKkxaAhdmQhrYL6i7r1YjcCOM,387
|
|
@@ -470,164 +451,146 @@ udata/templates/security/login_user.html,sha256=5RwWWRYi_IhZWPkihfpXXYXPli52_Bdo
|
|
|
470
451
|
udata/templates/security/register_user.html,sha256=U-d9C2muW3FK5zKMLR-6LBLg1dnK0Gf6qeuLpfyoI6g,688
|
|
471
452
|
udata/templates/security/reset_password.html,sha256=R0AMqkmPulFZpCoqP6NzP-dSTcdxwvcCOLOj465pV7k,868
|
|
472
453
|
udata/templates/security/send_confirmation.html,sha256=llnEawIMXWP8Wu9EUL2czY38Z7URk-hRCEK9A4cxVJQ,784
|
|
473
|
-
udata/
|
|
474
|
-
udata/templates/security/email/base.txt,sha256=ASM6bhY3OzxPAwk1VjMAzkHg8U8-RbpMIgvYflEWdb4,171
|
|
475
|
-
udata/templates/security/email/button.html,sha256=FdCKFJYclhjDUh7CddHx8qcQjJF_7mF0s7mG_tb9cL8,417
|
|
476
|
-
udata/templates/security/email/change_notice.html,sha256=_N1QX5EOtBzjbzi7g_hD6CGtfZyLoRQUE4973_9tims,597
|
|
477
|
-
udata/templates/security/email/change_notice.txt,sha256=pZvfof6rxLw0kO-CpSIrJANDNuGeONBd_JVlFeZ48Hs,296
|
|
478
|
-
udata/templates/security/email/confirmation_instructions.html,sha256=cF14Rd0SWDKOKJ8aLDfnmX2E5f21cuZsPuVaX7zpS7Q,464
|
|
479
|
-
udata/templates/security/email/confirmation_instructions.txt,sha256=dh8NrLwkJw0Vouzc0bAY5AkFyog25lq9A9W9ygQl8AU,159
|
|
480
|
-
udata/templates/security/email/login_instructions.html,sha256=-R_Xhpwknrtpp0K6PaD52FbE1ioCoe8ZBPW9_WbWA_U,451
|
|
481
|
-
udata/templates/security/email/login_instructions.txt,sha256=hsl25PKohV0N3h9MZFk1MSlymdxBDbtpFOYOwRbcr2s,156
|
|
482
|
-
udata/templates/security/email/reset_instructions.html,sha256=ijP0LddLEvUIaZfzdgMFJOk3kCIRG2qunwF_1Pi1zIw,681
|
|
483
|
-
udata/templates/security/email/reset_instructions.txt,sha256=e0D8RbnaEW8fzG8jsnjZp3NnSSv6AS-_mHYByvzDeTI,360
|
|
484
|
-
udata/templates/security/email/reset_notice.html,sha256=fmvC-k94Y_74O_Nx02Z_d2dyArkNQmbX9LIYVumaUSM,232
|
|
485
|
-
udata/templates/security/email/reset_notice.txt,sha256=nhpffZNtcBCwPUCW54GcBORHZI26C1Tcht6ryW9U9Xs,154
|
|
486
|
-
udata/templates/security/email/welcome.html,sha256=r94FL_luwfgesWYtK87vjTAFjuB-njse6MtaBDAg-dU,565
|
|
487
|
-
udata/templates/security/email/welcome.txt,sha256=DqBk2JZxL2Zf_kPfvtKUDe6J_p72s9c1ZcS05oZrJ44,250
|
|
488
|
-
udata/templates/security/email/welcome_existing.html,sha256=PRuzkmsmq4PNKxTGQFMaIiwaQ_W63DumKGByMbD9eGM,797
|
|
489
|
-
udata/templates/security/email/welcome_existing.txt,sha256=Zz-bGt4S_maNdQtN2OVs9WBv3pZHEW-Y_x21_smgpVc,472
|
|
490
|
-
udata/tests/__init__.py,sha256=98jv17nvpQYOfUQ6ZjDPMZLag1cDrSslwCmveEqh-O8,2335
|
|
454
|
+
udata/tests/__init__.py,sha256=Fl7DPbfsP8vVyC6Nj_OlQIk2A5jfyn_WOxIRreVS_GU,2493
|
|
491
455
|
udata/tests/es-fake-result.json,sha256=z0CX9Gs-NRj49dmtdFvw8ZKsAbMhDt97Na6JX3ucX34,3155
|
|
492
|
-
udata/tests/helpers.py,sha256=
|
|
456
|
+
udata/tests/helpers.py,sha256=nG-AcwIP9qRd_8N9A3mE7dJn-3lX-tnlmKuwnrmKEvc,5825
|
|
493
457
|
udata/tests/models.py,sha256=5oTC-cgKSL0sUdlqjUiJ6U8-YZBQanObb-MhZhQIV3M,238
|
|
494
|
-
udata/tests/plugin.py,sha256=
|
|
458
|
+
udata/tests/plugin.py,sha256=tq-Tlfx0SVgFkfg-SteEdA5Zpl2_mhkOkbBvc943JN0,8775
|
|
495
459
|
udata/tests/schemas.json,sha256=szM1jDpkogfOG4xWbjIGjLgG8l9-ZyE3JKQtecJyD1E,4990
|
|
496
|
-
udata/tests/test_activity.py,sha256=
|
|
497
|
-
udata/tests/test_api_fields.py,sha256=
|
|
498
|
-
udata/tests/test_cors.py,sha256=
|
|
499
|
-
udata/tests/test_dcat_commands.py,sha256=
|
|
500
|
-
udata/tests/test_discussions.py,sha256=
|
|
501
|
-
udata/tests/test_mail.py,sha256=
|
|
502
|
-
udata/tests/test_migrations.py,sha256=
|
|
503
|
-
udata/tests/test_model.py,sha256=
|
|
504
|
-
udata/tests/test_notifications.py,sha256=
|
|
505
|
-
udata/tests/test_owned.py,sha256=
|
|
506
|
-
udata/tests/test_rdf.py,sha256=
|
|
507
|
-
udata/tests/test_routing.py,sha256=
|
|
508
|
-
udata/tests/test_storages.py,sha256=
|
|
509
|
-
udata/tests/test_tags.py,sha256=
|
|
510
|
-
udata/tests/test_topics.py,sha256=
|
|
511
|
-
udata/tests/test_transfer.py,sha256=
|
|
460
|
+
udata/tests/test_activity.py,sha256=k6TqUl0PAO39CwTkxptgz40juwySTPadU6rkoLTTjMM,9803
|
|
461
|
+
udata/tests/test_api_fields.py,sha256=BAgxSQjgMQ6B3ZUamhdg5GDXfP5ZpFUfRUPJLfooIzw,12886
|
|
462
|
+
udata/tests/test_cors.py,sha256=2VwwDMRv4DVGCPRuH8ALvbtCo5-OOIxTTcHceFjyUUU,2914
|
|
463
|
+
udata/tests/test_dcat_commands.py,sha256=9TgG5grwNLeG5d12KKIL15WLSNA_Cw_m98yLxu2tlc8,939
|
|
464
|
+
udata/tests/test_discussions.py,sha256=u7TN4tHaWllF1JusZ18p2WI9JTgTNHb7QMmCGNjCvww,47614
|
|
465
|
+
udata/tests/test_mail.py,sha256=IvWCtRJ1qikJp4rSu-q8bqYbQTSkW8GOawuwsgSR7io,5906
|
|
466
|
+
udata/tests/test_migrations.py,sha256=ITab59WgR-yuvqYBpyVeWb6-IIKLEU8SN9UjF8Fsq0M,17395
|
|
467
|
+
udata/tests/test_model.py,sha256=j9_9xiLLPAFibL5Rz6uMD7Npjz0bS1Nu88A3fQF_3UI,22194
|
|
468
|
+
udata/tests/test_notifications.py,sha256=sc_tlkTqIYx3mYK3X3n10PUEo-ctExLXsBSWJ8vutW4,2298
|
|
469
|
+
udata/tests/test_owned.py,sha256=K0bsPi-A6MGsGNS_IDpZgGYiIx5KuHQGsGYdYDCV3ks,9669
|
|
470
|
+
udata/tests/test_rdf.py,sha256=jrd1hkM__KoThkE_cY0XGFUAP4vw26b12AijNBT5f_o,5307
|
|
471
|
+
udata/tests/test_routing.py,sha256=oOO_vxS2hc0YuDbr8S7rgKTj5HSrxjjkTqSgcDoxmR0,10926
|
|
472
|
+
udata/tests/test_storages.py,sha256=z39y7sdUhunxmCnevG6lrnth3m9KY6MBnhmVt8vA4Bk,9744
|
|
473
|
+
udata/tests/test_tags.py,sha256=vIkI7FfWii6irMLJr7FuuugJGWZ0tTJAe58W8zu34rk,3732
|
|
474
|
+
udata/tests/test_topics.py,sha256=rkU-4DFg_KUuuWcejn_opZyqw02TP65IdAvkhqLxDDc,5566
|
|
475
|
+
udata/tests/test_transfer.py,sha256=Ds3milUm9cblUvB6YNuMXDr3BBxAGBcfGIKS2y20vZc,7844
|
|
512
476
|
udata/tests/test_uris.py,sha256=MxafZ0SyzSNRomVpZnH1ChzWaHOi1MQiXe1gmKnBc6o,8517
|
|
513
477
|
udata/tests/test_utils.py,sha256=3BGnlvw-GOE6tLHQteo-uUeYuzq4rsjePOuytFGkpOg,7967
|
|
514
|
-
udata/tests/api/__init__.py,sha256=
|
|
515
|
-
udata/tests/api/test_activities_api.py,sha256=
|
|
516
|
-
udata/tests/api/test_auth_api.py,sha256=
|
|
478
|
+
udata/tests/api/__init__.py,sha256=keJu5vUxWPdxnYxnGCZGkTBCouRm61N9T73RMRP-ZBk,4102
|
|
479
|
+
udata/tests/api/test_activities_api.py,sha256=uUsNW2udb6zU-i21MV9qKjws2-xbubcWHl96gvLc3vM,4822
|
|
480
|
+
udata/tests/api/test_auth_api.py,sha256=oUfzFRGCidDbnj6B4W81FB5w9eLKu2G3DmGzPhbt3lY,25587
|
|
517
481
|
udata/tests/api/test_base_api.py,sha256=2w_vz0eEuq3P3aN-ByvxGc3VZAo7XtgatFfcrzf2uEU,2244
|
|
518
|
-
udata/tests/api/test_contact_points.py,sha256=
|
|
519
|
-
udata/tests/api/test_dataservices_api.py,sha256=
|
|
520
|
-
udata/tests/api/test_datasets_api.py,sha256=
|
|
482
|
+
udata/tests/api/test_contact_points.py,sha256=QmnTmJZ5oIohsUH_E_wfFalRx-Fx91jO7gs7PErpLqQ,8690
|
|
483
|
+
udata/tests/api/test_dataservices_api.py,sha256=UPMH6OEEczYvebyV7thf7LjrEYFctgIm1TuJV1VC-OI,29914
|
|
484
|
+
udata/tests/api/test_datasets_api.py,sha256=MU9zqiEEVDbRsJr3cYemTzLyW6Osn_EP4SUpDw-65YE,110516
|
|
521
485
|
udata/tests/api/test_fields.py,sha256=OW85Z5MES5HeWOpapeem8OvR1cIcrqW-xMWpdZO4LZ8,1033
|
|
522
486
|
udata/tests/api/test_follow_api.py,sha256=4nFXG5pZ_Hf2PJ4KEdHJX_uggjc9RpB8v0fidkAcw9I,5792
|
|
523
|
-
udata/tests/api/test_me_api.py,sha256=
|
|
524
|
-
udata/tests/api/test_organizations_api.py,sha256=
|
|
525
|
-
udata/tests/api/test_reports_api.py,sha256=
|
|
526
|
-
udata/tests/api/test_reuses_api.py,sha256=
|
|
527
|
-
udata/tests/api/
|
|
528
|
-
udata/tests/api/
|
|
529
|
-
udata/tests/api/
|
|
530
|
-
udata/tests/api/
|
|
487
|
+
udata/tests/api/test_me_api.py,sha256=MiKN9P75h2HyMxepuxt2SiLs3Yhgl22iQXKbvTR42sg,13796
|
|
488
|
+
udata/tests/api/test_organizations_api.py,sha256=xu2S02_PC5BadHY5Ovt8Z7B5o1cJla0KQS9ycKQ3IxU,44040
|
|
489
|
+
udata/tests/api/test_reports_api.py,sha256=lOG0JZZxCtFggNHAx7CMR-MlbfPKgJ2lg3ARuX3HzMA,6181
|
|
490
|
+
udata/tests/api/test_reuses_api.py,sha256=ova8uiUNgTo__GLVGdGIw57So-xnA2CZA0lo7E7Q7QU,30753
|
|
491
|
+
udata/tests/api/test_security_api.py,sha256=I7Pu1sNSh8zh1YVrdHREwIK7bNIpNxKkN_mAEuziD0A,4593
|
|
492
|
+
udata/tests/api/test_swagger.py,sha256=IezTry6A0FnwbJMhbkVjbE6jgVLQqqlebZbotwHW2gQ,815
|
|
493
|
+
udata/tests/api/test_tags_api.py,sha256=1xqUNOs7K4Asn7CLV-p95bw03uXqnM0hQkqLMrKLsR0,2410
|
|
494
|
+
udata/tests/api/test_transfer_api.py,sha256=uYeouDL42X8ruzclgaVOa6VCA3_wc8Hq8HLa8jgpZyM,7485
|
|
495
|
+
udata/tests/api/test_user_api.py,sha256=BtNS042u5mDi-h8r1moCi_S3lncMsmzmPSrebUUxmUA,16469
|
|
531
496
|
udata/tests/apiv2/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
532
|
-
udata/tests/apiv2/test_datasets.py,sha256
|
|
533
|
-
udata/tests/apiv2/test_me_api.py,sha256=
|
|
534
|
-
udata/tests/apiv2/test_organizations.py,sha256=
|
|
535
|
-
udata/tests/apiv2/test_swagger.py,sha256=
|
|
536
|
-
udata/tests/apiv2/test_topics.py,sha256=
|
|
537
|
-
udata/tests/cli/test_cli_base.py,sha256=
|
|
538
|
-
udata/tests/cli/test_db_cli.py,sha256=
|
|
539
|
-
udata/tests/contact_point/test_contact_point_models.py,sha256=
|
|
497
|
+
udata/tests/apiv2/test_datasets.py,sha256=lugL_CE2MlP4R--GEersBIwJOn66xVmLz5lU8L4YpcA,23216
|
|
498
|
+
udata/tests/apiv2/test_me_api.py,sha256=YxSCtZBlSXgzQPgwMJoZHMcpSoKjL6IKz2jhJi8xL5I,1399
|
|
499
|
+
udata/tests/apiv2/test_organizations.py,sha256=JqQHnOzRLR4l19P-EC9k2VToLbebU7jYESY4T-Y9LS8,6370
|
|
500
|
+
udata/tests/apiv2/test_swagger.py,sha256=L1rXS5KADgPr40mcpyl9cHkqI1vG86YMrIYgxNl1peI,840
|
|
501
|
+
udata/tests/apiv2/test_topics.py,sha256=oRKUN0ruF1VcD4e8BFT_DFD9rzSe92hGFXVPjBwCROw,37983
|
|
502
|
+
udata/tests/cli/test_cli_base.py,sha256=WvWaxChNYPzkZv9SVjhGBGtRQV8KRrrdT-AyDUvDfjI,469
|
|
503
|
+
udata/tests/cli/test_db_cli.py,sha256=L8QaaKxfORPPPlNJmxwzLhJGbQL6WrDucjzqZPz_9uI,2529
|
|
504
|
+
udata/tests/contact_point/test_contact_point_models.py,sha256=qPAEXd9BN9q-H0PSxQ7g6yUHG8xKZ0AElOsqeOaVL7U,957
|
|
540
505
|
udata/tests/data/image.jpg,sha256=hdmpaCjOhmAAfNGuTqWKEjv7IC4GXJx-nP_rT274hc8,337049
|
|
541
506
|
udata/tests/data/image.png,sha256=GAqXz7w_u7CapODIUF45UpVddmqelnGQkcrwKZq3448,266488
|
|
542
|
-
udata/tests/dataservice/test_csv_adapter.py,sha256=
|
|
543
|
-
udata/tests/dataservice/test_dataservice_rdf.py,sha256=
|
|
544
|
-
udata/tests/dataservice/test_dataservice_tasks.py,sha256=
|
|
507
|
+
udata/tests/dataservice/test_csv_adapter.py,sha256=trGzWENGpkDFI84XZhwwNR61_nmukphKvS6aOKf7uBo,1981
|
|
508
|
+
udata/tests/dataservice/test_dataservice_rdf.py,sha256=dsBLkpn1kYVVcOVx6O5fn-UacQXFHpTFoNaZ_ciRWo0,6405
|
|
509
|
+
udata/tests/dataservice/test_dataservice_tasks.py,sha256=XnXnvC81coXP_APe2OecPNIMogW3GJX-c95OkUYQc28,1764
|
|
545
510
|
udata/tests/dataset/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
546
|
-
udata/tests/dataset/test_csv_adapter.py,sha256=
|
|
547
|
-
udata/tests/dataset/test_dataset_actions.py,sha256=
|
|
548
|
-
udata/tests/dataset/test_dataset_commands.py,sha256=
|
|
549
|
-
udata/tests/dataset/test_dataset_events.py,sha256=
|
|
550
|
-
udata/tests/dataset/test_dataset_model.py,sha256=
|
|
551
|
-
udata/tests/dataset/test_dataset_rdf.py,sha256=
|
|
552
|
-
udata/tests/dataset/test_dataset_recommendations.py,sha256=
|
|
553
|
-
udata/tests/dataset/test_dataset_tasks.py,sha256=
|
|
554
|
-
udata/tests/dataset/test_resource_preview.py,sha256=
|
|
555
|
-
udata/tests/dataset/test_transport_tasks.py,sha256=
|
|
511
|
+
udata/tests/dataset/test_csv_adapter.py,sha256=d5Wx2yqXpXh93IY5JtnGVTDo9O_3j0F_XnfmXnA__UI,3902
|
|
512
|
+
udata/tests/dataset/test_dataset_actions.py,sha256=8d-6AUKCt3Nnb_uEaztV0BzNYFDyqAYLrThRD-ubLNA,741
|
|
513
|
+
udata/tests/dataset/test_dataset_commands.py,sha256=8f8qP4XPJdHE6UkBmprrr6k1aM8neEJhSeF8ZeWN2EE,820
|
|
514
|
+
udata/tests/dataset/test_dataset_events.py,sha256=tKCQ55y_pc0wOKv2B2iej5dDxWalguU9FLtr6J2y8hE,3682
|
|
515
|
+
udata/tests/dataset/test_dataset_model.py,sha256=2cxxPFajasz864BM_uzCLn0IFBYYAe2pDg2Bm6JNUVQ,33875
|
|
516
|
+
udata/tests/dataset/test_dataset_rdf.py,sha256=fP7wJNSxAqwsa30WcUORgKnOzcLgqCVi5CDhUy1ew6c,53887
|
|
517
|
+
udata/tests/dataset/test_dataset_recommendations.py,sha256=UMwAsLHs6_XA1vp7-lnTjaPOc9E6zQYqw9VIuSCNUtk,7102
|
|
518
|
+
udata/tests/dataset/test_dataset_tasks.py,sha256=iOoP4JlQGC7JawvPRvU_wEM245ny0jlQp-2PQVUzXO0,3524
|
|
519
|
+
udata/tests/dataset/test_resource_preview.py,sha256=mHzopnBSKU-E3nzhHVjfCt-plNOHSmw-ovp1GWfszzU,2250
|
|
520
|
+
udata/tests/dataset/test_transport_tasks.py,sha256=GgXu_MXGKmVzugi-7SUVNJ_PkTo36kJsASapYaxlcQw,2998
|
|
556
521
|
udata/tests/features/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
557
|
-
udata/tests/features/territories/__init__.py,sha256=
|
|
558
|
-
udata/tests/features/territories/test_territories_api.py,sha256=
|
|
522
|
+
udata/tests/features/territories/__init__.py,sha256=cqOT5bEvic6RIcGxY44HGvqwq3xL84TpQfFRBLXJZeE,773
|
|
523
|
+
udata/tests/features/territories/test_territories_api.py,sha256=Rm_N08ebVQb18UFAEY5fbubDm99UXMFg7354L5qvkio,7435
|
|
559
524
|
udata/tests/forms/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
560
525
|
udata/tests/forms/test_basic_fields.py,sha256=RPVdW3fQF6hhxpqF6FPr6GEpDoFO7-hAptDNXvajA_Q,2096
|
|
561
|
-
udata/tests/forms/test_current_user_field.py,sha256=
|
|
526
|
+
udata/tests/forms/test_current_user_field.py,sha256=Z3QYQe2yC0XkYn4ubQeXPXCijUEXB64Hi1ZfmoJ2kTY,6467
|
|
562
527
|
udata/tests/forms/test_daterange_field.py,sha256=zwQZT0UaCAZSPzbJZPkGAnVDIwP8FBlZGGYpx9_zMW8,3724
|
|
563
|
-
udata/tests/forms/test_dict_field.py,sha256=
|
|
564
|
-
udata/tests/forms/test_extras_fields.py,sha256=
|
|
528
|
+
udata/tests/forms/test_dict_field.py,sha256=aQ44CXl_yAUSh4Cu5KqKUXur_aSkpu3N9MW0bLdmDfA,1826
|
|
529
|
+
udata/tests/forms/test_extras_fields.py,sha256=D2Rf4hIORVZ2VBoLr1rd_otvY_1QQlleLs1m-JVKPCs,5207
|
|
565
530
|
udata/tests/forms/test_form_field.py,sha256=qv_nC7j_Pi8T70uZB9WNxW2Lw828lgLO4C6YJakP3DE,3606
|
|
566
|
-
udata/tests/forms/test_image_field.py,sha256=
|
|
567
|
-
udata/tests/forms/test_model_field.py,sha256=
|
|
531
|
+
udata/tests/forms/test_image_field.py,sha256=LC3rcF26GXThpDlxouTF1O16uAppiyVMT6Pu6cVWdu4,3660
|
|
532
|
+
udata/tests/forms/test_model_field.py,sha256=24dfU9GrwtpKRzq4NDpxEMzYy8zT-QeZZy1CaaWM4gk,9722
|
|
568
533
|
udata/tests/forms/test_model_list_field.py,sha256=4-ocxwXL6Nji0OdHuKAvhG72k05lwl2lZ0hsiLob8NA,3570
|
|
569
534
|
udata/tests/forms/test_nested_model_list_field.py,sha256=EeuATo2xf00rBjGHBXTVk0PsZfStyqNrfMlY0RPc3zs,10420
|
|
570
|
-
udata/tests/forms/test_publish_as_field.py,sha256=
|
|
535
|
+
udata/tests/forms/test_publish_as_field.py,sha256=o-agTC4Lq-wJXxACWTPBIlPUovQnjvAGIfRAdU5Ov34,11588
|
|
571
536
|
udata/tests/forms/test_reference_field.py,sha256=oa57TatMG9Ul5Z_ehCsLK0Zau31n3xaRU0gLAmZlg9w,6290
|
|
572
|
-
udata/tests/forms/test_user_forms.py,sha256=
|
|
537
|
+
udata/tests/forms/test_user_forms.py,sha256=Uo0l-4jd7pyp6d7_4GVBp9InLwlWYEh984utQHat7Ng,1142
|
|
573
538
|
udata/tests/forms/test_uuid_field.py,sha256=256hFDZSWBeoRQuKIAF5RBt4hAKssSHFVAqMMHz8rcc,1788
|
|
574
|
-
udata/tests/frontend/
|
|
575
|
-
udata/tests/frontend/
|
|
576
|
-
udata/tests/frontend/
|
|
577
|
-
udata/tests/frontend/
|
|
578
|
-
udata/tests/frontend/
|
|
579
|
-
udata/tests/frontend/test_markdown.py,sha256=RKbSdQxQBgzxmG6KUXc1KcEo5aybp4uQQn1oDr-zKWU,13823
|
|
539
|
+
udata/tests/frontend/test_auth.py,sha256=JbZiBe8vOY2gUMG3CffwNktrqskWKj-8dXJorK0fwTk,730
|
|
540
|
+
udata/tests/frontend/test_csv.py,sha256=C9jNq5MR-08DNm5A1uTWN1dnQ02OcUoMYeckHKaBULI,11739
|
|
541
|
+
udata/tests/frontend/test_error_handlers.py,sha256=oUk-x5uUwDDDv1b7_wMBWVu26Dolh5tH_ScrnOIFRxA,3106
|
|
542
|
+
udata/tests/frontend/test_hooks.py,sha256=N5MWphXI4dAvN0zW6aUHkfiPSaNK_xBPNRlygPLhWP0,4151
|
|
543
|
+
udata/tests/frontend/test_markdown.py,sha256=khpmtc9cvBAFSuSZhy8P1hg-8ILRW171_Jue00Aps_0,13875
|
|
580
544
|
udata/tests/metrics/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
581
|
-
udata/tests/metrics/conftest.py,sha256=EMe3PSBfl_0LgTei3NwStTNEWUdfu1QnuvJoMWu3-y4,300
|
|
582
545
|
udata/tests/metrics/helpers.py,sha256=1l5SvbWkWkXiJHmAAbf7VzSGhJY9eJxTtJ2S4cVB8To,1938
|
|
583
|
-
udata/tests/metrics/test_metrics.py,sha256=
|
|
584
|
-
udata/tests/metrics/test_tasks.py,sha256=
|
|
546
|
+
udata/tests/metrics/test_metrics.py,sha256=CIi4G8A59_Eo0iqCRBBokOpw_4w_cwYRB396okZ-Fjk,3006
|
|
547
|
+
udata/tests/metrics/test_tasks.py,sha256=fUYvdjZ38dRfnCbRM-mtSqUROTojHeye3bOuFlMJMyQ,6327
|
|
585
548
|
udata/tests/organization/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
586
|
-
udata/tests/organization/test_csv_adapter.py,sha256=
|
|
587
|
-
udata/tests/organization/test_notifications.py,sha256=
|
|
588
|
-
udata/tests/organization/test_organization_model.py,sha256=
|
|
589
|
-
udata/tests/organization/test_organization_rdf.py,sha256=
|
|
549
|
+
udata/tests/organization/test_csv_adapter.py,sha256=kCwHTCGaw7BsWUv1nmQAu2HizSKj5iKrdKDRVCXsbh0,1260
|
|
550
|
+
udata/tests/organization/test_notifications.py,sha256=OFlMRTDHfS3eAvN9Wsyj4mLKzi4dPCqLEpRXILOwXwk,1385
|
|
551
|
+
udata/tests/organization/test_organization_model.py,sha256=R5VGD9qjxvveBrWAFlwPFSWMyTZ8dm1K0DhC3725vwY,4290
|
|
552
|
+
udata/tests/organization/test_organization_rdf.py,sha256=sds2xQmscFZqP5Vh6yOCP_4-71z8pSWxR4aK33h--nY,7906
|
|
590
553
|
udata/tests/organization/test_organization_tasks.py,sha256=9Ta-f4R3RoKdARYUFWHO4pE1nijceTHzyEvI34lYBJo,2876
|
|
591
554
|
udata/tests/reuse/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
592
|
-
udata/tests/reuse/test_reuse_model.py,sha256=
|
|
555
|
+
udata/tests/reuse/test_reuse_model.py,sha256=VHdb5h81oAwupY3glJybaZ5xE4whCq8irwyzca8ZX4g,4641
|
|
593
556
|
udata/tests/reuse/test_reuse_task.py,sha256=VHu9WfpBZ7cIdEb_DJxS0jcnhIUGrtNYwcysmnRNkcU,1725
|
|
594
557
|
udata/tests/search/__init__.py,sha256=ub8kS6vG9EjzkJ-9sAR7j1eLSYpud1Gzry4MQ8fpgxM,1493
|
|
595
558
|
udata/tests/search/test_adapter.py,sha256=4Sh8T-a8TYRMWUNe93WkVOy2b5q7i5hvjFUjXbX3UZw,8648
|
|
596
559
|
udata/tests/search/test_query.py,sha256=aFZKFTJjlih5csy3eNp4MxL5hg13NqiIsrS5bCTOLrI,2182
|
|
597
560
|
udata/tests/search/test_results.py,sha256=vHMkywoW6SQKGy5OtCriYpSo-KbVEdjVzOf8un2mjZE,2043
|
|
598
561
|
udata/tests/site/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
599
|
-
udata/tests/site/test_site_api.py,sha256=
|
|
600
|
-
udata/tests/site/test_site_csv_exports.py,sha256=
|
|
601
|
-
udata/tests/site/test_site_metrics.py,sha256=
|
|
602
|
-
udata/tests/site/test_site_model.py,sha256=
|
|
603
|
-
udata/tests/site/test_site_rdf.py,sha256=
|
|
604
|
-
udata/tests/topic/test_topic_tasks.py,sha256=
|
|
562
|
+
udata/tests/site/test_site_api.py,sha256=j9pu91KfkL8-O0lyTA546cJJGZyENEauebF_uuxKVTE,1363
|
|
563
|
+
udata/tests/site/test_site_csv_exports.py,sha256=DjtXGRrerkS6feZlwpPeYBhCGV8rW6OSH48GD_uecAI,17469
|
|
564
|
+
udata/tests/site/test_site_metrics.py,sha256=B7g0iSNWQVFCC1HZ7bGLj1bdN5yuHsJGx0qfWdxjP1Y,2381
|
|
565
|
+
udata/tests/site/test_site_model.py,sha256=JTA6cZoz1ofPmsOV5BjGo1b85xEI6nTIvVug1_X5K28,2163
|
|
566
|
+
udata/tests/site/test_site_rdf.py,sha256=amf0nEjg3XYp-OlrpogJQvpNSeNHIjbFvZ7eAdXKbQ4,15302
|
|
567
|
+
udata/tests/topic/test_topic_tasks.py,sha256=p4LXMNi2Wx9ub4G7i1xTvPCLh5rRAg5EUMENyyy45io,1323
|
|
605
568
|
udata/tests/user/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
606
|
-
udata/tests/user/test_user_rdf.py,sha256
|
|
607
|
-
udata/tests/user/test_user_tasks.py,sha256=
|
|
569
|
+
udata/tests/user/test_user_rdf.py,sha256=-DSYORtJRU7y8n0LX6AwPf4MZiP2I9USa982RJsJwdA,1607
|
|
570
|
+
udata/tests/user/test_user_tasks.py,sha256=yiN8wE6p2HF8risEYGzdrB76tEYNkVtF4JswmiryblE,5555
|
|
608
571
|
udata/tests/workers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
609
|
-
udata/tests/workers/test_jobs_commands.py,sha256=
|
|
610
|
-
udata/tests/workers/test_tasks_routing.py,sha256=
|
|
572
|
+
udata/tests/workers/test_jobs_commands.py,sha256=ZO1ATjvn1acYTRD75YN2ZBtoYaX5BfyXjaQmvoOzwhc,5494
|
|
573
|
+
udata/tests/workers/test_tasks_routing.py,sha256=7FJUVcSPKkqA3tcFjjgCnbl4vC-4iGuL7myzr7lVHc8,2431
|
|
611
574
|
udata/tests/workers/test_workers_api.py,sha256=x8EkULR9G5TKl5WwjdVwfFEttbudpiWIYN2umETrCzY,8805
|
|
612
575
|
udata/tests/workers/test_workers_helpers.py,sha256=_983ChRxas3gsjykaEpXWQUbk2qTMJgeFZpIAHTuhLk,647
|
|
613
|
-
udata/translations/udata.pot,sha256=
|
|
614
|
-
udata/translations/ar/LC_MESSAGES/udata.mo,sha256=
|
|
615
|
-
udata/translations/ar/LC_MESSAGES/udata.po,sha256=
|
|
616
|
-
udata/translations/de/LC_MESSAGES/udata.mo,sha256=
|
|
617
|
-
udata/translations/de/LC_MESSAGES/udata.po,sha256=
|
|
618
|
-
udata/translations/es/LC_MESSAGES/udata.mo,sha256=
|
|
619
|
-
udata/translations/es/LC_MESSAGES/udata.po,sha256=
|
|
620
|
-
udata/translations/fr/LC_MESSAGES/udata.mo,sha256=
|
|
621
|
-
udata/translations/fr/LC_MESSAGES/udata.po,sha256=
|
|
622
|
-
udata/translations/it/LC_MESSAGES/udata.mo,sha256
|
|
623
|
-
udata/translations/it/LC_MESSAGES/udata.po,sha256=
|
|
624
|
-
udata/translations/pt/LC_MESSAGES/udata.mo,sha256=
|
|
625
|
-
udata/translations/pt/LC_MESSAGES/udata.po,sha256=
|
|
626
|
-
udata/translations/sr/LC_MESSAGES/udata.mo,sha256=
|
|
627
|
-
udata/translations/sr/LC_MESSAGES/udata.po,sha256=
|
|
628
|
-
udata-
|
|
629
|
-
udata-
|
|
630
|
-
udata-
|
|
631
|
-
udata-
|
|
632
|
-
udata-
|
|
633
|
-
udata-
|
|
576
|
+
udata/translations/udata.pot,sha256=SmIBCAdmbjM_zmAfvV4hsDkjX9pHOgTW20YIZggxwTM,41394
|
|
577
|
+
udata/translations/ar/LC_MESSAGES/udata.mo,sha256=O8keis1Pw3XvdeMS_lt_mdDuK_G2TDZNrp-thSHzOCw,10510
|
|
578
|
+
udata/translations/ar/LC_MESSAGES/udata.po,sha256=bJnRJzmGmm0bCgQ4_MJ6wZLtRWetcFf3xomBnogzLwM,45777
|
|
579
|
+
udata/translations/de/LC_MESSAGES/udata.mo,sha256=h-7gcx31SIJLrq5nv_ainmI0k7VAZ7UGqZQQOVwmxZQ,12499
|
|
580
|
+
udata/translations/de/LC_MESSAGES/udata.po,sha256=IMS88uBKrUxRw7NtqSY3vxT7L37V6tAeCHOqjAmxmUo,45773
|
|
581
|
+
udata/translations/es/LC_MESSAGES/udata.mo,sha256=hJL2zpFKoDPoFqKg2T4xA0UW_fBip7yrc2pFg6zxV6Y,8414
|
|
582
|
+
udata/translations/es/LC_MESSAGES/udata.po,sha256=qIvfnaM6t8p94cQsFI-RdGHqfwMgKjj96eJHHJ36taE,44244
|
|
583
|
+
udata/translations/fr/LC_MESSAGES/udata.mo,sha256=4MwDABqZ-r99aj10G_6CKvwsE98puqsvPsQlyXjFRZ4,32177
|
|
584
|
+
udata/translations/fr/LC_MESSAGES/udata.po,sha256=gh0hIWPS5PVvZtOEmOojeQZTnFXmUt1XvoL-ptLkdNQ,54654
|
|
585
|
+
udata/translations/it/LC_MESSAGES/udata.mo,sha256=23YVn8RdIWxWKj0VkAWMZ071wtcm5pq-88UiASrCvgo,13256
|
|
586
|
+
udata/translations/it/LC_MESSAGES/udata.po,sha256=IF2lOizjPk7eEh_phwvarvhz8Lrc3haT6IbUwAjskaU,46011
|
|
587
|
+
udata/translations/pt/LC_MESSAGES/udata.mo,sha256=u5JAz24MHYW96FFn_h7lZejdNLc3N5s68vNVzkTFgzM,14228
|
|
588
|
+
udata/translations/pt/LC_MESSAGES/udata.po,sha256=KflmyEYuCeT9ZzQ2NEy3VtgI1CUUwV4z7xESewVMnCs,46371
|
|
589
|
+
udata/translations/sr/LC_MESSAGES/udata.mo,sha256=lbVQpVrSh-0xSUOhSyd-ADdhuNH9nd6Eo_T-zk-4Vrk,20441
|
|
590
|
+
udata/translations/sr/LC_MESSAGES/udata.po,sha256=As8H3QOp3cCd0TgwhHqIH2CRBCFfPoEnbU4dfcBsACM,51344
|
|
591
|
+
udata-13.0.1.dev21.dist-info/licenses/LICENSE,sha256=V8j_M8nAz8PvAOZQocyRDX7keai8UJ9skgmnwqETmdY,34520
|
|
592
|
+
udata-13.0.1.dev21.dist-info/METADATA,sha256=RIiMcxQC7qQynnXRKaVJx-zirM5AN3F3nj0XOEbH_h0,5119
|
|
593
|
+
udata-13.0.1.dev21.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
594
|
+
udata-13.0.1.dev21.dist-info/entry_points.txt,sha256=v2u12qO11i2lyLNIp136WmLJ-NHT-Kew3Duu8J-AXPM,614
|
|
595
|
+
udata-13.0.1.dev21.dist-info/top_level.txt,sha256=EF6CE6YSHd_og-8LCEA4q25ALUpWVe8D0okOLdMAE3A,6
|
|
596
|
+
udata-13.0.1.dev21.dist-info/RECORD,,
|