Add notes for 2021-01-24

This commit is contained in:
2021-01-24 17:40:56 +02:00
parent a472a2389f
commit dbc05b2004
26 changed files with 101 additions and 34 deletions

View File

@ -290,4 +290,27 @@ $ docker exec -it api /bin/bash
- A little bit more work on the CG Core v2 migration in CGSpace
- I updated the `migrate-fields.sh` script for DSpace 6 and created all the new fields in my test instance
## 2021-01-24
- Abenet mentioned that Alan Duncan could not find one of his items on AReS, but it is on CGSpace
- The item is: https://hdl.handle.net/10568/110133
- The handle does not appear on AReS when I try to filter by Handle
- I suspect it is related to the issue of the missing Livestock CRP community and I added a comment on [the GitHub issue](https://github.com/ilri/OpenRXV/issues/62)
- Import fifteen items to CGSpace for Peter after doing a brief check in OpenRefine and csv-metadata-quality
- Ben Hack asked me why I'm still using the default favicon on CGSpace
- I used an [SVG version of the CGIAR logo](https://commons.wikimedia.org/wiki/File:CGIAR-logo.svg) with https://realfavicongenerator.net to to make a better favicon setup and it is currently running on DSpace Test
- Start a re-index on AReS
- First delete the old Elasticsearch temp index:
```console
$ curl -XDELETE 'http://localhost:9200/openrxv-items-temp'
# start indexing in AReS
```
- Resume working on CG Core v2, I realized a few things:
- We are trying to move from `dc.identifier.issn` (and ISBN) to `cg.issn`, but this is currently implemented as a "qualdrop" input in DSpace's submission form, which only works to fill in the qualifier (ie `dc.identier.xxxx`)
- If we really want to use `cg.issn` and `cg.isbn` we would need to add a new input field for each separately
- We are trying to move series name/number fro m`dc.relation.ispartofseries` to `dcterms.isPartOf`, but this uses a special "series" input type in DSpace's submission form that joins series name and number with a colon (;)
- If we really want to do that we need to add two separate input fields for each
<!-- vim: set sw=2 ts=2: -->