invenio-vocabularies 9.1.2__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.
- invenio_vocabularies/__init__.py +16 -0
- invenio_vocabularies/administration/__init__.py +10 -0
- invenio_vocabularies/administration/views/__init__.py +10 -0
- invenio_vocabularies/administration/views/vocabularies.py +43 -0
- invenio_vocabularies/alembic/17c703ce1eb7_create_names_table.py +54 -0
- invenio_vocabularies/alembic/3ba812d80559_add_internal_name_id.py +36 -0
- invenio_vocabularies/alembic/4a9a4fd235f8_create_vocabulary_schemes.py +37 -0
- invenio_vocabularies/alembic/4f365fced43f_create_vocabularies_tables.py +92 -0
- invenio_vocabularies/alembic/55a700f897b6_add_names_and_afiliations_pid_column.py +96 -0
- invenio_vocabularies/alembic/6312f33645c1_create_affiliations_table.py +54 -0
- invenio_vocabularies/alembic/676dd587542d_create_funders_vocabulary_table.py +58 -0
- invenio_vocabularies/alembic/8ff82dfb0be8_create_vocabularies_branch.py +28 -0
- invenio_vocabularies/alembic/__init__.py +9 -0
- invenio_vocabularies/alembic/af2457652217_drop_unique_constraint_from_internal_id.py +37 -0
- invenio_vocabularies/alembic/e1146238edd3_create_awards_table.py +56 -0
- invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/.eslintrc.yml +11 -0
- invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/.prettierrc +1 -0
- invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/index.js +7 -0
- invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/package.json +25 -0
- invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/Funding/AwardResults.js +95 -0
- invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/Funding/CustomAwardForm.js +139 -0
- invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/Funding/FunderDropdown.js +87 -0
- invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/Funding/FundingField.js +244 -0
- invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/Funding/FundingField.test.js +1 -0
- invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/Funding/FundingFieldItem.js +152 -0
- invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/Funding/FundingModal.js +246 -0
- invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/Funding/NoAwardResults.js +37 -0
- invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/Funding/index.js +8 -0
- invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/index.js +7 -0
- invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/index.js +7 -0
- invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/index.js +7 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/i18next.js +36 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/_generatedTranslations.js +66 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/ar/messages.po +96 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/ar/translations.json +28 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/bg/messages.po +94 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/bg/translations.json +28 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/ca/messages.po +94 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/ca/translations.json +28 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/cs/messages.po +97 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/cs/translations.json +28 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/da/messages.po +94 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/da/translations.json +28 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/de/messages.po +98 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/de/translations.json +28 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/el/messages.po +94 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/el/translations.json +28 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/en/messages.po +88 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/en/translations.json +28 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/es/messages.po +96 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/es/translations.json +28 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/et/messages.po +95 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/et/translations.json +28 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/fa/messages.po +94 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/fa/translations.json +28 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/fr/messages.po +96 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/fr/translations.json +28 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/hr/messages.po +94 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/hr/translations.json +28 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/hu/messages.po +96 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/hu/translations.json +28 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/index.js +24 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/it/messages.po +96 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/it/translations.json +28 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/ja/messages.po +94 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/ja/translations.json +28 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/ka/messages.po +94 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/ka/translations.json +28 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/ko/messages.po +90 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/ko/translations.json +28 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/lt/messages.po +94 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/lt/translations.json +28 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/no/messages.po +94 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/no/translations.json +28 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/pl/messages.po +94 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/pl/translations.json +28 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/pt/messages.po +94 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/pt/translations.json +28 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/ro/messages.po +95 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/ro/translations.json +28 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/ru/messages.po +95 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/ru/translations.json +28 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/sk/messages.po +94 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/sk/translations.json +28 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/sv/messages.po +98 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/sv/translations.json +28 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/tr/messages.po +96 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/tr/translations.json +28 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/uk/messages.po +94 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/uk/translations.json +28 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/zh_CN/messages.po +96 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/zh_CN/translations.json +28 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/zh_TW/messages.po +94 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/zh_TW/translations.json +28 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/package.json +19 -0
- invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/translations.pot +88 -0
- invenio_vocabularies/cli.py +175 -0
- invenio_vocabularies/config.py +231 -0
- invenio_vocabularies/contrib/__init__.py +9 -0
- invenio_vocabularies/contrib/affiliations/__init__.py +20 -0
- invenio_vocabularies/contrib/affiliations/affiliations.py +61 -0
- invenio_vocabularies/contrib/affiliations/api.py +13 -0
- invenio_vocabularies/contrib/affiliations/config.py +79 -0
- invenio_vocabularies/contrib/affiliations/datastreams.py +301 -0
- invenio_vocabularies/contrib/affiliations/facets.py +36 -0
- invenio_vocabularies/contrib/affiliations/jsonschemas/__init__.py +9 -0
- invenio_vocabularies/contrib/affiliations/jsonschemas/affiliations/affiliation-v1.0.0.json +63 -0
- invenio_vocabularies/contrib/affiliations/mappings/__init__.py +10 -0
- invenio_vocabularies/contrib/affiliations/mappings/os-v1/__init__.py +9 -0
- invenio_vocabularies/contrib/affiliations/mappings/os-v1/affiliations/affiliation-v1.0.0.json +112 -0
- invenio_vocabularies/contrib/affiliations/mappings/os-v1/affiliations/affiliation-v2.0.0.json +171 -0
- invenio_vocabularies/contrib/affiliations/mappings/os-v2/__init__.py +9 -0
- invenio_vocabularies/contrib/affiliations/mappings/os-v2/affiliations/affiliation-v1.0.0.json +112 -0
- invenio_vocabularies/contrib/affiliations/mappings/os-v2/affiliations/affiliation-v2.0.0.json +171 -0
- invenio_vocabularies/contrib/affiliations/mappings/v7/__init__.py +9 -0
- invenio_vocabularies/contrib/affiliations/mappings/v7/affiliations/affiliation-v1.0.0.json +112 -0
- invenio_vocabularies/contrib/affiliations/models.py +13 -0
- invenio_vocabularies/contrib/affiliations/resources.py +16 -0
- invenio_vocabularies/contrib/affiliations/schema.py +71 -0
- invenio_vocabularies/contrib/affiliations/services.py +15 -0
- invenio_vocabularies/contrib/awards/__init__.py +19 -0
- invenio_vocabularies/contrib/awards/api.py +13 -0
- invenio_vocabularies/contrib/awards/awards.py +96 -0
- invenio_vocabularies/contrib/awards/config.py +59 -0
- invenio_vocabularies/contrib/awards/datastreams.py +372 -0
- invenio_vocabularies/contrib/awards/jsonschemas/__init__.py +9 -0
- invenio_vocabularies/contrib/awards/jsonschemas/awards/award-v1.0.0.json +91 -0
- invenio_vocabularies/contrib/awards/mappings/__init__.py +9 -0
- invenio_vocabularies/contrib/awards/mappings/os-v1/__init__.py +9 -0
- invenio_vocabularies/contrib/awards/mappings/os-v1/awards/award-v1.0.0.json +147 -0
- invenio_vocabularies/contrib/awards/mappings/os-v2/__init__.py +9 -0
- invenio_vocabularies/contrib/awards/mappings/os-v2/awards/award-v1.0.0.json +147 -0
- invenio_vocabularies/contrib/awards/mappings/v7/__init__.py +9 -0
- invenio_vocabularies/contrib/awards/mappings/v7/awards/award-v1.0.0.json +147 -0
- invenio_vocabularies/contrib/awards/models.py +13 -0
- invenio_vocabularies/contrib/awards/resources.py +16 -0
- invenio_vocabularies/contrib/awards/schema.py +119 -0
- invenio_vocabularies/contrib/awards/serializer.py +47 -0
- invenio_vocabularies/contrib/awards/services.py +15 -0
- invenio_vocabularies/contrib/common/__init__.py +9 -0
- invenio_vocabularies/contrib/common/openaire/__init__.py +9 -0
- invenio_vocabularies/contrib/common/openaire/datastreams.py +84 -0
- invenio_vocabularies/contrib/common/ror/__init__.py +9 -0
- invenio_vocabularies/contrib/common/ror/datastreams.py +230 -0
- invenio_vocabularies/contrib/funders/__init__.py +19 -0
- invenio_vocabularies/contrib/funders/api.py +13 -0
- invenio_vocabularies/contrib/funders/config.py +78 -0
- invenio_vocabularies/contrib/funders/datastreams.py +97 -0
- invenio_vocabularies/contrib/funders/facets.py +36 -0
- invenio_vocabularies/contrib/funders/funders.py +72 -0
- invenio_vocabularies/contrib/funders/jsonschemas/__init__.py +9 -0
- invenio_vocabularies/contrib/funders/jsonschemas/funders/funder-v1.0.0.json +65 -0
- invenio_vocabularies/contrib/funders/mappings/__init__.py +9 -0
- invenio_vocabularies/contrib/funders/mappings/os-v1/__init__.py +9 -0
- invenio_vocabularies/contrib/funders/mappings/os-v1/funders/funder-v1.0.0.json +90 -0
- invenio_vocabularies/contrib/funders/mappings/os-v1/funders/funder-v2.0.0.json +156 -0
- invenio_vocabularies/contrib/funders/mappings/os-v2/__init__.py +9 -0
- invenio_vocabularies/contrib/funders/mappings/os-v2/funders/funder-v1.0.0.json +90 -0
- invenio_vocabularies/contrib/funders/mappings/os-v2/funders/funder-v2.0.0.json +156 -0
- invenio_vocabularies/contrib/funders/mappings/v7/__init__.py +9 -0
- invenio_vocabularies/contrib/funders/mappings/v7/funders/funder-v1.0.0.json +90 -0
- invenio_vocabularies/contrib/funders/models.py +13 -0
- invenio_vocabularies/contrib/funders/resources.py +16 -0
- invenio_vocabularies/contrib/funders/schema.py +88 -0
- invenio_vocabularies/contrib/funders/serializer.py +33 -0
- invenio_vocabularies/contrib/funders/services.py +15 -0
- invenio_vocabularies/contrib/names/__init__.py +19 -0
- invenio_vocabularies/contrib/names/api.py +13 -0
- invenio_vocabularies/contrib/names/components.py +24 -0
- invenio_vocabularies/contrib/names/config.py +75 -0
- invenio_vocabularies/contrib/names/datastreams.py +483 -0
- invenio_vocabularies/contrib/names/jsonschemas/__init__.py +9 -0
- invenio_vocabularies/contrib/names/jsonschemas/names/name-v1.0.0.json +68 -0
- invenio_vocabularies/contrib/names/mappings/__init__.py +9 -0
- invenio_vocabularies/contrib/names/mappings/os-v1/__init__.py +9 -0
- invenio_vocabularies/contrib/names/mappings/os-v1/names/name-v1.0.0.json +101 -0
- invenio_vocabularies/contrib/names/mappings/os-v1/names/name-v2.0.0.json +165 -0
- invenio_vocabularies/contrib/names/mappings/os-v2/__init__.py +9 -0
- invenio_vocabularies/contrib/names/mappings/os-v2/names/name-v1.0.0.json +101 -0
- invenio_vocabularies/contrib/names/mappings/os-v2/names/name-v2.0.0.json +165 -0
- invenio_vocabularies/contrib/names/mappings/v7/__init__.py +9 -0
- invenio_vocabularies/contrib/names/mappings/v7/names/name-v1.0.0.json +101 -0
- invenio_vocabularies/contrib/names/models.py +13 -0
- invenio_vocabularies/contrib/names/names.py +80 -0
- invenio_vocabularies/contrib/names/permissions.py +30 -0
- invenio_vocabularies/contrib/names/resources.py +54 -0
- invenio_vocabularies/contrib/names/s3client.py +50 -0
- invenio_vocabularies/contrib/names/schema.py +121 -0
- invenio_vocabularies/contrib/names/services.py +64 -0
- invenio_vocabularies/contrib/subjects/__init__.py +22 -0
- invenio_vocabularies/contrib/subjects/api.py +14 -0
- invenio_vocabularies/contrib/subjects/config.py +90 -0
- invenio_vocabularies/contrib/subjects/datastreams.py +63 -0
- invenio_vocabularies/contrib/subjects/euroscivoc/__init__.py +9 -0
- invenio_vocabularies/contrib/subjects/euroscivoc/datastreams.py +101 -0
- invenio_vocabularies/contrib/subjects/facets.py +23 -0
- invenio_vocabularies/contrib/subjects/gemet/__init__.py +9 -0
- invenio_vocabularies/contrib/subjects/gemet/datastreams.py +140 -0
- invenio_vocabularies/contrib/subjects/jsonschemas/__init__.py +10 -0
- invenio_vocabularies/contrib/subjects/jsonschemas/subjects/subject-v1.0.0.json +69 -0
- invenio_vocabularies/contrib/subjects/mappings/__init__.py +9 -0
- invenio_vocabularies/contrib/subjects/mappings/os-v1/__init__.py +9 -0
- invenio_vocabularies/contrib/subjects/mappings/os-v1/subjects/subject-v1.0.0.json +96 -0
- invenio_vocabularies/contrib/subjects/mappings/os-v2/__init__.py +9 -0
- invenio_vocabularies/contrib/subjects/mappings/os-v2/subjects/subject-v1.0.0.json +96 -0
- invenio_vocabularies/contrib/subjects/mappings/v7/__init__.py +9 -0
- invenio_vocabularies/contrib/subjects/mappings/v7/subjects/subject-v1.0.0.json +96 -0
- invenio_vocabularies/contrib/subjects/mesh/__init__.py +9 -0
- invenio_vocabularies/contrib/subjects/mesh/datastreams.py +48 -0
- invenio_vocabularies/contrib/subjects/models.py +14 -0
- invenio_vocabularies/contrib/subjects/nvs/__init__.py +9 -0
- invenio_vocabularies/contrib/subjects/nvs/datastreams.py +114 -0
- invenio_vocabularies/contrib/subjects/resources.py +17 -0
- invenio_vocabularies/contrib/subjects/schema.py +101 -0
- invenio_vocabularies/contrib/subjects/services.py +30 -0
- invenio_vocabularies/contrib/subjects/subjects.py +55 -0
- invenio_vocabularies/datastreams/__init__.py +18 -0
- invenio_vocabularies/datastreams/datastreams.py +239 -0
- invenio_vocabularies/datastreams/errors.py +29 -0
- invenio_vocabularies/datastreams/factories.py +86 -0
- invenio_vocabularies/datastreams/readers.py +448 -0
- invenio_vocabularies/datastreams/tasks.py +115 -0
- invenio_vocabularies/datastreams/transformers.py +130 -0
- invenio_vocabularies/datastreams/writers.py +222 -0
- invenio_vocabularies/datastreams/xml.py +34 -0
- invenio_vocabularies/ext.py +179 -0
- invenio_vocabularies/factories.py +193 -0
- invenio_vocabularies/fixtures.py +52 -0
- invenio_vocabularies/jobs.py +207 -0
- invenio_vocabularies/proxies.py +27 -0
- invenio_vocabularies/records/__init__.py +9 -0
- invenio_vocabularies/records/api.py +53 -0
- invenio_vocabularies/records/jsonschemas/__init__.py +9 -0
- invenio_vocabularies/records/jsonschemas/vocabularies/definitions-v1.0.0.json +30 -0
- invenio_vocabularies/records/jsonschemas/vocabularies/vocabulary-v1.0.0.json +55 -0
- invenio_vocabularies/records/mappings/__init__.py +9 -0
- invenio_vocabularies/records/mappings/os-v1/__init__.py +9 -0
- invenio_vocabularies/records/mappings/os-v1/vocabularies/vocabulary-v1.0.0.json +109 -0
- invenio_vocabularies/records/mappings/os-v2/__init__.py +9 -0
- invenio_vocabularies/records/mappings/os-v2/vocabularies/vocabulary-v1.0.0.json +109 -0
- invenio_vocabularies/records/mappings/v7/__init__.py +9 -0
- invenio_vocabularies/records/mappings/v7/vocabularies/vocabulary-v1.0.0.json +109 -0
- invenio_vocabularies/records/models.py +90 -0
- invenio_vocabularies/records/pidprovider.py +118 -0
- invenio_vocabularies/records/systemfields/__init__.py +16 -0
- invenio_vocabularies/records/systemfields/pid.py +125 -0
- invenio_vocabularies/records/systemfields/relations.py +51 -0
- invenio_vocabularies/resources/__init__.py +23 -0
- invenio_vocabularies/resources/config.py +105 -0
- invenio_vocabularies/resources/resource.py +156 -0
- invenio_vocabularies/resources/schema.py +21 -0
- invenio_vocabularies/resources/serializer.py +39 -0
- invenio_vocabularies/services/__init__.py +19 -0
- invenio_vocabularies/services/components.py +58 -0
- invenio_vocabularies/services/config.py +173 -0
- invenio_vocabularies/services/custom_fields/__init__.py +17 -0
- invenio_vocabularies/services/custom_fields/subject.py +82 -0
- invenio_vocabularies/services/custom_fields/vocabulary.py +96 -0
- invenio_vocabularies/services/facets.py +114 -0
- invenio_vocabularies/services/generators.py +38 -0
- invenio_vocabularies/services/permissions.py +30 -0
- invenio_vocabularies/services/querystr.py +57 -0
- invenio_vocabularies/services/results.py +110 -0
- invenio_vocabularies/services/schema.py +163 -0
- invenio_vocabularies/services/service.py +189 -0
- invenio_vocabularies/services/tasks.py +38 -0
- invenio_vocabularies/templates/semantic-ui/invenio_vocabularies/subjects.html +23 -0
- invenio_vocabularies/templates/semantic-ui/invenio_vocabularies/vocabularies-list.html +12 -0
- invenio_vocabularies/templates/semantic-ui/invenio_vocabularies/vocabulary-details.html +71 -0
- invenio_vocabularies/translations/ar/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/ar/LC_MESSAGES/messages.po +277 -0
- invenio_vocabularies/translations/bg/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/bg/LC_MESSAGES/messages.po +275 -0
- invenio_vocabularies/translations/ca/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/ca/LC_MESSAGES/messages.po +276 -0
- invenio_vocabularies/translations/cs/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/cs/LC_MESSAGES/messages.po +281 -0
- invenio_vocabularies/translations/da/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/da/LC_MESSAGES/messages.po +271 -0
- invenio_vocabularies/translations/de/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/de/LC_MESSAGES/messages.po +293 -0
- invenio_vocabularies/translations/el/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/el/LC_MESSAGES/messages.po +275 -0
- invenio_vocabularies/translations/es/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/es/LC_MESSAGES/messages.po +281 -0
- invenio_vocabularies/translations/et/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/et/LC_MESSAGES/messages.po +276 -0
- invenio_vocabularies/translations/fa/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/fa/LC_MESSAGES/messages.po +275 -0
- invenio_vocabularies/translations/fr/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/fr/LC_MESSAGES/messages.po +279 -0
- invenio_vocabularies/translations/hr/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/hr/LC_MESSAGES/messages.po +275 -0
- invenio_vocabularies/translations/hu/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/hu/LC_MESSAGES/messages.po +280 -0
- invenio_vocabularies/translations/it/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/it/LC_MESSAGES/messages.po +277 -0
- invenio_vocabularies/translations/ja/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/ja/LC_MESSAGES/messages.po +275 -0
- invenio_vocabularies/translations/ka/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/ka/LC_MESSAGES/messages.po +275 -0
- invenio_vocabularies/translations/ko/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/ko/LC_MESSAGES/messages.po +275 -0
- invenio_vocabularies/translations/lt/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/lt/LC_MESSAGES/messages.po +275 -0
- invenio_vocabularies/translations/messages.pot +270 -0
- invenio_vocabularies/translations/no/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/no/LC_MESSAGES/messages.po +275 -0
- invenio_vocabularies/translations/pl/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/pl/LC_MESSAGES/messages.po +275 -0
- invenio_vocabularies/translations/pt/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/pt/LC_MESSAGES/messages.po +275 -0
- invenio_vocabularies/translations/ro/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/ro/LC_MESSAGES/messages.po +280 -0
- invenio_vocabularies/translations/ru/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/ru/LC_MESSAGES/messages.po +276 -0
- invenio_vocabularies/translations/sk/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/sk/LC_MESSAGES/messages.po +276 -0
- invenio_vocabularies/translations/sv/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/sv/LC_MESSAGES/messages.po +280 -0
- invenio_vocabularies/translations/tr/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/tr/LC_MESSAGES/messages.po +277 -0
- invenio_vocabularies/translations/uk/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/uk/LC_MESSAGES/messages.po +275 -0
- invenio_vocabularies/translations/zh_CN/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/zh_CN/LC_MESSAGES/messages.po +276 -0
- invenio_vocabularies/translations/zh_TW/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/zh_TW/LC_MESSAGES/messages.po +275 -0
- invenio_vocabularies/views.py +53 -0
- invenio_vocabularies/webpack.py +51 -0
- invenio_vocabularies-9.1.2.dist-info/METADATA +517 -0
- invenio_vocabularies-9.1.2.dist-info/RECORD +337 -0
- invenio_vocabularies-9.1.2.dist-info/WHEEL +6 -0
- invenio_vocabularies-9.1.2.dist-info/entry_points.txt +73 -0
- invenio_vocabularies-9.1.2.dist-info/licenses/AUTHORS.rst +13 -0
- invenio_vocabularies-9.1.2.dist-info/licenses/LICENSE +21 -0
- invenio_vocabularies-9.1.2.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,517 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: invenio-vocabularies
|
|
3
|
+
Version: 9.1.2
|
|
4
|
+
Summary: Invenio module for managing vocabularies.
|
|
5
|
+
Home-page: https://github.com/inveniosoftware/invenio-vocabularies
|
|
6
|
+
Author: CERN
|
|
7
|
+
Author-email: info@inveniosoftware.org
|
|
8
|
+
License: MIT
|
|
9
|
+
Keywords: invenio vocabulary management
|
|
10
|
+
Platform: any
|
|
11
|
+
Classifier: Development Status :: 5 - Production/Stable
|
|
12
|
+
Requires-Python: >=3.7
|
|
13
|
+
License-File: LICENSE
|
|
14
|
+
License-File: AUTHORS.rst
|
|
15
|
+
Requires-Dist: invenio-i18n<4.0.0,>=3.0.0
|
|
16
|
+
Requires-Dist: invenio-records-resources<9.0.0,>=8.0.0
|
|
17
|
+
Requires-Dist: invenio-administration<5.0.0,>=4.0.0
|
|
18
|
+
Requires-Dist: invenio-jobs<7.0.0,>=6.0.0
|
|
19
|
+
Requires-Dist: lxml>=4.5.0
|
|
20
|
+
Requires-Dist: pycountry>=24.0.0
|
|
21
|
+
Requires-Dist: PyYAML>=5.4.1
|
|
22
|
+
Requires-Dist: regex>=2024.7.24
|
|
23
|
+
Requires-Dist: SPARQLWrapper>=2.0.0
|
|
24
|
+
Provides-Extra: s3fs
|
|
25
|
+
Requires-Dist: s3fs>=2024.6.1; extra == "s3fs"
|
|
26
|
+
Provides-Extra: oaipmh
|
|
27
|
+
Requires-Dist: invenio-oaipmh-scythe>=0.13.0; extra == "oaipmh"
|
|
28
|
+
Provides-Extra: rdf
|
|
29
|
+
Requires-Dist: rdflib>=7.0.0; extra == "rdf"
|
|
30
|
+
Provides-Extra: sparql
|
|
31
|
+
Requires-Dist: SPARQLWrapper>=2.0.0; extra == "sparql"
|
|
32
|
+
Provides-Extra: tests
|
|
33
|
+
Requires-Dist: pytest-black-ng>=0.4.0; extra == "tests"
|
|
34
|
+
Requires-Dist: invenio-app<3.0.0,>=2.0.0; extra == "tests"
|
|
35
|
+
Requires-Dist: invenio-db[mysql,postgresql]<3.0.0,>=2.0.0; extra == "tests"
|
|
36
|
+
Requires-Dist: pytest_httpserver>=1.0.10; extra == "tests"
|
|
37
|
+
Requires-Dist: pytest-invenio<4.0.0,>=3.0.0; extra == "tests"
|
|
38
|
+
Requires-Dist: Sphinx>=4.5; extra == "tests"
|
|
39
|
+
Provides-Extra: elasticsearch7
|
|
40
|
+
Requires-Dist: invenio-search[elasticsearch7]<4.0.0,>=3.0.0; extra == "elasticsearch7"
|
|
41
|
+
Provides-Extra: opensearch1
|
|
42
|
+
Requires-Dist: invenio-search[opensearch1]<4.0.0,>=3.0.0; extra == "opensearch1"
|
|
43
|
+
Provides-Extra: opensearch2
|
|
44
|
+
Requires-Dist: invenio-search[opensearch2]<4.0.0,>=3.0.0; extra == "opensearch2"
|
|
45
|
+
Provides-Extra: mysql
|
|
46
|
+
Provides-Extra: postgresql
|
|
47
|
+
Provides-Extra: sqlite
|
|
48
|
+
Dynamic: license-file
|
|
49
|
+
|
|
50
|
+
..
|
|
51
|
+
Copyright (C) 2020-2025 CERN.
|
|
52
|
+
|
|
53
|
+
Invenio-Vocabularies is free software; you can redistribute it and/or
|
|
54
|
+
modify it under the terms of the MIT License; see LICENSE file for more
|
|
55
|
+
details.
|
|
56
|
+
|
|
57
|
+
======================
|
|
58
|
+
Invenio-Vocabularies
|
|
59
|
+
======================
|
|
60
|
+
|
|
61
|
+
.. image:: https://github.com/inveniosoftware/invenio-vocabularies/workflows/CI/badge.svg
|
|
62
|
+
:target: https://github.com/inveniosoftware/invenio-vocabularies/actions?query=workflow%3ACI
|
|
63
|
+
|
|
64
|
+
.. image:: https://img.shields.io/coveralls/inveniosoftware/invenio-vocabularies.svg
|
|
65
|
+
:target: https://coveralls.io/r/inveniosoftware/invenio-vocabularies
|
|
66
|
+
|
|
67
|
+
.. image:: https://img.shields.io/github/tag/inveniosoftware/invenio-vocabularies.svg
|
|
68
|
+
:target: https://github.com/inveniosoftware/invenio-vocabularies/releases
|
|
69
|
+
|
|
70
|
+
.. image:: https://img.shields.io/pypi/dm/invenio-vocabularies.svg
|
|
71
|
+
:target: https://pypi.python.org/pypi/invenio-vocabularies
|
|
72
|
+
|
|
73
|
+
.. image:: https://img.shields.io/github/license/inveniosoftware/invenio-vocabularies.svg
|
|
74
|
+
:target: https://github.com/inveniosoftware/invenio-vocabularies/blob/master/LICENSE
|
|
75
|
+
|
|
76
|
+
Invenio module for managing vocabularies, based on Invenio-Records and Invenio-Records-Resources. This module provides:
|
|
77
|
+
|
|
78
|
+
- Factories for easily generating models, record API classes, services, and resources
|
|
79
|
+
- Helpers for importing vocabularies
|
|
80
|
+
|
|
81
|
+
..
|
|
82
|
+
Copyright (C) 2020-2025 CERN.
|
|
83
|
+
Copyright (C) 2024-2025 Graz University of Technology.
|
|
84
|
+
|
|
85
|
+
Invenio-Vocabularies is free software; you can redistribute it and/or
|
|
86
|
+
modify it under the terms of the MIT License; see LICENSE file for more
|
|
87
|
+
details.
|
|
88
|
+
|
|
89
|
+
Changes
|
|
90
|
+
=======
|
|
91
|
+
|
|
92
|
+
Version v9.1.2 (released 2025-12-17)
|
|
93
|
+
|
|
94
|
+
- fix: ChangedInMarshmallow4Warning
|
|
95
|
+
- Updated file pattern in ROR dump
|
|
96
|
+
|
|
97
|
+
Version v9.1.1 (released 2025-10-01)
|
|
98
|
+
|
|
99
|
+
- ui installation: bump react-overridable version
|
|
100
|
+
|
|
101
|
+
Version v9.1.0 (released 2025-10-01)
|
|
102
|
+
|
|
103
|
+
- installation: bump major version of invenio-jobs
|
|
104
|
+
|
|
105
|
+
Version v9.0.0 (released 2025-09-05)
|
|
106
|
+
|
|
107
|
+
- setup: bump major version of invenio-jobs
|
|
108
|
+
|
|
109
|
+
Version v8.3.0 (released 2025-07-31)
|
|
110
|
+
|
|
111
|
+
- subjects: Add search scheme field configuration to enable composite and filter query support in subject search functionality
|
|
112
|
+
|
|
113
|
+
Version v8.2.1 (released 2025-07-21)
|
|
114
|
+
|
|
115
|
+
- fix(jobs): remove string casts from since
|
|
116
|
+
|
|
117
|
+
Version v8.2.0 (released 2025-07-17)
|
|
118
|
+
|
|
119
|
+
- tasks: fix error name
|
|
120
|
+
- i18n: pulled translations
|
|
121
|
+
- chore: removed pycountry pinning to <23
|
|
122
|
+
- datastreams: Add skip warning for errored transformed entries
|
|
123
|
+
- names: datastreams: write and display errors instead of raise
|
|
124
|
+
- i18n: include additional .po files in MANIFEST.in
|
|
125
|
+
- i18n: compile js msgs
|
|
126
|
+
- i18n: force pull languages
|
|
127
|
+
- i18n: run js extract msgs
|
|
128
|
+
- i18n: refactor compile catalog
|
|
129
|
+
- i18n: run py extract msgs
|
|
130
|
+
|
|
131
|
+
Version v8.1.0 (released 2025-07-03)
|
|
132
|
+
|
|
133
|
+
- fix: SADeprecationWarning
|
|
134
|
+
- ror: fix handling of _since as "None"
|
|
135
|
+
- chore: fix wrong module export strings
|
|
136
|
+
- datastreams: add ror-http to funders and affiliations
|
|
137
|
+
|
|
138
|
+
Version v8.0.1 (released 2025-06-11)
|
|
139
|
+
|
|
140
|
+
- funding: added fieldpath prop for feedback label
|
|
141
|
+
|
|
142
|
+
Version v8.0.0 (released 2025-06-03)
|
|
143
|
+
|
|
144
|
+
- setup: bump major dependencies
|
|
145
|
+
|
|
146
|
+
Version v7.5.0 (released 2025-06-03)
|
|
147
|
+
|
|
148
|
+
- jobs: ORCID job update instead of import (insert-only)
|
|
149
|
+
- readers: add SPARQLReader client params to allow setting user_agent (#472)
|
|
150
|
+
- chore(i18n): removed deprecated languages from i18next
|
|
151
|
+
- chore(tests): update MANIFEST.in
|
|
152
|
+
- chore(i18n): init catalog & extract messages
|
|
153
|
+
- refactor(i18n): use vocabularies i18next for funding ui
|
|
154
|
+
- config: update idutils imports
|
|
155
|
+
- logging: add basic logging for ROR HTTP reader
|
|
156
|
+
- names: ORCID Public Data Sync: detect default keys
|
|
157
|
+
|
|
158
|
+
Version v7.4.0 (released 2025-04-28)
|
|
159
|
+
|
|
160
|
+
- i18n: Fix untranslated strings in vocabularies
|
|
161
|
+
- logging: add basic logging for ORCID
|
|
162
|
+
|
|
163
|
+
Version v7.3.0 (released 2025-03-18)
|
|
164
|
+
|
|
165
|
+
- form: funding: use FeedbackLabel and add error styling
|
|
166
|
+
|
|
167
|
+
Version v7.2.1 (released 2025-03-17)
|
|
168
|
+
|
|
169
|
+
- subjects: Keep bool_prefix clause for suggest search
|
|
170
|
+
|
|
171
|
+
Version v7.2.0 (released 2025-03-10)
|
|
172
|
+
|
|
173
|
+
- search: fix too many clauses on affiliation search
|
|
174
|
+
- search: remove redundant fields from affiliation and funders search
|
|
175
|
+
- nvs subjects: fix deprecated subjects skipping (raise skipped)
|
|
176
|
+
|
|
177
|
+
Version v7.1.0 (released 2025-02-20)
|
|
178
|
+
|
|
179
|
+
- subjects: renamed bodc to nvs
|
|
180
|
+
- bodc: updated file uri & subject label
|
|
181
|
+
|
|
182
|
+
Version v7.0.0 (released 2025-02-13)
|
|
183
|
+
|
|
184
|
+
- Promote to stable release
|
|
185
|
+
- jobs: apply code upgrades
|
|
186
|
+
|
|
187
|
+
Version v7.0.0.dev2 (released 2025-01-23)
|
|
188
|
+
|
|
189
|
+
Version v7.0.0.dev1 (released 2024-12-12)
|
|
190
|
+
|
|
191
|
+
- comp: make compatible to flask-sqlalchemy>=3.1
|
|
192
|
+
- setup: change to reusable workflows
|
|
193
|
+
- setup: bump major dependencies
|
|
194
|
+
|
|
195
|
+
Version v6.11.0 (released 2024-12-13)
|
|
196
|
+
|
|
197
|
+
- names: fix acronym in marshamllow schema
|
|
198
|
+
|
|
199
|
+
Version v6.10.1 (released 2024-12-12)
|
|
200
|
+
|
|
201
|
+
- names: drop unique id on the internal id
|
|
202
|
+
|
|
203
|
+
Version v6.10.0 (released 2024-12-12)
|
|
204
|
+
|
|
205
|
+
- names: add internal id column to the name_metadata db
|
|
206
|
+
|
|
207
|
+
Version v6.9.0 (released 2024-12-09)
|
|
208
|
+
|
|
209
|
+
- schema: added identifiers in affiliations relation
|
|
210
|
+
|
|
211
|
+
Version v6.8.0 (released 2024-12-09)
|
|
212
|
+
|
|
213
|
+
- names: extract affiliation identifiers from employments
|
|
214
|
+
- names: optimize memory usage on ORCID sync
|
|
215
|
+
- subjects: improve search with CompositeSuggestQueryParser
|
|
216
|
+
- subjects: added datastream for bodc
|
|
217
|
+
|
|
218
|
+
Version v6.7.0 (released 2024-11-27)
|
|
219
|
+
|
|
220
|
+
- contrib: improve search accuracy for names, funders, affiliations
|
|
221
|
+
- names: add affiliation acronym in mappings and schema
|
|
222
|
+
* Dereferences the affiliation `acronym` when indexing names and serving
|
|
223
|
+
REST API results. This is useful for disambiguating authors in search.
|
|
224
|
+
- affiliations: move RDF and SPARQL as extra dependencies
|
|
225
|
+
* Moves `rdflib` and `SPARQLWrapper` to extras.
|
|
226
|
+
- affiliation: refactored edmo datastreams
|
|
227
|
+
- subjects: added datastream for GEMET vocabulary
|
|
228
|
+
- awards/schema.py: read app config for alternate funding validation (#429)
|
|
229
|
+
- awards: fix description field and mappings
|
|
230
|
+
- awards: add fields start/end date and description
|
|
231
|
+
|
|
232
|
+
Version v6.6.0 (released 2024-11-15)
|
|
233
|
+
|
|
234
|
+
- mesh: add title en if not present
|
|
235
|
+
- subjects: add subject to search fields
|
|
236
|
+
- jobs: add ORCID job
|
|
237
|
+
- global: Add unlisted tag
|
|
238
|
+
* This adds a new tag to the vocabularies to allow for unlisted
|
|
239
|
+
vocabularies. This is useful for vocabularies that are not meant to be
|
|
240
|
+
displayed in the UI.
|
|
241
|
+
* This requires to update the names mapping to add the props.
|
|
242
|
+
|
|
243
|
+
Version v6.5.0 (released 2024-10-31)
|
|
244
|
+
|
|
245
|
+
- subjects: euroscivoc: change default to latest version-less URL
|
|
246
|
+
- Rename patched filters so the normalizer uses the default ones (#409)
|
|
247
|
+
* rename patched filters so the normalizer uses the default ones
|
|
248
|
+
|
|
249
|
+
Version v6.4.1 (released 2024-10-15)
|
|
250
|
+
|
|
251
|
+
- fix: exclude unknown fields when updating awards with subjects
|
|
252
|
+
- fix: revert generic writer and define OpenAIRE awards writer logic
|
|
253
|
+
|
|
254
|
+
Version v6.4.0 (released 2024-10-15)
|
|
255
|
+
|
|
256
|
+
- jobs: add import awards OpenAIRE; Update CORDIS
|
|
257
|
+
- awards: rollback to use the 2nd part of funding stream as program
|
|
258
|
+
|
|
259
|
+
Version v6.3.1 (released 2024-10-11)
|
|
260
|
+
|
|
261
|
+
- jobs: pass since as string to task
|
|
262
|
+
|
|
263
|
+
Version v6.3.0 (released 2024-10-11)
|
|
264
|
+
|
|
265
|
+
- awards: get program from CORDIS
|
|
266
|
+
- fix: add 'en' title if missing ROR
|
|
267
|
+
- fix: since not passed to args
|
|
268
|
+
- jobs: add process funders job
|
|
269
|
+
|
|
270
|
+
Version v6.2.1 (released 2024-10-10)
|
|
271
|
+
|
|
272
|
+
- webpack: bump react-searchkit due to axios upgrade
|
|
273
|
+
|
|
274
|
+
Version v6.2.0 (released 2024-10-10)
|
|
275
|
+
|
|
276
|
+
- tests: update axios version (needed only for local js tests)
|
|
277
|
+
|
|
278
|
+
Version v6.1.0 (released 2024-10-10)
|
|
279
|
+
|
|
280
|
+
- jobs: define invenio job wrapper for ROR affiliation data stream
|
|
281
|
+
- awards: remove subj props from jsonschema
|
|
282
|
+
|
|
283
|
+
Version v6.0.0 (released 2024-10-03)
|
|
284
|
+
|
|
285
|
+
- datastreams: writers: add option to not insert
|
|
286
|
+
- subjects: added euroscivoc datastream
|
|
287
|
+
- affiliations: OpenAIRE transformer and writer adding PIC identifier
|
|
288
|
+
- awards: added subjects and participating organizations from CORDIS datastreams
|
|
289
|
+
- names: add permission check to names search
|
|
290
|
+
|
|
291
|
+
Version v5.1.0 (released 2024-09-25)
|
|
292
|
+
|
|
293
|
+
- funders: tune search boost for acronyms
|
|
294
|
+
* Add and `acronym.keyword` field to the funders mapping.
|
|
295
|
+
* Apply to funders the same field boosting as in affiliations.
|
|
296
|
+
|
|
297
|
+
Version v5.0.3 (released 2024-09-06)
|
|
298
|
+
|
|
299
|
+
- services: skip index rebuilding
|
|
300
|
+
|
|
301
|
+
Version v5.0.2 (released 2024-08-28)
|
|
302
|
+
|
|
303
|
+
- ror: use datePublished as fallback date for dataset timestamp
|
|
304
|
+
|
|
305
|
+
Version v5.0.1 (released 2024-08-27)
|
|
306
|
+
|
|
307
|
+
- mapping: fix normalizer
|
|
308
|
+
|
|
309
|
+
Version v5.0.0 (released 2024-08-22)
|
|
310
|
+
|
|
311
|
+
- affiliations: dd analyzers and filters to improve results when searching affiliations
|
|
312
|
+
|
|
313
|
+
Version v4.4.0 (released 2024-08-09)
|
|
314
|
+
|
|
315
|
+
- services: use and adjust vnd.inveniordm.v1+json http accept header
|
|
316
|
+
|
|
317
|
+
Version v4.3.0 (released 2024-08-05)
|
|
318
|
+
|
|
319
|
+
- names: make names_exclude_regex configurable
|
|
320
|
+
- names: validate entry full names
|
|
321
|
+
- names: add orcid public data sync
|
|
322
|
+
|
|
323
|
+
Version v4.2.0 (released 2024-07-24)
|
|
324
|
+
|
|
325
|
+
- ror: check last update; use ld+json for metadata (#367)
|
|
326
|
+
- tasks: remove import funders task
|
|
327
|
+
- funders: add and export custom transformer
|
|
328
|
+
- affiliations: add and export custom transformer
|
|
329
|
+
- datastreams: implement asynchronous writer
|
|
330
|
+
|
|
331
|
+
Version v4.1.1 (released 2024-07-15)
|
|
332
|
+
|
|
333
|
+
- installation: use invenio-oaipmh-scythe from PyPI
|
|
334
|
+
|
|
335
|
+
Version v4.1.0 (released 2024-07-15)
|
|
336
|
+
|
|
337
|
+
- readers: make OAI-PMH an optional extra
|
|
338
|
+
- schema: add administration UI attributes
|
|
339
|
+
- ror: fix duplicate acronymns and aliases
|
|
340
|
+
- affiliations: fix title search
|
|
341
|
+
- datastreams: have yaml writer output utf8
|
|
342
|
+
- datastreams: add configs for funders and affiliations
|
|
343
|
+
- affiliations: add datastreams
|
|
344
|
+
- datastreams: move ror transformer to common
|
|
345
|
+
- vocabulary-types: services, resources, and administration UI (#310)
|
|
346
|
+
- config: add OpenAIRE mapping for "Latvian Council of Science"
|
|
347
|
+
- funders: fix country name display (#343)
|
|
348
|
+
- Initial implementation of OAIPMHReader (#329)
|
|
349
|
+
- global: add "tags" field to all vocabularies
|
|
350
|
+
|
|
351
|
+
Version 4.0.0 (released 2024-06-04)
|
|
352
|
+
|
|
353
|
+
- datastreams: implement factories for generating vocabulary configurations
|
|
354
|
+
- datastreams: added ROR HTTP reader
|
|
355
|
+
- funders: use ROR v2 dump instead of v1
|
|
356
|
+
- datastreams: added celery task for funders using ROR HTTP reader
|
|
357
|
+
- datastreams: add OpenAIRE Project HTTP Reader
|
|
358
|
+
- datastreams: fix OpenAIRE graph dataset parsing
|
|
359
|
+
- installation: upgrade invenio-records-resources
|
|
360
|
+
|
|
361
|
+
Version 3.4.0 (released 2024-04-19)
|
|
362
|
+
|
|
363
|
+
- templates: add subject fields UI template (#303)
|
|
364
|
+
|
|
365
|
+
Version 3.3.0 (released 2024-04-16)
|
|
366
|
+
|
|
367
|
+
- assets: add overridable awards and funding
|
|
368
|
+
|
|
369
|
+
Version 3.2.0 (released 2024-03-22)
|
|
370
|
+
|
|
371
|
+
- funding: add country and ror to funder search results
|
|
372
|
+
- init: move record_once to finalize_app (removes deprecation on `before_first_request`)
|
|
373
|
+
- installation: upgrade invenio-app
|
|
374
|
+
|
|
375
|
+
|
|
376
|
+
Version 3.1.0 (released 2024-03-05)
|
|
377
|
+
|
|
378
|
+
- custom_fields: added subject field
|
|
379
|
+
- custom_fields: add pid_field to custom fields
|
|
380
|
+
- mappings: change "dynamic" values to string
|
|
381
|
+
- ci: upgrade tests matrix
|
|
382
|
+
- bumps react-invenio-forms
|
|
383
|
+
|
|
384
|
+
Version 3.0.0 (released 2024-01-30)
|
|
385
|
+
|
|
386
|
+
- installation: bump invenio-records-resources
|
|
387
|
+
|
|
388
|
+
Version 2.4.0 (2023-12-07)
|
|
389
|
+
|
|
390
|
+
- schema: add validation for affiliations
|
|
391
|
+
- mappings: add a text subfield for award acronyms
|
|
392
|
+
- config: add new TWCF funder
|
|
393
|
+
|
|
394
|
+
Version 2.3.1 (2023-11-01)
|
|
395
|
+
|
|
396
|
+
- contrib: add affiliation suggestion by id
|
|
397
|
+
|
|
398
|
+
Version 2.3.0 (2023-10-25)
|
|
399
|
+
|
|
400
|
+
- contrib: allow search funders by id
|
|
401
|
+
- contrib: funders and awards fix TransportError in OS caused by suggestion search in too many fields
|
|
402
|
+
|
|
403
|
+
Version 2.2.4 (2023-10-19)
|
|
404
|
+
|
|
405
|
+
- search: decrease number of searching fields
|
|
406
|
+
|
|
407
|
+
Version 2.2.3 (2023-10-08)
|
|
408
|
+
|
|
409
|
+
- contrib: fix ``name`` serialization for the Names vocabulary.
|
|
410
|
+
|
|
411
|
+
Version 2.2.2 (2023-10-06)
|
|
412
|
+
|
|
413
|
+
- alembic rcp: set explicit dependency on pidstore create table
|
|
414
|
+
|
|
415
|
+
Version 2.2.1 (2023-10-02)
|
|
416
|
+
|
|
417
|
+
- facets: change caching strategy by caching each vocabulary by id. Replace
|
|
418
|
+
lru_cache with invenio-cache to ensure that cache expiration uses a TTL that
|
|
419
|
+
is correctly computed.
|
|
420
|
+
|
|
421
|
+
Version 2.2.0 (2023-09-19)
|
|
422
|
+
|
|
423
|
+
- facets: implement in-memory cache
|
|
424
|
+
|
|
425
|
+
Version 2.1.1 (2023-09-19)
|
|
426
|
+
|
|
427
|
+
- funding: fixed accessiblity issues
|
|
428
|
+
|
|
429
|
+
Version 2.1.0 (2023-09-15)
|
|
430
|
+
|
|
431
|
+
- custom_fields: allow to pass schema to the VocabularyCF
|
|
432
|
+
- affiliations: add facet labels
|
|
433
|
+
|
|
434
|
+
Version 2.0.0 (2023-09-14)
|
|
435
|
+
|
|
436
|
+
- contrib-awards: add "program" to schema fields
|
|
437
|
+
- global: switch names and affiliations to model PID field
|
|
438
|
+
- ci: update matrix
|
|
439
|
+
- awards: add "program" field
|
|
440
|
+
- config: update awards funders mapping
|
|
441
|
+
- service: add sort option to load vocabs
|
|
442
|
+
|
|
443
|
+
Version 1.6.0 (2023-09-12)
|
|
444
|
+
|
|
445
|
+
- awards: add acronym to schema
|
|
446
|
+
|
|
447
|
+
Version 1.5.1 (2023-07-07)
|
|
448
|
+
|
|
449
|
+
- fix string type columns for mysql
|
|
450
|
+
|
|
451
|
+
Version 1.5.0 (2023-04-25)
|
|
452
|
+
|
|
453
|
+
- upgrade invenio-records-resources
|
|
454
|
+
|
|
455
|
+
Version 1.4.0 (2023-04-20)
|
|
456
|
+
|
|
457
|
+
- upgrade invenio-records-resources
|
|
458
|
+
|
|
459
|
+
Version 1.3.0 (2023-04-20)
|
|
460
|
+
|
|
461
|
+
- add UI deposit contrib components
|
|
462
|
+
|
|
463
|
+
Version 1.2.0 (2023-03-24)
|
|
464
|
+
|
|
465
|
+
- bump invenio-records-resources to v2.0.0
|
|
466
|
+
|
|
467
|
+
Version 1.1.0 (released 2023-03-02)
|
|
468
|
+
|
|
469
|
+
- serializers: deprecate marshamllow JSON
|
|
470
|
+
- mappings: add dynamic template for i18n titles and descriptions
|
|
471
|
+
- remove deprecated flask-babelex dependency and imports
|
|
472
|
+
|
|
473
|
+
Version 1.0.4 (released 2023-01-20)
|
|
474
|
+
|
|
475
|
+
- funders: Add ROR to identifiers for all funders in datastream
|
|
476
|
+
- facets: add not found facet exception (when facet is configured but not provided in setup)
|
|
477
|
+
- facets: handle non existing vocabulary type
|
|
478
|
+
|
|
479
|
+
Version 1.0.3 (released 2022-11-25)
|
|
480
|
+
|
|
481
|
+
- Add i18n translations.
|
|
482
|
+
|
|
483
|
+
Version 1.0.2 (released 2022-11-14)
|
|
484
|
+
|
|
485
|
+
- Fix missing field_args in VocabularyCF
|
|
486
|
+
|
|
487
|
+
Version 1.0.1 (released 2022-11-14)
|
|
488
|
+
|
|
489
|
+
- Allow kwargs in VocabularyCF
|
|
490
|
+
|
|
491
|
+
Version 1.0.0 (released 2022-11-04)
|
|
492
|
+
|
|
493
|
+
- Bump invenio-records-resources
|
|
494
|
+
|
|
495
|
+
Version 0.1.5 (released 2020-12-11)
|
|
496
|
+
|
|
497
|
+
- Bug fixes in contrib vocabulary
|
|
498
|
+
|
|
499
|
+
Version 0.1.4 (released 2020-12-11)
|
|
500
|
+
|
|
501
|
+
- Add subjects vocabulary
|
|
502
|
+
|
|
503
|
+
Version 0.1.3 (released 2020-12-11)
|
|
504
|
+
|
|
505
|
+
- Include csv vocabularies data
|
|
506
|
+
|
|
507
|
+
Version 0.1.2 (released 2020-12-11)
|
|
508
|
+
|
|
509
|
+
- CI changes
|
|
510
|
+
|
|
511
|
+
Version 0.1.1 (released 2020-12-11)
|
|
512
|
+
|
|
513
|
+
- Add vocabulary import command
|
|
514
|
+
|
|
515
|
+
Version 0.1.0 (released 2020-12-08)
|
|
516
|
+
|
|
517
|
+
- Initial public release.
|