invenio-vocabularies 1.2.0__py2.py3-none-any.whl → 6.3.1__py2.py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of invenio-vocabularies might be problematic. Click here for more details.

Files changed (239) hide show
  1. invenio_vocabularies/__init__.py +2 -2
  2. invenio_vocabularies/administration/__init__.py +10 -0
  3. invenio_vocabularies/administration/views/__init__.py +10 -0
  4. invenio_vocabularies/administration/views/vocabularies.py +45 -0
  5. invenio_vocabularies/alembic/4a9a4fd235f8_create_vocabulary_schemes.py +4 -4
  6. invenio_vocabularies/alembic/4f365fced43f_create_vocabularies_tables.py +2 -2
  7. invenio_vocabularies/alembic/55a700f897b6_add_names_and_afiliations_pid_column.py +96 -0
  8. invenio_vocabularies/alembic/676dd587542d_create_funders_vocabulary_table.py +1 -1
  9. invenio_vocabularies/alembic/e1146238edd3_create_awards_table.py +1 -1
  10. invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/.eslintrc.yml +11 -0
  11. invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/.prettierrc +1 -0
  12. invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/index.js +7 -0
  13. invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/package.json +25 -0
  14. invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/Funding/AwardResults.js +95 -0
  15. invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/Funding/CustomAwardForm.js +139 -0
  16. invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/Funding/FunderDropdown.js +87 -0
  17. invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/Funding/FundingField.js +223 -0
  18. invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/Funding/FundingField.test.js +1 -0
  19. invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/Funding/FundingFieldItem.js +152 -0
  20. invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/Funding/FundingModal.js +270 -0
  21. invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/Funding/NoAwardResults.js +37 -0
  22. invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/Funding/index.js +8 -0
  23. invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/index.js +7 -0
  24. invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/index.js +7 -0
  25. invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/index.js +7 -0
  26. invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/i18next-scanner.config.js +63 -0
  27. invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/i18next.js +36 -0
  28. invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/messages/index.js +1 -0
  29. invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/package.json +53 -0
  30. invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/scripts/compileCatalog.js +39 -0
  31. invenio_vocabularies/assets/semantic-ui/translations/invenio_vocabularies/scripts/initCatalog.js +19 -0
  32. invenio_vocabularies/cli.py +31 -44
  33. invenio_vocabularies/config.py +74 -7
  34. invenio_vocabularies/contrib/affiliations/affiliations.py +22 -6
  35. invenio_vocabularies/contrib/affiliations/api.py +1 -2
  36. invenio_vocabularies/contrib/affiliations/config.py +10 -5
  37. invenio_vocabularies/contrib/affiliations/datastreams.py +186 -0
  38. invenio_vocabularies/contrib/affiliations/facets.py +36 -0
  39. invenio_vocabularies/contrib/affiliations/jsonschemas/affiliations/affiliation-v1.0.0.json +38 -7
  40. invenio_vocabularies/contrib/affiliations/mappings/os-v1/affiliations/affiliation-v1.0.0.json +22 -1
  41. invenio_vocabularies/contrib/affiliations/mappings/os-v1/affiliations/affiliation-v2.0.0.json +171 -0
  42. invenio_vocabularies/contrib/affiliations/mappings/os-v2/affiliations/affiliation-v1.0.0.json +22 -1
  43. invenio_vocabularies/contrib/affiliations/mappings/os-v2/affiliations/affiliation-v2.0.0.json +171 -0
  44. invenio_vocabularies/contrib/affiliations/mappings/v7/affiliations/affiliation-v1.0.0.json +22 -1
  45. invenio_vocabularies/contrib/affiliations/schema.py +23 -5
  46. invenio_vocabularies/contrib/affiliations/services.py +1 -2
  47. invenio_vocabularies/contrib/awards/awards.py +18 -6
  48. invenio_vocabularies/contrib/awards/config.py +1 -3
  49. invenio_vocabularies/contrib/awards/datastreams.py +246 -3
  50. invenio_vocabularies/contrib/awards/jsonschemas/awards/award-v1.0.0.json +41 -0
  51. invenio_vocabularies/contrib/awards/mappings/os-v1/awards/award-v1.0.0.json +53 -1
  52. invenio_vocabularies/contrib/awards/mappings/os-v2/awards/award-v1.0.0.json +53 -1
  53. invenio_vocabularies/contrib/awards/mappings/v7/awards/award-v1.0.0.json +53 -1
  54. invenio_vocabularies/contrib/awards/schema.py +27 -35
  55. invenio_vocabularies/contrib/awards/serializer.py +9 -1
  56. invenio_vocabularies/contrib/awards/services.py +1 -2
  57. invenio_vocabularies/contrib/common/__init__.py +9 -0
  58. invenio_vocabularies/contrib/common/openaire/__init__.py +9 -0
  59. invenio_vocabularies/contrib/common/openaire/datastreams.py +84 -0
  60. invenio_vocabularies/contrib/common/ror/__init__.py +9 -0
  61. invenio_vocabularies/contrib/common/ror/datastreams.py +220 -0
  62. invenio_vocabularies/contrib/funders/config.py +12 -5
  63. invenio_vocabularies/contrib/funders/datastreams.py +40 -62
  64. invenio_vocabularies/contrib/funders/facets.py +13 -5
  65. invenio_vocabularies/contrib/funders/funders.py +4 -2
  66. invenio_vocabularies/contrib/funders/jsonschemas/funders/funder-v1.0.0.json +36 -1
  67. invenio_vocabularies/contrib/funders/mappings/os-v1/funders/funder-v1.0.0.json +22 -1
  68. invenio_vocabularies/contrib/funders/mappings/os-v1/funders/funder-v2.0.0.json +156 -0
  69. invenio_vocabularies/contrib/funders/mappings/os-v2/funders/funder-v1.0.0.json +22 -1
  70. invenio_vocabularies/contrib/funders/mappings/os-v2/funders/funder-v2.0.0.json +156 -0
  71. invenio_vocabularies/contrib/funders/mappings/v7/funders/funder-v1.0.0.json +22 -1
  72. invenio_vocabularies/contrib/funders/schema.py +8 -0
  73. invenio_vocabularies/contrib/funders/serializer.py +2 -1
  74. invenio_vocabularies/contrib/names/config.py +5 -3
  75. invenio_vocabularies/contrib/names/datastreams.py +177 -38
  76. invenio_vocabularies/contrib/names/jsonschemas/names/name-v1.0.0.json +2 -6
  77. invenio_vocabularies/contrib/names/mappings/os-v1/names/name-v1.0.0.json +3 -0
  78. invenio_vocabularies/contrib/names/mappings/os-v1/names/name-v2.0.0.json +150 -0
  79. invenio_vocabularies/contrib/names/mappings/os-v2/names/name-v1.0.0.json +3 -0
  80. invenio_vocabularies/contrib/names/mappings/os-v2/names/name-v2.0.0.json +150 -0
  81. invenio_vocabularies/contrib/names/mappings/v7/names/name-v1.0.0.json +3 -0
  82. invenio_vocabularies/contrib/names/names.py +29 -13
  83. invenio_vocabularies/contrib/names/permissions.py +20 -0
  84. invenio_vocabularies/contrib/names/s3client.py +44 -0
  85. invenio_vocabularies/contrib/names/schema.py +31 -4
  86. invenio_vocabularies/contrib/subjects/config.py +9 -3
  87. invenio_vocabularies/contrib/subjects/datastreams.py +61 -0
  88. invenio_vocabularies/contrib/subjects/euroscivoc/__init__.py +9 -0
  89. invenio_vocabularies/contrib/subjects/euroscivoc/datastreams.py +171 -0
  90. invenio_vocabularies/contrib/subjects/jsonschemas/subjects/subject-v1.0.0.json +31 -0
  91. invenio_vocabularies/contrib/subjects/mappings/os-v1/subjects/subject-v1.0.0.json +35 -0
  92. invenio_vocabularies/contrib/subjects/mappings/os-v2/subjects/subject-v1.0.0.json +35 -0
  93. invenio_vocabularies/contrib/subjects/mappings/v7/subjects/subject-v1.0.0.json +35 -0
  94. invenio_vocabularies/contrib/subjects/mesh/__init__.py +9 -0
  95. invenio_vocabularies/contrib/subjects/mesh/datastreams.py +43 -0
  96. invenio_vocabularies/contrib/subjects/schema.py +47 -5
  97. invenio_vocabularies/contrib/subjects/subjects.py +10 -0
  98. invenio_vocabularies/datastreams/datastreams.py +61 -13
  99. invenio_vocabularies/datastreams/factories.py +1 -2
  100. invenio_vocabularies/datastreams/readers.py +138 -29
  101. invenio_vocabularies/datastreams/tasks.py +37 -0
  102. invenio_vocabularies/datastreams/transformers.py +17 -27
  103. invenio_vocabularies/datastreams/writers.py +116 -14
  104. invenio_vocabularies/datastreams/xml.py +34 -0
  105. invenio_vocabularies/ext.py +59 -5
  106. invenio_vocabularies/factories.py +137 -0
  107. invenio_vocabularies/jobs.py +133 -0
  108. invenio_vocabularies/proxies.py +2 -2
  109. invenio_vocabularies/records/jsonschemas/vocabularies/definitions-v1.0.0.json +7 -0
  110. invenio_vocabularies/records/jsonschemas/vocabularies/vocabulary-v1.0.0.json +1 -4
  111. invenio_vocabularies/records/mappings/os-v1/vocabularies/vocabulary-v1.0.0.json +3 -3
  112. invenio_vocabularies/records/mappings/os-v2/vocabularies/vocabulary-v1.0.0.json +3 -3
  113. invenio_vocabularies/records/mappings/v7/vocabularies/vocabulary-v1.0.0.json +3 -3
  114. invenio_vocabularies/records/models.py +8 -10
  115. invenio_vocabularies/records/pidprovider.py +1 -2
  116. invenio_vocabularies/records/systemfields/relations.py +2 -2
  117. invenio_vocabularies/resources/__init__.py +9 -1
  118. invenio_vocabularies/resources/config.py +105 -0
  119. invenio_vocabularies/resources/resource.py +31 -41
  120. invenio_vocabularies/resources/schema.py +2 -1
  121. invenio_vocabularies/services/__init__.py +5 -2
  122. invenio_vocabularies/services/config.py +179 -0
  123. invenio_vocabularies/services/custom_fields/__init__.py +6 -2
  124. invenio_vocabularies/services/custom_fields/subject.py +82 -0
  125. invenio_vocabularies/services/custom_fields/vocabulary.py +19 -9
  126. invenio_vocabularies/services/facets.py +67 -37
  127. invenio_vocabularies/services/permissions.py +3 -1
  128. invenio_vocabularies/services/results.py +110 -0
  129. invenio_vocabularies/services/schema.py +39 -2
  130. invenio_vocabularies/services/service.py +46 -94
  131. invenio_vocabularies/services/tasks.py +1 -1
  132. invenio_vocabularies/templates/semantic-ui/invenio_vocabularies/subjects.html +23 -0
  133. invenio_vocabularies/templates/semantic-ui/invenio_vocabularies/vocabularies-list.html +12 -0
  134. invenio_vocabularies/templates/semantic-ui/invenio_vocabularies/vocabulary-details.html +71 -0
  135. invenio_vocabularies/translations/af/LC_MESSAGES/messages.mo +0 -0
  136. invenio_vocabularies/translations/af/LC_MESSAGES/messages.po +1 -1
  137. invenio_vocabularies/translations/ar/LC_MESSAGES/messages.mo +0 -0
  138. invenio_vocabularies/translations/ar/LC_MESSAGES/messages.po +9 -8
  139. invenio_vocabularies/translations/bg/LC_MESSAGES/messages.mo +0 -0
  140. invenio_vocabularies/translations/bg/LC_MESSAGES/messages.po +1 -1
  141. invenio_vocabularies/translations/ca/LC_MESSAGES/messages.mo +0 -0
  142. invenio_vocabularies/translations/ca/LC_MESSAGES/messages.po +1 -1
  143. invenio_vocabularies/translations/cs/LC_MESSAGES/messages.mo +0 -0
  144. invenio_vocabularies/translations/cs/LC_MESSAGES/messages.po +1 -1
  145. invenio_vocabularies/translations/da/LC_MESSAGES/messages.mo +0 -0
  146. invenio_vocabularies/translations/da/LC_MESSAGES/messages.po +1 -1
  147. invenio_vocabularies/translations/de/LC_MESSAGES/messages.mo +0 -0
  148. invenio_vocabularies/translations/de/LC_MESSAGES/messages.po +1 -1
  149. invenio_vocabularies/translations/de_AT/LC_MESSAGES/messages.mo +0 -0
  150. invenio_vocabularies/translations/de_AT/LC_MESSAGES/messages.po +139 -0
  151. invenio_vocabularies/translations/de_DE/LC_MESSAGES/messages.mo +0 -0
  152. invenio_vocabularies/translations/de_DE/LC_MESSAGES/messages.po +139 -0
  153. invenio_vocabularies/translations/el/LC_MESSAGES/messages.mo +0 -0
  154. invenio_vocabularies/translations/el/LC_MESSAGES/messages.po +1 -1
  155. invenio_vocabularies/translations/en/LC_MESSAGES/messages.mo +0 -0
  156. invenio_vocabularies/translations/en_AT/LC_MESSAGES/messages.mo +0 -0
  157. invenio_vocabularies/translations/en_AT/LC_MESSAGES/messages.po +139 -0
  158. invenio_vocabularies/translations/en_HU/LC_MESSAGES/messages.mo +0 -0
  159. invenio_vocabularies/translations/en_HU/LC_MESSAGES/messages.po +139 -0
  160. invenio_vocabularies/translations/es/LC_MESSAGES/messages.mo +0 -0
  161. invenio_vocabularies/translations/es/LC_MESSAGES/messages.po +1 -1
  162. invenio_vocabularies/translations/es_CU/LC_MESSAGES/messages.mo +0 -0
  163. invenio_vocabularies/translations/es_CU/LC_MESSAGES/messages.po +139 -0
  164. invenio_vocabularies/translations/es_MX/LC_MESSAGES/messages.mo +0 -0
  165. invenio_vocabularies/translations/es_MX/LC_MESSAGES/messages.po +139 -0
  166. invenio_vocabularies/translations/et/LC_MESSAGES/messages.mo +0 -0
  167. invenio_vocabularies/translations/et/LC_MESSAGES/messages.po +1 -1
  168. invenio_vocabularies/translations/et_EE/LC_MESSAGES/messages.mo +0 -0
  169. invenio_vocabularies/translations/et_EE/LC_MESSAGES/messages.po +1 -1
  170. invenio_vocabularies/translations/fa/LC_MESSAGES/messages.mo +0 -0
  171. invenio_vocabularies/translations/fa/LC_MESSAGES/messages.po +1 -1
  172. invenio_vocabularies/translations/fa_IR/LC_MESSAGES/messages.mo +0 -0
  173. invenio_vocabularies/translations/fa_IR/LC_MESSAGES/messages.po +139 -0
  174. invenio_vocabularies/translations/fr/LC_MESSAGES/messages.mo +0 -0
  175. invenio_vocabularies/translations/fr/LC_MESSAGES/messages.po +1 -1
  176. invenio_vocabularies/translations/fr_CI/LC_MESSAGES/messages.mo +0 -0
  177. invenio_vocabularies/translations/fr_CI/LC_MESSAGES/messages.po +139 -0
  178. invenio_vocabularies/translations/fr_FR/LC_MESSAGES/messages.mo +0 -0
  179. invenio_vocabularies/translations/fr_FR/LC_MESSAGES/messages.po +139 -0
  180. invenio_vocabularies/translations/gl/LC_MESSAGES/messages.mo +0 -0
  181. invenio_vocabularies/translations/gl/LC_MESSAGES/messages.po +1 -1
  182. invenio_vocabularies/translations/hi_IN/LC_MESSAGES/messages.mo +0 -0
  183. invenio_vocabularies/translations/hi_IN/LC_MESSAGES/messages.po +139 -0
  184. invenio_vocabularies/translations/hr/LC_MESSAGES/messages.mo +0 -0
  185. invenio_vocabularies/translations/hr/LC_MESSAGES/messages.po +1 -1
  186. invenio_vocabularies/translations/hu/LC_MESSAGES/messages.mo +0 -0
  187. invenio_vocabularies/translations/hu/LC_MESSAGES/messages.po +4 -4
  188. invenio_vocabularies/translations/hu_HU/LC_MESSAGES/messages.mo +0 -0
  189. invenio_vocabularies/translations/hu_HU/LC_MESSAGES/messages.po +139 -0
  190. invenio_vocabularies/translations/it/LC_MESSAGES/messages.mo +0 -0
  191. invenio_vocabularies/translations/it/LC_MESSAGES/messages.po +4 -3
  192. invenio_vocabularies/translations/ja/LC_MESSAGES/messages.mo +0 -0
  193. invenio_vocabularies/translations/ja/LC_MESSAGES/messages.po +1 -1
  194. invenio_vocabularies/translations/ka/LC_MESSAGES/messages.mo +0 -0
  195. invenio_vocabularies/translations/ka/LC_MESSAGES/messages.po +1 -1
  196. invenio_vocabularies/translations/lt/LC_MESSAGES/messages.mo +0 -0
  197. invenio_vocabularies/translations/lt/LC_MESSAGES/messages.po +1 -1
  198. invenio_vocabularies/translations/messages.pot +95 -48
  199. invenio_vocabularies/translations/ne/LC_MESSAGES/messages.mo +0 -0
  200. invenio_vocabularies/translations/ne/LC_MESSAGES/messages.po +139 -0
  201. invenio_vocabularies/translations/no/LC_MESSAGES/messages.mo +0 -0
  202. invenio_vocabularies/translations/no/LC_MESSAGES/messages.po +1 -1
  203. invenio_vocabularies/translations/pl/LC_MESSAGES/messages.mo +0 -0
  204. invenio_vocabularies/translations/pl/LC_MESSAGES/messages.po +1 -1
  205. invenio_vocabularies/translations/pt/LC_MESSAGES/messages.mo +0 -0
  206. invenio_vocabularies/translations/pt/LC_MESSAGES/messages.po +1 -1
  207. invenio_vocabularies/translations/ro/LC_MESSAGES/messages.mo +0 -0
  208. invenio_vocabularies/translations/ro/LC_MESSAGES/messages.po +1 -1
  209. invenio_vocabularies/translations/ru/LC_MESSAGES/messages.mo +0 -0
  210. invenio_vocabularies/translations/ru/LC_MESSAGES/messages.po +1 -1
  211. invenio_vocabularies/translations/rw/LC_MESSAGES/messages.mo +0 -0
  212. invenio_vocabularies/translations/rw/LC_MESSAGES/messages.po +1 -1
  213. invenio_vocabularies/translations/sk/LC_MESSAGES/messages.mo +0 -0
  214. invenio_vocabularies/translations/sk/LC_MESSAGES/messages.po +1 -1
  215. invenio_vocabularies/translations/sv/LC_MESSAGES/messages.mo +0 -0
  216. invenio_vocabularies/translations/sv/LC_MESSAGES/messages.po +4 -3
  217. invenio_vocabularies/translations/sv_SE/LC_MESSAGES/messages.mo +0 -0
  218. invenio_vocabularies/translations/sv_SE/LC_MESSAGES/messages.po +139 -0
  219. invenio_vocabularies/translations/tr/LC_MESSAGES/messages.mo +0 -0
  220. invenio_vocabularies/translations/tr/LC_MESSAGES/messages.po +1 -1
  221. invenio_vocabularies/translations/uk/LC_MESSAGES/messages.mo +0 -0
  222. invenio_vocabularies/translations/uk/LC_MESSAGES/messages.po +17 -13
  223. invenio_vocabularies/translations/uk_UA/LC_MESSAGES/messages.mo +0 -0
  224. invenio_vocabularies/translations/uk_UA/LC_MESSAGES/messages.po +139 -0
  225. invenio_vocabularies/translations/zh_CN/LC_MESSAGES/messages.mo +0 -0
  226. invenio_vocabularies/translations/zh_CN/LC_MESSAGES/messages.po +1 -1
  227. invenio_vocabularies/translations/zh_TW/LC_MESSAGES/messages.mo +0 -0
  228. invenio_vocabularies/translations/zh_TW/LC_MESSAGES/messages.po +1 -1
  229. invenio_vocabularies/views.py +12 -26
  230. invenio_vocabularies/webpack.py +51 -0
  231. invenio_vocabularies-6.3.1.dist-info/METADATA +346 -0
  232. invenio_vocabularies-6.3.1.dist-info/RECORD +306 -0
  233. {invenio_vocabularies-1.2.0.dist-info → invenio_vocabularies-6.3.1.dist-info}/WHEEL +1 -1
  234. {invenio_vocabularies-1.2.0.dist-info → invenio_vocabularies-6.3.1.dist-info}/entry_points.txt +20 -0
  235. invenio_vocabularies-1.2.0.dist-info/METADATA +0 -133
  236. invenio_vocabularies-1.2.0.dist-info/RECORD +0 -220
  237. {invenio_vocabularies-1.2.0.dist-info → invenio_vocabularies-6.3.1.dist-info}/AUTHORS.rst +0 -0
  238. {invenio_vocabularies-1.2.0.dist-info → invenio_vocabularies-6.3.1.dist-info}/LICENSE +0 -0
  239. {invenio_vocabularies-1.2.0.dist-info → invenio_vocabularies-6.3.1.dist-info}/top_level.txt +0 -0
@@ -1,220 +0,0 @@
1
- invenio_vocabularies/__init__.py,sha256=t032JvAwcDNqa1cu6mBrjlAeBEH19djxEy1yBlfcoqw,377
2
- invenio_vocabularies/cli.py,sha256=Ymuy0l846eJXIA4UybunSqq7P9m2N0OdTtj6nEgd1-0,6355
3
- invenio_vocabularies/config.py,sha256=TAY5PJUe3NFlGGNSs43VhWgYPKnRym-zoUYttxVu6m4,3627
4
- invenio_vocabularies/ext.py,sha256=wMJfv3GG4ZOp-c4ePVrNhxi9KyWAb874b9_D23K1orU,3805
5
- invenio_vocabularies/fixtures.py,sha256=nNWwH04HFASjfj1oy5kMdcQGKmVjzUuA5wSw-ER1QAg,1585
6
- invenio_vocabularies/proxies.py,sha256=H_bcJXPTwGbErx-pF89ChayOZcXJXJGZW7O0xkJkYQ4,693
7
- invenio_vocabularies/views.py,sha256=SKXfzdsHEfarpua6snB4D7nQLv9KczYexCHmEYMPKHM,2548
8
- invenio_vocabularies/alembic/17c703ce1eb7_create_names_table.py,sha256=2QGs0Ofi6yd93VzIBqghNi47hrZtuLf0DylKyvVzskI,1572
9
- invenio_vocabularies/alembic/4a9a4fd235f8_create_vocabulary_schemes.py,sha256=4CXWGeEtRXIDDmf3zqkrvIqZHXCKBS8B4xUiIcauLnI,1042
10
- invenio_vocabularies/alembic/4f365fced43f_create_vocabularies_tables.py,sha256=QFIiUgm-om3rB2uihTj6qWnW5ParqdZqMbam1_R05c8,3033
11
- invenio_vocabularies/alembic/6312f33645c1_create_affiliations_table.py,sha256=0rg7ODaMG4YoHOiOMXKOgPK7QryyLGfgrdJjtn6JPsY,1600
12
- invenio_vocabularies/alembic/676dd587542d_create_funders_vocabulary_table.py,sha256=VFqJJ6EUmSh9u5rZ9uRHOHuf7FqFqmJre43zPG4yz4U,1788
13
- invenio_vocabularies/alembic/8ff82dfb0be8_create_vocabularies_branch.py,sha256=RnyKQ38Pkubf_DU2rH9pRdufoAvABdnaP9b9S4-y4Vw,586
14
- invenio_vocabularies/alembic/__init__.py,sha256=zTkqaw55uK5Bj6VgisfzONfDTxpP6Ty_wMroptywf8U,244
15
- invenio_vocabularies/alembic/e1146238edd3_create_awards_table.py,sha256=7FfbJptLvgiGSyy2Kprb5b-RtdCTQi0jh6geIk1isCs,1702
16
- invenio_vocabularies/contrib/__init__.py,sha256=C5eDia6tAVBCrbb5hd_KnxmczyBoF87NIBUCLID-Tzc,240
17
- invenio_vocabularies/contrib/affiliations/__init__.py,sha256=rV8YAzBRoSKsBYcVjCNJh6j7ITuPRfurwj9HJHRjkN8,565
18
- invenio_vocabularies/contrib/affiliations/affiliations.py,sha256=n_0aCyo6cm-gVTDBSEONyorRJec9Ko-KolKiTHO95zQ,1430
19
- invenio_vocabularies/contrib/affiliations/api.py,sha256=-NrA_aYxabvNMofYCnrDZ2bLP15HGDTvvhHTDuXNg-g,322
20
- invenio_vocabularies/contrib/affiliations/config.py,sha256=ZUVANL9oU0DS4QAObQlh3_ucAkxX-CrJyJI4o0Mt4zc,1683
21
- invenio_vocabularies/contrib/affiliations/models.py,sha256=JUcj-1ydc2Cw2Rsc24JwXE3TFBJ_6fivhUYhGq4rT8A,329
22
- invenio_vocabularies/contrib/affiliations/resources.py,sha256=DBEbRxQmp-o-PeZlgFG588Q4sGcruuwIL8L9O-SzCes,435
23
- invenio_vocabularies/contrib/affiliations/schema.py,sha256=07c-6VUDAKKuH4mWwST6QNobUfSmG0dchElYld18W_w,1247
24
- invenio_vocabularies/contrib/affiliations/services.py,sha256=C_6cMnh3mnL3-xxdsb16Rvm2aK4FyiaQ_qUTGylCwjo,391
25
- invenio_vocabularies/contrib/affiliations/jsonschemas/__init__.py,sha256=ILyZ5kejTr0p50macMBPALQCTJSe4KEE3_cgf2p3zV4,252
26
- invenio_vocabularies/contrib/affiliations/jsonschemas/affiliations/affiliation-v1.0.0.json,sha256=fplTNgJtZMFXKFPln-YhixlkHCYbqK7LVU0gF0ZZQDc,838
27
- invenio_vocabularies/contrib/affiliations/mappings/__init__.py,sha256=q7hb9lcT9KLRSGr6G7qpL8Top6wZfzj_E4uzGxnraTw,295
28
- invenio_vocabularies/contrib/affiliations/mappings/os-v1/__init__.py,sha256=uEiG5rFrjhpFxg5pD5j5E96_xrPojsla9PhtlOqSCw4,256
29
- invenio_vocabularies/contrib/affiliations/mappings/os-v1/affiliations/affiliation-v1.0.0.json,sha256=oHJiDYnfsJhb4HCbUeDm7FNfiisX_HBeyg5x-DLk83s,1723
30
- invenio_vocabularies/contrib/affiliations/mappings/os-v2/__init__.py,sha256=qgNQbJjbfA2hSpFJtXrsUQBZdKwg-5Y1isoXzj31InE,256
31
- invenio_vocabularies/contrib/affiliations/mappings/os-v2/affiliations/affiliation-v1.0.0.json,sha256=oHJiDYnfsJhb4HCbUeDm7FNfiisX_HBeyg5x-DLk83s,1723
32
- invenio_vocabularies/contrib/affiliations/mappings/v7/__init__.py,sha256=zr9YyyKyqMAnahKbnIFGr_Z7PXy9ONoU08i9z5cRguQ,259
33
- invenio_vocabularies/contrib/affiliations/mappings/v7/affiliations/affiliation-v1.0.0.json,sha256=oHJiDYnfsJhb4HCbUeDm7FNfiisX_HBeyg5x-DLk83s,1723
34
- invenio_vocabularies/contrib/awards/__init__.py,sha256=KwCmwFalz-3pDs9iTa5TKUidBjLepnUMqpCBXRiQOO8,474
35
- invenio_vocabularies/contrib/awards/api.py,sha256=OXukE7PLXs45BTtqVrhvGBNqLmQaI-CgXmHTCi36LZk,303
36
- invenio_vocabularies/contrib/awards/awards.py,sha256=JT3CW6LOtKu4PYtMEmgr-fA6rMGsm800R6rLtUgR-no,2690
37
- invenio_vocabularies/contrib/awards/config.py,sha256=ESVzPAOU5wMmAAEyUdOIK7hS9getJO200ri7HOw-CQY,1675
38
- invenio_vocabularies/contrib/awards/datastreams.py,sha256=JNtxgzBcME0BpZPuowfMbxqzfsyFJ6b7MTk5m9LQym0,3397
39
- invenio_vocabularies/contrib/awards/models.py,sha256=mM-kSNf7kDH3oIbV8epxxbUi7muYqi4JreXxgWXlVzw,318
40
- invenio_vocabularies/contrib/awards/resources.py,sha256=_9YTqbhz8axFXGhG5y4WyjE27p9n-7e3c6HoBRditPA,411
41
- invenio_vocabularies/contrib/awards/schema.py,sha256=POUJoIvk21SHZBHJOlxTnZXa_YRWwTD96W_hI2c_txg,3359
42
- invenio_vocabularies/contrib/awards/serializer.py,sha256=z92SsjEf6vf6LX1egwGiRY1AHU2qRxCaWyWVUXPwqag,1095
43
- invenio_vocabularies/contrib/awards/services.py,sha256=oExHPYgXgege9a7oLCK4LGb8FXCHfY0ekeS9HvTJLxs,367
44
- invenio_vocabularies/contrib/awards/jsonschemas/__init__.py,sha256=XB2l9hr53vqTk7o9lmy18FWGhHEUvNHu8D6nMF8Bz4k,246
45
- invenio_vocabularies/contrib/awards/jsonschemas/awards/award-v1.0.0.json,sha256=Vi_FM8yeqYWkfsk-HvuRIl8b2B7YN3pgGC2PicUQmmw,982
46
- invenio_vocabularies/contrib/awards/mappings/__init__.py,sha256=PbM5urjiSrJSx4Ak-H_lJrOOVKGT38MrGgRv61gIbAM,243
47
- invenio_vocabularies/contrib/awards/mappings/os-v1/__init__.py,sha256=r8IZvjorG9SVz32Hv1fncoqLfz-5Ml0Ph3jiYWCHBPk,250
48
- invenio_vocabularies/contrib/awards/mappings/os-v1/awards/award-v1.0.0.json,sha256=vAbmJnkr4By7VD6UdG-npE7rMIMs8-9Ukbd2_ue0IZo,1354
49
- invenio_vocabularies/contrib/awards/mappings/os-v2/__init__.py,sha256=9gRLFRtjhNJcbop3qz8iRpQVEng_wudDTbOFsS-gxjk,250
50
- invenio_vocabularies/contrib/awards/mappings/os-v2/awards/award-v1.0.0.json,sha256=vAbmJnkr4By7VD6UdG-npE7rMIMs8-9Ukbd2_ue0IZo,1354
51
- invenio_vocabularies/contrib/awards/mappings/v7/__init__.py,sha256=fERdPp7K7ajaoUu_4_HVLfF-WD_qcl7QgST6yGb68s4,253
52
- invenio_vocabularies/contrib/awards/mappings/v7/awards/award-v1.0.0.json,sha256=vAbmJnkr4By7VD6UdG-npE7rMIMs8-9Ukbd2_ue0IZo,1354
53
- invenio_vocabularies/contrib/funders/__init__.py,sha256=YxFXBDnT7NM8rFwxT_Ge3xXR2n17EM0alknQq7r_Bt8,478
54
- invenio_vocabularies/contrib/funders/api.py,sha256=QKGGeSnPHSoBfucvpaVruXT_txYidofZ080G3IxFkIo,306
55
- invenio_vocabularies/contrib/funders/config.py,sha256=sJjnGpUmwhbPQ7fI2EyvzNdDrguBwlJeAORXBSZrILs,1748
56
- invenio_vocabularies/contrib/funders/datastreams.py,sha256=UsY3MYFBxyqGu0ZHw5OE32sgFYiUCsh_QPUSGs5vzoc,3527
57
- invenio_vocabularies/contrib/funders/facets.py,sha256=DrA8gmX7GMnQyRpqQoT6UKE0K7sjPCio9KgSgfogq9A,878
58
- invenio_vocabularies/contrib/funders/funders.py,sha256=92IDsgqEApf2hKvjQaHNkZw21UBBkJ_3VCxVyuBek6k,2287
59
- invenio_vocabularies/contrib/funders/models.py,sha256=RAU-_YVOUNVCn03_XGJ2czcVwXTaZPk5w7X_bMAgMOk,314
60
- invenio_vocabularies/contrib/funders/resources.py,sha256=He4gXd737ovdrHL-HB9dX7AGxp1BVJ9QteIO7JWUVSE,415
61
- invenio_vocabularies/contrib/funders/schema.py,sha256=REXr_Jh3No7lCLjOo-ZuCQqsrPjQwm-pIHV5GQ6-O64,2190
62
- invenio_vocabularies/contrib/funders/serializer.py,sha256=UwFsPnQiMUWx2lMQgh3Bv1uosubTUF5GFIAxwECNoAk,927
63
- invenio_vocabularies/contrib/funders/services.py,sha256=M-kQwtVOGygHe44vXr1L4E5Vvnpoco4KO0LRYwzhvMc,375
64
- invenio_vocabularies/contrib/funders/jsonschemas/__init__.py,sha256=O4XwUXCk-gx_K2LDVJOLkq07-ibsUkpT1vPaebgd0Gk,247
65
- invenio_vocabularies/contrib/funders/jsonschemas/funders/funder-v1.0.0.json,sha256=V_E72iXF__W4SzxlHw8u3wQC9feZJWIalDRO95fTICw,783
66
- invenio_vocabularies/contrib/funders/mappings/__init__.py,sha256=aSr-tZd9rsjet6leeS336gdSdZHXwZKdaPStNtVNQVk,244
67
- invenio_vocabularies/contrib/funders/mappings/os-v1/__init__.py,sha256=xXEX3tacmXp0I1KFtDw7ohIahozd2oIGp1UN40IhFic,251
68
- invenio_vocabularies/contrib/funders/mappings/os-v1/funders/funder-v1.0.0.json,sha256=X641W9NZF5k-L-puKJUjd-8-3QAAEI5E0Wtg2KVqcjY,1273
69
- invenio_vocabularies/contrib/funders/mappings/os-v2/__init__.py,sha256=YvMRlKYTnEmyTzI9smZp_lO3w-zcK-8IpqT-jGUXEEY,251
70
- invenio_vocabularies/contrib/funders/mappings/os-v2/funders/funder-v1.0.0.json,sha256=X641W9NZF5k-L-puKJUjd-8-3QAAEI5E0Wtg2KVqcjY,1273
71
- invenio_vocabularies/contrib/funders/mappings/v7/__init__.py,sha256=yFHmi3QYD65YKzLU5vMEtwAZn0gwkFYa6Db_tSbHjKE,254
72
- invenio_vocabularies/contrib/funders/mappings/v7/funders/funder-v1.0.0.json,sha256=X641W9NZF5k-L-puKJUjd-8-3QAAEI5E0Wtg2KVqcjY,1273
73
- invenio_vocabularies/contrib/names/__init__.py,sha256=DBfsM7JMETZGaV5QmXEwE7zhCaAXvc2SZN6uXnW_V-c,451
74
- invenio_vocabularies/contrib/names/api.py,sha256=sEPn_jFX3gyoxgbdEUSIvOoPCUI8pocI6qCZO6mzCgQ,300
75
- invenio_vocabularies/contrib/names/config.py,sha256=hKDTEEBYGYOY6sMOArZjjkq2HJ6MJtRZp1geGLAFgRg,1735
76
- invenio_vocabularies/contrib/names/datastreams.py,sha256=pXP_lMauUmJKB4008M8CKPd--ysqvk-xN0-_5y7nEZ8,5014
77
- invenio_vocabularies/contrib/names/models.py,sha256=SYdtDDG-y5Wq_d06YhiVO5n8gfxPW_mx-tECsIcv5H8,308
78
- invenio_vocabularies/contrib/names/names.py,sha256=gsvUfhOPRtVjvJNHc4xyhMDKc2smuLC0FR1tYFZ7-_4,1994
79
- invenio_vocabularies/contrib/names/resources.py,sha256=Z8XqLKfFKE69zdTTvcTDmpEZ6wqiqjIH5tp0LzXTSwQ,1588
80
- invenio_vocabularies/contrib/names/schema.py,sha256=LxnoEFTzMGpAtlNopmBO6LYJeZ5mScQJqcfd9O7gwdk,2283
81
- invenio_vocabularies/contrib/names/services.py,sha256=1viM-L8VEojmQWMisIOhDyl8KInPPCZEIf6tU8G07As,1763
82
- invenio_vocabularies/contrib/names/jsonschemas/__init__.py,sha256=pdDZdyoxqWbAQ6ngiclhYoDUsGKgRDRPXlIDy0U5Jzg,241
83
- invenio_vocabularies/contrib/names/jsonschemas/names/name-v1.0.0.json,sha256=eKmfHVRXKG6FnLIApqg6cdoGwz_g2gq_9iaLlwNVWo0,1439
84
- invenio_vocabularies/contrib/names/mappings/__init__.py,sha256=l5hYJmrj83lds5GupnwCcwQn7cdJo6_4H4YYzrnBa54,242
85
- invenio_vocabularies/contrib/names/mappings/os-v1/__init__.py,sha256=CKtF-xflE4QGF5P82Lj1ifEP1c7ekR24fc3SiTAkhsY,249
86
- invenio_vocabularies/contrib/names/mappings/os-v1/names/name-v1.0.0.json,sha256=XtrCBgvEwlhu_kyitiZ-ZRVn8ImK17rFuRVSV4gjHvw,1892
87
- invenio_vocabularies/contrib/names/mappings/os-v2/__init__.py,sha256=p38Ausy2cu1OetTQYwx-9gOFoxGrtrmqjArSDpvxfMU,249
88
- invenio_vocabularies/contrib/names/mappings/os-v2/names/name-v1.0.0.json,sha256=XtrCBgvEwlhu_kyitiZ-ZRVn8ImK17rFuRVSV4gjHvw,1892
89
- invenio_vocabularies/contrib/names/mappings/v7/__init__.py,sha256=qLGB8C0kPI3xubcfhI8t6Wb2bLlCmVYCiwQ08bKGz9g,252
90
- invenio_vocabularies/contrib/names/mappings/v7/names/name-v1.0.0.json,sha256=XtrCBgvEwlhu_kyitiZ-ZRVn8ImK17rFuRVSV4gjHvw,1892
91
- invenio_vocabularies/contrib/subjects/__init__.py,sha256=GtXZKA6VWG1oA1fUX2Wh92nd-1i7RnnQF6RprGhxkD4,591
92
- invenio_vocabularies/contrib/subjects/api.py,sha256=QH8mxoLsa8qjJT1i1Tj6rRnpbH23plo2IMOJ56rnvbU,347
93
- invenio_vocabularies/contrib/subjects/config.py,sha256=0SHUKqR-EELVeEDiFjwzLY-_74ZmCxBKxC4dK_eOH8I,1535
94
- invenio_vocabularies/contrib/subjects/facets.py,sha256=qQ7_rppFBzsmrlZu4-MvOIdUcjeOmDA9gOHAcs0lWwI,695
95
- invenio_vocabularies/contrib/subjects/models.py,sha256=8XgbVRxDDvhWPjMWsoCriNlOKdmV_113a14yLRtlvM4,363
96
- invenio_vocabularies/contrib/subjects/resources.py,sha256=0KRfUMizwgIziZybk4HnIjiSsXbrCv_XmguNPwnxoo8,506
97
- invenio_vocabularies/contrib/subjects/schema.py,sha256=jWPhpCDoScf8fRs7T15kcXnprWw31OuGBKJUziQ3t8A,1120
98
- invenio_vocabularies/contrib/subjects/services.py,sha256=s1U6HMmpjuz7rrgR0DtT9C28TC6sZEeDTsa4Jh1TXQk,864
99
- invenio_vocabularies/contrib/subjects/subjects.py,sha256=y5IidPbmYV3zs5aEp7CFzijYoVwWZ5GIMwl1kD0e0Eg,1441
100
- invenio_vocabularies/contrib/subjects/jsonschemas/__init__.py,sha256=WowVUST1JoEDS3-xeHhCJvIgC9nzMkFs8XRks9zgzaM,292
101
- invenio_vocabularies/contrib/subjects/jsonschemas/subjects/subject-v1.0.0.json,sha256=-xQnzZEiAYLR_lQVWzgVQUc1s0UN3mDSPTWaQKgCZ3Q,826
102
- invenio_vocabularies/contrib/subjects/mappings/__init__.py,sha256=Qk-yj1ENsTmijO8ImWuDYGzXi6QQ2VjP4DbjrpRfDk8,243
103
- invenio_vocabularies/contrib/subjects/mappings/os-v1/__init__.py,sha256=rv2-AasC_WJFp2t9Nrhzivmw9RovRI2_msin4oHTZuk,250
104
- invenio_vocabularies/contrib/subjects/mappings/os-v1/subjects/subject-v1.0.0.json,sha256=9qfQ_Wxpklf3-F6fzgpQmIFbZL0wwhfSGTse94c9uYg,1115
105
- invenio_vocabularies/contrib/subjects/mappings/os-v2/__init__.py,sha256=rQnrw1tMKR0yzlPiXBbCVHnxy_aAhwrKghrSuhhZYAc,250
106
- invenio_vocabularies/contrib/subjects/mappings/os-v2/subjects/subject-v1.0.0.json,sha256=9qfQ_Wxpklf3-F6fzgpQmIFbZL0wwhfSGTse94c9uYg,1115
107
- invenio_vocabularies/contrib/subjects/mappings/v7/__init__.py,sha256=QK__a1749g2UN3fBqOr9jx8ccZHWAuvd6DSN4B1jJW4,258
108
- invenio_vocabularies/contrib/subjects/mappings/v7/subjects/subject-v1.0.0.json,sha256=9qfQ_Wxpklf3-F6fzgpQmIFbZL0wwhfSGTse94c9uYg,1115
109
- invenio_vocabularies/datastreams/__init__.py,sha256=VPefh6k4Q3eYxKIW8I5zXUGucntp7VHxaOR5Vhgkfmg,412
110
- invenio_vocabularies/datastreams/datastreams.py,sha256=_jSXv2yAvSjt8btMoLJlqXOkqBzYb3Xe9m2GH50Nwag,3987
111
- invenio_vocabularies/datastreams/errors.py,sha256=IDUZ3gNtYGrhcOgApHCms1gNNJTyJzoMPmG5JtIeYNU,678
112
- invenio_vocabularies/datastreams/factories.py,sha256=js76i-cjcEzslgemsrwSzXQMy3SXtY3iFcsO-OlrMIM,2182
113
- invenio_vocabularies/datastreams/readers.py,sha256=RmMlsi_ZzVJKpg704tiy6Ox50-RFf0QF0pLIqe4G9vY,7493
114
- invenio_vocabularies/datastreams/transformers.py,sha256=u0L-djSUFh8t8MJrwEbuqCWglmYBiAsnrHkgiIhd6CA,2118
115
- invenio_vocabularies/datastreams/writers.py,sha256=a85RYE6FAQqNF7obmlqHLW_ztJ1a6biS_i9a_yaKJw4,3615
116
- invenio_vocabularies/records/__init__.py,sha256=Uj7O6fYdAtLOkLXUGSAYPADBB7aqP4yVs9b6OAjA158,243
117
- invenio_vocabularies/records/api.py,sha256=Lynt6Sz4BVN1orh0zgJ5ljhnUobEtcq8c22PmSeUo2U,1494
118
- invenio_vocabularies/records/models.py,sha256=bXqNOhhR-_IZznCle26DzoWJML1Hh3LeKcgfp_DOMpI,2470
119
- invenio_vocabularies/records/pidprovider.py,sha256=ByUwsZKimRv2QlbMdJmhCejmJd2sIqwt8fISWW6aW8g,3836
120
- invenio_vocabularies/records/jsonschemas/__init__.py,sha256=qr2BZMyMVvVRSeJzPCI8re2BlGokiDjeqwREkythSrQ,246
121
- invenio_vocabularies/records/jsonschemas/vocabularies/definitions-v1.0.0.json,sha256=vNMM7wg6-WEcUg6AJocjv3A8CIt6CiE2t4ys2iK9mAQ,240
122
- invenio_vocabularies/records/jsonschemas/vocabularies/vocabulary-v1.0.0.json,sha256=IaWHDhQqZ0kFeA4EMmJwa16aJP7m62CywYkfrFCf4PA,1295
123
- invenio_vocabularies/records/mappings/__init__.py,sha256=kER6e5hZFmPpesFAx-oQsMseep8RXobQRiLIE2r5IMc,244
124
- invenio_vocabularies/records/mappings/os-v1/__init__.py,sha256=XaGt61tsIKfG59y59Bf0NaPzJECWZnzHSTbAQNUwlVo,248
125
- invenio_vocabularies/records/mappings/os-v1/vocabularies/vocabulary-v1.0.0.json,sha256=pE_3XDQHfZPKU6LJWLLKlBtv56VG49gsuxG7cTGBBCQ,2121
126
- invenio_vocabularies/records/mappings/os-v2/__init__.py,sha256=5dVZCOKIEzr7qtuX__RbFPggcA5yKu5JBkUtXotbjYY,243
127
- invenio_vocabularies/records/mappings/os-v2/vocabularies/vocabulary-v1.0.0.json,sha256=pE_3XDQHfZPKU6LJWLLKlBtv56VG49gsuxG7cTGBBCQ,2121
128
- invenio_vocabularies/records/mappings/v7/__init__.py,sha256=QK__a1749g2UN3fBqOr9jx8ccZHWAuvd6DSN4B1jJW4,258
129
- invenio_vocabularies/records/mappings/v7/vocabularies/vocabulary-v1.0.0.json,sha256=pE_3XDQHfZPKU6LJWLLKlBtv56VG49gsuxG7cTGBBCQ,2121
130
- invenio_vocabularies/records/systemfields/__init__.py,sha256=MRLoLF3h8VYuqJ9tbbgXjXkTDUniz24pVnujLX-psZI,406
131
- invenio_vocabularies/records/systemfields/pid.py,sha256=5e2zZD0uHP5r32--KmuzjfHk3B5GXEV3yBuoKeit9mQ,3740
132
- invenio_vocabularies/records/systemfields/relations.py,sha256=fObQUlla8aqRTXAEjIMAndMA9rrIy3c6bVWVQgkMcmk,1557
133
- invenio_vocabularies/resources/__init__.py,sha256=XZvY92BJx8VyBsDYYGAdU0ILO9QApmiTY1ZH-hr3BSg,384
134
- invenio_vocabularies/resources/resource.py,sha256=CyMCC4QMar8dQR9xP2Fk160blj5KzAwM8nvqzDMXyy8,4525
135
- invenio_vocabularies/resources/schema.py,sha256=B_Y7uOSfVlogUmiDZfRpa3EWx1VJmbrzTtLachv8yEw,541
136
- invenio_vocabularies/resources/serializer.py,sha256=pwfckLdkMu1MNDkocyMg1XeX6RhbfeuV4fjDO5xKDxo,1190
137
- invenio_vocabularies/services/__init__.py,sha256=obfLpKP5-qDJZBtXaBzROwVtuF-uqLhuYKtlnrxquGk,385
138
- invenio_vocabularies/services/components.py,sha256=d9C-24dEDM63gFm75nU-dXrrjS2zZi7Nfkv40BGnHwM,1941
139
- invenio_vocabularies/services/facets.py,sha256=9v8lYSPL_aHMZelZhfVbLwrocD6XB8-pczyeCNDABjQ,2778
140
- invenio_vocabularies/services/permissions.py,sha256=one3NvNFYq-q15e6xxf85OkH1bWZ5OsvJqMnNbm3Qms,696
141
- invenio_vocabularies/services/querystr.py,sha256=X3JHVF9B0O0iLWrnW3ok_bf_8jA-Cs_oAcYYkGOm3Uw,1829
142
- invenio_vocabularies/services/schema.py,sha256=le29X8SO320cTepTNClTzaqyGgGT6cY9NryTKuO1MLo,3501
143
- invenio_vocabularies/services/service.py,sha256=W3wtKOttQjOr8Nkaus6m3KRuCMBqBsWUCAVv7Dj8bvM,7392
144
- invenio_vocabularies/services/tasks.py,sha256=zTAWdnI5celWBKrF986wQzCmkOTGOwTghtN7U5FMZ5Q,783
145
- invenio_vocabularies/services/custom_fields/__init__.py,sha256=1emONO3aiE7TanAoyUSkWE6gwZiBwjzzJ5y8jeomOLc,310
146
- invenio_vocabularies/services/custom_fields/vocabulary.py,sha256=p5e1_vSgI_RmO-kC6mNeC5lxNfu9fedSYSKoDyTWbf0,2690
147
- invenio_vocabularies/translations/messages.pot,sha256=IzTTWdWknzmKKtl1UNUxPOwHjfBB_iidm_eeEY2kV-M,3907
148
- invenio_vocabularies/translations/af/LC_MESSAGES/messages.mo,sha256=lmM731SswkrGaxlDbbmL_-c2FTgpIqz1RWaSaUcuqF8,523
149
- invenio_vocabularies/translations/af/LC_MESSAGES/messages.po,sha256=rnO-nrHkGJiQnwfDcCAA7Y8Z9WEvc0OvQvvc6U7zn_Y,3976
150
- invenio_vocabularies/translations/ar/LC_MESSAGES/messages.mo,sha256=darjDXdaNxpdPYbgEFNdoXr_R3ITrS4hPWRIY_fEsO8,2032
151
- invenio_vocabularies/translations/ar/LC_MESSAGES/messages.po,sha256=ykquSzBFcRRu825CaBw2-QLn-IvJ8XxR2LHZLF0_Ouk,4888
152
- invenio_vocabularies/translations/bg/LC_MESSAGES/messages.mo,sha256=ZxqLPsUh-uuI3a4dpaQDGoKU_g636vFmOu5SlqaNNI4,604
153
- invenio_vocabularies/translations/bg/LC_MESSAGES/messages.po,sha256=XE_q6pBx98-mc-35-89ZOJPLzfVlL_iX8XNt210GSyk,4119
154
- invenio_vocabularies/translations/ca/LC_MESSAGES/messages.mo,sha256=R0rK6Ls7CZfdjhSTOrrzFJtH6rkeOTR_rKBNEPym8Es,613
155
- invenio_vocabularies/translations/ca/LC_MESSAGES/messages.po,sha256=fMF6RC6rR0B9wiKDJIlLklJPYTPFBgku3tuHjT6wkP0,4107
156
- invenio_vocabularies/translations/cs/LC_MESSAGES/messages.mo,sha256=mrPMjac4lb7r9FcZu_E0UbMSL8JjgxFY8BVo_RhVhkY,694
157
- invenio_vocabularies/translations/cs/LC_MESSAGES/messages.po,sha256=WQ1a7LGqD7VgKT6vEhxOMiA6vciXuqSo_yDpXTC2S3U,4188
158
- invenio_vocabularies/translations/da/LC_MESSAGES/messages.mo,sha256=yCcjsjnXPWlaez6Jfcf50iQ9Ty9hKzgNxqT4MBCitIs,520
159
- invenio_vocabularies/translations/da/LC_MESSAGES/messages.po,sha256=f4zd60S18OEgWwsTegbJR2pYexKKWM-xPJ1wPw6U_VM,3973
160
- invenio_vocabularies/translations/de/LC_MESSAGES/messages.mo,sha256=kTW2kw8exvCZ2GRNKDSKAaVwdhEbi6fYI40Lk4niGL8,1760
161
- invenio_vocabularies/translations/de/LC_MESSAGES/messages.po,sha256=hVPhcohCUfEm1V_6nW1mDFDm8_ldzaCYh_wFczvz1HE,4820
162
- invenio_vocabularies/translations/el/LC_MESSAGES/messages.mo,sha256=VjpOq1zQRqit_gtMr-k97cwp5ZE0-fU3rd6MWPCYN80,624
163
- invenio_vocabularies/translations/el/LC_MESSAGES/messages.po,sha256=vA4wskCmrmuQpsiu5ZBa71MxxdDXTSpBPbePUtHDt4E,4118
164
- invenio_vocabularies/translations/en/LC_MESSAGES/messages.mo,sha256=8_IdE2En2LVdFKazTStsT_XUecIARA8YaytxQuA7XGw,467
165
- invenio_vocabularies/translations/en/LC_MESSAGES/messages.po,sha256=OLbQwEoqXSAGuXrYazkgoNtTp2gUgcbmoLlLK8BrZQs,1616
166
- invenio_vocabularies/translations/es/LC_MESSAGES/messages.mo,sha256=fO7MrtDr-jO6I5L8Ue509o9si8OUCQIHC0Qlxz5WWu0,2189
167
- invenio_vocabularies/translations/es/LC_MESSAGES/messages.po,sha256=uf2ajzbqSMwTtLyMZN9sY7Lh2ekxbWrZ8V29QRgYHto,4898
168
- invenio_vocabularies/translations/et/LC_MESSAGES/messages.mo,sha256=s6nbosTn81BXoTawSIX7hXf5qmDr3Se3zkaObXRrIGE,1990
169
- invenio_vocabularies/translations/et/LC_MESSAGES/messages.po,sha256=QWClK6e3YyMQkd2pXYKYNWXHPJLkdEgu1Hme0-JU068,4628
170
- invenio_vocabularies/translations/et_EE/LC_MESSAGES/messages.mo,sha256=6-24TpfdUmyqeMj7XU6wFlLq3G-OvWF-FKeLtNxNF4E,538
171
- invenio_vocabularies/translations/et_EE/LC_MESSAGES/messages.po,sha256=DwFnfCIGqoOLPtxdoUKmP5X4BKre-y7xnNJH9qGER6A,3991
172
- invenio_vocabularies/translations/fa/LC_MESSAGES/messages.mo,sha256=5P2MuCiBaSCXcJJYagMIoBhQNVoo-J7odxwGgwUIcoY,595
173
- invenio_vocabularies/translations/fa/LC_MESSAGES/messages.po,sha256=8X8QdyM48ZpEy_tnPHU7xLr9RxHYkQdOo1UCZHQ7YiQ,4110
174
- invenio_vocabularies/translations/fr/LC_MESSAGES/messages.mo,sha256=rGwkyRPhTYfaxgr8tgf6lo2mo4QKdO0StAOHr45wwSs,662
175
- invenio_vocabularies/translations/fr/LC_MESSAGES/messages.po,sha256=oo5RDX-pXP8VcmBgcXvGRpY8f8DVXp5eCh66Djcxfnk,4200
176
- invenio_vocabularies/translations/gl/LC_MESSAGES/messages.mo,sha256=13VAb499wo_NcQMCoatmXnPpdSsjAgj38tkTlnDr7qA,522
177
- invenio_vocabularies/translations/gl/LC_MESSAGES/messages.po,sha256=fHZ7TXJ_0liz5yhks86ylZ-jd7EslHvdwS6a3ZqIrk0,3975
178
- invenio_vocabularies/translations/hr/LC_MESSAGES/messages.mo,sha256=2DbNQ3fSkYBnGfU17hDQFkO-60L-DulRAGO79nUxrEE,662
179
- invenio_vocabularies/translations/hr/LC_MESSAGES/messages.po,sha256=SHZZvtBfV8jNEG4Nmk7XmjL2rIZY22RtO3OPuQ3_SL8,4177
180
- invenio_vocabularies/translations/hu/LC_MESSAGES/messages.mo,sha256=ULak2oWbF14hAGyWXIaZOGjbB--rwnIB8cDOnd_UNOE,1954
181
- invenio_vocabularies/translations/hu/LC_MESSAGES/messages.po,sha256=uKpDVFRCte2C4nJmaKZtOpCrUQ9ImmBFMAZIAU8KoC4,4622
182
- invenio_vocabularies/translations/it/LC_MESSAGES/messages.mo,sha256=qf9Iaz2zUpaFa3pkV0KMZ8NvNlz88HhEv413_RY4O4w,653
183
- invenio_vocabularies/translations/it/LC_MESSAGES/messages.po,sha256=kKEdMI_6PJsTmW9v-O0pnjDChhny0RVs6b7dQCK5b6U,4191
184
- invenio_vocabularies/translations/ja/LC_MESSAGES/messages.mo,sha256=UTCmPMmucZ9MZ5tvBTbmDKVuCySqfuK8R5Oz8RQcMA4,592
185
- invenio_vocabularies/translations/ja/LC_MESSAGES/messages.po,sha256=Uf4uM8vAokjbGEqIsW4UupwlPmjjboReHrb0SmhKyHs,4107
186
- invenio_vocabularies/translations/ka/LC_MESSAGES/messages.mo,sha256=OAeryNJn1geuvpG04f0QlKxyMdD5C_D9hyvQ3ZqkCig,654
187
- invenio_vocabularies/translations/ka/LC_MESSAGES/messages.po,sha256=6G2a_ZDDKXAinBHO0nJ262i-MtxrA2VzoAqz7hGzqkc,4148
188
- invenio_vocabularies/translations/lt/LC_MESSAGES/messages.mo,sha256=cQStjqXajNw1Ad5Fjb2m_cKq1SPB1zReBt7HdxMZCLo,760
189
- invenio_vocabularies/translations/lt/LC_MESSAGES/messages.po,sha256=aruOyEqZA1OoCp7ZiwEH49eVgCI7o5wqHq0FL1hURCo,4254
190
- invenio_vocabularies/translations/no/LC_MESSAGES/messages.mo,sha256=4eX4VRUg7iBfuPlVlHfwmHand8RwY8Su2EYd1zxG8z4,592
191
- invenio_vocabularies/translations/no/LC_MESSAGES/messages.po,sha256=iWeglKcK0M4r64vYbcdODdXcztgprrXLi8gSyPDwOck,4107
192
- invenio_vocabularies/translations/pl/LC_MESSAGES/messages.mo,sha256=UZlDDIpUmpQMZ7q5VEmNUgpiXmRh4zlScZYv3Z9TZ6Q,736
193
- invenio_vocabularies/translations/pl/LC_MESSAGES/messages.po,sha256=KYYjfWYKe_Vm1pD7ony7vz7QaRw2_c_T9dWXbcSdi_k,4251
194
- invenio_vocabularies/translations/pt/LC_MESSAGES/messages.mo,sha256=w9sQl2H_Ce11bK1i5qLwQ2Pu-ydTrGFw4DHf02BmxGM,645
195
- invenio_vocabularies/translations/pt/LC_MESSAGES/messages.po,sha256=Wy8lJtbm0hrE2KZIOR3SqeEtsosoSvBqgKFzvz1V92E,4160
196
- invenio_vocabularies/translations/ro/LC_MESSAGES/messages.mo,sha256=g63Q48CDqn7t9J7haPB-7n81G8QpbwEk0kUdmKgtfO4,631
197
- invenio_vocabularies/translations/ro/LC_MESSAGES/messages.po,sha256=5GUu6yHgH21pvZAwDaAjqtLrWzQ2xoG3_K1yA434mCY,4146
198
- invenio_vocabularies/translations/ru/LC_MESSAGES/messages.mo,sha256=BdTfVbPWy1S2ZCUcgmjwllKVo3O-A0L4lnah1UABQ1M,740
199
- invenio_vocabularies/translations/ru/LC_MESSAGES/messages.po,sha256=3WSi3rdkcUCqwJsGv45sdNqodYcDiZjT2svPf7_zvFc,4255
200
- invenio_vocabularies/translations/rw/LC_MESSAGES/messages.mo,sha256=qGaDJXvamn0Db0vZitImcZVOsvyK0GtTstcsP63dN2I,525
201
- invenio_vocabularies/translations/rw/LC_MESSAGES/messages.po,sha256=_xki09eMlKED1bVtLlorvHl8--zSbJOehXTCiFphYts,3978
202
- invenio_vocabularies/translations/sk/LC_MESSAGES/messages.mo,sha256=K6XNPTpGfOUXsle22ruHf17unZ-kkWcEBlr2COo8qvY,664
203
- invenio_vocabularies/translations/sk/LC_MESSAGES/messages.po,sha256=86t5LVNtmtOf79gDALQZoZDuucHEpxB6NMuE4ST0zTQ,4179
204
- invenio_vocabularies/translations/sv/LC_MESSAGES/messages.mo,sha256=yFwDziLljCMlXtO1Ii-mO8_-w_Yp5BqIay_uV_jKQ6w,2005
205
- invenio_vocabularies/translations/sv/LC_MESSAGES/messages.po,sha256=g5Pf1yermHsoMGEL0ELdWwnEohDJespP0xXBFZ8vKL8,4631
206
- invenio_vocabularies/translations/tr/LC_MESSAGES/messages.mo,sha256=_m5TF-s8mWPoIBpWvRoLc-Lj-0wqVc0lpZAoauKILW8,946
207
- invenio_vocabularies/translations/tr/LC_MESSAGES/messages.po,sha256=pf0PF8Vj4Xo3PA3MBW6FoXNP8D1FWe4yXwqdEQeYJWc,4280
208
- invenio_vocabularies/translations/uk/LC_MESSAGES/messages.mo,sha256=_pcpnP9WeOnie5-q_DdEs3nfAD64JfAbbrPnv63GR1g,745
209
- invenio_vocabularies/translations/uk/LC_MESSAGES/messages.po,sha256=6I3L3IZBEmcjiSt6-jM-mYM0n9bGXaj5EBQSGkizcJE,4198
210
- invenio_vocabularies/translations/zh_CN/LC_MESSAGES/messages.mo,sha256=IF-LD35IgrEuC370hhT9QflTi3lQD_FIcOa_hl0tStA,1797
211
- invenio_vocabularies/translations/zh_CN/LC_MESSAGES/messages.po,sha256=XceXdcx92xBt5B32Et0hkN38ljOv6gVOwmEUB0yNIhg,4629
212
- invenio_vocabularies/translations/zh_TW/LC_MESSAGES/messages.mo,sha256=pIpa2zc6nTflThi9T-YzpsR_Q-C5VROMQem2MqhspLQ,600
213
- invenio_vocabularies/translations/zh_TW/LC_MESSAGES/messages.po,sha256=bvzbWLrxeZCF8G9vKVxyeOOX42MHrG_5jgCvC2zfFlg,4115
214
- invenio_vocabularies-1.2.0.dist-info/AUTHORS.rst,sha256=8d0p_WWE1r9DavvzMDi2D4YIGBHiMYcN3LYxqQOj8sY,291
215
- invenio_vocabularies-1.2.0.dist-info/LICENSE,sha256=UvI8pR8jGWqe0sTkb_hRG6eIrozzWwWzyCGEpuXX4KE,1062
216
- invenio_vocabularies-1.2.0.dist-info/METADATA,sha256=Dn7ayM_g9vKWiz8eOlqcHlhdGVfzD-pNltJuBlMMU1I,4153
217
- invenio_vocabularies-1.2.0.dist-info/WHEEL,sha256=a-zpFRIJzOq5QfuhBzbhiA1eHTzNCJn8OdRvhdNX0Rk,110
218
- invenio_vocabularies-1.2.0.dist-info/entry_points.txt,sha256=Hsfipoet7fyRB6Z-L9-QTUz_epDNGPe2iYrRH0mIywk,2225
219
- invenio_vocabularies-1.2.0.dist-info/top_level.txt,sha256=x1gRNbaODF_bCD0SBLM3nVOFPGi06cmGX5X94WKrFKk,21
220
- invenio_vocabularies-1.2.0.dist-info/RECORD,,