invenio-vocabularies 8.0.0__py2.py3-none-any.whl → 8.1.0__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 invenio-vocabularies might be problematic. Click here for more details.
- invenio_vocabularies/__init__.py +1 -1
- invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/Funding/FundingField.js +1 -1
- invenio_vocabularies/contrib/affiliations/datastreams.py +1 -0
- invenio_vocabularies/contrib/common/ror/datastreams.py +1 -1
- invenio_vocabularies/contrib/funders/datastreams.py +1 -0
- invenio_vocabularies/contrib/names/__init__.py +2 -1
- invenio_vocabularies/services/custom_fields/__init__.py +2 -1
- invenio_vocabularies/services/service.py +10 -4
- {invenio_vocabularies-8.0.0.dist-info → invenio_vocabularies-8.1.0.dist-info}/METADATA +12 -1
- {invenio_vocabularies-8.0.0.dist-info → invenio_vocabularies-8.1.0.dist-info}/RECORD +15 -15
- {invenio_vocabularies-8.0.0.dist-info → invenio_vocabularies-8.1.0.dist-info}/WHEEL +0 -0
- {invenio_vocabularies-8.0.0.dist-info → invenio_vocabularies-8.1.0.dist-info}/entry_points.txt +0 -0
- {invenio_vocabularies-8.0.0.dist-info → invenio_vocabularies-8.1.0.dist-info}/licenses/AUTHORS.rst +0 -0
- {invenio_vocabularies-8.0.0.dist-info → invenio_vocabularies-8.1.0.dist-info}/licenses/LICENSE +0 -0
- {invenio_vocabularies-8.0.0.dist-info → invenio_vocabularies-8.1.0.dist-info}/top_level.txt +0 -0
invenio_vocabularies/__init__.py
CHANGED
|
@@ -91,7 +91,7 @@ class RORHTTPReader(BaseReader):
|
|
|
91
91
|
linkset_response.raise_for_status()
|
|
92
92
|
linksets = linkset_response.json()["linkset"]
|
|
93
93
|
|
|
94
|
-
if self._since:
|
|
94
|
+
if self._since and self._since != "None":
|
|
95
95
|
last_dump_date = self._get_last_dump_date(linksets)
|
|
96
96
|
if last_dump_date < arrow.get(self._since):
|
|
97
97
|
current_app.logger.info(
|
|
@@ -3,6 +3,7 @@
|
|
|
3
3
|
# Copyright (C) 2024 CERN.
|
|
4
4
|
# Copyright (C) 2021 Northwestern University.
|
|
5
5
|
# Copyright (C) 2024 University of Münster.
|
|
6
|
+
# Copyright (C) 2025 Graz University of Technology.
|
|
6
7
|
#
|
|
7
8
|
# Invenio-Vocabularies is free software; you can redistribute it and/or
|
|
8
9
|
# modify it under the terms of the MIT License; see LICENSE file for more
|
|
@@ -33,16 +34,21 @@ class VocabularyTypeService(RecordService):
|
|
|
33
34
|
"""Search for vocabulary types entries."""
|
|
34
35
|
self.require_permission(identity, "list_vocabularies")
|
|
35
36
|
|
|
37
|
+
filters = []
|
|
36
38
|
search_params = map_search_params(self.config.search, params)
|
|
37
39
|
|
|
38
40
|
query_param = search_params["q"]
|
|
39
|
-
|
|
40
|
-
filters = []
|
|
41
41
|
if query_param:
|
|
42
|
-
filters.
|
|
42
|
+
filters.append(
|
|
43
|
+
# NOTE: Even though we only have one field, we use `or_` to
|
|
44
|
+
# allow for future expansion where multiple fields might be searched.
|
|
45
|
+
sa.or_(
|
|
46
|
+
VocabularyType.id.ilike(f"%{query_param}%"),
|
|
47
|
+
)
|
|
48
|
+
)
|
|
43
49
|
|
|
44
50
|
vocabulary_types = (
|
|
45
|
-
VocabularyType.query.filter(
|
|
51
|
+
VocabularyType.query.filter(*filters)
|
|
46
52
|
.order_by(
|
|
47
53
|
search_params["sort_direction"](
|
|
48
54
|
sa.text(",".join(search_params["sort"]))
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: invenio-vocabularies
|
|
3
|
-
Version: 8.
|
|
3
|
+
Version: 8.1.0
|
|
4
4
|
Summary: Invenio module for managing vocabularies.
|
|
5
5
|
Home-page: https://github.com/inveniosoftware/invenio-vocabularies
|
|
6
6
|
Author: CERN
|
|
@@ -89,6 +89,17 @@ Invenio module for managing vocabularies, based on Invenio-Records and Invenio-R
|
|
|
89
89
|
Changes
|
|
90
90
|
=======
|
|
91
91
|
|
|
92
|
+
Version v8.1.0 (released 2025-07-03)
|
|
93
|
+
|
|
94
|
+
- fix: SADeprecationWarning
|
|
95
|
+
- ror: fix handling of _since as "None"
|
|
96
|
+
- chore: fix wrong module export strings
|
|
97
|
+
- datastreams: add ror-http to funders and affiliations
|
|
98
|
+
|
|
99
|
+
Version v8.0.1 (released 2025-06-11)
|
|
100
|
+
|
|
101
|
+
- funding: added fieldpath prop for feedback label
|
|
102
|
+
|
|
92
103
|
Version v8.0.0 (released 2025-06-03)
|
|
93
104
|
|
|
94
105
|
- setup: bump major dependencies
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
invenio_vocabularies/__init__.py,sha256=
|
|
1
|
+
invenio_vocabularies/__init__.py,sha256=S25jEdD4TasaKDl1k8iNY503o84GASmCCQfGr5POCiI,434
|
|
2
2
|
invenio_vocabularies/cli.py,sha256=CpXTTIn2GTpUqNfLEMlRAp3JWst8ZjHVxoGYdhuuv_4,5959
|
|
3
3
|
invenio_vocabularies/config.py,sha256=v6fTdeQXfUl0LavI2Xslql7mv3DVuIuGTqe2z3H3S7o,6942
|
|
4
4
|
invenio_vocabularies/ext.py,sha256=GujJ4UARd4Fxf4z7zznRk9JAgHamZuYCOdrKU5czg00,5987
|
|
@@ -32,7 +32,7 @@ invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/form
|
|
|
32
32
|
invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/Funding/AwardResults.js,sha256=AgqJg9GEcJvKZR4plZsH0j7cm9C3yjT9YCPI6uvmOyc,3499
|
|
33
33
|
invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/Funding/CustomAwardForm.js,sha256=N4nCbvm6_vTCfuGyhuDnydUdk4cHyum14qYALr6p1WE,4675
|
|
34
34
|
invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/Funding/FunderDropdown.js,sha256=KOeeopPt1xoxQDmFDOV8nEi9YsH4VZPlc96hEzLxIQY,2432
|
|
35
|
-
invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/Funding/FundingField.js,sha256=
|
|
35
|
+
invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/Funding/FundingField.js,sha256=hpm0FHRdeepOqPtR3G7sHXzf-rmIsBd3NP3mlF9XRJk,7616
|
|
36
36
|
invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/Funding/FundingField.test.js,sha256=z_4lWkf3h9Uin8OzSBSKY1wpUxtbnjE2kRUjW80jAhA,35
|
|
37
37
|
invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/Funding/FundingFieldItem.js,sha256=FvxrKFOf9tm3O2Dmnd3B4pt-Tj3OCMUKg22-rGI5qC8,4611
|
|
38
38
|
invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/Funding/FundingModal.js,sha256=4ZewwPdzYyWt85VcorgLDe9SguJ0RJCJSTdChUcSxsM,7475
|
|
@@ -80,7 +80,7 @@ invenio_vocabularies/contrib/affiliations/__init__.py,sha256=rV8YAzBRoSKsBYcVjCN
|
|
|
80
80
|
invenio_vocabularies/contrib/affiliations/affiliations.py,sha256=zqFwrAuYhZw7dTfm7dE8bUDxmyPqydUEjKTMPwWSjHk,2096
|
|
81
81
|
invenio_vocabularies/contrib/affiliations/api.py,sha256=5nIOvpfcseuAAg2XgblHc8jb7TAdfU79XOBRpL-p398,326
|
|
82
82
|
invenio_vocabularies/contrib/affiliations/config.py,sha256=FFODJwfj6w-yejNQuP0GFVlc42jHtd47nu6lkN9mcVM,2281
|
|
83
|
-
invenio_vocabularies/contrib/affiliations/datastreams.py,sha256=
|
|
83
|
+
invenio_vocabularies/contrib/affiliations/datastreams.py,sha256=PW6e1wiqPrW5DIjUtdE_qVCC-oACx4zji1o8zEGJEC4,9628
|
|
84
84
|
invenio_vocabularies/contrib/affiliations/facets.py,sha256=w316MGvtdyTpRCPOpCEmMxxLraRkbFFb1VvLkFlEc9o,1229
|
|
85
85
|
invenio_vocabularies/contrib/affiliations/models.py,sha256=JUcj-1ydc2Cw2Rsc24JwXE3TFBJ_6fivhUYhGq4rT8A,329
|
|
86
86
|
invenio_vocabularies/contrib/affiliations/resources.py,sha256=DBEbRxQmp-o-PeZlgFG588Q4sGcruuwIL8L9O-SzCes,435
|
|
@@ -120,11 +120,11 @@ invenio_vocabularies/contrib/common/__init__.py,sha256=DdbGYRthEpQtObhY_YK4vOT9Z
|
|
|
120
120
|
invenio_vocabularies/contrib/common/openaire/__init__.py,sha256=L7UtSimFJ3NI6j53bHzYKsWpFti1uo4fPb9OaTl7leI,244
|
|
121
121
|
invenio_vocabularies/contrib/common/openaire/datastreams.py,sha256=BV6NtBCPFuii6KbTHGkgNQO5tt_3Hn9T_219bz8AINg,3514
|
|
122
122
|
invenio_vocabularies/contrib/common/ror/__init__.py,sha256=3u2-fre1SQ-4nz3Ay0nxj3ntmMZ8Ujh_4eV-fyxfmtc,239
|
|
123
|
-
invenio_vocabularies/contrib/common/ror/datastreams.py,sha256=
|
|
123
|
+
invenio_vocabularies/contrib/common/ror/datastreams.py,sha256=V2GzJ2Hsu7QFcbqguEE2Z8X5ZDiqRp5Q0e-o1x0BmdQ,8434
|
|
124
124
|
invenio_vocabularies/contrib/funders/__init__.py,sha256=YxFXBDnT7NM8rFwxT_Ge3xXR2n17EM0alknQq7r_Bt8,478
|
|
125
125
|
invenio_vocabularies/contrib/funders/api.py,sha256=QKGGeSnPHSoBfucvpaVruXT_txYidofZ080G3IxFkIo,306
|
|
126
126
|
invenio_vocabularies/contrib/funders/config.py,sha256=OAP7NB7oF3cmrLBlP9dubrAAtanPWvrQO1XZaImBf98,2242
|
|
127
|
-
invenio_vocabularies/contrib/funders/datastreams.py,sha256=
|
|
127
|
+
invenio_vocabularies/contrib/funders/datastreams.py,sha256=yczgXp4HnoDbU-CpJYrAx0mnRz_dXMC3pE4qvBLEzBU,2511
|
|
128
128
|
invenio_vocabularies/contrib/funders/facets.py,sha256=a068TVtt74Ncu0latb177LFK8EdnpbMOWecAKozA04M,1245
|
|
129
129
|
invenio_vocabularies/contrib/funders/funders.py,sha256=j4V7lz0fR5rp5XBL3cwmQQElwpopIpv4v37xfi1rU0o,2357
|
|
130
130
|
invenio_vocabularies/contrib/funders/models.py,sha256=RAU-_YVOUNVCn03_XGJ2czcVwXTaZPk5w7X_bMAgMOk,314
|
|
@@ -143,7 +143,7 @@ invenio_vocabularies/contrib/funders/mappings/os-v2/funders/funder-v1.0.0.json,s
|
|
|
143
143
|
invenio_vocabularies/contrib/funders/mappings/os-v2/funders/funder-v2.0.0.json,sha256=gx2CkNWNcTxP94iCU9remCrWxR-AmNqloYTh47gwNHQ,3481
|
|
144
144
|
invenio_vocabularies/contrib/funders/mappings/v7/__init__.py,sha256=yFHmi3QYD65YKzLU5vMEtwAZn0gwkFYa6Db_tSbHjKE,254
|
|
145
145
|
invenio_vocabularies/contrib/funders/mappings/v7/funders/funder-v1.0.0.json,sha256=E7Zp4IHsQGdaxVrksr-SaQtieV7tV0W6-LgGe231G1w,1646
|
|
146
|
-
invenio_vocabularies/contrib/names/__init__.py,sha256=
|
|
146
|
+
invenio_vocabularies/contrib/names/__init__.py,sha256=QwPEMnNyjt9LVeBBdFbVQfIxOnzBwx_lbpyekg3vGOM,456
|
|
147
147
|
invenio_vocabularies/contrib/names/api.py,sha256=sEPn_jFX3gyoxgbdEUSIvOoPCUI8pocI6qCZO6mzCgQ,300
|
|
148
148
|
invenio_vocabularies/contrib/names/components.py,sha256=PyYD1lOhmsuNoyDwM_huxkeo7kWd44vkEbJk9gqbDrM,769
|
|
149
149
|
invenio_vocabularies/contrib/names/config.py,sha256=62jh4MP-CygnBpnRBVaCoGySHDEwhBSG1MnlUBumthw,2046
|
|
@@ -233,9 +233,9 @@ invenio_vocabularies/services/permissions.py,sha256=83rNOwCuggdJji3VtWTQgytTrhfi
|
|
|
233
233
|
invenio_vocabularies/services/querystr.py,sha256=OrNUR_QAcQ_T-EiL3H1Jvzz9gK2ZB5FicsG0fOipSro,2029
|
|
234
234
|
invenio_vocabularies/services/results.py,sha256=6LZIpzWSbt9wpRNWgjA1uIM4RFooOYTkHcp5-PnIJdU,3767
|
|
235
235
|
invenio_vocabularies/services/schema.py,sha256=mwIBFylpQlWw1M6h_axc-z4Yd7X3Z1S0PxJOlZGpfrQ,4634
|
|
236
|
-
invenio_vocabularies/services/service.py,sha256=
|
|
236
|
+
invenio_vocabularies/services/service.py,sha256=2LrtXa6gFXhHSWn4R3Kl7Nj2f2mFmxzjgAF3K3Q3LGM,6749
|
|
237
237
|
invenio_vocabularies/services/tasks.py,sha256=xLLxcepJz-pv9KyVbKu-grh3hr9w7djaFKijMe_8WmM,1174
|
|
238
|
-
invenio_vocabularies/services/custom_fields/__init__.py,sha256=
|
|
238
|
+
invenio_vocabularies/services/custom_fields/__init__.py,sha256=Wi7v8VUUTi16TCpMNKZ1zK3zWO2UjWBEnRMJjNm2foI,426
|
|
239
239
|
invenio_vocabularies/services/custom_fields/subject.py,sha256=XTHnOddoSZsDHqGQq-hns46-WaLn88fqz57K--YLHg4,2243
|
|
240
240
|
invenio_vocabularies/services/custom_fields/vocabulary.py,sha256=oQwI8Aoi2Nr9k3eWKnde5H7RXc7qdlATSeI6coy8UR0,3020
|
|
241
241
|
invenio_vocabularies/templates/semantic-ui/invenio_vocabularies/subjects.html,sha256=Fr8xRfKYiytuTfbtH7gfasNXwFIcjPFnXV4F5oGNUkM,681
|
|
@@ -300,10 +300,10 @@ invenio_vocabularies/translations/zh_CN/LC_MESSAGES/messages.mo,sha256=bpqywk-Hn
|
|
|
300
300
|
invenio_vocabularies/translations/zh_CN/LC_MESSAGES/messages.po,sha256=vg8qC8ofpAdJ3mQz7mWM1ylKDpiNWXFs7rlMdSPkgKk,4629
|
|
301
301
|
invenio_vocabularies/translations/zh_TW/LC_MESSAGES/messages.mo,sha256=o3nwy64PXTcRaAbRrJpYMICW5aVQ0sCdGIn2Xy4UccU,600
|
|
302
302
|
invenio_vocabularies/translations/zh_TW/LC_MESSAGES/messages.po,sha256=9ACePz_EpB-LfcIJajZ2kp8Q04tcdrQLOtug162ZUss,4115
|
|
303
|
-
invenio_vocabularies-8.
|
|
304
|
-
invenio_vocabularies-8.
|
|
305
|
-
invenio_vocabularies-8.
|
|
306
|
-
invenio_vocabularies-8.
|
|
307
|
-
invenio_vocabularies-8.
|
|
308
|
-
invenio_vocabularies-8.
|
|
309
|
-
invenio_vocabularies-8.
|
|
303
|
+
invenio_vocabularies-8.1.0.dist-info/licenses/AUTHORS.rst,sha256=8d0p_WWE1r9DavvzMDi2D4YIGBHiMYcN3LYxqQOj8sY,291
|
|
304
|
+
invenio_vocabularies-8.1.0.dist-info/licenses/LICENSE,sha256=UvI8pR8jGWqe0sTkb_hRG6eIrozzWwWzyCGEpuXX4KE,1062
|
|
305
|
+
invenio_vocabularies-8.1.0.dist-info/METADATA,sha256=IZINROHFrQn73Te6cD6k1-VkzpTT2PsRHHVbDPmNGfA,14401
|
|
306
|
+
invenio_vocabularies-8.1.0.dist-info/WHEEL,sha256=JNWh1Fm1UdwIQV075glCn4MVuCRs0sotJIq-J6rbxCU,109
|
|
307
|
+
invenio_vocabularies-8.1.0.dist-info/entry_points.txt,sha256=lget4Ekno9VRTq36oowWReIJA99165gOp0BOiiET60Y,3179
|
|
308
|
+
invenio_vocabularies-8.1.0.dist-info/top_level.txt,sha256=x1gRNbaODF_bCD0SBLM3nVOFPGi06cmGX5X94WKrFKk,21
|
|
309
|
+
invenio_vocabularies-8.1.0.dist-info/RECORD,,
|
|
File without changes
|
{invenio_vocabularies-8.0.0.dist-info → invenio_vocabularies-8.1.0.dist-info}/entry_points.txt
RENAMED
|
File without changes
|
{invenio_vocabularies-8.0.0.dist-info → invenio_vocabularies-8.1.0.dist-info}/licenses/AUTHORS.rst
RENAMED
|
File without changes
|
{invenio_vocabularies-8.0.0.dist-info → invenio_vocabularies-8.1.0.dist-info}/licenses/LICENSE
RENAMED
|
File without changes
|
|
File without changes
|