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,337 @@
|
|
|
1
|
+
invenio_vocabularies/__init__.py,sha256=k6XwUaOS_qUdo0I8q4CrYGXWXvsbHimd_lLJLHppeBI,434
|
|
2
|
+
invenio_vocabularies/cli.py,sha256=CpXTTIn2GTpUqNfLEMlRAp3JWst8ZjHVxoGYdhuuv_4,5959
|
|
3
|
+
invenio_vocabularies/config.py,sha256=v6fTdeQXfUl0LavI2Xslql7mv3DVuIuGTqe2z3H3S7o,6942
|
|
4
|
+
invenio_vocabularies/ext.py,sha256=GujJ4UARd4Fxf4z7zznRk9JAgHamZuYCOdrKU5czg00,5987
|
|
5
|
+
invenio_vocabularies/factories.py,sha256=DM4jRUYu-so1jHRzhbNoNTnWKpYTZeRJhSP273giYws,6400
|
|
6
|
+
invenio_vocabularies/fixtures.py,sha256=iEPkWf_ZjdP2D9r2sLdIlPoR8Rq2m5cnoFwywUGHneg,1696
|
|
7
|
+
invenio_vocabularies/jobs.py,sha256=rGPuMqXECfBdaEB23y0NEoZXOfl-EeLldOsqUcr5vcc,7218
|
|
8
|
+
invenio_vocabularies/proxies.py,sha256=k7cTUgWfnCoYIuNqAj_VFi1zBN33KNNclRSVnBkObEM,711
|
|
9
|
+
invenio_vocabularies/views.py,sha256=PNJ5nvc3O7ASwNe56xmqy5YaU9n3UYF3W2JwvtE_kYs,1561
|
|
10
|
+
invenio_vocabularies/webpack.py,sha256=FkM8TxXClmaJcD8YsQq5Mai56nYVJh_1IYTMEHb3c1M,1891
|
|
11
|
+
invenio_vocabularies/administration/__init__.py,sha256=0bDp2Aw8aZth7C-q9Xn9rxeCUQQRoIUxoWWWwPvKbXA,308
|
|
12
|
+
invenio_vocabularies/administration/views/__init__.py,sha256=31DP4jLG6q4HQlzSRiGLPxUjHPUCCl4N34y4XMuPP6g,313
|
|
13
|
+
invenio_vocabularies/administration/views/vocabularies.py,sha256=M8UbXqGyik1_NHzHD0lMn5-ow5ePf7uw8z7DUV0rayw,1312
|
|
14
|
+
invenio_vocabularies/alembic/17c703ce1eb7_create_names_table.py,sha256=2QGs0Ofi6yd93VzIBqghNi47hrZtuLf0DylKyvVzskI,1572
|
|
15
|
+
invenio_vocabularies/alembic/3ba812d80559_add_internal_name_id.py,sha256=dwurTL2HN2GQK3c62o6xGugJqgn30DZlhq_njyUBa7s,945
|
|
16
|
+
invenio_vocabularies/alembic/4a9a4fd235f8_create_vocabulary_schemes.py,sha256=Ywtp8qOFcI3PxUXemHdvy_VwdcUVtMFV1sFgNAmYrms,1054
|
|
17
|
+
invenio_vocabularies/alembic/4f365fced43f_create_vocabularies_tables.py,sha256=jSrr0CLRchYADjkFeod0L-oophq2woXtRwbUU5Vytiw,3039
|
|
18
|
+
invenio_vocabularies/alembic/55a700f897b6_add_names_and_afiliations_pid_column.py,sha256=w1mmkT7fpTeQJ--YmkIqkwtx7DmaP5cXpKPCJr_0Jko,2381
|
|
19
|
+
invenio_vocabularies/alembic/6312f33645c1_create_affiliations_table.py,sha256=0rg7ODaMG4YoHOiOMXKOgPK7QryyLGfgrdJjtn6JPsY,1600
|
|
20
|
+
invenio_vocabularies/alembic/676dd587542d_create_funders_vocabulary_table.py,sha256=4y0jihIQ1s93k7EoqC4vZFrR-tXvuxa678u9hKcu0z0,1791
|
|
21
|
+
invenio_vocabularies/alembic/8ff82dfb0be8_create_vocabularies_branch.py,sha256=RnyKQ38Pkubf_DU2rH9pRdufoAvABdnaP9b9S4-y4Vw,586
|
|
22
|
+
invenio_vocabularies/alembic/__init__.py,sha256=zTkqaw55uK5Bj6VgisfzONfDTxpP6Ty_wMroptywf8U,244
|
|
23
|
+
invenio_vocabularies/alembic/af2457652217_drop_unique_constraint_from_internal_id.py,sha256=tm-idMf72GqY2Bq8LUWEdeZSnPmSIVVh5_NeTYkDfkI,1008
|
|
24
|
+
invenio_vocabularies/alembic/e1146238edd3_create_awards_table.py,sha256=XDAON1kbjAZr3H9neB7YufFVr4lRXmr6mMARRLlURfs,1705
|
|
25
|
+
invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/.eslintrc.yml,sha256=aERX8bU_YWne3S8Ai0FlI705MwJ1AXNb-V9W6FsAc6I,338
|
|
26
|
+
invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/.prettierrc,sha256=67zvnPdNPnqAfVYrzQJZAVa2T-lyfzJnwrDu5lo10jQ,59
|
|
27
|
+
invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/index.js,sha256=-tppDUbPuRJHQi_m1KbuUZxQEYRZZmhLru2T80fQgAA,243
|
|
28
|
+
invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/package.json,sha256=GFidBPf5uOlprLfWS0tmEaI9KdrqdYI3-nBL_bKf23E,649
|
|
29
|
+
invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/index.js,sha256=NcHTRzFeT8iq-KTYR2ierbOCNPBB4cj9KnHsX55ag_U,247
|
|
30
|
+
invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/index.js,sha256=iSx-bdQkKj6XA9NAam31bdcQmFygljQnjLcFjjK3lwU,245
|
|
31
|
+
invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/index.js,sha256=7sSg482yJODQHU4jkP-hWJjpBOw7ubFr5nPZl5D_1gQ,262
|
|
32
|
+
invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/Funding/AwardResults.js,sha256=AgqJg9GEcJvKZR4plZsH0j7cm9C3yjT9YCPI6uvmOyc,3499
|
|
33
|
+
invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/Funding/CustomAwardForm.js,sha256=N4nCbvm6_vTCfuGyhuDnydUdk4cHyum14qYALr6p1WE,4675
|
|
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=hpm0FHRdeepOqPtR3G7sHXzf-rmIsBd3NP3mlF9XRJk,7616
|
|
36
|
+
invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/Funding/FundingField.test.js,sha256=z_4lWkf3h9Uin8OzSBSKY1wpUxtbnjE2kRUjW80jAhA,35
|
|
37
|
+
invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/Funding/FundingFieldItem.js,sha256=FvxrKFOf9tm3O2Dmnd3B4pt-Tj3OCMUKg22-rGI5qC8,4611
|
|
38
|
+
invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/Funding/FundingModal.js,sha256=4ZewwPdzYyWt85VcorgLDe9SguJ0RJCJSTdChUcSxsM,7475
|
|
39
|
+
invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/Funding/NoAwardResults.js,sha256=hJkNlZTopOEBRQFVx0PqZAusWxcE9DiVlIqY1DniXMQ,963
|
|
40
|
+
invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/Funding/index.js,sha256=67N7fTRVuqH-dkVW9gh3ehr0xGrswVHYaTqUPgYEmF0,319
|
|
41
|
+
invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/i18next.js,sha256=CR2XxtD-2Mn-ukWo_-qr0FIsMqytgh_DpDIFxKSNUEI,1021
|
|
42
|
+
invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/package.json,sha256=0gN7i3wMO6mdQzau6sYqM_tj_WxZgI6SL0ZEinS30R8,617
|
|
43
|
+
invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/translations.pot,sha256=davZOqJKWxwGTRFX0lyhnxb13QtTZ-tp6-HYyOCnjQA,1638
|
|
44
|
+
invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/_generatedTranslations.js,sha256=8Oo9iRj292_YsEWJRxMJqV9ABdPUOn1H77S31lx3Rdc,2805
|
|
45
|
+
invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/index.js,sha256=5ov5EHjBn4Z7cPXM7p5lefUOSeAIw7cr3ETB4vxEF7c,990
|
|
46
|
+
invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/ar/messages.po,sha256=X2Zy81kAEL16_5WPtE5wGFfbvpSX7UkPw2U2NIE2fvE,2361
|
|
47
|
+
invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/ar/translations.json,sha256=AFFJOsm6NCZNj5U4tkSGweGfTxyn5mbtYIEmJEsioJE,1375
|
|
48
|
+
invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/bg/messages.po,sha256=e2Tyj0sj6yZOCD6LqEoQC0TMGiBuT-k3Z9RPk-O757c,1524
|
|
49
|
+
invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/bg/translations.json,sha256=k8Lv66b-a6P-f24cTosv105yLr3GTpsgJ8oV39SeoGs,740
|
|
50
|
+
invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/ca/messages.po,sha256=85QzA-f3cejU3PqpNgye5Upc6dQOo0dl9ZorxQe17uE,1492
|
|
51
|
+
invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/ca/translations.json,sha256=lymBV7YbESJ_v2tsSWP7drPGELkWoD4A_hTnm6kh8iA,710
|
|
52
|
+
invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/cs/messages.po,sha256=jZ1gZfsrNZik8nXP1lSfuytVG74h8qWBFHZaR3JBSWM,2111
|
|
53
|
+
invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/cs/translations.json,sha256=zNLT_eQYuBORPDjaFagQpOzLMNeSoMYqTLtsEllQjL4,1145
|
|
54
|
+
invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/da/messages.po,sha256=LsEnnsjDpQCgfYnKPu3DQ2T0CTafUPBvlnnJIWNU1o4,1455
|
|
55
|
+
invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/da/translations.json,sha256=w6QIbY2n28WFP5r6rltG7l0lqhEYr-OvjQqL22fjUGE,670
|
|
56
|
+
invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/de/messages.po,sha256=Ia6Rcns3XnaGUVFHdWzKPOevnfNdBMpS2Z4c2j6irt4,2291
|
|
57
|
+
invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/de/translations.json,sha256=LYovzBmEIt5Zu3SkDG0dQbQ9lFyIO0MLsB0Dz-5JBws,1321
|
|
58
|
+
invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/el/messages.po,sha256=Ogtn-E1uZ7nwJCGFDOHZBCipVnAcqQr97OaQlG-tbSc,1549
|
|
59
|
+
invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/el/translations.json,sha256=OXrcTOT5s3tAuiiNEEg7EkZuBsTHI0baLMS3Z6tS6Ng,769
|
|
60
|
+
invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/en/messages.po,sha256=x7i5NPR5yraZkfaiLs2GKFVM2X-W0UIlufRvlw03MQI,1638
|
|
61
|
+
invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/en/translations.json,sha256=hzDTBHGRYtpXlypyiZpId7iX-z7DRgGT7IlkLzE37Hk,1065
|
|
62
|
+
invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/es/messages.po,sha256=2HBzGkRRAG94lqYQ9N4dqp_H5PhDCvoAQGxSPj6kXpc,2103
|
|
63
|
+
invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/es/translations.json,sha256=9821P1GLDM7WcNg6u8Iz9mwUBa7rYm9leSSTSCyiF6g,1164
|
|
64
|
+
invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/et/messages.po,sha256=s1zAkqm0h1mwxzrvbriAThav72LOIWy_FDbjEGkmqug,1672
|
|
65
|
+
invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/et/translations.json,sha256=3q3ywhmGAayAt8MxpODoCo67MG3Hq5MalqBh3mlAvBM,850
|
|
66
|
+
invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/fa/messages.po,sha256=LM98jfgtwBVJruFWHwJBGdxqKsOwqOkPxMZMb89Yc7Y,1514
|
|
67
|
+
invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/fa/translations.json,sha256=4XW7BTKZDAwakRzyr52T5ZafOEvkeCE1fNLzYQPiOug,733
|
|
68
|
+
invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/fr/messages.po,sha256=6SyKxnlWCNy71YoybamKzvupYHnCcgfimFovsFwtTPQ,1658
|
|
69
|
+
invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/fr/translations.json,sha256=NRVjlCXKelT_kauhz8NTsM2ccy1rGaWvIhRRB_QAXKM,758
|
|
70
|
+
invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/hr/messages.po,sha256=AUPEg3oLPs6uyPAY4cdhcE0x4Wuq5WfyPrSzZTlKQZs,1554
|
|
71
|
+
invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/hr/translations.json,sha256=fBwc3gBZT59V0VXTdHWFlaLn600T0cakRZp2tytaelc,699
|
|
72
|
+
invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/hu/messages.po,sha256=PaU25rLIRgHWHwnAEf5CAp8Jb_IuXo4gqVJxyEFpyuE,1998
|
|
73
|
+
invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/hu/translations.json,sha256=IbZZIVKIz37mWO1wVn78XY0drnglKszxymJn0b49yfU,1203
|
|
74
|
+
invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/it/messages.po,sha256=G9WarPKwE8vVdPJmVy2-tepa54IYgEe7JMKouZlSoaY,1633
|
|
75
|
+
invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/it/translations.json,sha256=NZXnSnv7V51MoGF9ly0u1mewLqQQI32AQsuwc-zSEyc,731
|
|
76
|
+
invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/ja/messages.po,sha256=mxXRu5jfGXRfrxF6j8o6lyOYTMOyhXdVESkAZVbrZPM,1494
|
|
77
|
+
invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/ja/translations.json,sha256=c3VmBOean02MWyWdNfzIKdzlNXyqDPz5tQ_jmruQW4E,718
|
|
78
|
+
invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/ka/messages.po,sha256=xKqZ4rUUTHYu6n1uDV0foNuyeC_PobqKuZT-MbMXlzY,1619
|
|
79
|
+
invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/ka/translations.json,sha256=Gpfh7r59LPNxnNI4n8j4_DDNpl5yxbvd532pKvXXIdE,838
|
|
80
|
+
invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/ko/messages.po,sha256=2wbMHbA8hjlLxwgLsRL8myFMIhlxApDGAiWyshxhgQY,1317
|
|
81
|
+
invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/ko/translations.json,sha256=ZCZK3cQD_wfWAH4F1jwGopguCKbXFr7696GUhGSEfCk,664
|
|
82
|
+
invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/lt/messages.po,sha256=eeSkWR_rOOc7gvXfAvr_vJc65KV4TLPMgD6ojpQfKmg,1640
|
|
83
|
+
invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/lt/translations.json,sha256=Zbl8W8Uftum9INrXu1s4VqNtYvSDuCmx-OLZHkBA0Jc,724
|
|
84
|
+
invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/no/messages.po,sha256=Y9PNhUpluIrxCXAYTXfQ94rcJE1__0VMAmGdP08pMnE,1487
|
|
85
|
+
invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/no/translations.json,sha256=oIpRrqbxgyNeziEFPLvljb8Q0x7RLAf9dyMzyDd-Pgs,703
|
|
86
|
+
invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/pl/messages.po,sha256=-_NH4YgbYZdBtrKNmGRCK4me-SPMlPS-WZK-dzJsw2Q,1629
|
|
87
|
+
invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/pl/translations.json,sha256=l_9kYRdkMOYCmHKFjKQ3Z2nF7KODfM3SyFlSHJ5dQzQ,702
|
|
88
|
+
invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/pt/messages.po,sha256=uy2K7Y5Mfw9hnWfV793-thIg5UoMdDWgqoZrQnJKMS4,1529
|
|
89
|
+
invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/pt/translations.json,sha256=io5aw_jf35igdNsvMICZiA42-pNWWW0j3o5u5SKLpl8,693
|
|
90
|
+
invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/ro/messages.po,sha256=RvHhilD6ZqBhrp6gc-UfuoMzrZHZZiSvw6gz6ZJUvjk,1758
|
|
91
|
+
invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/ro/translations.json,sha256=ppFGUm5zDP0cP5yCFbb2ZIxMHHF2v6s9fkk3mO0pCAU,902
|
|
92
|
+
invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/ru/messages.po,sha256=WSein2sHdpCRwtwaMs-6tn5w1MvtdSatfu_EfbHvQ-Y,1805
|
|
93
|
+
invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/ru/translations.json,sha256=0VJJlB2p-YlapOJ4w5Q2a4eIK9c6valTEuOTZGmtZFY,864
|
|
94
|
+
invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/sk/messages.po,sha256=D4CTLZjeAlqvAUtaXMV3aZC8pRhEFGTP1crnl1D_IkM,1558
|
|
95
|
+
invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/sk/translations.json,sha256=b8-UXtXCK5S6XHdTGdjnjM4H4elJYsEkqm3OJioZnZw,702
|
|
96
|
+
invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/sv/messages.po,sha256=_RW7pqlROQxle15ffnD03YX94a0kSATNX80gy9McBbA,2034
|
|
97
|
+
invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/sv/translations.json,sha256=tbw9pudUidoetihIeEEj-WfkRZAGM4kjScs6ZYk1zPo,1191
|
|
98
|
+
invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/tr/messages.po,sha256=I7VN3UiYfpUJUgrRqJb6b50By3UbnnwMSKp6JBHHroc,1658
|
|
99
|
+
invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/tr/translations.json,sha256=JJfkCpvOqXZBaESmTPm52-U0TqnzupSp-ulwpcw59Ik,774
|
|
100
|
+
invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/uk/messages.po,sha256=1JBHYDlPVV_JBnwwsNdPH8TY1elRkIZ61x1hNvvCkx8,2152
|
|
101
|
+
invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/uk/translations.json,sha256=JTvydy4mJ0GIExJfpo1y-hKy8LdNdBdq4qDVl-SkBtU,1138
|
|
102
|
+
invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/zh_CN/messages.po,sha256=q5GFC4YMIc6-_-_B-7QWGudoAU_JYos-NiX1qm2q5Kg,1663
|
|
103
|
+
invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/zh_CN/translations.json,sha256=dNsfEwNqGun81YK9ut58xqPN3As3WDsdLhnd78wZ96I,832
|
|
104
|
+
invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/zh_TW/messages.po,sha256=LyQRkJPm4sUPHkv_-v1Jbn72iyBvmRPs4sl5Y8gjz54,1490
|
|
105
|
+
invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/zh_TW/translations.json,sha256=2HqSrQXFU2r9or9dTU77tRXjSK2eaz-bcmdgeILRHCk,700
|
|
106
|
+
invenio_vocabularies/contrib/__init__.py,sha256=C5eDia6tAVBCrbb5hd_KnxmczyBoF87NIBUCLID-Tzc,240
|
|
107
|
+
invenio_vocabularies/contrib/affiliations/__init__.py,sha256=rV8YAzBRoSKsBYcVjCNJh6j7ITuPRfurwj9HJHRjkN8,565
|
|
108
|
+
invenio_vocabularies/contrib/affiliations/affiliations.py,sha256=zqFwrAuYhZw7dTfm7dE8bUDxmyPqydUEjKTMPwWSjHk,2096
|
|
109
|
+
invenio_vocabularies/contrib/affiliations/api.py,sha256=5nIOvpfcseuAAg2XgblHc8jb7TAdfU79XOBRpL-p398,326
|
|
110
|
+
invenio_vocabularies/contrib/affiliations/config.py,sha256=FFODJwfj6w-yejNQuP0GFVlc42jHtd47nu6lkN9mcVM,2281
|
|
111
|
+
invenio_vocabularies/contrib/affiliations/datastreams.py,sha256=mH0KlJI5BrrBlADpSgWuBpg04gmpU8MJDWr9NGvLopk,9627
|
|
112
|
+
invenio_vocabularies/contrib/affiliations/facets.py,sha256=w316MGvtdyTpRCPOpCEmMxxLraRkbFFb1VvLkFlEc9o,1229
|
|
113
|
+
invenio_vocabularies/contrib/affiliations/models.py,sha256=JUcj-1ydc2Cw2Rsc24JwXE3TFBJ_6fivhUYhGq4rT8A,329
|
|
114
|
+
invenio_vocabularies/contrib/affiliations/resources.py,sha256=DBEbRxQmp-o-PeZlgFG588Q4sGcruuwIL8L9O-SzCes,435
|
|
115
|
+
invenio_vocabularies/contrib/affiliations/schema.py,sha256=geORDYdBIWnv81Txl07qdHhB3U_fo9ObVp7UrSlCLRI,2104
|
|
116
|
+
invenio_vocabularies/contrib/affiliations/services.py,sha256=KJbv46c2LuQOW3xz7KVLtfZjWR8vhMRPHninlUEhrss,395
|
|
117
|
+
invenio_vocabularies/contrib/affiliations/jsonschemas/__init__.py,sha256=ILyZ5kejTr0p50macMBPALQCTJSe4KEE3_cgf2p3zV4,252
|
|
118
|
+
invenio_vocabularies/contrib/affiliations/jsonschemas/affiliations/affiliation-v1.0.0.json,sha256=be-glRNIBtIO87Tcyw8d68OdG4J8-ojjiCj8UJBnckg,1649
|
|
119
|
+
invenio_vocabularies/contrib/affiliations/mappings/__init__.py,sha256=q7hb9lcT9KLRSGr6G7qpL8Top6wZfzj_E4uzGxnraTw,295
|
|
120
|
+
invenio_vocabularies/contrib/affiliations/mappings/os-v1/__init__.py,sha256=uEiG5rFrjhpFxg5pD5j5E96_xrPojsla9PhtlOqSCw4,256
|
|
121
|
+
invenio_vocabularies/contrib/affiliations/mappings/os-v1/affiliations/affiliation-v1.0.0.json,sha256=h9xXxxEGEevtTusLAmpTSfqt7h-I1NgVa8Zm_SSROiM,2100
|
|
122
|
+
invenio_vocabularies/contrib/affiliations/mappings/os-v1/affiliations/affiliation-v2.0.0.json,sha256=EAj7R-GRJUtHn5MvZITRe46cyT7DEsL1V_-dzarPZKw,3734
|
|
123
|
+
invenio_vocabularies/contrib/affiliations/mappings/os-v2/__init__.py,sha256=qgNQbJjbfA2hSpFJtXrsUQBZdKwg-5Y1isoXzj31InE,256
|
|
124
|
+
invenio_vocabularies/contrib/affiliations/mappings/os-v2/affiliations/affiliation-v1.0.0.json,sha256=PaHChFsf9r7xRnZ_7ro8SWNEXpWv4uUYrl32g0QESZs,2096
|
|
125
|
+
invenio_vocabularies/contrib/affiliations/mappings/os-v2/affiliations/affiliation-v2.0.0.json,sha256=EAj7R-GRJUtHn5MvZITRe46cyT7DEsL1V_-dzarPZKw,3734
|
|
126
|
+
invenio_vocabularies/contrib/affiliations/mappings/v7/__init__.py,sha256=zr9YyyKyqMAnahKbnIFGr_Z7PXy9ONoU08i9z5cRguQ,259
|
|
127
|
+
invenio_vocabularies/contrib/affiliations/mappings/v7/affiliations/affiliation-v1.0.0.json,sha256=PaHChFsf9r7xRnZ_7ro8SWNEXpWv4uUYrl32g0QESZs,2096
|
|
128
|
+
invenio_vocabularies/contrib/awards/__init__.py,sha256=KwCmwFalz-3pDs9iTa5TKUidBjLepnUMqpCBXRiQOO8,474
|
|
129
|
+
invenio_vocabularies/contrib/awards/api.py,sha256=OXukE7PLXs45BTtqVrhvGBNqLmQaI-CgXmHTCi36LZk,303
|
|
130
|
+
invenio_vocabularies/contrib/awards/awards.py,sha256=GrC-ClFPWrGl_kij2aSpsidnHisBP5_V1kdkCaoYjmQ,2978
|
|
131
|
+
invenio_vocabularies/contrib/awards/config.py,sha256=PlDHabkWDUzwa1Fvk_U2hG83kQYBqM1IyChg8Yg_VlY,1630
|
|
132
|
+
invenio_vocabularies/contrib/awards/datastreams.py,sha256=MLaD4vaPLjxBZNYJ6Y7I47MATxFWLjv-Hd17JZLaX2Q,14498
|
|
133
|
+
invenio_vocabularies/contrib/awards/models.py,sha256=mM-kSNf7kDH3oIbV8epxxbUi7muYqi4JreXxgWXlVzw,318
|
|
134
|
+
invenio_vocabularies/contrib/awards/resources.py,sha256=_9YTqbhz8axFXGhG5y4WyjE27p9n-7e3c6HoBRditPA,411
|
|
135
|
+
invenio_vocabularies/contrib/awards/schema.py,sha256=f2SBGKFsti3jmo_9yvpH6-Jrez0lOxLYDcLMgZvNPmU,3410
|
|
136
|
+
invenio_vocabularies/contrib/awards/serializer.py,sha256=W59OMDxOXPdXrrimzMdIPbDIfVk6hARgyz1N2xSbchA,1440
|
|
137
|
+
invenio_vocabularies/contrib/awards/services.py,sha256=zwOMHqa4SyZuHopGZwEKhfw3kUHrWg73_4zMNo5kOe4,371
|
|
138
|
+
invenio_vocabularies/contrib/awards/jsonschemas/__init__.py,sha256=XB2l9hr53vqTk7o9lmy18FWGhHEUvNHu8D6nMF8Bz4k,246
|
|
139
|
+
invenio_vocabularies/contrib/awards/jsonschemas/awards/award-v1.0.0.json,sha256=i0P0KlQwCziMLVqyC_UvH_IF4efNO6xb9tdHVO1zDPU,2331
|
|
140
|
+
invenio_vocabularies/contrib/awards/mappings/__init__.py,sha256=PbM5urjiSrJSx4Ak-H_lJrOOVKGT38MrGgRv61gIbAM,243
|
|
141
|
+
invenio_vocabularies/contrib/awards/mappings/os-v1/__init__.py,sha256=r8IZvjorG9SVz32Hv1fncoqLfz-5Ml0Ph3jiYWCHBPk,250
|
|
142
|
+
invenio_vocabularies/contrib/awards/mappings/os-v1/awards/award-v1.0.0.json,sha256=OONFc5EZDflsMhitlg4U_6N3vkBPcQTuG5KupylkxXQ,2855
|
|
143
|
+
invenio_vocabularies/contrib/awards/mappings/os-v2/__init__.py,sha256=9gRLFRtjhNJcbop3qz8iRpQVEng_wudDTbOFsS-gxjk,250
|
|
144
|
+
invenio_vocabularies/contrib/awards/mappings/os-v2/awards/award-v1.0.0.json,sha256=OONFc5EZDflsMhitlg4U_6N3vkBPcQTuG5KupylkxXQ,2855
|
|
145
|
+
invenio_vocabularies/contrib/awards/mappings/v7/__init__.py,sha256=fERdPp7K7ajaoUu_4_HVLfF-WD_qcl7QgST6yGb68s4,253
|
|
146
|
+
invenio_vocabularies/contrib/awards/mappings/v7/awards/award-v1.0.0.json,sha256=OONFc5EZDflsMhitlg4U_6N3vkBPcQTuG5KupylkxXQ,2855
|
|
147
|
+
invenio_vocabularies/contrib/common/__init__.py,sha256=DdbGYRthEpQtObhY_YK4vOT9Zf7FFagQ6qtUjJOYw-M,247
|
|
148
|
+
invenio_vocabularies/contrib/common/openaire/__init__.py,sha256=L7UtSimFJ3NI6j53bHzYKsWpFti1uo4fPb9OaTl7leI,244
|
|
149
|
+
invenio_vocabularies/contrib/common/openaire/datastreams.py,sha256=BV6NtBCPFuii6KbTHGkgNQO5tt_3Hn9T_219bz8AINg,3514
|
|
150
|
+
invenio_vocabularies/contrib/common/ror/__init__.py,sha256=3u2-fre1SQ-4nz3Ay0nxj3ntmMZ8Ujh_4eV-fyxfmtc,239
|
|
151
|
+
invenio_vocabularies/contrib/common/ror/datastreams.py,sha256=8rxfWDMZPIkkPJM5Z3GGQcuDfZI9_hjYwn_-ngMDx_k,8601
|
|
152
|
+
invenio_vocabularies/contrib/funders/__init__.py,sha256=YxFXBDnT7NM8rFwxT_Ge3xXR2n17EM0alknQq7r_Bt8,478
|
|
153
|
+
invenio_vocabularies/contrib/funders/api.py,sha256=QKGGeSnPHSoBfucvpaVruXT_txYidofZ080G3IxFkIo,306
|
|
154
|
+
invenio_vocabularies/contrib/funders/config.py,sha256=OAP7NB7oF3cmrLBlP9dubrAAtanPWvrQO1XZaImBf98,2242
|
|
155
|
+
invenio_vocabularies/contrib/funders/datastreams.py,sha256=rA_k_LEepAGITeirtfyTGYR-wA9c7JvNs302xpCbTV4,2467
|
|
156
|
+
invenio_vocabularies/contrib/funders/facets.py,sha256=a068TVtt74Ncu0latb177LFK8EdnpbMOWecAKozA04M,1245
|
|
157
|
+
invenio_vocabularies/contrib/funders/funders.py,sha256=j4V7lz0fR5rp5XBL3cwmQQElwpopIpv4v37xfi1rU0o,2357
|
|
158
|
+
invenio_vocabularies/contrib/funders/models.py,sha256=RAU-_YVOUNVCn03_XGJ2czcVwXTaZPk5w7X_bMAgMOk,314
|
|
159
|
+
invenio_vocabularies/contrib/funders/resources.py,sha256=He4gXd737ovdrHL-HB9dX7AGxp1BVJ9QteIO7JWUVSE,415
|
|
160
|
+
invenio_vocabularies/contrib/funders/schema.py,sha256=tEOdMU2i0z_3PkXL1yD1qIJeoAy_8n22xxv8V7iltz0,2480
|
|
161
|
+
invenio_vocabularies/contrib/funders/serializer.py,sha256=dPFBvofV4AzckMAxWfM4KtuCOXtsVRb9Ma7NzJetV-I,981
|
|
162
|
+
invenio_vocabularies/contrib/funders/services.py,sha256=M-kQwtVOGygHe44vXr1L4E5Vvnpoco4KO0LRYwzhvMc,375
|
|
163
|
+
invenio_vocabularies/contrib/funders/jsonschemas/__init__.py,sha256=O4XwUXCk-gx_K2LDVJOLkq07-ibsUkpT1vPaebgd0Gk,247
|
|
164
|
+
invenio_vocabularies/contrib/funders/jsonschemas/funders/funder-v1.0.0.json,sha256=bhmC5hHNX4sj9MIHKhGp48Tu9Nk8I_9MYpXaP7i3rIY,1686
|
|
165
|
+
invenio_vocabularies/contrib/funders/mappings/__init__.py,sha256=aSr-tZd9rsjet6leeS336gdSdZHXwZKdaPStNtVNQVk,244
|
|
166
|
+
invenio_vocabularies/contrib/funders/mappings/os-v1/__init__.py,sha256=xXEX3tacmXp0I1KFtDw7ohIahozd2oIGp1UN40IhFic,251
|
|
167
|
+
invenio_vocabularies/contrib/funders/mappings/os-v1/funders/funder-v1.0.0.json,sha256=E7Zp4IHsQGdaxVrksr-SaQtieV7tV0W6-LgGe231G1w,1646
|
|
168
|
+
invenio_vocabularies/contrib/funders/mappings/os-v1/funders/funder-v2.0.0.json,sha256=gx2CkNWNcTxP94iCU9remCrWxR-AmNqloYTh47gwNHQ,3481
|
|
169
|
+
invenio_vocabularies/contrib/funders/mappings/os-v2/__init__.py,sha256=YvMRlKYTnEmyTzI9smZp_lO3w-zcK-8IpqT-jGUXEEY,251
|
|
170
|
+
invenio_vocabularies/contrib/funders/mappings/os-v2/funders/funder-v1.0.0.json,sha256=E7Zp4IHsQGdaxVrksr-SaQtieV7tV0W6-LgGe231G1w,1646
|
|
171
|
+
invenio_vocabularies/contrib/funders/mappings/os-v2/funders/funder-v2.0.0.json,sha256=gx2CkNWNcTxP94iCU9remCrWxR-AmNqloYTh47gwNHQ,3481
|
|
172
|
+
invenio_vocabularies/contrib/funders/mappings/v7/__init__.py,sha256=yFHmi3QYD65YKzLU5vMEtwAZn0gwkFYa6Db_tSbHjKE,254
|
|
173
|
+
invenio_vocabularies/contrib/funders/mappings/v7/funders/funder-v1.0.0.json,sha256=E7Zp4IHsQGdaxVrksr-SaQtieV7tV0W6-LgGe231G1w,1646
|
|
174
|
+
invenio_vocabularies/contrib/names/__init__.py,sha256=QwPEMnNyjt9LVeBBdFbVQfIxOnzBwx_lbpyekg3vGOM,456
|
|
175
|
+
invenio_vocabularies/contrib/names/api.py,sha256=sEPn_jFX3gyoxgbdEUSIvOoPCUI8pocI6qCZO6mzCgQ,300
|
|
176
|
+
invenio_vocabularies/contrib/names/components.py,sha256=PyYD1lOhmsuNoyDwM_huxkeo7kWd44vkEbJk9gqbDrM,769
|
|
177
|
+
invenio_vocabularies/contrib/names/config.py,sha256=62jh4MP-CygnBpnRBVaCoGySHDEwhBSG1MnlUBumthw,2046
|
|
178
|
+
invenio_vocabularies/contrib/names/datastreams.py,sha256=IjqBPW1Nq3IlCKuSrXFkItOqWOQm3D9x16_KzvQE5Vk,17282
|
|
179
|
+
invenio_vocabularies/contrib/names/models.py,sha256=SYdtDDG-y5Wq_d06YhiVO5n8gfxPW_mx-tECsIcv5H8,308
|
|
180
|
+
invenio_vocabularies/contrib/names/names.py,sha256=jej3gkBgOJpKwp5RmWk1AP678WkMb0VqCpzbTHLTyEc,2675
|
|
181
|
+
invenio_vocabularies/contrib/names/permissions.py,sha256=5xrpYsA3oQUJ5lJpF7wjRAFiW-pM6_yP1k9zllbRwnQ,844
|
|
182
|
+
invenio_vocabularies/contrib/names/resources.py,sha256=Z8XqLKfFKE69zdTTvcTDmpEZ6wqiqjIH5tp0LzXTSwQ,1588
|
|
183
|
+
invenio_vocabularies/contrib/names/s3client.py,sha256=9n_Moet-XCQe0NEt1lYzRk_vorcNoCnmylZPKTbaqLA,1342
|
|
184
|
+
invenio_vocabularies/contrib/names/schema.py,sha256=RX9uteii6ww0MkfarncV1giZKhxx5BczXfPhMVgid1I,3794
|
|
185
|
+
invenio_vocabularies/contrib/names/services.py,sha256=ntcGUTM0ZsKnRTxIKvZhKrRuup6Tjv965PATCaJR6Cc,2127
|
|
186
|
+
invenio_vocabularies/contrib/names/jsonschemas/__init__.py,sha256=pdDZdyoxqWbAQ6ngiclhYoDUsGKgRDRPXlIDy0U5Jzg,241
|
|
187
|
+
invenio_vocabularies/contrib/names/jsonschemas/names/name-v1.0.0.json,sha256=WlIroNhE9o6oh1Cd13ymBPXuXDOs0NYfjLGtAH417YI,1574
|
|
188
|
+
invenio_vocabularies/contrib/names/mappings/__init__.py,sha256=l5hYJmrj83lds5GupnwCcwQn7cdJo6_4H4YYzrnBa54,242
|
|
189
|
+
invenio_vocabularies/contrib/names/mappings/os-v1/__init__.py,sha256=CKtF-xflE4QGF5P82Lj1ifEP1c7ekR24fc3SiTAkhsY,249
|
|
190
|
+
invenio_vocabularies/contrib/names/mappings/os-v1/names/name-v1.0.0.json,sha256=5Ybcq3fUMYx3u1MNKmHh-CWBtATS9MYpdEcwAM8EQ80,1943
|
|
191
|
+
invenio_vocabularies/contrib/names/mappings/os-v1/names/name-v2.0.0.json,sha256=HuIXWwQvYVSjj80JTrSiQIiQvUFhBZ9SGuM-UV3JR6I,3755
|
|
192
|
+
invenio_vocabularies/contrib/names/mappings/os-v2/__init__.py,sha256=p38Ausy2cu1OetTQYwx-9gOFoxGrtrmqjArSDpvxfMU,249
|
|
193
|
+
invenio_vocabularies/contrib/names/mappings/os-v2/names/name-v1.0.0.json,sha256=5Ybcq3fUMYx3u1MNKmHh-CWBtATS9MYpdEcwAM8EQ80,1943
|
|
194
|
+
invenio_vocabularies/contrib/names/mappings/os-v2/names/name-v2.0.0.json,sha256=HuIXWwQvYVSjj80JTrSiQIiQvUFhBZ9SGuM-UV3JR6I,3755
|
|
195
|
+
invenio_vocabularies/contrib/names/mappings/v7/__init__.py,sha256=qLGB8C0kPI3xubcfhI8t6Wb2bLlCmVYCiwQ08bKGz9g,252
|
|
196
|
+
invenio_vocabularies/contrib/names/mappings/v7/names/name-v1.0.0.json,sha256=5Ybcq3fUMYx3u1MNKmHh-CWBtATS9MYpdEcwAM8EQ80,1943
|
|
197
|
+
invenio_vocabularies/contrib/subjects/__init__.py,sha256=GtXZKA6VWG1oA1fUX2Wh92nd-1i7RnnQF6RprGhxkD4,591
|
|
198
|
+
invenio_vocabularies/contrib/subjects/api.py,sha256=QH8mxoLsa8qjJT1i1Tj6rRnpbH23plo2IMOJ56rnvbU,347
|
|
199
|
+
invenio_vocabularies/contrib/subjects/config.py,sha256=8_5FKfG5x5xIxw7eqwZNnanjJSH43EDTiaRKVOjatvk,2434
|
|
200
|
+
invenio_vocabularies/contrib/subjects/datastreams.py,sha256=s6o5_A-0I3TMx77IbwmLHJpSuDWx8xClW9ocnP2JYfw,1885
|
|
201
|
+
invenio_vocabularies/contrib/subjects/facets.py,sha256=qQ7_rppFBzsmrlZu4-MvOIdUcjeOmDA9gOHAcs0lWwI,695
|
|
202
|
+
invenio_vocabularies/contrib/subjects/models.py,sha256=8XgbVRxDDvhWPjMWsoCriNlOKdmV_113a14yLRtlvM4,363
|
|
203
|
+
invenio_vocabularies/contrib/subjects/resources.py,sha256=0KRfUMizwgIziZybk4HnIjiSsXbrCv_XmguNPwnxoo8,506
|
|
204
|
+
invenio_vocabularies/contrib/subjects/schema.py,sha256=8B_ck72u6bPF1OsWauZjsekM8QaaGorUQnsSHHWYU0w,3566
|
|
205
|
+
invenio_vocabularies/contrib/subjects/services.py,sha256=s1U6HMmpjuz7rrgR0DtT9C28TC6sZEeDTsa4Jh1TXQk,864
|
|
206
|
+
invenio_vocabularies/contrib/subjects/subjects.py,sha256=NwZycExLyV8l7ikGStH4GOecVuDSxFT70KoNv6qC78I,1877
|
|
207
|
+
invenio_vocabularies/contrib/subjects/euroscivoc/__init__.py,sha256=e5L9E4l5JHqVzijAX8tn2DIa2n01vJ5wOAZdN62RnIo,247
|
|
208
|
+
invenio_vocabularies/contrib/subjects/euroscivoc/datastreams.py,sha256=Vs4mpIn321KZ94lzTxpYnQTATle1QdKg0yegmDMptw4,3565
|
|
209
|
+
invenio_vocabularies/contrib/subjects/gemet/__init__.py,sha256=OlRWH2gumZZ1Djc_N3ZGPHyt2wOcIwlDDYO6uOfaZfI,242
|
|
210
|
+
invenio_vocabularies/contrib/subjects/gemet/datastreams.py,sha256=OZaKnT6cw3cjNtB_TxEBtVwWWf1Wrm-x9h71YXMAmBk,5203
|
|
211
|
+
invenio_vocabularies/contrib/subjects/jsonschemas/__init__.py,sha256=WowVUST1JoEDS3-xeHhCJvIgC9nzMkFs8XRks9zgzaM,292
|
|
212
|
+
invenio_vocabularies/contrib/subjects/jsonschemas/subjects/subject-v1.0.0.json,sha256=O1IsPWrVeuEiMBKtADcRByFNmd1soABgODOnauEJBoI,1868
|
|
213
|
+
invenio_vocabularies/contrib/subjects/mappings/__init__.py,sha256=Qk-yj1ENsTmijO8ImWuDYGzXi6QQ2VjP4DbjrpRfDk8,243
|
|
214
|
+
invenio_vocabularies/contrib/subjects/mappings/os-v1/__init__.py,sha256=rv2-AasC_WJFp2t9Nrhzivmw9RovRI2_msin4oHTZuk,250
|
|
215
|
+
invenio_vocabularies/contrib/subjects/mappings/os-v1/subjects/subject-v1.0.0.json,sha256=WNNWVsaf-pNxqV6p_IR2uIcwIBh30WJeP4IDIxzqutI,1810
|
|
216
|
+
invenio_vocabularies/contrib/subjects/mappings/os-v2/__init__.py,sha256=rQnrw1tMKR0yzlPiXBbCVHnxy_aAhwrKghrSuhhZYAc,250
|
|
217
|
+
invenio_vocabularies/contrib/subjects/mappings/os-v2/subjects/subject-v1.0.0.json,sha256=cJSjcJ_PqrifBZOUeDMW3qyT7VtENTvYq3Xvi-iylOc,1810
|
|
218
|
+
invenio_vocabularies/contrib/subjects/mappings/v7/__init__.py,sha256=QK__a1749g2UN3fBqOr9jx8ccZHWAuvd6DSN4B1jJW4,258
|
|
219
|
+
invenio_vocabularies/contrib/subjects/mappings/v7/subjects/subject-v1.0.0.json,sha256=WNNWVsaf-pNxqV6p_IR2uIcwIBh30WJeP4IDIxzqutI,1810
|
|
220
|
+
invenio_vocabularies/contrib/subjects/mesh/__init__.py,sha256=P44hmgVNNTN5O_EmWgaeYJ91yqkGNoeKYo0wfif_wE4,241
|
|
221
|
+
invenio_vocabularies/contrib/subjects/mesh/datastreams.py,sha256=6W6bgQ7P_31kf3enkAqCBTFBqgrQ2BlV625vn0N9ibQ,1544
|
|
222
|
+
invenio_vocabularies/contrib/subjects/nvs/__init__.py,sha256=H7joYEPU0lzGN_p72i9FElSRoaQTYHM7PvOn-ZPHyzM,245
|
|
223
|
+
invenio_vocabularies/contrib/subjects/nvs/datastreams.py,sha256=PQsHKat9kAeZYAT_gEkVHLcZJLCwlc6TTwfMxewgVek,4273
|
|
224
|
+
invenio_vocabularies/datastreams/__init__.py,sha256=VPefh6k4Q3eYxKIW8I5zXUGucntp7VHxaOR5Vhgkfmg,412
|
|
225
|
+
invenio_vocabularies/datastreams/datastreams.py,sha256=oFYCyLceC8dEUbR0Drb7yQRrfH7abhSchyPgBZ6WMZI,9637
|
|
226
|
+
invenio_vocabularies/datastreams/errors.py,sha256=IDUZ3gNtYGrhcOgApHCms1gNNJTyJzoMPmG5JtIeYNU,678
|
|
227
|
+
invenio_vocabularies/datastreams/factories.py,sha256=kuuN4Zt7Xw58rwf0M03djqcdZOZRWgJdLK16-HmID24,2213
|
|
228
|
+
invenio_vocabularies/datastreams/readers.py,sha256=rDYnYASYgPvp9OH0mtlGHsOEJGzDNcnSbyD8arXkmKE,14803
|
|
229
|
+
invenio_vocabularies/datastreams/tasks.py,sha256=l-DcbW68jY0ww8u7pBDQsIvSDQRH7R-dAUOY0H7npX4,4466
|
|
230
|
+
invenio_vocabularies/datastreams/transformers.py,sha256=PJFbmRSj3dpJ95NzONAIns5ksztshd99JOp_FLQAlJM,4133
|
|
231
|
+
invenio_vocabularies/datastreams/writers.py,sha256=NgIdow2Q_Hr2j_49fcs2fmGccPvLqQzDJ9JaQeph8aw,7815
|
|
232
|
+
invenio_vocabularies/datastreams/xml.py,sha256=HFa-lfxj7kFrr2IjeN1jxSLDfcvpBwO9nZLZF2-BryE,997
|
|
233
|
+
invenio_vocabularies/records/__init__.py,sha256=Uj7O6fYdAtLOkLXUGSAYPADBB7aqP4yVs9b6OAjA158,243
|
|
234
|
+
invenio_vocabularies/records/api.py,sha256=Lynt6Sz4BVN1orh0zgJ5ljhnUobEtcq8c22PmSeUo2U,1494
|
|
235
|
+
invenio_vocabularies/records/models.py,sha256=W96rbxKCCOeqaAJQZIxX1_hR3zZTdaO1V0ij4D41GF8,2557
|
|
236
|
+
invenio_vocabularies/records/pidprovider.py,sha256=uFuo-M0Wqua0QhTS2z17YpzYDySwNfJaOi7rp0S0dPs,3840
|
|
237
|
+
invenio_vocabularies/records/jsonschemas/__init__.py,sha256=qr2BZMyMVvVRSeJzPCI8re2BlGokiDjeqwREkythSrQ,246
|
|
238
|
+
invenio_vocabularies/records/jsonschemas/vocabularies/definitions-v1.0.0.json,sha256=BronllCw2uX2i-uJTIb7_KZDkeMJOgQGZK9025ueV_A,583
|
|
239
|
+
invenio_vocabularies/records/jsonschemas/vocabularies/vocabulary-v1.0.0.json,sha256=x7kkCkuMNQ6tygb_RWf7QOlOtyG-kqKOH5FNnBn1cqo,1289
|
|
240
|
+
invenio_vocabularies/records/mappings/__init__.py,sha256=kER6e5hZFmPpesFAx-oQsMseep8RXobQRiLIE2r5IMc,244
|
|
241
|
+
invenio_vocabularies/records/mappings/os-v1/__init__.py,sha256=XaGt61tsIKfG59y59Bf0NaPzJECWZnzHSTbAQNUwlVo,248
|
|
242
|
+
invenio_vocabularies/records/mappings/os-v1/vocabularies/vocabulary-v1.0.0.json,sha256=1Py4-BpcK8UMBt06p3zVPLqID8XeDsF2CUmwuKUx0Ug,2127
|
|
243
|
+
invenio_vocabularies/records/mappings/os-v2/__init__.py,sha256=5dVZCOKIEzr7qtuX__RbFPggcA5yKu5JBkUtXotbjYY,243
|
|
244
|
+
invenio_vocabularies/records/mappings/os-v2/vocabularies/vocabulary-v1.0.0.json,sha256=1Py4-BpcK8UMBt06p3zVPLqID8XeDsF2CUmwuKUx0Ug,2127
|
|
245
|
+
invenio_vocabularies/records/mappings/v7/__init__.py,sha256=QK__a1749g2UN3fBqOr9jx8ccZHWAuvd6DSN4B1jJW4,258
|
|
246
|
+
invenio_vocabularies/records/mappings/v7/vocabularies/vocabulary-v1.0.0.json,sha256=1Py4-BpcK8UMBt06p3zVPLqID8XeDsF2CUmwuKUx0Ug,2127
|
|
247
|
+
invenio_vocabularies/records/systemfields/__init__.py,sha256=MRLoLF3h8VYuqJ9tbbgXjXkTDUniz24pVnujLX-psZI,406
|
|
248
|
+
invenio_vocabularies/records/systemfields/pid.py,sha256=5e2zZD0uHP5r32--KmuzjfHk3B5GXEV3yBuoKeit9mQ,3740
|
|
249
|
+
invenio_vocabularies/records/systemfields/relations.py,sha256=UbaiuxvAZorxNN4t63Y5ePc5OUJ_cYGAxLsFcET3E-g,1528
|
|
250
|
+
invenio_vocabularies/resources/__init__.py,sha256=UpNMJA1JacoJ2U1_dq20sds3lJK1TyMCV4zLOWpfRvI,664
|
|
251
|
+
invenio_vocabularies/resources/config.py,sha256=PooKsBd3KXoApc9zoSk-fkeQhzygYdGU4lH5FgQ3W2Q,3157
|
|
252
|
+
invenio_vocabularies/resources/resource.py,sha256=hJs5GD0XtcBafwgTI9n8FHK5Fb6agx8BgzF81K5vRbU,4229
|
|
253
|
+
invenio_vocabularies/resources/schema.py,sha256=6stpU9qgLGoeGib3DWnyrHj6XLPxJKbEV7TVoJEK41M,542
|
|
254
|
+
invenio_vocabularies/resources/serializer.py,sha256=pwfckLdkMu1MNDkocyMg1XeX6RhbfeuV4fjDO5xKDxo,1190
|
|
255
|
+
invenio_vocabularies/services/__init__.py,sha256=6mi62EG21Id6x23nx0X193I6sVTakK6jOdYNEKPxXUk,522
|
|
256
|
+
invenio_vocabularies/services/components.py,sha256=d9C-24dEDM63gFm75nU-dXrrjS2zZi7Nfkv40BGnHwM,1941
|
|
257
|
+
invenio_vocabularies/services/config.py,sha256=A9_r2vErcfo3Xt6fC4YVobHXdd64_YyI7iNr-X8GXYI,4704
|
|
258
|
+
invenio_vocabularies/services/facets.py,sha256=qvdHoGSJJr90dZHSVe0-hlO1r0LtTnFVSjrt9PNuNAg,3872
|
|
259
|
+
invenio_vocabularies/services/generators.py,sha256=jcXwb9Hiyek4o-cQ1G2osVgbTBKDbd-5siJMBOWE018,1116
|
|
260
|
+
invenio_vocabularies/services/permissions.py,sha256=83rNOwCuggdJji3VtWTQgytTrhfiWqASCpvI75DxEus,960
|
|
261
|
+
invenio_vocabularies/services/querystr.py,sha256=OrNUR_QAcQ_T-EiL3H1Jvzz9gK2ZB5FicsG0fOipSro,2029
|
|
262
|
+
invenio_vocabularies/services/results.py,sha256=6LZIpzWSbt9wpRNWgjA1uIM4RFooOYTkHcp5-PnIJdU,3767
|
|
263
|
+
invenio_vocabularies/services/schema.py,sha256=2K-t2-gs147CRr8zue1CtohPJottUCBjyKBmbiHlv-w,4684
|
|
264
|
+
invenio_vocabularies/services/service.py,sha256=2LrtXa6gFXhHSWn4R3Kl7Nj2f2mFmxzjgAF3K3Q3LGM,6749
|
|
265
|
+
invenio_vocabularies/services/tasks.py,sha256=_kg7k0ESK-YWn8De-xTr6mkJnrjdTcydRcWUOHdKfAU,1245
|
|
266
|
+
invenio_vocabularies/services/custom_fields/__init__.py,sha256=Wi7v8VUUTi16TCpMNKZ1zK3zWO2UjWBEnRMJjNm2foI,426
|
|
267
|
+
invenio_vocabularies/services/custom_fields/subject.py,sha256=XTHnOddoSZsDHqGQq-hns46-WaLn88fqz57K--YLHg4,2243
|
|
268
|
+
invenio_vocabularies/services/custom_fields/vocabulary.py,sha256=oQwI8Aoi2Nr9k3eWKnde5H7RXc7qdlATSeI6coy8UR0,3020
|
|
269
|
+
invenio_vocabularies/templates/semantic-ui/invenio_vocabularies/subjects.html,sha256=Fr8xRfKYiytuTfbtH7gfasNXwFIcjPFnXV4F5oGNUkM,681
|
|
270
|
+
invenio_vocabularies/templates/semantic-ui/invenio_vocabularies/vocabularies-list.html,sha256=-gDwRctqIkSzh9ial8zfbA4o41ARM-Mq-THkcJ87U00,359
|
|
271
|
+
invenio_vocabularies/templates/semantic-ui/invenio_vocabularies/vocabulary-details.html,sha256=2dfQzRFl5RwUwle245sxWGnObwJQXr-e_bBzpe_PkkA,2684
|
|
272
|
+
invenio_vocabularies/translations/messages.pot,sha256=0eHwMNE73Js2JxdUgT8gv9KWkhjnxlqpGx-IPq7usZI,7311
|
|
273
|
+
invenio_vocabularies/translations/ar/LC_MESSAGES/messages.mo,sha256=EuVxlddfL_dmwk5lmxytnfPKkAMLYLNezZBWA-PRiMk,3147
|
|
274
|
+
invenio_vocabularies/translations/ar/LC_MESSAGES/messages.po,sha256=Zf6PjFHwStI4zowjnDPTmVHwfObYk0XLpeH-BtNB8GE,8868
|
|
275
|
+
invenio_vocabularies/translations/bg/LC_MESSAGES/messages.mo,sha256=M4dO6cLMWa2-681gXxIhuhFcF6VrJe2HFnHhRp6hmCQ,603
|
|
276
|
+
invenio_vocabularies/translations/bg/LC_MESSAGES/messages.po,sha256=7YxEKpAgWvh7rk_CJy44Zd5oweeJTkVKkoyx2COL89E,7523
|
|
277
|
+
invenio_vocabularies/translations/ca/LC_MESSAGES/messages.mo,sha256=tn0uXk_L2WEq4n0hZxn6ngMMXybzQlnZI-RhkYxuDlE,636
|
|
278
|
+
invenio_vocabularies/translations/ca/LC_MESSAGES/messages.po,sha256=TaQATjCkI2DK2zY31WY-x-hU-PzGfUxN6LLuU60at4I,7559
|
|
279
|
+
invenio_vocabularies/translations/cs/LC_MESSAGES/messages.mo,sha256=ShG71_zO213QxhwMmwDz1c60O6YmQ4qSVDubBR483rY,4160
|
|
280
|
+
invenio_vocabularies/translations/cs/LC_MESSAGES/messages.po,sha256=3apwoFAYP1rxCv8i_4jpSiQ-ZVGNDgKag1nHEDPsfDc,9142
|
|
281
|
+
invenio_vocabularies/translations/da/LC_MESSAGES/messages.mo,sha256=A0yeMFW8CoGvzO1-J79n-mCqTtLtRcHLpYFzWmUhjsE,519
|
|
282
|
+
invenio_vocabularies/translations/da/LC_MESSAGES/messages.po,sha256=3KyfmJzSKN1FCHellWgNhxS_l388YP7U6p2oC2FYKYo,7377
|
|
283
|
+
invenio_vocabularies/translations/de/LC_MESSAGES/messages.mo,sha256=GiF1JZ-J_epBZxrOGmZDDblzoaKtfksTzRJeFU7-814,4244
|
|
284
|
+
invenio_vocabularies/translations/de/LC_MESSAGES/messages.po,sha256=byc93Qbe_Q-5xGxO_LBFsJXtiXDdhlZ6jGM3wX4CPiA,9452
|
|
285
|
+
invenio_vocabularies/translations/el/LC_MESSAGES/messages.mo,sha256=VbJsF83k9PZhS_AVTOhB11-9HuhUXI-utqrHI-npv1g,645
|
|
286
|
+
invenio_vocabularies/translations/el/LC_MESSAGES/messages.po,sha256=w8lsTz6_AvJTxpTACh_XR5H8RRoafr0YUFeXCjcNd74,7524
|
|
287
|
+
invenio_vocabularies/translations/es/LC_MESSAGES/messages.mo,sha256=obKCfjZjqBRGqUWIj9zencNagZwdZmfsyQqFRwjNJc4,2750
|
|
288
|
+
invenio_vocabularies/translations/es/LC_MESSAGES/messages.po,sha256=M4q1NL8jgC2CVQO0JFEjNsQHa5YOfeAUAI3BSymm6jg,8545
|
|
289
|
+
invenio_vocabularies/translations/et/LC_MESSAGES/messages.mo,sha256=WaLcbkXPB4GW36ODKcyUwjwJ9Mx_EKMK0kPJMgff2Cs,2103
|
|
290
|
+
invenio_vocabularies/translations/et/LC_MESSAGES/messages.po,sha256=qPBEjzgrYUzx-03Ni6nQiqcbAaa--t7QruqH5403TyI,8054
|
|
291
|
+
invenio_vocabularies/translations/fa/LC_MESSAGES/messages.mo,sha256=YDDQwgPlMqxZp5IYgrzL0iBZFEtkGjWv4ppTpKtPJDw,594
|
|
292
|
+
invenio_vocabularies/translations/fa/LC_MESSAGES/messages.po,sha256=kmsCV_TxamWZ7_B2yPIOyfdDDhCwsrTB1h0CPYN7O3k,7514
|
|
293
|
+
invenio_vocabularies/translations/fr/LC_MESSAGES/messages.mo,sha256=8eDnggtginOb3bGUegLgDlx--voEP1FdOdJ-8L0xphU,2697
|
|
294
|
+
invenio_vocabularies/translations/fr/LC_MESSAGES/messages.po,sha256=g_gQbJ3Ml39-fNRG48KsywXTt7h0KFSkGXMgBbBsD8Q,8399
|
|
295
|
+
invenio_vocabularies/translations/hr/LC_MESSAGES/messages.mo,sha256=V45r8U1Ia1tc-vb_vmwGs4UjV00OWnjs1iZR0J1oBhk,661
|
|
296
|
+
invenio_vocabularies/translations/hr/LC_MESSAGES/messages.po,sha256=bdzw7vlzgP2Uw95aK6hpUlSkkvLzvuQiYeLWGRmkCRI,7581
|
|
297
|
+
invenio_vocabularies/translations/hu/LC_MESSAGES/messages.mo,sha256=ts8igLjngVguM0OiMPS-wKLRY-aj9kE4vIxNl6Kx4-w,2722
|
|
298
|
+
invenio_vocabularies/translations/hu/LC_MESSAGES/messages.po,sha256=bUaVjuFGnv8oNPgHXuBj376Aw2utx4EDG3-_4--jNkM,8381
|
|
299
|
+
invenio_vocabularies/translations/it/LC_MESSAGES/messages.mo,sha256=Pn7H_l6HvQBavY_Mk63CYJuEAYGGTo3Aw1DEKszyrh8,856
|
|
300
|
+
invenio_vocabularies/translations/it/LC_MESSAGES/messages.po,sha256=ETTsFEP5pGhT6joKbi0JVv-UYgogFyTLwYyJW44YcwY,7691
|
|
301
|
+
invenio_vocabularies/translations/ja/LC_MESSAGES/messages.mo,sha256=E2FyE0NNM5Zn3MwGN2d_efVa8WuxWELccrGrWLz8Q4A,591
|
|
302
|
+
invenio_vocabularies/translations/ja/LC_MESSAGES/messages.po,sha256=OBYpnnLYbCtIILAMpLF6RG7Yo5B-C7cWrAenIl2sfxY,7511
|
|
303
|
+
invenio_vocabularies/translations/ka/LC_MESSAGES/messages.mo,sha256=G1848SVORO1nJq4CddOFhtkJVKGpfMn0nXyWIN9jj9E,718
|
|
304
|
+
invenio_vocabularies/translations/ka/LC_MESSAGES/messages.po,sha256=IYAjfPro8pt9eQGaYALwkLn6VmPTUdPydIhc9UDIFTs,7597
|
|
305
|
+
invenio_vocabularies/translations/ko/LC_MESSAGES/messages.mo,sha256=_lKUQjQJboXuJYrYl-nDDk0CDoh73fBVWIe9EB77DCo,576
|
|
306
|
+
invenio_vocabularies/translations/ko/LC_MESSAGES/messages.po,sha256=pKHsUeT2IJT1wRn4hJT2DHf93-4nn7h9HsdC7PirE5g,7469
|
|
307
|
+
invenio_vocabularies/translations/lt/LC_MESSAGES/messages.mo,sha256=J3JvY4DSLpwrnq3x2A-VOiM6LiG_7XtPAz8wy7djdwA,781
|
|
308
|
+
invenio_vocabularies/translations/lt/LC_MESSAGES/messages.po,sha256=oQygyMVheZqV5qUAMJqnjRiNxd39y7EaYDzz57wiMXo,7660
|
|
309
|
+
invenio_vocabularies/translations/no/LC_MESSAGES/messages.mo,sha256=9JiEy_9AWj_h5enJQ26npT5qQnSHd5Z8GtXIfsBZ0ZU,591
|
|
310
|
+
invenio_vocabularies/translations/no/LC_MESSAGES/messages.po,sha256=T5zrG6T790movoX6yVjXO9fksfdUYzry8n7cHcA9x2g,7511
|
|
311
|
+
invenio_vocabularies/translations/pl/LC_MESSAGES/messages.mo,sha256=XV8YQRPX00dPF1wIgXcgfjED3Pn_qEFYUbcSFdxOzWg,735
|
|
312
|
+
invenio_vocabularies/translations/pl/LC_MESSAGES/messages.po,sha256=XVodABDTS_LCayIRrUNOy4yd8osNv4ZBTMVrk_K3wUQ,7655
|
|
313
|
+
invenio_vocabularies/translations/pt/LC_MESSAGES/messages.mo,sha256=RkWVco4J_8umnaDXdadNvtcDY9QEcEDioeuHIsFcwIk,644
|
|
314
|
+
invenio_vocabularies/translations/pt/LC_MESSAGES/messages.po,sha256=ojjxue935JdUOC9TLEcRRDIRr0t-9F4Pzpxq4ucwRGA,7564
|
|
315
|
+
invenio_vocabularies/translations/ro/LC_MESSAGES/messages.mo,sha256=ggkhmiEXcUFK0_P2zmYMM1U_JcgrTlEqIWAMhJMxaBs,2262
|
|
316
|
+
invenio_vocabularies/translations/ro/LC_MESSAGES/messages.po,sha256=mJ2s4Bjl5M_9vMVnXfaiAswaSxTF8MORzHMgd2MYxWg,8233
|
|
317
|
+
invenio_vocabularies/translations/ru/LC_MESSAGES/messages.mo,sha256=MqftVPul8xwgQkAc-fcv4JBrbNYe1khOHkvZHLSwcYM,2117
|
|
318
|
+
invenio_vocabularies/translations/ru/LC_MESSAGES/messages.po,sha256=j4dXkWNURApoOiGq_E9smbAzRyxe3XapsqpQnCt0xMA,8285
|
|
319
|
+
invenio_vocabularies/translations/sk/LC_MESSAGES/messages.mo,sha256=MfBdFgOydOzspJVfQZtI5Shf9PPxkSj3NOlZJOPwJvU,721
|
|
320
|
+
invenio_vocabularies/translations/sk/LC_MESSAGES/messages.po,sha256=lOo06Sp13NSsbDF5F94LIL04v6wH2SLaTp1bE1uXwxk,7636
|
|
321
|
+
invenio_vocabularies/translations/sv/LC_MESSAGES/messages.mo,sha256=6Xloo2QKYc7KMA6Nb_FlBo4eWmgIgYhvwPZwI98rbus,3932
|
|
322
|
+
invenio_vocabularies/translations/sv/LC_MESSAGES/messages.po,sha256=zPVqQfWgZw_UHWu0U_SvYrJAIWgoHkAPA1CDwzFagtg,8828
|
|
323
|
+
invenio_vocabularies/translations/tr/LC_MESSAGES/messages.mo,sha256=s26SWaa4UK5JPkMerFbm-GkUIXTDuaZXCvSLqNQEFYg,2651
|
|
324
|
+
invenio_vocabularies/translations/tr/LC_MESSAGES/messages.po,sha256=98hriTuIgR2_cqS5l9Oxh9nbOq_wXQKkQjoKV3JzMD0,8379
|
|
325
|
+
invenio_vocabularies/translations/uk/LC_MESSAGES/messages.mo,sha256=mHyyKMmY24zAJp0znBD_2xcK0F8CLg0UR3tNDYRhLGA,1427
|
|
326
|
+
invenio_vocabularies/translations/uk/LC_MESSAGES/messages.po,sha256=TFNLZgkfimb0sBq3RI_bkNeRcnKdRYIraQXARln1DfQ,7996
|
|
327
|
+
invenio_vocabularies/translations/zh_CN/LC_MESSAGES/messages.mo,sha256=AEoPrwqBX-23XAUBQ6sa5UdtDkJOponiwkYfMaxUXmU,1879
|
|
328
|
+
invenio_vocabularies/translations/zh_CN/LC_MESSAGES/messages.po,sha256=sP0-MvZo4F4wIG4JVLebCAOxh1tFIkfM2bLaKL-B148,8024
|
|
329
|
+
invenio_vocabularies/translations/zh_TW/LC_MESSAGES/messages.mo,sha256=p2PFN_PL1m7miZ6qyoHFmBi6UUF3qhuz1sfCqTxm5fY,599
|
|
330
|
+
invenio_vocabularies/translations/zh_TW/LC_MESSAGES/messages.po,sha256=vO8YRTkTqKE6gepSW_N3uNKYp3Me1rqnYaONFQGJOoY,7519
|
|
331
|
+
invenio_vocabularies-9.1.2.dist-info/licenses/AUTHORS.rst,sha256=8d0p_WWE1r9DavvzMDi2D4YIGBHiMYcN3LYxqQOj8sY,291
|
|
332
|
+
invenio_vocabularies-9.1.2.dist-info/licenses/LICENSE,sha256=UvI8pR8jGWqe0sTkb_hRG6eIrozzWwWzyCGEpuXX4KE,1062
|
|
333
|
+
invenio_vocabularies-9.1.2.dist-info/METADATA,sha256=_oD10f5UrcvkDBbN9xetzZwmiJK16x1bkfUfurNzpLU,15469
|
|
334
|
+
invenio_vocabularies-9.1.2.dist-info/WHEEL,sha256=JNWh1Fm1UdwIQV075glCn4MVuCRs0sotJIq-J6rbxCU,109
|
|
335
|
+
invenio_vocabularies-9.1.2.dist-info/entry_points.txt,sha256=lget4Ekno9VRTq36oowWReIJA99165gOp0BOiiET60Y,3179
|
|
336
|
+
invenio_vocabularies-9.1.2.dist-info/top_level.txt,sha256=x1gRNbaODF_bCD0SBLM3nVOFPGi06cmGX5X94WKrFKk,21
|
|
337
|
+
invenio_vocabularies-9.1.2.dist-info/RECORD,,
|
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
[flask.commands]
|
|
2
|
+
vocabularies = invenio_vocabularies.cli:vocabularies
|
|
3
|
+
|
|
4
|
+
[invenio_administration.views]
|
|
5
|
+
vocabularies_list = invenio_vocabularies.administration.views.vocabularies:VocabulariesListView
|
|
6
|
+
|
|
7
|
+
[invenio_assets.webpack]
|
|
8
|
+
invenio_vocabularies = invenio_vocabularies.webpack:theme
|
|
9
|
+
|
|
10
|
+
[invenio_base.api_apps]
|
|
11
|
+
invenio_vocabularies = invenio_vocabularies:InvenioVocabularies
|
|
12
|
+
|
|
13
|
+
[invenio_base.api_blueprints]
|
|
14
|
+
invenio_vocabularies = invenio_vocabularies.views:create_blueprint_from_app
|
|
15
|
+
invenio_vocabularies_affiliations = invenio_vocabularies.views:create_affiliations_blueprint_from_app
|
|
16
|
+
invenio_vocabularies_awards = invenio_vocabularies.views:create_awards_blueprint_from_app
|
|
17
|
+
invenio_vocabularies_ext = invenio_vocabularies.views:blueprint
|
|
18
|
+
invenio_vocabularies_funders = invenio_vocabularies.views:create_funders_blueprint_from_app
|
|
19
|
+
invenio_vocabularies_list = invenio_vocabularies.views:create_list_blueprint_from_app
|
|
20
|
+
invenio_vocabularies_names = invenio_vocabularies.views:create_names_blueprint_from_app
|
|
21
|
+
invenio_vocabularies_subjects = invenio_vocabularies.views:create_subjects_blueprint_from_app
|
|
22
|
+
|
|
23
|
+
[invenio_base.api_finalize_app]
|
|
24
|
+
invenio_vocabularies = invenio_vocabularies.ext:api_finalize_app
|
|
25
|
+
|
|
26
|
+
[invenio_base.apps]
|
|
27
|
+
invenio_vocabularies = invenio_vocabularies:InvenioVocabularies
|
|
28
|
+
|
|
29
|
+
[invenio_base.blueprints]
|
|
30
|
+
invenio_vocabularies_ext = invenio_vocabularies.views:blueprint
|
|
31
|
+
|
|
32
|
+
[invenio_base.finalize_app]
|
|
33
|
+
invenio_vocabularies = invenio_vocabularies.ext:finalize_app
|
|
34
|
+
|
|
35
|
+
[invenio_celery.tasks]
|
|
36
|
+
invenio_vocabularies_services = invenio_vocabularies.services.tasks
|
|
37
|
+
|
|
38
|
+
[invenio_db.alembic]
|
|
39
|
+
invenio_vocabularies = invenio_vocabularies:alembic
|
|
40
|
+
|
|
41
|
+
[invenio_db.models]
|
|
42
|
+
affiliations = invenio_vocabularies.contrib.affiliations.models
|
|
43
|
+
awards = invenio_vocabularies.contrib.awards.models
|
|
44
|
+
funders = invenio_vocabularies.contrib.funders.models
|
|
45
|
+
names = invenio_vocabularies.contrib.names.models
|
|
46
|
+
subjects = invenio_vocabularies.contrib.subjects.models
|
|
47
|
+
vocabulary_model = invenio_vocabularies.records.models
|
|
48
|
+
|
|
49
|
+
[invenio_i18n.translations]
|
|
50
|
+
invenio_vocabularies = invenio_vocabularies
|
|
51
|
+
|
|
52
|
+
[invenio_jobs.jobs]
|
|
53
|
+
import_awards_openaire = invenio_vocabularies.jobs:ImportAwardsOpenAIREJob
|
|
54
|
+
import_orcid_names = invenio_vocabularies.jobs:ImportORCIDJob
|
|
55
|
+
process_ror_affiliations = invenio_vocabularies.jobs:ProcessRORAffiliationsJob
|
|
56
|
+
process_ror_funders = invenio_vocabularies.jobs:ProcessRORFundersJob
|
|
57
|
+
update_awards_cordis = invenio_vocabularies.jobs:UpdateAwardsCordisJob
|
|
58
|
+
|
|
59
|
+
[invenio_jsonschemas.schemas]
|
|
60
|
+
affiliations = invenio_vocabularies.contrib.affiliations.jsonschemas
|
|
61
|
+
awards = invenio_vocabularies.contrib.awards.jsonschemas
|
|
62
|
+
funders = invenio_vocabularies.contrib.funders.jsonschemas
|
|
63
|
+
jsonschemas = invenio_vocabularies.records.jsonschemas
|
|
64
|
+
names = invenio_vocabularies.contrib.names.jsonschemas
|
|
65
|
+
subjects = invenio_vocabularies.contrib.subjects.jsonschemas
|
|
66
|
+
|
|
67
|
+
[invenio_search.mappings]
|
|
68
|
+
affiliations = invenio_vocabularies.contrib.affiliations.mappings
|
|
69
|
+
awards = invenio_vocabularies.contrib.awards.mappings
|
|
70
|
+
funders = invenio_vocabularies.contrib.funders.mappings
|
|
71
|
+
names = invenio_vocabularies.contrib.names.mappings
|
|
72
|
+
subjects = invenio_vocabularies.contrib.subjects.mappings
|
|
73
|
+
vocabularies = invenio_vocabularies.records.mappings
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
..
|
|
2
|
+
Copyright (C) 2020 CERN.
|
|
3
|
+
|
|
4
|
+
Invenio-Vocabularies is free software; you can redistribute it and/or
|
|
5
|
+
modify it under the terms of the MIT License; see LICENSE file for more
|
|
6
|
+
details.
|
|
7
|
+
|
|
8
|
+
Authors
|
|
9
|
+
=======
|
|
10
|
+
|
|
11
|
+
Invenio module for managing vocabularies.
|
|
12
|
+
|
|
13
|
+
- CERN <info@inveniosoftware.org>
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (C) 2020 CERN.
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
6
|
+
this software and associated documentation files (the "Software"), to deal in
|
|
7
|
+
the Software without restriction, including without limitation the rights to
|
|
8
|
+
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
|
|
9
|
+
of the Software, and to permit persons to whom the Software is furnished to do
|
|
10
|
+
so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
invenio_vocabularies
|