cgspace-notes/content/posts/2024-02.md

2.0 KiB

title date author categories
February, 2024 2024-01-05T11:10:00+03:00 Alan Orth
Notes

2024-02-05

dspace=# BEGIN;
BEGIN
dspace=*# UPDATE metadatavalue SET text_value=LOWER(text_value) WHERE dspace_object_id IN (SELECT uuid FROM item) AND metadata_field_id=187 AND text_value ~ '[[:upper:]]';
UPDATE 180
dspace=*# COMMIT;
COMMIT

2024-02-06

  • Discuss IWMI using the CGSpace REST API for their new website
  • Export the IWMI community to extract their ORCID identifiers:
$ dspace metadata-export -i 10568/16814 -f /tmp/iwmi.csv
$ csvcut -c 'cg.creator.identifier,cg.creator.identifier[en_US]' ~/Downloads/2024-02-06-iwmi.csv \
  | grep -oE '[A-Z0-9]{4}-[A-Z0-9]{4}-[A-Z0-9]{4}-[A-Z0-9]{4}' \
  | sort -u \
  | tee /tmp/iwmi-orcids.txt \
  | wc -l
353
$ ./ilri/resolve_orcids.py -i /tmp/iwmi-orcids.txt -o /tmp/iwmi-orcids-names.csv -d
  • I noticed some similar looking names in our list so I clustered them in OpenRefine and manually checked a dozen or so to update our list

2024-02-07

  • Maria asked me about the "missing" item from last week again
    • I can see it when I used the Admin search, but not in her workflow
    • It was submitted by TIP so I checked that user's workspace and found it there
    • After depositing, it went into the workflow so Maria should be able to see it now

2024-02-09

  • Minor edits to CGSpace submission form
  • Upload 55 ISNAR book chapters to CGSpace from Peter

2024-02-19

2024-02-20

  • Minor work on OpenRXV to fix a bug in the ng-select drop downs
  • Minor work on the DSpace 7 nginx configuration to allow requesting robots.txt and sitemaps without hitting rate limits