Alan Orth
Alan Orth
> ORCID iDs that are connected to a person entity profile via ORCID API/OAuth in DSpace 7x, are also not included in work metadata, but rather are just connected to...
@kosarko I'm embarrassed to say that we have a large controlled vocabulary with our ORCID identifiers: https://github.com/ilri/DSpace/blob/7_x-prod/dspace/config/controlled-vocabularies/cg-creator-identifier.xml It is presented as a popup in our submission form: https://github.com/ilri/DSpace/blob/7_x-prod/dspace/config/submission-forms.xml#L107-L117 And we...
I've done a rudimentary implementation of this in a field component: src/app/item-page/simple/field-components/specific-field/altmetric/item-page-altmetric-field.component.ts ```typescript import { Component, Input, AfterViewInit } from '@angular/core'; import { Item } from '../../../../../core/shared/item.model'; import { ItemPageFieldComponent...
@sergius02 yes I've seen the same. I think it's because this method imports the Altmetric JavaScript and writes to the DOM _after_ Angular has finished loading and saving the cached...
You're welcome, @sergius02. I am new to Angular so this was the best I could come up with. I thought I would share to help other people come up with...
Thanks @jensvannerum. I tested this on localhost with DSpace 7.6.2-SNAPSHOT (note that the frontend must be built in production mode) and it works. I checked a variety of URLs that...
Hmmmm this also works: ```console $ sed -i 's/python/python3/' Makefile $ make ```
Yes, I just ran into this issue as well. After copying the `untyped-item` component from the custom theme into my own theme I did the following: - Added the `import...
Hi, which Congo and why do you want to change it? :) The officially recognized names are: - Congo (Alpha 3 code `COG`) - Democratic Republic of the Congo (Alpha...
Another incorrect fuzzy search match with "Saint-Martin": ``` In [1]: import pycountry In [2]: pycountry.countries.search_fuzzy("Saint Martin") Out[2]: [Country(alpha_2='MF', alpha_3='MAF', flag='🇲🇫', name='Saint Martin (French part)', numeric='663')] In [3]: pycountry.countries.search_fuzzy("Saint-Martin") Out[3]: [Country(alpha_2='FR',...