invenio-vocabularies 6.6.0__py2.py3-none-any.whl → 6.7.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/FundingModal.js +3 -27
- invenio_vocabularies/config.py +27 -1
- invenio_vocabularies/contrib/affiliations/config.py +21 -10
- invenio_vocabularies/contrib/affiliations/datastreams.py +103 -1
- invenio_vocabularies/contrib/awards/datastreams.py +7 -0
- invenio_vocabularies/contrib/awards/jsonschemas/awards/award-v1.0.0.json +9 -0
- invenio_vocabularies/contrib/awards/mappings/os-v1/awards/award-v1.0.0.json +22 -1
- invenio_vocabularies/contrib/awards/mappings/os-v2/awards/award-v1.0.0.json +22 -1
- invenio_vocabularies/contrib/awards/mappings/v7/awards/award-v1.0.0.json +22 -1
- invenio_vocabularies/contrib/awards/schema.py +9 -3
- invenio_vocabularies/contrib/funders/config.py +19 -12
- invenio_vocabularies/contrib/names/config.py +13 -10
- invenio_vocabularies/contrib/names/mappings/os-v1/names/name-v2.0.0.json +11 -0
- invenio_vocabularies/contrib/names/mappings/os-v2/names/name-v2.0.0.json +11 -0
- invenio_vocabularies/contrib/names/names.py +1 -1
- invenio_vocabularies/contrib/names/schema.py +10 -2
- invenio_vocabularies/contrib/subjects/config.py +10 -1
- invenio_vocabularies/contrib/subjects/datastreams.py +4 -0
- invenio_vocabularies/contrib/subjects/euroscivoc/datastreams.py +22 -114
- invenio_vocabularies/contrib/subjects/gemet/__init__.py +9 -0
- invenio_vocabularies/contrib/subjects/gemet/datastreams.py +109 -0
- invenio_vocabularies/contrib/subjects/jsonschemas/subjects/subject-v1.0.0.json +13 -2
- invenio_vocabularies/contrib/subjects/schema.py +18 -3
- invenio_vocabularies/datastreams/readers.py +99 -9
- invenio_vocabularies/datastreams/transformers.py +55 -0
- invenio_vocabularies/factories.py +15 -0
- invenio_vocabularies/records/jsonschemas/vocabularies/definitions-v1.0.0.json +9 -0
- invenio_vocabularies/services/config.py +1 -7
- {invenio_vocabularies-6.6.0.dist-info → invenio_vocabularies-6.7.0.dist-info}/METADATA +21 -2
- {invenio_vocabularies-6.6.0.dist-info → invenio_vocabularies-6.7.0.dist-info}/RECORD +36 -34
- {invenio_vocabularies-6.6.0.dist-info → invenio_vocabularies-6.7.0.dist-info}/AUTHORS.rst +0 -0
- {invenio_vocabularies-6.6.0.dist-info → invenio_vocabularies-6.7.0.dist-info}/LICENSE +0 -0
- {invenio_vocabularies-6.6.0.dist-info → invenio_vocabularies-6.7.0.dist-info}/WHEEL +0 -0
- {invenio_vocabularies-6.6.0.dist-info → invenio_vocabularies-6.7.0.dist-info}/entry_points.txt +0 -0
- {invenio_vocabularies-6.6.0.dist-info → invenio_vocabularies-6.7.0.dist-info}/top_level.txt +0 -0
|
@@ -8,6 +8,15 @@
|
|
|
8
8
|
}
|
|
9
9
|
}
|
|
10
10
|
},
|
|
11
|
+
"description": {
|
|
12
|
+
"type": "object",
|
|
13
|
+
"description": "Description of vocabulary item. Keys are locale codes.",
|
|
14
|
+
"patternProperties": {
|
|
15
|
+
"^[a-z]{2}$": {
|
|
16
|
+
"type": "string"
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
},
|
|
11
20
|
"icon": {
|
|
12
21
|
"type": "string"
|
|
13
22
|
},
|
|
@@ -14,17 +14,11 @@ from flask import current_app
|
|
|
14
14
|
from invenio_i18n import lazy_gettext as _
|
|
15
15
|
from invenio_records_resources.services import (
|
|
16
16
|
Link,
|
|
17
|
-
LinksTemplate,
|
|
18
|
-
RecordService,
|
|
19
17
|
RecordServiceConfig,
|
|
20
18
|
SearchOptions,
|
|
21
19
|
pagination_links,
|
|
22
20
|
)
|
|
23
|
-
from invenio_records_resources.services.base import
|
|
24
|
-
ConditionalLink,
|
|
25
|
-
Service,
|
|
26
|
-
ServiceListResult,
|
|
27
|
-
)
|
|
21
|
+
from invenio_records_resources.services.base import ConditionalLink
|
|
28
22
|
from invenio_records_resources.services.records.components import DataComponent
|
|
29
23
|
from invenio_records_resources.services.records.params import (
|
|
30
24
|
FilterParam,
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: invenio-vocabularies
|
|
3
|
-
Version: 6.
|
|
3
|
+
Version: 6.7.0
|
|
4
4
|
Summary: Invenio module for managing vocabularies.
|
|
5
5
|
Home-page: https://github.com/inveniosoftware/invenio-vocabularies
|
|
6
6
|
Author: CERN
|
|
@@ -15,9 +15,10 @@ Requires-Dist: invenio-records-resources <7.0.0,>=6.0.0
|
|
|
15
15
|
Requires-Dist: invenio-administration <3.0.0,>=2.0.0
|
|
16
16
|
Requires-Dist: invenio-jobs <2.0.0,>=1.0.0
|
|
17
17
|
Requires-Dist: lxml >=4.5.0
|
|
18
|
+
Requires-Dist: pycountry <23.0.0,>=22.3.5
|
|
18
19
|
Requires-Dist: PyYAML >=5.4.1
|
|
19
20
|
Requires-Dist: regex >=2024.7.24
|
|
20
|
-
Requires-Dist:
|
|
21
|
+
Requires-Dist: SPARQLWrapper >=2.0.0
|
|
21
22
|
Provides-Extra: elasticsearch7
|
|
22
23
|
Requires-Dist: invenio-search[elasticsearch7] <3.0.0,>=2.1.0 ; extra == 'elasticsearch7'
|
|
23
24
|
Provides-Extra: mysql
|
|
@@ -28,8 +29,12 @@ Requires-Dist: invenio-search[opensearch1] <3.0.0,>=2.1.0 ; extra == 'opensearch
|
|
|
28
29
|
Provides-Extra: opensearch2
|
|
29
30
|
Requires-Dist: invenio-search[opensearch2] <3.0.0,>=2.1.0 ; extra == 'opensearch2'
|
|
30
31
|
Provides-Extra: postgresql
|
|
32
|
+
Provides-Extra: rdf
|
|
33
|
+
Requires-Dist: rdflib >=7.0.0 ; extra == 'rdf'
|
|
31
34
|
Provides-Extra: s3fs
|
|
32
35
|
Requires-Dist: s3fs >=2024.6.1 ; extra == 's3fs'
|
|
36
|
+
Provides-Extra: sparql
|
|
37
|
+
Requires-Dist: SPARQLWrapper >=2.0.0 ; extra == 'sparql'
|
|
33
38
|
Provides-Extra: sqlite
|
|
34
39
|
Provides-Extra: tests
|
|
35
40
|
Requires-Dist: pytest-black-ng >=0.4.0 ; extra == 'tests'
|
|
@@ -83,6 +88,20 @@ https://invenio-vocabularies.readthedocs.io/
|
|
|
83
88
|
Changes
|
|
84
89
|
=======
|
|
85
90
|
|
|
91
|
+
Version v6.7.0 (released 2024-11-27)
|
|
92
|
+
|
|
93
|
+
- contrib: improve search accuracy for names, funders, affiliations
|
|
94
|
+
- names: add affiliation acronym in mappings and schema
|
|
95
|
+
* Dereferences the affiliation `acronym` when indexing names and serving
|
|
96
|
+
REST API results. This is useful for disambiguating authors in search.
|
|
97
|
+
- affiliations: move RDF and SPARQL as extra dependencies
|
|
98
|
+
* Moves `rdflib` and `SPARQLWrapper` to extras.
|
|
99
|
+
- affiliation: refactored edmo datastreams
|
|
100
|
+
- subjects: added datastream for GEMET vocabulary
|
|
101
|
+
- awards/schema.py: read app config for alternate funding validation (#429)
|
|
102
|
+
- awards: fix description field and mappings
|
|
103
|
+
- awards: add fields start/end date and description
|
|
104
|
+
|
|
86
105
|
Version v6.6.0 (released 2024-11-15)
|
|
87
106
|
|
|
88
107
|
- mesh: add title en if not present
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
invenio_vocabularies/__init__.py,sha256=
|
|
1
|
+
invenio_vocabularies/__init__.py,sha256=IvdaI7jMnH_uHjMrYwtACXOE2Nw-H-a8HQbkLpurCl0,377
|
|
2
2
|
invenio_vocabularies/cli.py,sha256=S3lBsLxsSYa83sCDaGZr5mP7TwPvmmwxzzbB13h8VBI,5856
|
|
3
|
-
invenio_vocabularies/config.py,sha256=
|
|
3
|
+
invenio_vocabularies/config.py,sha256=NcfDDZ0s1y2V78DcN69itua9wWt3_1-y87wonBl0vts,6340
|
|
4
4
|
invenio_vocabularies/ext.py,sha256=GujJ4UARd4Fxf4z7zznRk9JAgHamZuYCOdrKU5czg00,5987
|
|
5
|
-
invenio_vocabularies/factories.py,sha256=
|
|
5
|
+
invenio_vocabularies/factories.py,sha256=7VHpoF3jQch5O7efytRwFPojz_MpeiXeu-cfw7ajHs4,4949
|
|
6
6
|
invenio_vocabularies/fixtures.py,sha256=nNWwH04HFASjfj1oy5kMdcQGKmVjzUuA5wSw-ER1QAg,1585
|
|
7
7
|
invenio_vocabularies/jobs.py,sha256=0aTukWooBPCvEgvnjJcQAZuMeS2H_m-RGULNIfJ5Gmc,6800
|
|
8
8
|
invenio_vocabularies/proxies.py,sha256=k7cTUgWfnCoYIuNqAj_VFi1zBN33KNNclRSVnBkObEM,711
|
|
@@ -33,7 +33,7 @@ invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/form
|
|
|
33
33
|
invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/Funding/FundingField.js,sha256=wXJz4ZL7J0ZPppcP-qd6U5Mnupf2hkog4zxMrQ9xZtI,6906
|
|
34
34
|
invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/Funding/FundingField.test.js,sha256=z_4lWkf3h9Uin8OzSBSKY1wpUxtbnjE2kRUjW80jAhA,35
|
|
35
35
|
invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/Funding/FundingFieldItem.js,sha256=ZN4dEcHCVtSVFjzb1SAYPxmaY1Qk5ZdCt1yY7j6pvQs,4610
|
|
36
|
-
invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/Funding/FundingModal.js,sha256=
|
|
36
|
+
invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/Funding/FundingModal.js,sha256=X2l1hjwboHFZWEEODvQS8Q7YntD6npj_TmZLiXkuZQs,7474
|
|
37
37
|
invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/Funding/NoAwardResults.js,sha256=MfA9PWElQcaYznZD5a8TDe5csD6fmxU_6-LTA690mSg,962
|
|
38
38
|
invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/Funding/index.js,sha256=67N7fTRVuqH-dkVW9gh3ehr0xGrswVHYaTqUPgYEmF0,319
|
|
39
39
|
invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/i18next-scanner.config.js,sha256=7Xn2OSYbm-zzguRiNTlKLHdBnJCqLuI7MaFaQTMebbA,1814
|
|
@@ -46,8 +46,8 @@ invenio_vocabularies/contrib/__init__.py,sha256=C5eDia6tAVBCrbb5hd_KnxmczyBoF87N
|
|
|
46
46
|
invenio_vocabularies/contrib/affiliations/__init__.py,sha256=rV8YAzBRoSKsBYcVjCNJh6j7ITuPRfurwj9HJHRjkN8,565
|
|
47
47
|
invenio_vocabularies/contrib/affiliations/affiliations.py,sha256=zqFwrAuYhZw7dTfm7dE8bUDxmyPqydUEjKTMPwWSjHk,2096
|
|
48
48
|
invenio_vocabularies/contrib/affiliations/api.py,sha256=5nIOvpfcseuAAg2XgblHc8jb7TAdfU79XOBRpL-p398,326
|
|
49
|
-
invenio_vocabularies/contrib/affiliations/config.py,sha256=
|
|
50
|
-
invenio_vocabularies/contrib/affiliations/datastreams.py,sha256=
|
|
49
|
+
invenio_vocabularies/contrib/affiliations/config.py,sha256=2QMEGRx7bDBXaf058kooABem4cQw_hDtlR-RrDFXwcI,2345
|
|
50
|
+
invenio_vocabularies/contrib/affiliations/datastreams.py,sha256=sMvkt9XOBTV7Q0wexMmwWXY5k9kbetcWBNqfS-vx6Mg,9598
|
|
51
51
|
invenio_vocabularies/contrib/affiliations/facets.py,sha256=w316MGvtdyTpRCPOpCEmMxxLraRkbFFb1VvLkFlEc9o,1229
|
|
52
52
|
invenio_vocabularies/contrib/affiliations/models.py,sha256=JUcj-1ydc2Cw2Rsc24JwXE3TFBJ_6fivhUYhGq4rT8A,329
|
|
53
53
|
invenio_vocabularies/contrib/affiliations/resources.py,sha256=DBEbRxQmp-o-PeZlgFG588Q4sGcruuwIL8L9O-SzCes,435
|
|
@@ -68,21 +68,21 @@ invenio_vocabularies/contrib/awards/__init__.py,sha256=KwCmwFalz-3pDs9iTa5TKUidB
|
|
|
68
68
|
invenio_vocabularies/contrib/awards/api.py,sha256=OXukE7PLXs45BTtqVrhvGBNqLmQaI-CgXmHTCi36LZk,303
|
|
69
69
|
invenio_vocabularies/contrib/awards/awards.py,sha256=GrC-ClFPWrGl_kij2aSpsidnHisBP5_V1kdkCaoYjmQ,2978
|
|
70
70
|
invenio_vocabularies/contrib/awards/config.py,sha256=PlDHabkWDUzwa1Fvk_U2hG83kQYBqM1IyChg8Yg_VlY,1630
|
|
71
|
-
invenio_vocabularies/contrib/awards/datastreams.py,sha256=
|
|
71
|
+
invenio_vocabularies/contrib/awards/datastreams.py,sha256=MLaD4vaPLjxBZNYJ6Y7I47MATxFWLjv-Hd17JZLaX2Q,14498
|
|
72
72
|
invenio_vocabularies/contrib/awards/models.py,sha256=mM-kSNf7kDH3oIbV8epxxbUi7muYqi4JreXxgWXlVzw,318
|
|
73
73
|
invenio_vocabularies/contrib/awards/resources.py,sha256=_9YTqbhz8axFXGhG5y4WyjE27p9n-7e3c6HoBRditPA,411
|
|
74
|
-
invenio_vocabularies/contrib/awards/schema.py,sha256=
|
|
74
|
+
invenio_vocabularies/contrib/awards/schema.py,sha256=f2SBGKFsti3jmo_9yvpH6-Jrez0lOxLYDcLMgZvNPmU,3410
|
|
75
75
|
invenio_vocabularies/contrib/awards/serializer.py,sha256=W59OMDxOXPdXrrimzMdIPbDIfVk6hARgyz1N2xSbchA,1440
|
|
76
76
|
invenio_vocabularies/contrib/awards/services.py,sha256=zwOMHqa4SyZuHopGZwEKhfw3kUHrWg73_4zMNo5kOe4,371
|
|
77
77
|
invenio_vocabularies/contrib/awards/jsonschemas/__init__.py,sha256=XB2l9hr53vqTk7o9lmy18FWGhHEUvNHu8D6nMF8Bz4k,246
|
|
78
|
-
invenio_vocabularies/contrib/awards/jsonschemas/awards/award-v1.0.0.json,sha256=
|
|
78
|
+
invenio_vocabularies/contrib/awards/jsonschemas/awards/award-v1.0.0.json,sha256=i0P0KlQwCziMLVqyC_UvH_IF4efNO6xb9tdHVO1zDPU,2331
|
|
79
79
|
invenio_vocabularies/contrib/awards/mappings/__init__.py,sha256=PbM5urjiSrJSx4Ak-H_lJrOOVKGT38MrGgRv61gIbAM,243
|
|
80
80
|
invenio_vocabularies/contrib/awards/mappings/os-v1/__init__.py,sha256=r8IZvjorG9SVz32Hv1fncoqLfz-5Ml0Ph3jiYWCHBPk,250
|
|
81
|
-
invenio_vocabularies/contrib/awards/mappings/os-v1/awards/award-v1.0.0.json,sha256=
|
|
81
|
+
invenio_vocabularies/contrib/awards/mappings/os-v1/awards/award-v1.0.0.json,sha256=OONFc5EZDflsMhitlg4U_6N3vkBPcQTuG5KupylkxXQ,2855
|
|
82
82
|
invenio_vocabularies/contrib/awards/mappings/os-v2/__init__.py,sha256=9gRLFRtjhNJcbop3qz8iRpQVEng_wudDTbOFsS-gxjk,250
|
|
83
|
-
invenio_vocabularies/contrib/awards/mappings/os-v2/awards/award-v1.0.0.json,sha256=
|
|
83
|
+
invenio_vocabularies/contrib/awards/mappings/os-v2/awards/award-v1.0.0.json,sha256=OONFc5EZDflsMhitlg4U_6N3vkBPcQTuG5KupylkxXQ,2855
|
|
84
84
|
invenio_vocabularies/contrib/awards/mappings/v7/__init__.py,sha256=fERdPp7K7ajaoUu_4_HVLfF-WD_qcl7QgST6yGb68s4,253
|
|
85
|
-
invenio_vocabularies/contrib/awards/mappings/v7/awards/award-v1.0.0.json,sha256=
|
|
85
|
+
invenio_vocabularies/contrib/awards/mappings/v7/awards/award-v1.0.0.json,sha256=OONFc5EZDflsMhitlg4U_6N3vkBPcQTuG5KupylkxXQ,2855
|
|
86
86
|
invenio_vocabularies/contrib/common/__init__.py,sha256=DdbGYRthEpQtObhY_YK4vOT9Zf7FFagQ6qtUjJOYw-M,247
|
|
87
87
|
invenio_vocabularies/contrib/common/openaire/__init__.py,sha256=L7UtSimFJ3NI6j53bHzYKsWpFti1uo4fPb9OaTl7leI,244
|
|
88
88
|
invenio_vocabularies/contrib/common/openaire/datastreams.py,sha256=BV6NtBCPFuii6KbTHGkgNQO5tt_3Hn9T_219bz8AINg,3514
|
|
@@ -90,7 +90,7 @@ invenio_vocabularies/contrib/common/ror/__init__.py,sha256=3u2-fre1SQ-4nz3Ay0nxj
|
|
|
90
90
|
invenio_vocabularies/contrib/common/ror/datastreams.py,sha256=wHpJy5mRKgJ4nQ7IniLyjxoxjTCZKHaEKKKr_OKrqFM,8139
|
|
91
91
|
invenio_vocabularies/contrib/funders/__init__.py,sha256=YxFXBDnT7NM8rFwxT_Ge3xXR2n17EM0alknQq7r_Bt8,478
|
|
92
92
|
invenio_vocabularies/contrib/funders/api.py,sha256=QKGGeSnPHSoBfucvpaVruXT_txYidofZ080G3IxFkIo,306
|
|
93
|
-
invenio_vocabularies/contrib/funders/config.py,sha256=
|
|
93
|
+
invenio_vocabularies/contrib/funders/config.py,sha256=wRueyNHVz2dvEjbsHMU0zfBG-Qv41QXntHk3OzOAEo4,2305
|
|
94
94
|
invenio_vocabularies/contrib/funders/datastreams.py,sha256=3tOwcN1mK5AVqtdU6KdguouGSUurPTO-FDWTKzK1eRo,2481
|
|
95
95
|
invenio_vocabularies/contrib/funders/facets.py,sha256=a068TVtt74Ncu0latb177LFK8EdnpbMOWecAKozA04M,1245
|
|
96
96
|
invenio_vocabularies/contrib/funders/funders.py,sha256=j4V7lz0fR5rp5XBL3cwmQQElwpopIpv4v37xfi1rU0o,2357
|
|
@@ -112,40 +112,42 @@ invenio_vocabularies/contrib/funders/mappings/v7/__init__.py,sha256=yFHmi3QYD65Y
|
|
|
112
112
|
invenio_vocabularies/contrib/funders/mappings/v7/funders/funder-v1.0.0.json,sha256=E7Zp4IHsQGdaxVrksr-SaQtieV7tV0W6-LgGe231G1w,1646
|
|
113
113
|
invenio_vocabularies/contrib/names/__init__.py,sha256=DBfsM7JMETZGaV5QmXEwE7zhCaAXvc2SZN6uXnW_V-c,451
|
|
114
114
|
invenio_vocabularies/contrib/names/api.py,sha256=sEPn_jFX3gyoxgbdEUSIvOoPCUI8pocI6qCZO6mzCgQ,300
|
|
115
|
-
invenio_vocabularies/contrib/names/config.py,sha256=
|
|
115
|
+
invenio_vocabularies/contrib/names/config.py,sha256=9sb5novWuQYXg_5Egexn52mjgGd1D_D9UKyQ1fmIuh4,1977
|
|
116
116
|
invenio_vocabularies/contrib/names/datastreams.py,sha256=EKatHb0gkvcC9LCYBLIcN5pAgklBY4G43lZR_XE52wY,9505
|
|
117
117
|
invenio_vocabularies/contrib/names/models.py,sha256=SYdtDDG-y5Wq_d06YhiVO5n8gfxPW_mx-tECsIcv5H8,308
|
|
118
|
-
invenio_vocabularies/contrib/names/names.py,sha256=
|
|
118
|
+
invenio_vocabularies/contrib/names/names.py,sha256=_kBJBcPuANgUHlZ8RoVkpfJwzR5qaOQCBIyZusjKoCE,2509
|
|
119
119
|
invenio_vocabularies/contrib/names/permissions.py,sha256=5xrpYsA3oQUJ5lJpF7wjRAFiW-pM6_yP1k9zllbRwnQ,844
|
|
120
120
|
invenio_vocabularies/contrib/names/resources.py,sha256=Z8XqLKfFKE69zdTTvcTDmpEZ6wqiqjIH5tp0LzXTSwQ,1588
|
|
121
121
|
invenio_vocabularies/contrib/names/s3client.py,sha256=c7B9_NbnXCfE4pE_yMTsT6uQ2hgbcRU-KY6nbWFuFzU,1063
|
|
122
|
-
invenio_vocabularies/contrib/names/schema.py,sha256=
|
|
122
|
+
invenio_vocabularies/contrib/names/schema.py,sha256=0Uyh5l_Pdq54osow1Qs7-JUKLx9MxA5a95O5K7rM8M8,3618
|
|
123
123
|
invenio_vocabularies/contrib/names/services.py,sha256=IyZzZ9fovSQa_tqorWciRaPTrY5yv1clD9PHotdzYOQ,2125
|
|
124
124
|
invenio_vocabularies/contrib/names/jsonschemas/__init__.py,sha256=pdDZdyoxqWbAQ6ngiclhYoDUsGKgRDRPXlIDy0U5Jzg,241
|
|
125
125
|
invenio_vocabularies/contrib/names/jsonschemas/names/name-v1.0.0.json,sha256=SmnQtet_AWZE1uZR8UY01IiO5QVLHRNAQ2cNubfP8-o,1573
|
|
126
126
|
invenio_vocabularies/contrib/names/mappings/__init__.py,sha256=l5hYJmrj83lds5GupnwCcwQn7cdJo6_4H4YYzrnBa54,242
|
|
127
127
|
invenio_vocabularies/contrib/names/mappings/os-v1/__init__.py,sha256=CKtF-xflE4QGF5P82Lj1ifEP1c7ekR24fc3SiTAkhsY,249
|
|
128
128
|
invenio_vocabularies/contrib/names/mappings/os-v1/names/name-v1.0.0.json,sha256=5Ybcq3fUMYx3u1MNKmHh-CWBtATS9MYpdEcwAM8EQ80,1943
|
|
129
|
-
invenio_vocabularies/contrib/names/mappings/os-v1/names/name-v2.0.0.json,sha256=
|
|
129
|
+
invenio_vocabularies/contrib/names/mappings/os-v1/names/name-v2.0.0.json,sha256=HuIXWwQvYVSjj80JTrSiQIiQvUFhBZ9SGuM-UV3JR6I,3755
|
|
130
130
|
invenio_vocabularies/contrib/names/mappings/os-v2/__init__.py,sha256=p38Ausy2cu1OetTQYwx-9gOFoxGrtrmqjArSDpvxfMU,249
|
|
131
131
|
invenio_vocabularies/contrib/names/mappings/os-v2/names/name-v1.0.0.json,sha256=5Ybcq3fUMYx3u1MNKmHh-CWBtATS9MYpdEcwAM8EQ80,1943
|
|
132
|
-
invenio_vocabularies/contrib/names/mappings/os-v2/names/name-v2.0.0.json,sha256=
|
|
132
|
+
invenio_vocabularies/contrib/names/mappings/os-v2/names/name-v2.0.0.json,sha256=HuIXWwQvYVSjj80JTrSiQIiQvUFhBZ9SGuM-UV3JR6I,3755
|
|
133
133
|
invenio_vocabularies/contrib/names/mappings/v7/__init__.py,sha256=qLGB8C0kPI3xubcfhI8t6Wb2bLlCmVYCiwQ08bKGz9g,252
|
|
134
134
|
invenio_vocabularies/contrib/names/mappings/v7/names/name-v1.0.0.json,sha256=5Ybcq3fUMYx3u1MNKmHh-CWBtATS9MYpdEcwAM8EQ80,1943
|
|
135
135
|
invenio_vocabularies/contrib/subjects/__init__.py,sha256=GtXZKA6VWG1oA1fUX2Wh92nd-1i7RnnQF6RprGhxkD4,591
|
|
136
136
|
invenio_vocabularies/contrib/subjects/api.py,sha256=QH8mxoLsa8qjJT1i1Tj6rRnpbH23plo2IMOJ56rnvbU,347
|
|
137
|
-
invenio_vocabularies/contrib/subjects/config.py,sha256=
|
|
138
|
-
invenio_vocabularies/contrib/subjects/datastreams.py,sha256=
|
|
137
|
+
invenio_vocabularies/contrib/subjects/config.py,sha256=VsS1fAlHOceLu0E_ciAE4XrrqpI7cfl-OPScqVPimR8,2064
|
|
138
|
+
invenio_vocabularies/contrib/subjects/datastreams.py,sha256=V-g4d-gh9MUhAVG-3lrbd-IO6TNWlsGZedCivT_6aFg,2015
|
|
139
139
|
invenio_vocabularies/contrib/subjects/facets.py,sha256=qQ7_rppFBzsmrlZu4-MvOIdUcjeOmDA9gOHAcs0lWwI,695
|
|
140
140
|
invenio_vocabularies/contrib/subjects/models.py,sha256=8XgbVRxDDvhWPjMWsoCriNlOKdmV_113a14yLRtlvM4,363
|
|
141
141
|
invenio_vocabularies/contrib/subjects/resources.py,sha256=0KRfUMizwgIziZybk4HnIjiSsXbrCv_XmguNPwnxoo8,506
|
|
142
|
-
invenio_vocabularies/contrib/subjects/schema.py,sha256=
|
|
142
|
+
invenio_vocabularies/contrib/subjects/schema.py,sha256=VOW8a9Ob5M-mKrict2bApdFyTpHBwCTJZSxrm93Puv0,3516
|
|
143
143
|
invenio_vocabularies/contrib/subjects/services.py,sha256=s1U6HMmpjuz7rrgR0DtT9C28TC6sZEeDTsa4Jh1TXQk,864
|
|
144
144
|
invenio_vocabularies/contrib/subjects/subjects.py,sha256=NwZycExLyV8l7ikGStH4GOecVuDSxFT70KoNv6qC78I,1877
|
|
145
145
|
invenio_vocabularies/contrib/subjects/euroscivoc/__init__.py,sha256=e5L9E4l5JHqVzijAX8tn2DIa2n01vJ5wOAZdN62RnIo,247
|
|
146
|
-
invenio_vocabularies/contrib/subjects/euroscivoc/datastreams.py,sha256=
|
|
146
|
+
invenio_vocabularies/contrib/subjects/euroscivoc/datastreams.py,sha256=eyEHbH-cTbtf3kKHv4ehMUMngy48H0CIwsjU-qQKK6I,2367
|
|
147
|
+
invenio_vocabularies/contrib/subjects/gemet/__init__.py,sha256=OlRWH2gumZZ1Djc_N3ZGPHyt2wOcIwlDDYO6uOfaZfI,242
|
|
148
|
+
invenio_vocabularies/contrib/subjects/gemet/datastreams.py,sha256=YaCt1698-jQRn4-jj-qfcluLCR9nSHAID9bbHWVOyUk,3566
|
|
147
149
|
invenio_vocabularies/contrib/subjects/jsonschemas/__init__.py,sha256=WowVUST1JoEDS3-xeHhCJvIgC9nzMkFs8XRks9zgzaM,292
|
|
148
|
-
invenio_vocabularies/contrib/subjects/jsonschemas/subjects/subject-v1.0.0.json,sha256=
|
|
150
|
+
invenio_vocabularies/contrib/subjects/jsonschemas/subjects/subject-v1.0.0.json,sha256=O1IsPWrVeuEiMBKtADcRByFNmd1soABgODOnauEJBoI,1868
|
|
149
151
|
invenio_vocabularies/contrib/subjects/mappings/__init__.py,sha256=Qk-yj1ENsTmijO8ImWuDYGzXi6QQ2VjP4DbjrpRfDk8,243
|
|
150
152
|
invenio_vocabularies/contrib/subjects/mappings/os-v1/__init__.py,sha256=rv2-AasC_WJFp2t9Nrhzivmw9RovRI2_msin4oHTZuk,250
|
|
151
153
|
invenio_vocabularies/contrib/subjects/mappings/os-v1/subjects/subject-v1.0.0.json,sha256=WNNWVsaf-pNxqV6p_IR2uIcwIBh30WJeP4IDIxzqutI,1810
|
|
@@ -159,9 +161,9 @@ invenio_vocabularies/datastreams/__init__.py,sha256=VPefh6k4Q3eYxKIW8I5zXUGucntp
|
|
|
159
161
|
invenio_vocabularies/datastreams/datastreams.py,sha256=SpI6ivmf2LIDS2JSkxoM2v5kRmrPoRDtAG5fuzZO4oQ,6078
|
|
160
162
|
invenio_vocabularies/datastreams/errors.py,sha256=IDUZ3gNtYGrhcOgApHCms1gNNJTyJzoMPmG5JtIeYNU,678
|
|
161
163
|
invenio_vocabularies/datastreams/factories.py,sha256=H8a2gAy7KNImtdCdtqpVKC5gIvE3ON6U1Wn1_zaMlQ4,2181
|
|
162
|
-
invenio_vocabularies/datastreams/readers.py,sha256=
|
|
164
|
+
invenio_vocabularies/datastreams/readers.py,sha256=DUuV-D2PLio3nVR0J-2knASq8rB-H14QBr3DoRL6UgA,14352
|
|
163
165
|
invenio_vocabularies/datastreams/tasks.py,sha256=0fuH_PRt9Ncv6WHM4pkYmfheRVGDKkERZiMPvgV4bZU,1129
|
|
164
|
-
invenio_vocabularies/datastreams/transformers.py,sha256=
|
|
166
|
+
invenio_vocabularies/datastreams/transformers.py,sha256=czWKO-h9CB1QoO-mL3fhQv_YHjX-bkAVyhgph-GQFa8,3667
|
|
165
167
|
invenio_vocabularies/datastreams/writers.py,sha256=FMTQdGavRgq6Qk21UcifYeDVH3jUA3rmwdyICr1ywxU,6719
|
|
166
168
|
invenio_vocabularies/datastreams/xml.py,sha256=HFa-lfxj7kFrr2IjeN1jxSLDfcvpBwO9nZLZF2-BryE,997
|
|
167
169
|
invenio_vocabularies/records/__init__.py,sha256=Uj7O6fYdAtLOkLXUGSAYPADBB7aqP4yVs9b6OAjA158,243
|
|
@@ -169,7 +171,7 @@ invenio_vocabularies/records/api.py,sha256=Lynt6Sz4BVN1orh0zgJ5ljhnUobEtcq8c22Pm
|
|
|
169
171
|
invenio_vocabularies/records/models.py,sha256=36CxObDMe-D9hoGaelAlR4ggZZTyXgRmCWPxZRpWF5w,2460
|
|
170
172
|
invenio_vocabularies/records/pidprovider.py,sha256=uFuo-M0Wqua0QhTS2z17YpzYDySwNfJaOi7rp0S0dPs,3840
|
|
171
173
|
invenio_vocabularies/records/jsonschemas/__init__.py,sha256=qr2BZMyMVvVRSeJzPCI8re2BlGokiDjeqwREkythSrQ,246
|
|
172
|
-
invenio_vocabularies/records/jsonschemas/vocabularies/definitions-v1.0.0.json,sha256=
|
|
174
|
+
invenio_vocabularies/records/jsonschemas/vocabularies/definitions-v1.0.0.json,sha256=BronllCw2uX2i-uJTIb7_KZDkeMJOgQGZK9025ueV_A,583
|
|
173
175
|
invenio_vocabularies/records/jsonschemas/vocabularies/vocabulary-v1.0.0.json,sha256=x7kkCkuMNQ6tygb_RWf7QOlOtyG-kqKOH5FNnBn1cqo,1289
|
|
174
176
|
invenio_vocabularies/records/mappings/__init__.py,sha256=kER6e5hZFmPpesFAx-oQsMseep8RXobQRiLIE2r5IMc,244
|
|
175
177
|
invenio_vocabularies/records/mappings/os-v1/__init__.py,sha256=XaGt61tsIKfG59y59Bf0NaPzJECWZnzHSTbAQNUwlVo,248
|
|
@@ -188,7 +190,7 @@ invenio_vocabularies/resources/schema.py,sha256=6stpU9qgLGoeGib3DWnyrHj6XLPxJKbE
|
|
|
188
190
|
invenio_vocabularies/resources/serializer.py,sha256=pwfckLdkMu1MNDkocyMg1XeX6RhbfeuV4fjDO5xKDxo,1190
|
|
189
191
|
invenio_vocabularies/services/__init__.py,sha256=6mi62EG21Id6x23nx0X193I6sVTakK6jOdYNEKPxXUk,522
|
|
190
192
|
invenio_vocabularies/services/components.py,sha256=d9C-24dEDM63gFm75nU-dXrrjS2zZi7Nfkv40BGnHwM,1941
|
|
191
|
-
invenio_vocabularies/services/config.py,sha256=
|
|
193
|
+
invenio_vocabularies/services/config.py,sha256=A9_r2vErcfo3Xt6fC4YVobHXdd64_YyI7iNr-X8GXYI,4704
|
|
192
194
|
invenio_vocabularies/services/facets.py,sha256=qvdHoGSJJr90dZHSVe0-hlO1r0LtTnFVSjrt9PNuNAg,3872
|
|
193
195
|
invenio_vocabularies/services/generators.py,sha256=jcXwb9Hiyek4o-cQ1G2osVgbTBKDbd-5siJMBOWE018,1116
|
|
194
196
|
invenio_vocabularies/services/permissions.py,sha256=83rNOwCuggdJji3VtWTQgytTrhfiWqASCpvI75DxEus,960
|
|
@@ -298,10 +300,10 @@ invenio_vocabularies/translations/zh_CN/LC_MESSAGES/messages.mo,sha256=g1I5aNO8r
|
|
|
298
300
|
invenio_vocabularies/translations/zh_CN/LC_MESSAGES/messages.po,sha256=vg8qC8ofpAdJ3mQz7mWM1ylKDpiNWXFs7rlMdSPkgKk,4629
|
|
299
301
|
invenio_vocabularies/translations/zh_TW/LC_MESSAGES/messages.mo,sha256=cqSm8NtMAwrP9O6qbmtkDtRT1e9D93qpsJN5X9_PPVw,600
|
|
300
302
|
invenio_vocabularies/translations/zh_TW/LC_MESSAGES/messages.po,sha256=9ACePz_EpB-LfcIJajZ2kp8Q04tcdrQLOtug162ZUss,4115
|
|
301
|
-
invenio_vocabularies-6.
|
|
302
|
-
invenio_vocabularies-6.
|
|
303
|
-
invenio_vocabularies-6.
|
|
304
|
-
invenio_vocabularies-6.
|
|
305
|
-
invenio_vocabularies-6.
|
|
306
|
-
invenio_vocabularies-6.
|
|
307
|
-
invenio_vocabularies-6.
|
|
303
|
+
invenio_vocabularies-6.7.0.dist-info/AUTHORS.rst,sha256=8d0p_WWE1r9DavvzMDi2D4YIGBHiMYcN3LYxqQOj8sY,291
|
|
304
|
+
invenio_vocabularies-6.7.0.dist-info/LICENSE,sha256=UvI8pR8jGWqe0sTkb_hRG6eIrozzWwWzyCGEpuXX4KE,1062
|
|
305
|
+
invenio_vocabularies-6.7.0.dist-info/METADATA,sha256=Eb8yxpxyr_aqn1dkluiEffaS4t5uFS8LCcErmHmo6D0,11971
|
|
306
|
+
invenio_vocabularies-6.7.0.dist-info/WHEEL,sha256=-G_t0oGuE7UD0DrSpVZnq1hHMBV9DD2XkS5v7XpmTnk,110
|
|
307
|
+
invenio_vocabularies-6.7.0.dist-info/entry_points.txt,sha256=ud9nfdMlhO_mu3okwmy5vQD48r3-rCU_pSR-lUtLeYE,3180
|
|
308
|
+
invenio_vocabularies-6.7.0.dist-info/top_level.txt,sha256=x1gRNbaODF_bCD0SBLM3nVOFPGi06cmGX5X94WKrFKk,21
|
|
309
|
+
invenio_vocabularies-6.7.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{invenio_vocabularies-6.6.0.dist-info → invenio_vocabularies-6.7.0.dist-info}/entry_points.txt
RENAMED
|
File without changes
|
|
File without changes
|