mirror of
https://github.com/alanorth/cgspace-notes.git
synced 2025-01-27 05:49:12 +01:00
Add notes for 2021-08-25
This commit is contained in:
@ -355,4 +355,66 @@ $ curl -X POST 'https://cgspace.cgiar.org/explorer/api/search/scroll/DXF1ZXJ5QW5
|
||||
- I improved the quality of the "no thumbnail" placeholder image on AReS: https://github.com/ilri/OpenRXV/pull/114
|
||||
- I sent some feedback to some ILRI and CCAFS colleagues about how to use better thumbnails for publications
|
||||
|
||||
## 2021-08-24
|
||||
|
||||
- In the last few days I did a lot of work on OpenRXV
|
||||
- I started exploring the Angular 9.0 to 9.1 update
|
||||
- I tested some updates to dependencies for Angular 9 that we somehow missed, like @tinymce/tinymce-angular, @nicky-lenaers/ngx-scroll-to, and @ng-select/ng-select
|
||||
- I changed the default target from ES5 to ES2015 because ES5 was released in 2009 and the only thing we lose by moving to ES2015 is IE11 support
|
||||
- I fixed a handful of issues in the Docker build and deployment process
|
||||
- I started exploring changing the Docker configuration from using volumes to `COPY` instructions in the `Dockerfile` because we are having sporadic issues with permissions in containers caused by copying the host's frontend/backend directories and not being able to write to them
|
||||
- I tested moving from node-sass to sass, as it has been [supported since Angular 8 apparently](https://blog.ninja-squad.com/2019/05/29/angular-cli-8.0/) and will allow us to avoid stupid node-gyp issues
|
||||
|
||||
## 2021-08-25
|
||||
|
||||
- I did a bunch of tests of the OpenRXV Angular 9.1 update and merged it to master ([#115](https://github.com/ilri/OpenRXV/pull/115))
|
||||
- Last week Maria Garruccio sent me a handful of new ORCID identifiers for Bioversity staff
|
||||
- We currently have 1320 unique identifiers, so this adds eleven new ones:
|
||||
|
||||
```console
|
||||
$ cat ~/src/git/DSpace/dspace/config/controlled-vocabularies/cg-creator-identifier.xml /tmp/bioversity-orcids.txt | grep -oE '[A-Z0-9]{4}-[A-Z0-9]{4}-[A-Z0-9]{4}-[A-Z0-9]{4}' | sort | uniq > /tmp/2021-08-25-combined-orcids.txt
|
||||
$ wc -l /tmp/2021-08-25-combined-orcids.txt
|
||||
1331
|
||||
```
|
||||
|
||||
- After I combined them and removed duplicates, I resolved all the names using my `resolve-orcids.py` script:
|
||||
|
||||
```console
|
||||
$ ./ilri/resolve-orcids.py -i /tmp/2021-08-25-combined-orcids.txt -o /tmp/2021-08-25-combined-orcids-names.txt
|
||||
```
|
||||
|
||||
- Tag existing items from the Alliance's new authors with ORCID iDs using `add-orcid-identifiers-csv.py` (181 new metadata fields added):
|
||||
|
||||
```console
|
||||
$ cat 2021-08-25-add-orcids.csv
|
||||
dc.contributor.author,cg.creator.identifier
|
||||
"Chege, Christine G. Kiria","Christine G.Kiria Chege: 0000-0001-8360-0279"
|
||||
"Chege, Christine Kiria","Christine G.Kiria Chege: 0000-0001-8360-0279"
|
||||
"Kiria, C.","Christine G.Kiria Chege: 0000-0001-8360-0279"
|
||||
"Kinyua, Ivy","Ivy Kinyua :0000-0002-1978-8833"
|
||||
"Rahn, E.","Eric Rahn: 0000-0001-6280-7430"
|
||||
"Rahn, Eric","Eric Rahn: 0000-0001-6280-7430"
|
||||
"Jager M.","Matthias Jager: 0000-0003-1059-3949"
|
||||
"Jager, M.","Matthias Jager: 0000-0003-1059-3949"
|
||||
"Jager, Matthias","Matthias Jager: 0000-0003-1059-3949"
|
||||
"Waswa, Boaz","Boaz Waswa: 0000-0002-0066-0215"
|
||||
"Waswa, Boaz S.","Boaz Waswa: 0000-0002-0066-0215"
|
||||
"Rivera, Tatiana","Tatiana Rivera: 0000-0003-4876-5873"
|
||||
"Andrade, Robert","Robert Andrade: 0000-0002-5764-3854"
|
||||
"Ceccarelli, Viviana","Viviana Ceccarelli: 0000-0003-2160-9483"
|
||||
"Ceccarellia, Viviana","Viviana Ceccarelli: 0000-0003-2160-9483"
|
||||
"Nyawira, Sylvia","Sylvia Sarah Nyawira: 0000-0003-4913-1389"
|
||||
"Nyawira, Sylvia S.","Sylvia Sarah Nyawira: 0000-0003-4913-1389"
|
||||
"Nyawira, Sylvia Sarah","Sylvia Sarah Nyawira: 0000-0003-4913-1389"
|
||||
"Groot, J.C.","Groot, J.C.J.: 0000-0001-6516-5170"
|
||||
"Groot, J.C.J.","Groot, J.C.J.: 0000-0001-6516-5170"
|
||||
"Groot, Jeroen C.J.","Groot, J.C.J.: 0000-0001-6516-5170"
|
||||
"Groot, Jeroen CJ","Groot, J.C.J.: 0000-0001-6516-5170"
|
||||
"Abera, W.","Wuletawu Abera: 0000-0002-3657-5223"
|
||||
"Abera, Wuletawu","Wuletawu Abera: 0000-0002-3657-5223"
|
||||
"Kanyenga Lubobo, Antoine","Antoine Lubobo Kanyenga: 0000-0003-0806-9304"
|
||||
"Lubobo Antoine, Kanyenga","Antoine Lubobo Kanyenga: 0000-0003-0806-9304"
|
||||
$ ./ilri/add-orcid-identifiers-csv.py -i 2021-08-25-add-orcids.csv -db dspace -u dspace -p 'fuuu'
|
||||
```
|
||||
|
||||
<!-- v[im: set sw=2 ts=2: -->
|
||||
|
Reference in New Issue
Block a user