udata 7.0.6__py2.py3-none-any.whl → 7.0.6.dev28209__py2.py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of udata might be problematic. Click here for more details.
- udata/__init__.py +1 -1
- udata/commands/__init__.py +3 -0
- udata/commands/dcat.py +4 -7
- udata/core/activity/api.py +1 -1
- udata/core/activity/models.py +3 -4
- udata/core/activity/tasks.py +5 -6
- udata/core/dataset/factories.py +4 -2
- udata/core/dataset/models.py +5 -2
- udata/core/dataset/rdf.py +25 -65
- udata/core/dataset/search.py +1 -0
- udata/core/spatial/tests/test_api.py +10 -7
- udata/core/topic/factories.py +2 -2
- udata/harvest/backends/dcat.py +24 -128
- udata/harvest/tests/test_dcat_backend.py +5 -78
- udata/rdf.py +0 -1
- udata/search/__init__.py +2 -2
- udata/tests/api/test_datasets_api.py +45 -45
- udata/tests/api/test_me_api.py +14 -13
- udata/tests/dataset/test_dataset_actions.py +2 -2
- udata/tests/dataset/test_dataset_commands.py +3 -3
- udata/tests/dataset/test_dataset_model.py +1 -2
- udata/tests/organization/test_organization_model.py +3 -3
- udata/tests/organization/test_organization_rdf.py +3 -3
- udata/tests/reuse/test_reuse_model.py +2 -2
- udata/tests/search/test_adapter.py +12 -12
- udata/tests/search/test_results.py +4 -4
- udata/tests/site/test_site_api.py +3 -3
- udata/tests/site/test_site_metrics.py +3 -3
- udata/tests/site/test_site_rdf.py +6 -6
- udata/tests/test_activity.py +0 -12
- udata/tests/test_transfer.py +17 -18
- {udata-7.0.6.dist-info → udata-7.0.6.dev28209.dist-info}/METADATA +4 -9
- {udata-7.0.6.dist-info → udata-7.0.6.dev28209.dist-info}/RECORD +37 -43
- {udata-7.0.6.dist-info → udata-7.0.6.dev28209.dist-info}/entry_points.txt +0 -1
- udata/harvest/tests/csw_dcat/XSLT.xml +0 -4298
- udata/harvest/tests/csw_dcat/geonetwork-iso-page-1.xml +0 -1291
- udata/harvest/tests/csw_dcat/geonetwork-iso-page-3.xml +0 -1139
- udata/harvest/tests/csw_dcat/geonetwork-iso-page-5.xml +0 -1266
- udata/harvest/tests/dcat/evian.json +0 -464
- udata/migrations/2024-03-22-migrate-activity-kwargs-to-extras.py +0 -16
- {udata-7.0.6.dist-info → udata-7.0.6.dev28209.dist-info}/LICENSE +0 -0
- {udata-7.0.6.dist-info → udata-7.0.6.dev28209.dist-info}/WHEEL +0 -0
- {udata-7.0.6.dist-info → udata-7.0.6.dev28209.dist-info}/top_level.txt +0 -0
|
@@ -14,7 +14,7 @@ from udata.utils import clean_string
|
|
|
14
14
|
from udata.search import reindex, as_task_param
|
|
15
15
|
from udata.search.commands import index_model
|
|
16
16
|
from udata.core.dataset.search import DatasetSearch
|
|
17
|
-
from udata.core.dataset.factories import DatasetFactory, ResourceFactory,
|
|
17
|
+
from udata.core.dataset.factories import DatasetFactory, ResourceFactory, VisibleDatasetFactory
|
|
18
18
|
from udata.tests.api import APITestCase
|
|
19
19
|
|
|
20
20
|
from . import FakeSearch
|
|
@@ -104,35 +104,35 @@ class SearchAdaptorTest:
|
|
|
104
104
|
assertHasArgument(parser, 'page_size', int)
|
|
105
105
|
|
|
106
106
|
|
|
107
|
-
@pytest.mark.options(SEARCH_SERVICE_API_URL="smtg
|
|
107
|
+
@pytest.mark.options(SEARCH_SERVICE_API_URL="smtg")
|
|
108
108
|
class IndexingLifecycleTest(APITestCase):
|
|
109
109
|
|
|
110
110
|
@patch('requests.delete')
|
|
111
111
|
def test_producer_should_send_a_message_without_payload_if_not_indexable(self, mock_req):
|
|
112
|
-
fake_data =
|
|
112
|
+
fake_data = DatasetFactory(id='61fd30cb29ea95c7bc0e1211')
|
|
113
113
|
|
|
114
114
|
reindex.run(*as_task_param(fake_data))
|
|
115
115
|
|
|
116
116
|
search_service_url = current_app.config['SEARCH_SERVICE_API_URL']
|
|
117
|
-
url = f'{search_service_url}{DatasetSearch.search_url}{str(fake_data.id)}/unindex'
|
|
117
|
+
url = f'{search_service_url}{DatasetSearch.search_url}/{str(fake_data.id)}/unindex'
|
|
118
118
|
mock_req.assert_called_with(url)
|
|
119
119
|
|
|
120
120
|
@patch('requests.post')
|
|
121
121
|
def test_producer_should_send_a_message_with_payload_if_indexable(self, mock_req):
|
|
122
122
|
resource = ResourceFactory(schema=Schema(url="http://localhost/my-schema"))
|
|
123
|
-
fake_data =
|
|
123
|
+
fake_data = VisibleDatasetFactory(id='61fd30cb29ea95c7bc0e1211', resources=[resource])
|
|
124
124
|
|
|
125
125
|
reindex.run(*as_task_param(fake_data))
|
|
126
126
|
|
|
127
127
|
expected_value = {
|
|
128
128
|
'document': DatasetSearch.serialize(fake_data)
|
|
129
129
|
}
|
|
130
|
-
url = f"{current_app.config['SEARCH_SERVICE_API_URL']}{DatasetSearch.search_url}index"
|
|
130
|
+
url = f"{current_app.config['SEARCH_SERVICE_API_URL']}{DatasetSearch.search_url}/index"
|
|
131
131
|
mock_req.assert_called_with(url, json=expected_value)
|
|
132
132
|
|
|
133
133
|
@patch('requests.Session.post')
|
|
134
134
|
def test_index_model(self, mock_req):
|
|
135
|
-
fake_data =
|
|
135
|
+
fake_data = VisibleDatasetFactory(id='61fd30cb29ea95c7bc0e1211')
|
|
136
136
|
|
|
137
137
|
index_model(DatasetSearch, start=None, reindex=False, from_datetime=None)
|
|
138
138
|
|
|
@@ -146,7 +146,7 @@ class IndexingLifecycleTest(APITestCase):
|
|
|
146
146
|
@patch('requests.post')
|
|
147
147
|
@patch('requests.Session.post')
|
|
148
148
|
def test_reindex_model(self, mock_session, mock_req):
|
|
149
|
-
fake_data =
|
|
149
|
+
fake_data = VisibleDatasetFactory(id='61fd30cb29ea95c7bc0e1211')
|
|
150
150
|
|
|
151
151
|
index_model(DatasetSearch, start=datetime.datetime(2022, 2, 20, 20, 2), reindex=True)
|
|
152
152
|
|
|
@@ -167,10 +167,10 @@ class IndexingLifecycleTest(APITestCase):
|
|
|
167
167
|
|
|
168
168
|
@patch('requests.Session.post')
|
|
169
169
|
def test_index_model_from_datetime(self, mock_req):
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
fake_data =
|
|
173
|
-
|
|
170
|
+
VisibleDatasetFactory(id='61fd30cb29ea95c7bc0e1211',
|
|
171
|
+
last_modified_internal=datetime.datetime(2020, 1, 1))
|
|
172
|
+
fake_data = VisibleDatasetFactory(id='61fd30cb29ea95c7bc0e1212',
|
|
173
|
+
last_modified_internal=datetime.datetime(2022, 1, 1))
|
|
174
174
|
|
|
175
175
|
index_model(DatasetSearch, start=None, from_datetime=datetime.datetime(2023, 1, 1))
|
|
176
176
|
mock_req.assert_not_called()
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
from udata.tests.api import APITestCase
|
|
2
2
|
from udata.search.result import SearchResult
|
|
3
|
-
from udata.core.dataset.factories import
|
|
3
|
+
from udata.core.dataset.factories import VisibleDatasetFactory
|
|
4
4
|
from udata.core.dataset.search import DatasetSearch
|
|
5
5
|
from udata.models import Dataset
|
|
6
6
|
|
|
@@ -9,7 +9,7 @@ class ResultTest(APITestCase):
|
|
|
9
9
|
def test_results_get_objects(self):
|
|
10
10
|
data = []
|
|
11
11
|
for _ in range(3):
|
|
12
|
-
random_dataset =
|
|
12
|
+
random_dataset = VisibleDatasetFactory()
|
|
13
13
|
data.append(DatasetSearch.serialize(random_dataset))
|
|
14
14
|
|
|
15
15
|
search_class = DatasetSearch.temp_search()
|
|
@@ -30,10 +30,10 @@ class ResultTest(APITestCase):
|
|
|
30
30
|
def test_results_should_not_fail_on_missing_objects(self):
|
|
31
31
|
data = []
|
|
32
32
|
for _ in range(3):
|
|
33
|
-
random_dataset =
|
|
33
|
+
random_dataset = VisibleDatasetFactory()
|
|
34
34
|
data.append(DatasetSearch.serialize(random_dataset))
|
|
35
35
|
|
|
36
|
-
to_delete_random_dataset =
|
|
36
|
+
to_delete_random_dataset = VisibleDatasetFactory()
|
|
37
37
|
data.append(DatasetSearch.serialize(to_delete_random_dataset))
|
|
38
38
|
|
|
39
39
|
search_class = DatasetSearch.temp_search()
|
|
@@ -5,7 +5,7 @@ from flask import url_for
|
|
|
5
5
|
from udata.core.site.models import Site
|
|
6
6
|
from udata.core.site.models import current_site
|
|
7
7
|
from udata.core.site.factories import SiteFactory
|
|
8
|
-
from udata.core.dataset.factories import
|
|
8
|
+
from udata.core.dataset.factories import VisibleDatasetFactory
|
|
9
9
|
from udata.core.reuse.factories import VisibleReuseFactory
|
|
10
10
|
from udata.core.user.factories import AdminFactory
|
|
11
11
|
|
|
@@ -22,7 +22,7 @@ class SiteAPITest(APITestCase):
|
|
|
22
22
|
def test_get_home_datasets(self):
|
|
23
23
|
site = SiteFactory.create(
|
|
24
24
|
id=self.app.config['SITE_ID'],
|
|
25
|
-
settings__home_datasets=
|
|
25
|
+
settings__home_datasets=VisibleDatasetFactory.create_batch(3)
|
|
26
26
|
)
|
|
27
27
|
current_site.reload()
|
|
28
28
|
|
|
@@ -46,7 +46,7 @@ class SiteAPITest(APITestCase):
|
|
|
46
46
|
self.assertEqual(len(response.json), len(site.settings.home_reuses))
|
|
47
47
|
|
|
48
48
|
def test_set_home_datasets(self):
|
|
49
|
-
ids = [d.id for d in
|
|
49
|
+
ids = [d.id for d in VisibleDatasetFactory.create_batch(3)]
|
|
50
50
|
|
|
51
51
|
self.login(AdminFactory())
|
|
52
52
|
response = self.put(url_for('api.home_datasets'), ids)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import pytest
|
|
2
2
|
|
|
3
|
-
from udata.core.dataset.factories import DatasetFactory,
|
|
3
|
+
from udata.core.dataset.factories import DatasetFactory, VisibleDatasetFactory, OrganizationFactory
|
|
4
4
|
from udata.core.reuse.factories import VisibleReuseFactory
|
|
5
5
|
from udata.harvest.tests.factories import HarvestSourceFactory
|
|
6
6
|
from udata.core.site.factories import SiteFactory
|
|
@@ -34,11 +34,11 @@ class SiteMetricTest:
|
|
|
34
34
|
id=app.config['SITE_ID']
|
|
35
35
|
)
|
|
36
36
|
DatasetFactory.create_batch(2)
|
|
37
|
-
|
|
37
|
+
VisibleDatasetFactory.create_batch(3)
|
|
38
38
|
|
|
39
39
|
site.count_datasets()
|
|
40
40
|
|
|
41
|
-
assert site.get_metrics()['datasets'] ==
|
|
41
|
+
assert site.get_metrics()['datasets'] == 3
|
|
42
42
|
|
|
43
43
|
def test_resources_metric(self, app):
|
|
44
44
|
site = SiteFactory.create(
|
|
@@ -6,7 +6,7 @@ from rdflib import URIRef, Literal, Graph
|
|
|
6
6
|
from rdflib.namespace import RDF, FOAF
|
|
7
7
|
from rdflib.resource import Resource
|
|
8
8
|
|
|
9
|
-
from udata.core.dataset.factories import
|
|
9
|
+
from udata.core.dataset.factories import VisibleDatasetFactory
|
|
10
10
|
from udata.core.dataset.models import Dataset
|
|
11
11
|
from udata.core.organization.factories import OrganizationFactory
|
|
12
12
|
from udata.core.site.factories import SiteFactory
|
|
@@ -26,7 +26,7 @@ class CatalogTest:
|
|
|
26
26
|
site = SiteFactory()
|
|
27
27
|
home_url = url_for('api.site', _external=True)
|
|
28
28
|
uri = url_for('api.site_rdf_catalog', _external=True)
|
|
29
|
-
datasets =
|
|
29
|
+
datasets = VisibleDatasetFactory.create_batch(3)
|
|
30
30
|
catalog = build_catalog(site, datasets)
|
|
31
31
|
graph = catalog.graph
|
|
32
32
|
|
|
@@ -59,8 +59,8 @@ class CatalogTest:
|
|
|
59
59
|
site = SiteFactory()
|
|
60
60
|
org = OrganizationFactory()
|
|
61
61
|
user = UserFactory()
|
|
62
|
-
datasets =
|
|
63
|
-
datasets +=
|
|
62
|
+
datasets = VisibleDatasetFactory.create_batch(2, owner=user)
|
|
63
|
+
datasets += VisibleDatasetFactory.create_batch(2, organization=org)
|
|
64
64
|
catalog = build_catalog(site, datasets)
|
|
65
65
|
graph = catalog.graph
|
|
66
66
|
|
|
@@ -82,7 +82,7 @@ class CatalogTest:
|
|
|
82
82
|
page=1, page_size=page_size, _external=True)
|
|
83
83
|
uri_last = url_for('api.site_rdf_catalog_format', format='json',
|
|
84
84
|
page=2, page_size=page_size, _external=True)
|
|
85
|
-
|
|
85
|
+
VisibleDatasetFactory.create_batch(total)
|
|
86
86
|
|
|
87
87
|
# First page
|
|
88
88
|
datasets = Dataset.objects.paginate(1, page_size)
|
|
@@ -208,7 +208,7 @@ class SiteRdfViewsTest:
|
|
|
208
208
|
assert_redirects(response, expected_url)
|
|
209
209
|
|
|
210
210
|
def test_catalog_rdf_paginate(self, client):
|
|
211
|
-
|
|
211
|
+
VisibleDatasetFactory.create_batch(4)
|
|
212
212
|
url = url_for('api.site_rdf_catalog_format', format='n3', page_size=3)
|
|
213
213
|
next_url = url_for('api.site_rdf_catalog_format', format='n3',
|
|
214
214
|
page=2, page_size=3, _external=True)
|
udata/tests/test_activity.py
CHANGED
|
@@ -27,18 +27,6 @@ class ActivityTest(WebTestMixin, DBTestMixin, TestCase):
|
|
|
27
27
|
self.assertEqual(len(activities), 1)
|
|
28
28
|
self.assertIsInstance(activities[0], FakeActivity)
|
|
29
29
|
|
|
30
|
-
def test_create_and_retrieve_with_extras(self):
|
|
31
|
-
FakeActivity.objects.create(actor=self.user, related_to=self.fake, extras={'some_key': 'some_value',
|
|
32
|
-
'other_key': 'other_value'})
|
|
33
|
-
|
|
34
|
-
activities = Activity.objects(actor=self.user)
|
|
35
|
-
|
|
36
|
-
self.assertEqual(len(activities), 1)
|
|
37
|
-
self.assertEqual(activities[0].extras['some_key'], 'some_value')
|
|
38
|
-
self.assertEqual(activities[0].extras['other_key'], 'other_value')
|
|
39
|
-
self.assertIsInstance(activities[0], FakeActivity)
|
|
40
|
-
|
|
41
|
-
|
|
42
30
|
def test_create_and_retrieve_for_org(self):
|
|
43
31
|
org = OrganizationFactory()
|
|
44
32
|
FakeActivity.objects.create(
|
udata/tests/test_transfer.py
CHANGED
|
@@ -7,15 +7,14 @@ from udata.features.transfer.actions import request_transfer, accept_transfer
|
|
|
7
7
|
from udata.features.transfer.notifications import (
|
|
8
8
|
transfer_request_notifications
|
|
9
9
|
)
|
|
10
|
-
from udata.models import Member
|
|
10
|
+
from udata.models import Member
|
|
11
|
+
from udata.core.user.metrics import update_owner_metrics
|
|
12
|
+
from udata.core.organization.metrics import update_org_metrics
|
|
11
13
|
|
|
12
14
|
from udata.utils import faker
|
|
13
|
-
from udata.core.dataset.factories import
|
|
15
|
+
from udata.core.dataset.factories import VisibleDatasetFactory
|
|
14
16
|
from udata.core.organization.factories import OrganizationFactory
|
|
15
|
-
from udata.core.
|
|
16
|
-
from udata.core.user.factories import UserFactory
|
|
17
|
-
from udata.core.user.metrics import update_owner_metrics # noqa needed to register signals
|
|
18
|
-
from udata.tests.helpers import assert_emit
|
|
17
|
+
from udata.core.user.factories import UserFactory
|
|
19
18
|
|
|
20
19
|
|
|
21
20
|
pytestmark = pytest.mark.usefixtures('clean_db')
|
|
@@ -33,7 +32,7 @@ class TransferStartTest:
|
|
|
33
32
|
|
|
34
33
|
def test_request_transfer_owner_to_user(self):
|
|
35
34
|
user = UserFactory()
|
|
36
|
-
dataset =
|
|
35
|
+
dataset = VisibleDatasetFactory(owner=user)
|
|
37
36
|
recipient = UserFactory()
|
|
38
37
|
comment = faker.sentence()
|
|
39
38
|
|
|
@@ -44,7 +43,7 @@ class TransferStartTest:
|
|
|
44
43
|
user = UserFactory()
|
|
45
44
|
member = Member(user=user, role='admin')
|
|
46
45
|
org = OrganizationFactory(members=[member])
|
|
47
|
-
dataset =
|
|
46
|
+
dataset = VisibleDatasetFactory(owner=user, organization=org)
|
|
48
47
|
recipient = UserFactory()
|
|
49
48
|
comment = faker.sentence()
|
|
50
49
|
|
|
@@ -53,7 +52,7 @@ class TransferStartTest:
|
|
|
53
52
|
|
|
54
53
|
def test_request_transfer_user_to_organization(self):
|
|
55
54
|
user = UserFactory()
|
|
56
|
-
dataset =
|
|
55
|
+
dataset = VisibleDatasetFactory(owner=user)
|
|
57
56
|
recipient = OrganizationFactory()
|
|
58
57
|
comment = faker.sentence()
|
|
59
58
|
|
|
@@ -62,7 +61,7 @@ class TransferStartTest:
|
|
|
62
61
|
|
|
63
62
|
def test_request_transfer_not_authorized_not_owner(self):
|
|
64
63
|
user = UserFactory()
|
|
65
|
-
dataset =
|
|
64
|
+
dataset = VisibleDatasetFactory(owner=UserFactory())
|
|
66
65
|
recipient = UserFactory()
|
|
67
66
|
comment = faker.sentence()
|
|
68
67
|
|
|
@@ -74,7 +73,7 @@ class TransferStartTest:
|
|
|
74
73
|
user = UserFactory()
|
|
75
74
|
member = Member(user=user, role='editor')
|
|
76
75
|
org = OrganizationFactory(members=[member])
|
|
77
|
-
dataset =
|
|
76
|
+
dataset = VisibleDatasetFactory(organization=org)
|
|
78
77
|
recipient = UserFactory()
|
|
79
78
|
comment = faker.sentence()
|
|
80
79
|
|
|
@@ -84,7 +83,7 @@ class TransferStartTest:
|
|
|
84
83
|
|
|
85
84
|
def test_request_transfer_to_self(self):
|
|
86
85
|
user = UserFactory()
|
|
87
|
-
dataset =
|
|
86
|
+
dataset = VisibleDatasetFactory(owner=user)
|
|
88
87
|
comment = faker.sentence()
|
|
89
88
|
|
|
90
89
|
login_user(user)
|
|
@@ -95,7 +94,7 @@ class TransferStartTest:
|
|
|
95
94
|
user = UserFactory()
|
|
96
95
|
member = Member(user=user, role='admin')
|
|
97
96
|
org = OrganizationFactory(members=[member])
|
|
98
|
-
dataset =
|
|
97
|
+
dataset = VisibleDatasetFactory(owner=user, organization=org)
|
|
99
98
|
comment = faker.sentence()
|
|
100
99
|
|
|
101
100
|
login_user(user)
|
|
@@ -108,7 +107,7 @@ class TransferAcceptTest:
|
|
|
108
107
|
def test_recipient_user_can_accept_transfer(self):
|
|
109
108
|
owner = UserFactory()
|
|
110
109
|
recipient = UserFactory()
|
|
111
|
-
subject =
|
|
110
|
+
subject = VisibleDatasetFactory(owner=owner)
|
|
112
111
|
transfer = TransferFactory(owner=owner,
|
|
113
112
|
recipient=recipient,
|
|
114
113
|
subject=subject)
|
|
@@ -137,7 +136,7 @@ class TransferAcceptTest:
|
|
|
137
136
|
owner = UserFactory()
|
|
138
137
|
admin = UserFactory()
|
|
139
138
|
org = OrganizationFactory(members=[Member(user=admin, role='admin')])
|
|
140
|
-
subject =
|
|
139
|
+
subject = VisibleDatasetFactory(owner=owner)
|
|
141
140
|
transfer = TransferFactory(owner=owner,
|
|
142
141
|
recipient=org,
|
|
143
142
|
subject=subject)
|
|
@@ -173,7 +172,7 @@ class TransferAcceptTest:
|
|
|
173
172
|
owner = UserFactory()
|
|
174
173
|
editor = UserFactory()
|
|
175
174
|
org = OrganizationFactory(members=[Member(user=editor, role='editor')])
|
|
176
|
-
subject =
|
|
175
|
+
subject = VisibleDatasetFactory(organization=org)
|
|
177
176
|
transfer = TransferFactory(owner=owner,
|
|
178
177
|
recipient=org,
|
|
179
178
|
subject=subject)
|
|
@@ -186,7 +185,7 @@ class TransferAcceptTest:
|
|
|
186
185
|
class TransferNotificationsTest:
|
|
187
186
|
def test_pending_transfer_request_for_user(self):
|
|
188
187
|
user = UserFactory()
|
|
189
|
-
datasets =
|
|
188
|
+
datasets = VisibleDatasetFactory.create_batch(2, owner=user)
|
|
190
189
|
recipient = UserFactory()
|
|
191
190
|
comment = faker.sentence()
|
|
192
191
|
transfers = {}
|
|
@@ -207,7 +206,7 @@ class TransferNotificationsTest:
|
|
|
207
206
|
|
|
208
207
|
def test_pending_transfer_request_for_org(self):
|
|
209
208
|
user = UserFactory()
|
|
210
|
-
datasets =
|
|
209
|
+
datasets = VisibleDatasetFactory.create_batch(2, owner=user)
|
|
211
210
|
recipient = UserFactory()
|
|
212
211
|
member = Member(user=recipient, role='editor')
|
|
213
212
|
org = OrganizationFactory(members=[member])
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: udata
|
|
3
|
-
Version: 7.0.6
|
|
3
|
+
Version: 7.0.6.dev28209
|
|
4
4
|
Summary: Open data portal
|
|
5
5
|
Home-page: https://github.com/opendatateam/udata
|
|
6
6
|
Author: Opendata Team
|
|
@@ -132,18 +132,13 @@ for publishing udata's roadmap and for building consensus around it.
|
|
|
132
132
|
It is collectively taken care of by members of the
|
|
133
133
|
[OpenDataTeam](https://github.com/opendatateam).
|
|
134
134
|
|
|
135
|
-
[readthedocs-url]: https://udata.readthedocs.io/en/
|
|
135
|
+
[readthedocs-url]: https://udata.readthedocs.io/en/latest/
|
|
136
136
|
|
|
137
137
|
# Changelog
|
|
138
138
|
|
|
139
|
-
##
|
|
139
|
+
## Current (in progress)
|
|
140
140
|
|
|
141
|
-
-
|
|
142
|
-
- Fix, do not fail on spatial coverage harvesting exception and allow literal spatial BBOX from Arcgis [2998](https://github.com/opendatateam/udata/pull/2998)
|
|
143
|
-
- Mock calls to example.com [#3000](https://github.com/opendatateam/udata/pull/3000)
|
|
144
|
-
- Fix duplicate logs in console commands [#2996](https://github.com/opendatateam/udata/pull/2996)
|
|
145
|
-
- Refactor `Activity.kwargs` into `Activity.extras` to facilitate its usage [#2999](https://github.com/opendatateam/udata/pull/2999)
|
|
146
|
-
- :warning: Datasets without resources are now visible and indexable [#2997](https://github.com/opendatateam/udata/pull/2997)
|
|
141
|
+
- Nothing yet
|
|
147
142
|
|
|
148
143
|
## 7.0.5 (2024-03-20)
|
|
149
144
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
tasks/__init__.py,sha256=CnVhb_TV-6nMhxVR6itnBmvuU2OSCs02AfNB4irVBTE,8132
|
|
2
2
|
tasks/helpers.py,sha256=k_HiuiEJNgQLvWdeHqczPOAcrYpFjEepBeKo7EQzY8M,994
|
|
3
|
-
udata/__init__.py,sha256=
|
|
3
|
+
udata/__init__.py,sha256=p1rfcRFQRLBRXCV94I_0kZ4htzVD7Dprf79d7Zwiid8,101
|
|
4
4
|
udata/app.py,sha256=u7bnTZp4VJVkq-yxnlUNXSkwlh04wVF7jXL7ic2LxKk,7142
|
|
5
5
|
udata/assets.py,sha256=aMa-MnAEXVSTavptSn2V8sUE6jL_N0MrYCQ6_QpsuHs,645
|
|
6
6
|
udata/entrypoints.py,sha256=8bZUvZ8ICO3kZxa8xDUaen6YS_OAGNKHFvaD7d8BOk0,2687
|
|
@@ -8,7 +8,7 @@ udata/errors.py,sha256=chc1880TPGteIL-Rfb9hdeAyZI4vdWZQU3JQ_5VF5t0,116
|
|
|
8
8
|
udata/factories.py,sha256=KKPQeYzMdCxwGVLu9_Y-LxMx14cIgXA0jG2pHZ7uvFY,496
|
|
9
9
|
udata/i18n.py,sha256=E-JoY57Cv4vgPvChkWjpwZAbuYVI8e6BO6raeu_3_Pw,8352
|
|
10
10
|
udata/mail.py,sha256=dAMcbEtk5e54alpQezvF5adDrRPgdaT36QEdHD_5v50,2145
|
|
11
|
-
udata/rdf.py,sha256=
|
|
11
|
+
udata/rdf.py,sha256=ClFUcb_jqQCkTme7LUD_yTACkjz97Q_5Oa5BNOxI7SE,9896
|
|
12
12
|
udata/routing.py,sha256=ztmFx4YzqlEqa-HG9a43WfGYfULC95ZxTlkr4iHkzVQ,7045
|
|
13
13
|
udata/sentry.py,sha256=KiZz0PpmYpZMvykH9UAbHpF4xBY0Q-8DeiEbXEHDUdw,2683
|
|
14
14
|
udata/settings.py,sha256=nnFcD1DBt3IbO2a10kE5ux9Q2KyeyOvXYLSOLWlF7nw,17142
|
|
@@ -36,10 +36,10 @@ udata/auth/helpers.py,sha256=y_BTPYPVy40GPN-Mqmj1OSAzqxSlttSHGhJIAdnSBn8,267
|
|
|
36
36
|
udata/auth/mails.py,sha256=72LmU1-uV7hQAmkqlXMYYc5nCVEUI-Je4jPkcV9MdHA,1673
|
|
37
37
|
udata/auth/password_validation.py,sha256=KMr5T5HLeo-tYF-oVxJ-PAMPgkE0h2z0xcXZX2ymHXk,1770
|
|
38
38
|
udata/auth/views.py,sha256=wxk2GEBHHqgyUk81RdeZMBWPjDn69crmtb_blkhXsNs,6164
|
|
39
|
-
udata/commands/__init__.py,sha256=
|
|
39
|
+
udata/commands/__init__.py,sha256=9oadiuqiVBNgFepEU6Sj3VMhMJpB2l5tyE0zPm8RgNI,7821
|
|
40
40
|
udata/commands/cache.py,sha256=uVpb3WQdqg8NZRSiWEa7cYdcx3QyFF53UAI_f2pXtV8,341
|
|
41
41
|
udata/commands/db.py,sha256=1gQwffdopW2l6BMfj0MiJ7cKLN8zfi3WLFRaIrPxQn8,11131
|
|
42
|
-
udata/commands/dcat.py,sha256=
|
|
42
|
+
udata/commands/dcat.py,sha256=lbID57nogPsQ1EHbZ_sysRNokNE2D8H8B33BhgIGSHw,3136
|
|
43
43
|
udata/commands/fixtures.py,sha256=RrzRdUBJ2FbS-iDsEMPu5Nfp0WJXzU2rk3GB9t6JlRc,5852
|
|
44
44
|
udata/commands/images.py,sha256=bzVvLj9LZ_nkyTdPlPe4g5U26k53VTH5ADCWmOfM8e4,2037
|
|
45
45
|
udata/commands/info.py,sha256=Gf0AT8yP1tScbKLz8aXurlro55ot19sefrbOhELi034,1548
|
|
@@ -53,10 +53,10 @@ udata/commands/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hS
|
|
|
53
53
|
udata/commands/tests/fixtures.py,sha256=h78grSpZDgOwvmezyD3qBpiSnpxaQ9tDeQOr3sB8EiY,1581
|
|
54
54
|
udata/core/__init__.py,sha256=n7TBP0lkYJl-BLoc67V5fyaawrWmsrWG_mLIF49UFOY,385
|
|
55
55
|
udata/core/activity/__init__.py,sha256=4vB92owvzwn2VVxbFWGNcfESb6izDzvbj6lmLH4ssrU,299
|
|
56
|
-
udata/core/activity/api.py,sha256=
|
|
57
|
-
udata/core/activity/models.py,sha256=
|
|
56
|
+
udata/core/activity/api.py,sha256=CeVU0ZtQZwQZMLh8Yt13LRGUohFo7iRf1bogbIoiI_4,3268
|
|
57
|
+
udata/core/activity/models.py,sha256=z5qe7Hu3IoGCGeGyI31WaFPCg4C6q9BpUrTKK_ik4XI,2073
|
|
58
58
|
udata/core/activity/signals.py,sha256=nplrZFDDuGVXwLWpI_Lhe64mBRMRtwooJG1KcCH6Ses,191
|
|
59
|
-
udata/core/activity/tasks.py,sha256=
|
|
59
|
+
udata/core/activity/tasks.py,sha256=vBmxD96-svZpuEwIdm7vwgqMIZq0JgUv8e8dH1YaKLU,1168
|
|
60
60
|
udata/core/badges/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
61
61
|
udata/core/badges/api.py,sha256=BVHULesVK3godViXVOFSjGPCLYmHqLXXywsf0EaJpr8,993
|
|
62
62
|
udata/core/badges/commands.py,sha256=NMihQH6ABUlkYpR2lNFW4dkeaWOjpijW7voudww8zW4,1129
|
|
@@ -85,13 +85,13 @@ udata/core/dataset/commands.py,sha256=UO769j5PBjLNRDgy5pBEZVRgwuTBBhbwkhwmx4CEgd
|
|
|
85
85
|
udata/core/dataset/csv.py,sha256=d6JMuvlov_vR7EN10rJa6Q03Il0PfbzMTHQIud5H8qg,3240
|
|
86
86
|
udata/core/dataset/events.py,sha256=DI71VfRc1eDTtgWQ3TJx5gtUw2MO0O_CVLCKLq0OIF0,3207
|
|
87
87
|
udata/core/dataset/exceptions.py,sha256=uI_NvZRZMr_MtYQBYdLD8tk-BIUeDDfMMcrWwqV7mi8,494
|
|
88
|
-
udata/core/dataset/factories.py,sha256=
|
|
88
|
+
udata/core/dataset/factories.py,sha256=yWW6pb-fcLxUvAVTn7hNJ4ZIcihiaclWu5TDfeCJWTE,2807
|
|
89
89
|
udata/core/dataset/forms.py,sha256=auVYxLrPMdtvf2uhgEpJviHiQOSfLpBJdpZ3dXwcjNs,6154
|
|
90
|
-
udata/core/dataset/models.py,sha256=
|
|
90
|
+
udata/core/dataset/models.py,sha256=SK16LJP_vlSkeGrLJTFbHFNc9iHWwM6_A6DOT0SX5D4,39609
|
|
91
91
|
udata/core/dataset/permissions.py,sha256=3F2J7le3_rEYNhh88o3hSRWHAAt01_yHJM6RPmvCrRo,1090
|
|
92
92
|
udata/core/dataset/preview.py,sha256=puPKT3fBD7ezAcT6owh0JK1_rGNDFZOqgT223qGn3LY,2597
|
|
93
|
-
udata/core/dataset/rdf.py,sha256=
|
|
94
|
-
udata/core/dataset/search.py,sha256=
|
|
93
|
+
udata/core/dataset/rdf.py,sha256=Tcl31pfq2mCHcfaOPh-BgjwBTV0SWDlKxznuJ72ca-g,21561
|
|
94
|
+
udata/core/dataset/search.py,sha256=LOHtOJYZJDPJ5S_Ch7QmmvInpw8aysmNlzbAWbMq9d0,5329
|
|
95
95
|
udata/core/dataset/signals.py,sha256=TK6dfrOUitZZkGGOh6XmhYqYvIjzZpI70JTLV4k-JRM,161
|
|
96
96
|
udata/core/dataset/tasks.py,sha256=VB1sQ6Fwbax46IRLGyZUDPGgGOWBYrzAlKzV3npDCyM,8412
|
|
97
97
|
udata/core/discussions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -185,7 +185,7 @@ udata/core/spatial/geoids.py,sha256=UqCto4dtQYPXOxyG7sx_0npzM6yvId40ngw3eAlmioQ,
|
|
|
185
185
|
udata/core/spatial/models.py,sha256=WA1jXgw6LYU_5uRrB8WXDIYYFZl4mzbRnJ5_VMkobRA,5105
|
|
186
186
|
udata/core/spatial/translations.py,sha256=7BjZAMPObm1fwM5U_wnrlpcG-1FtMoS6Z5E3h3Y3sog,533
|
|
187
187
|
udata/core/spatial/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
188
|
-
udata/core/spatial/tests/test_api.py,sha256=
|
|
188
|
+
udata/core/spatial/tests/test_api.py,sha256=o1iPED3Vz9uw_g25LAi4KIvVMpXy_fp5icLX3JlT3-Q,10302
|
|
189
189
|
udata/core/spatial/tests/test_fields.py,sha256=MjMsx-2ejsXDvo2iaGewZsOEbSuKwudmA5nKLOdPdTc,9745
|
|
190
190
|
udata/core/spatial/tests/test_geoid.py,sha256=ovVphCxHb5a-iWl7eoLASRAFUY0CGfNEq-MuqHqTPgE,1533
|
|
191
191
|
udata/core/spatial/tests/test_models.py,sha256=SZx3NhngXWgVon5BKtP0pPPEdvxGTvHQlYFE-fewzTU,951
|
|
@@ -203,7 +203,7 @@ udata/core/tags/views.py,sha256=BoBktrbx0tqkIu3yYLj_XJjB7ZHu_tq5vfEBrh0MUwI,384
|
|
|
203
203
|
udata/core/topic/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
204
204
|
udata/core/topic/api.py,sha256=G3hN4e9rK5mIYvDLvPpAOo_DN2SySAGykVVvXGx4uMY,5105
|
|
205
205
|
udata/core/topic/apiv2.py,sha256=cf-WUSZ7P6Tss3S8utS-uhreLgGI5XR3nn_1UWiZ_Xs,9846
|
|
206
|
-
udata/core/topic/factories.py,sha256=
|
|
206
|
+
udata/core/topic/factories.py,sha256=BEk6YZdaHK-XzCNyD5v_HIKahMe7Lp8aKOlCZLuivtk,711
|
|
207
207
|
udata/core/topic/forms.py,sha256=XqGI4nANdsm2UkIiGAuVqEdZkN5N9sqJ4VaM_PhTaVQ,987
|
|
208
208
|
udata/core/topic/models.py,sha256=PZsYfiuEU86iL1x-qvDevn4Io8lKGahAbqky03j1N2k,2071
|
|
209
209
|
udata/core/topic/parsers.py,sha256=oe_4ehnlgPKre2GG1LA6hcQa6H5V5q1adUsQIzVqb_Q,876
|
|
@@ -263,28 +263,23 @@ udata/harvest/signals.py,sha256=wlXTi1E7rIVyNvxw0yUqyN5gF3thg276LAOmAF9vDJY,1338
|
|
|
263
263
|
udata/harvest/tasks.py,sha256=0VhefKCQJSU_puTpdKOpvt3WORXHAFWGEB-R_MhB12M,1981
|
|
264
264
|
udata/harvest/backends/__init__.py,sha256=qcLhHKWO97TeWd93ZwymG_Cc9FO7sMM7h4fs6XYdtS8,447
|
|
265
265
|
udata/harvest/backends/base.py,sha256=oaPQcQ0onIXH5ofUtWH5sM6_5_wSBLawHSOjeeoG6jQ,12258
|
|
266
|
-
udata/harvest/backends/dcat.py,sha256=
|
|
266
|
+
udata/harvest/backends/dcat.py,sha256=U7PjYfpBTYEEmk-lQdkXfMcaCa39gSlL5Gy4ywqhAQo,10504
|
|
267
267
|
udata/harvest/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
268
268
|
udata/harvest/tests/factories.py,sha256=CbQORC1OJ1_Agtv_3LjCXysNumjMYlROwZPSEAHo8sM,2005
|
|
269
269
|
udata/harvest/tests/test_actions.py,sha256=7xSpouCAcf5p_bd38zHCyPN7sKWUUZXA7IlpI-yNVrQ,27603
|
|
270
270
|
udata/harvest/tests/test_api.py,sha256=QXhseHfnkBEmMbIJzroMdDYGLDj6Njal1s-2sn0xhEM,14888
|
|
271
271
|
udata/harvest/tests/test_base_backend.py,sha256=JA8Df1Eu-lEPLZfxyK81bsmT6exOjV_3PtKHJekAp5g,12092
|
|
272
|
-
udata/harvest/tests/test_dcat_backend.py,sha256=
|
|
272
|
+
udata/harvest/tests/test_dcat_backend.py,sha256=mqdwIvIA3rqN8DKPCWuBq2WYgYyvnu5m4YcDiNsjwxE,28536
|
|
273
273
|
udata/harvest/tests/test_filters.py,sha256=V2HFZlexIJa6r1DX6g2ktvIgjg4gSY11QPfPOd3_Oug,2370
|
|
274
274
|
udata/harvest/tests/test_models.py,sha256=p2VazyrPXSArBuf8Kf19TGPcQ86SnOGCGmvjcMOw0s0,924
|
|
275
275
|
udata/harvest/tests/test_notifications.py,sha256=ZwtwioittW3XcZc0x6zbHjs1dVaAxPytlVymnJa5w0E,817
|
|
276
276
|
udata/harvest/tests/test_tasks.py,sha256=OfUnsg6x3DtbS2s3ToRDZY46aqqmbowN1sqASmsLaN4,680
|
|
277
|
-
udata/harvest/tests/csw_dcat/XSLT.xml,sha256=vnJF2rom7oPVpzI9jwzwG6ek1TDXTY8GfbuQq_3vFxs,180475
|
|
278
|
-
udata/harvest/tests/csw_dcat/geonetwork-iso-page-1.xml,sha256=cANO-kr4NEDgq7n6pG_9hnOcPrYPinG6GuKoZWuPV3g,82058
|
|
279
|
-
udata/harvest/tests/csw_dcat/geonetwork-iso-page-3.xml,sha256=sLzItw0Pxl68qn-XB64IqZGHJGcdVPJvCNliYK9GFV4,67901
|
|
280
|
-
udata/harvest/tests/csw_dcat/geonetwork-iso-page-5.xml,sha256=uzCyMx0HsoVJhTFvh8hyFxWDdOUuiRzPYiDXv_zVmfY,81713
|
|
281
277
|
udata/harvest/tests/csw_dcat/geonetworkv4-page-1.xml,sha256=k2pKidlQvJpoltGFm9HNh6KHai7nrPcpinDSQS4dGkQ,17040
|
|
282
278
|
udata/harvest/tests/csw_dcat/geonetworkv4-page-3.xml,sha256=fsN0E4TVd_ts-sYA612yBP-gRAwpyQWqJdNm7ohczbs,20945
|
|
283
279
|
udata/harvest/tests/csw_dcat/geonetworkv4-page-5.xml,sha256=0VmPp1kspik7YAmOFyr-3yJLzWGA6kuQp_x_w-W385o,21213
|
|
284
280
|
udata/harvest/tests/dcat/bnodes.jsonld,sha256=Leqny-ccp30564yojQYYckw_HKbhR0f5qUCaavc2ruE,7964
|
|
285
281
|
udata/harvest/tests/dcat/bnodes.xml,sha256=xuOcd9uEDRlvn9HOVqEPz-Pe3g4DCygTIChZZiA4jac,9470
|
|
286
282
|
udata/harvest/tests/dcat/catalog.xml,sha256=pBVSNZzA4gkgxHCttrjuBBVSumLFgXgvtSgnHr0ybk4,9239
|
|
287
|
-
udata/harvest/tests/dcat/evian.json,sha256=EeJT9NKrV4hfGfnkJVZG4gJaSLtzjNUBKu9rFO1KgHk,16646
|
|
288
283
|
udata/harvest/tests/dcat/flat.jsonld,sha256=BAw08MDhtW9Px3q6RAoTIqO_OwJmAwBS9EpC8BY_x98,8459
|
|
289
284
|
udata/harvest/tests/dcat/geonetwork.xml,sha256=9_pksE74Zzkbgs9okj6hEbo8CJS0FZjEnIdvopKfm7k,7928
|
|
290
285
|
udata/harvest/tests/dcat/nested.jsonld,sha256=GxGIsMcMv2PfxYj-e_gAnCXodxCgpwJKMA3wIb7xA7g,3911
|
|
@@ -319,7 +314,6 @@ udata/migrations/2022-10-10-add-fs_uniquifier-to-user-model.py,sha256=ZKfrhPIeIr
|
|
|
319
314
|
udata/migrations/2022-10-10-migrate-harvest-extras.py,sha256=HyBy7f1epYuBry68lUYTe7fMWoiyuIQ6xVwzwljtGqI,2254
|
|
320
315
|
udata/migrations/2023-02-08-rename-internal-dates.py,sha256=AYewRwdVCfHsJ5APbhQWfihH-nerT3jOzQsSrXW9RQ0,1651
|
|
321
316
|
udata/migrations/2024-01-29-fix-reuse-and-dataset-with-private-None.py,sha256=173Zf67G-oJgLwXeQUpzoCzcpAOu1ifcLb4eUMJ9nfU,590
|
|
322
|
-
udata/migrations/2024-03-22-migrate-activity-kwargs-to-extras.py,sha256=n5-udd1IdaD-e3q5cZx9nC4uMUSyJyT1TkI6I4gFgh0,400
|
|
323
317
|
udata/migrations/__init__.py,sha256=3YP8ppVG5Jx_u6fWJ099X6m3JDYsbd_wetpu4arl6_U,10882
|
|
324
318
|
udata/models/__init__.py,sha256=1jVsYyZqtPKOuGgbhHmJd3rWJjAv5t7k51_j5C43m8c,5528
|
|
325
319
|
udata/models/badges_field.py,sha256=NnHA6OT40UysQzO3qnxiDNLR-SCj19KlqD1c-p1DP2Q,984
|
|
@@ -334,7 +328,7 @@ udata/models/url_field.py,sha256=a7FEaDpZKbox8OVfLl4dYno1DFmvxUvHmhzUK2ekSfM,136
|
|
|
334
328
|
udata/models/uuid_fields.py,sha256=6OUr6yFtoFK5lUZPTjQPF5qSsiP7D79z3DNOffGPCo4,481
|
|
335
329
|
udata/notifications/__init__.py,sha256=cM-wpmzBESXhdac_SNjRIHcexJK8eknmB4MR8L7K3v0,51
|
|
336
330
|
udata/notifications/mattermost.py,sha256=WAmhG86u2ppQyQ8LPGpWyjPmnhrIrJm-kf_bD-8IjwM,782
|
|
337
|
-
udata/search/__init__.py,sha256=
|
|
331
|
+
udata/search/__init__.py,sha256=lAvKjArQiS0rt7MBhgnFN7XuPxk_tuPbQwZIf_ai5Bk,3977
|
|
338
332
|
udata/search/adapter.py,sha256=ggtr-_BaO1M40CGKnkAgy2XFNPX57ONusoC4UqJa8bE,2264
|
|
339
333
|
udata/search/commands.py,sha256=UvxfSTmWj1Je72dE25TpmBhn6KPpDm-PlQlsfi0cc10,5577
|
|
340
334
|
udata/search/fields.py,sha256=_bT_AcIOmuJEhnnatScRsPYNWsK_ZWpl2yT8ZnK7-dc,1843
|
|
@@ -550,7 +544,7 @@ udata/tests/helpers.py,sha256=aaifyevJ1Z8CZ8htRrl8OCG5hGcaHfj0lL8iMEKds9w,6022
|
|
|
550
544
|
udata/tests/models.py,sha256=_V0smMb1Z6p3aZv6PorzNN-HiNt_B46Ox1fqXrTJEqk,238
|
|
551
545
|
udata/tests/plugin.py,sha256=hI9Z5SIxUT8UhqZMLcNPzBqdM8-nUgtCW6Pbw2bnNsQ,11045
|
|
552
546
|
udata/tests/schemas.json,sha256=ZRHijbvYaQBrKuTJzCY5ZeQXdIdaZkv3fo7VMbDjsNg,3483
|
|
553
|
-
udata/tests/test_activity.py,sha256=
|
|
547
|
+
udata/tests/test_activity.py,sha256=4ZHRG9GYv5I2gtMYQAnhgONP9YBqwMdKKq9T2vua6-I,2674
|
|
554
548
|
udata/tests/test_discussions.py,sha256=zPvKOdcTNGXrvHFp9zqjhKE2fqgUkhb_1F98egXYCL0,31036
|
|
555
549
|
udata/tests/test_i18n.py,sha256=BU9E7OoIkJw5tv5JYGLjDGBDsti2HuQ_3OWDKnBxnaM,3191
|
|
556
550
|
udata/tests/test_linkchecker.py,sha256=KxV1-PuuuqogkHf3jP6JhRsc2QG2dFmFB-vSHOiHkuU,10374
|
|
@@ -564,17 +558,17 @@ udata/tests/test_routing.py,sha256=iulqXvEWo7ykprUTY0BTAt_gTeHi4cs_dLAPokQ3Iv8,1
|
|
|
564
558
|
udata/tests/test_storages.py,sha256=V1yaaa2z_cJuy5tIP9uBPeUZxYXqccpYZ_bMVOUQ0c0,9329
|
|
565
559
|
udata/tests/test_tags.py,sha256=zd-w9rZ_Iaj6Z2S1diCWzNrEtOSuBGakTHhD_pIUE1o,3754
|
|
566
560
|
udata/tests/test_topics.py,sha256=r7Y0BW0Z5obld9ASs2Ck9AhykgBtmMedZmL2Bfz_rDw,1323
|
|
567
|
-
udata/tests/test_transfer.py,sha256=
|
|
561
|
+
udata/tests/test_transfer.py,sha256=gQteI1b8qPEpaZfVsMPxkUxAskxsLhenJgUTtpNyluk,8003
|
|
568
562
|
udata/tests/test_uris.py,sha256=FQJvz7RXkr21tZ7rZp2uwgZUHk88PxhYId-jXSAl9GM,8519
|
|
569
563
|
udata/tests/test_utils.py,sha256=5awzhJlbnLga0mRXNR2mBGW_kGuAIoQLEZEMQRKuaIM,7944
|
|
570
564
|
udata/tests/api/__init__.py,sha256=Tz_WigHLDlnJNKOKzEAnJswkKiLtHlIpCE54-wgocgM,957
|
|
571
565
|
udata/tests/api/test_auth_api.py,sha256=3Zhn2A29poZIcCJ_R9_-LkR3xOFUTw1aTquiZVXQ2F0,20306
|
|
572
566
|
udata/tests/api/test_base_api.py,sha256=DRX5nuFIj51GFmMIAxUzoW1yiq1apNgr1vS4U4agzeg,2319
|
|
573
567
|
udata/tests/api/test_contact_points.py,sha256=MJm8B06iaUqIZCqxll3NViFwUCxwqZZ4u9e9s1h8MgU,1056
|
|
574
|
-
udata/tests/api/test_datasets_api.py,sha256=
|
|
568
|
+
udata/tests/api/test_datasets_api.py,sha256=kCl55lyWgDxCwkYTa1HVMNlR3GBJiAcwOCkvh1BQzXw,81372
|
|
575
569
|
udata/tests/api/test_fields.py,sha256=OW85Z5MES5HeWOpapeem8OvR1cIcrqW-xMWpdZO4LZ8,1033
|
|
576
570
|
udata/tests/api/test_follow_api.py,sha256=0h54P_Dfbo07u6tg0Rbai1WWgWb19ZLN2HGv4oLCWfg,3383
|
|
577
|
-
udata/tests/api/test_me_api.py,sha256
|
|
571
|
+
udata/tests/api/test_me_api.py,sha256=-JskdyxcbREceC1PxMj9NUs6QBE3YzKa5TXhHIaPy-o,14275
|
|
578
572
|
udata/tests/api/test_organizations_api.py,sha256=HxeTqP14wlWGaQt4fpQljuRy98HWnmL1QelcxbJDmV0,32704
|
|
579
573
|
udata/tests/api/test_reuses_api.py,sha256=gQ-o4JXK2S6z2yW13-i8e81pCdr9j2yyM1KinPbkc5g,16971
|
|
580
574
|
udata/tests/api/test_swagger.py,sha256=tLg452rCD5Q0AgFXOVZKMM6jGiWwC5diX5PxbdYni0o,760
|
|
@@ -593,10 +587,10 @@ udata/tests/data/image.jpg,sha256=hdmpaCjOhmAAfNGuTqWKEjv7IC4GXJx-nP_rT274hc8,33
|
|
|
593
587
|
udata/tests/data/image.png,sha256=GAqXz7w_u7CapODIUF45UpVddmqelnGQkcrwKZq3448,266488
|
|
594
588
|
udata/tests/dataset/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
595
589
|
udata/tests/dataset/test_csv_adapter.py,sha256=2r5z4FuqG9pWgUyfDUw8afQYK5nIKE8XXOCuDHmEcZA,3207
|
|
596
|
-
udata/tests/dataset/test_dataset_actions.py,sha256=
|
|
597
|
-
udata/tests/dataset/test_dataset_commands.py,sha256=
|
|
590
|
+
udata/tests/dataset/test_dataset_actions.py,sha256=Xi2TmNtq9g3imP-FcVXSwSFrylS7kkCad39yt14ONiY,737
|
|
591
|
+
udata/tests/dataset/test_dataset_commands.py,sha256=gZGMOR0cz8paY2mbdrtqMAdoYK-ZBaBSvzHGMyso4zM,823
|
|
598
592
|
udata/tests/dataset/test_dataset_events.py,sha256=zt6F4j_vOBfMxDW6vBVQ5PGwr0d4s6LGw0cGkt9BlvI,2835
|
|
599
|
-
udata/tests/dataset/test_dataset_model.py,sha256=
|
|
593
|
+
udata/tests/dataset/test_dataset_model.py,sha256=zgViU2TsG4UUp0xE4efM9hUWtEl-0RBvRRENBxOUjGk,29702
|
|
600
594
|
udata/tests/dataset/test_dataset_rdf.py,sha256=0lyHiP9eZdIHUkvgQQ6Dw_LMaXX2SHTxiJdLIorizaw,29389
|
|
601
595
|
udata/tests/dataset/test_dataset_tasks.py,sha256=BN5qcvq6753WcpPOZd7vL1iIEW36ZBZrb2Lszb4eWEM,2283
|
|
602
596
|
udata/tests/dataset/test_resource_preview.py,sha256=q1C9W9dO3nLWaR3-hpUOPYW17hCmQ3raty9Bl4FX3hg,3947
|
|
@@ -627,21 +621,21 @@ udata/tests/frontend/test_markdown.py,sha256=KHh0rFfWHqzes0qvLPPFc7uV_IPSS7ymVsQ
|
|
|
627
621
|
udata/tests/organization/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
628
622
|
udata/tests/organization/test_csv_adapter.py,sha256=u2w5EOvkz6BH3ACdzW4MdzjOpbHRn-nq67HTmC_8hYA,1568
|
|
629
623
|
udata/tests/organization/test_notifications.py,sha256=rR1iGtMSmP9htrDJTIVZdvvgO3YNtfoADySGsMzzWdE,1410
|
|
630
|
-
udata/tests/organization/test_organization_model.py,sha256=
|
|
631
|
-
udata/tests/organization/test_organization_rdf.py,sha256=
|
|
624
|
+
udata/tests/organization/test_organization_model.py,sha256=3VdpRPPnhPkRN0yj-hTYIclXWUUCuU1oMQG_gMl22wA,2046
|
|
625
|
+
udata/tests/organization/test_organization_rdf.py,sha256=XPk__wiDeF8E02ORR0v9LIyUK2QJ6hJB_lqjxesCApQ,6354
|
|
632
626
|
udata/tests/organization/test_organization_tasks.py,sha256=GZMqwJa8gZj1EiQjm6z-OtFgCTNviG40yZo-Es_-7Yo,2859
|
|
633
627
|
udata/tests/reuse/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
634
|
-
udata/tests/reuse/test_reuse_model.py,sha256=
|
|
628
|
+
udata/tests/reuse/test_reuse_model.py,sha256=XrAToYSnf8LNAv5Xj99C7-5PEo1WbnBSDs63OWrbPBo,3723
|
|
635
629
|
udata/tests/reuse/test_reuse_task.py,sha256=_aGLPhvFunsNv7_tV8UmLT0obxDegxurchiZ0N_trbs,1396
|
|
636
630
|
udata/tests/search/__init__.py,sha256=tSM40xpdgP9bj3299GEDJVCIaxvNj-hklCS50SuTQL0,1495
|
|
637
|
-
udata/tests/search/test_adapter.py,sha256=
|
|
631
|
+
udata/tests/search/test_adapter.py,sha256=_d804VkbmY6MMb8w40bc-t_ERNr1D00jS3y83NxMUL4,7136
|
|
638
632
|
udata/tests/search/test_query.py,sha256=wtgC4rkaxe8vIaWOcANZ1yFFkEKTdNHj2yiTaYI-R-M,1406
|
|
639
|
-
udata/tests/search/test_results.py,sha256=
|
|
633
|
+
udata/tests/search/test_results.py,sha256=Lnmulp9U3eGNDdiN6TqVg7fIuLiK8UDZdkcv7tiNCEI,2026
|
|
640
634
|
udata/tests/site/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
641
|
-
udata/tests/site/test_site_api.py,sha256=
|
|
642
|
-
udata/tests/site/test_site_metrics.py,sha256=
|
|
635
|
+
udata/tests/site/test_site_api.py,sha256=KK13ihX77O7Ou3kv-jK49qVhTFiMyfdJvQdjmxWxIrY,2297
|
|
636
|
+
udata/tests/site/test_site_metrics.py,sha256=YpTG59SKXYWeA2YWCoonAOLBDak-oM3Nf54RwlaRDVQ,2220
|
|
643
637
|
udata/tests/site/test_site_model.py,sha256=nAx9JjEKdfjdw1Kj5Rs7P5FEePoATtCuOYPiSXEnVD0,1313
|
|
644
|
-
udata/tests/site/test_site_rdf.py,sha256=
|
|
638
|
+
udata/tests/site/test_site_rdf.py,sha256=0--1FuR1u2nIn0xUB7bnsEXDpxCYrONY6q5Z8Anlaqc,9729
|
|
645
639
|
udata/tests/user/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
646
640
|
udata/tests/user/test_user_rdf.py,sha256=HrKirMURUXS9N3If_NMb8qnfJ4kE9IZymR1SPcNvlF0,1851
|
|
647
641
|
udata/tests/workers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -664,9 +658,9 @@ udata/translations/pt/LC_MESSAGES/udata.mo,sha256=zCVMB-a4-mLM1jNyYMk58rgVRaVIwQ
|
|
|
664
658
|
udata/translations/pt/LC_MESSAGES/udata.po,sha256=avfWczvlLBKSohyB55-4TLmUGMU_Rze4XmAo4OTk2v0,43513
|
|
665
659
|
udata/translations/sr/LC_MESSAGES/udata.mo,sha256=ScuqdpaV4y1ZIpBAEfxeaKdzkyGZL0mJmKMoG6w0iRQ,28553
|
|
666
660
|
udata/translations/sr/LC_MESSAGES/udata.po,sha256=QpgEXh1eHjztPa7oNLXd_sds1DC95A-STTtZyTE4m-E,50093
|
|
667
|
-
udata-7.0.6.dist-info/LICENSE,sha256=V8j_M8nAz8PvAOZQocyRDX7keai8UJ9skgmnwqETmdY,34520
|
|
668
|
-
udata-7.0.6.dist-info/METADATA,sha256=
|
|
669
|
-
udata-7.0.6.dist-info/WHEEL,sha256=-G_t0oGuE7UD0DrSpVZnq1hHMBV9DD2XkS5v7XpmTnk,110
|
|
670
|
-
udata-7.0.6.dist-info/entry_points.txt,sha256=
|
|
671
|
-
udata-7.0.6.dist-info/top_level.txt,sha256=39OCg-VWFWOq4gCKnjKNu-s3OwFlZIu_dVH8Gl6ndHw,12
|
|
672
|
-
udata-7.0.6.dist-info/RECORD,,
|
|
661
|
+
udata-7.0.6.dev28209.dist-info/LICENSE,sha256=V8j_M8nAz8PvAOZQocyRDX7keai8UJ9skgmnwqETmdY,34520
|
|
662
|
+
udata-7.0.6.dev28209.dist-info/METADATA,sha256=hTpbmn-8zi2DA3k_jDzQqu5ajgbCHifZARqSaDqs7WE,119427
|
|
663
|
+
udata-7.0.6.dev28209.dist-info/WHEEL,sha256=-G_t0oGuE7UD0DrSpVZnq1hHMBV9DD2XkS5v7XpmTnk,110
|
|
664
|
+
udata-7.0.6.dev28209.dist-info/entry_points.txt,sha256=ZqIUHhOth0MMQvMIeuhODbUCDwjR-Hvo7PaKrMwTKuQ,384
|
|
665
|
+
udata-7.0.6.dev28209.dist-info/top_level.txt,sha256=39OCg-VWFWOq4gCKnjKNu-s3OwFlZIu_dVH8Gl6ndHw,12
|
|
666
|
+
udata-7.0.6.dev28209.dist-info/RECORD,,
|