Update notes for 2020-01-28

This commit is contained in:
2020-01-28 17:37:27 +02:00
parent 914646453a
commit 13f4d47ed8
2 changed files with 54 additions and 1 deletions

View File

@ -301,4 +301,27 @@ org.dspace.discovery.SearchServiceException: org.apache.solr.search.SyntaxError:
- I made a [pull request](https://github.com/ilri/DSpace/pull/443) and merged it to the `5_x-prod` branch and will deploy on CGSpace later tonight
- I am curious if anyone on the dspace-tech mailing list has run into this, so I will try to send a message about this there when I get a chance
## 2020-01-28
- Generate a list of CIP subjects for Abenet:
```
dspace=# \COPY (SELECT DISTINCT text_value as "cg.subject.cip", count(*) FROM metadatavalue WHERE resource_type_id = 2 AND metadata_field_id = 127 GROUP BY text_value ORDER BY count DESC) to /tmp/2020-01-28-cip-subjects.csv WITH CSV HEADER;
COPY 77
```
- Start looking over the IITA records from earlier this month ([IITA_201907_Jan13](https://dspacetest.cgiar.org/handle/10568/106567))
- Delete one duplicate, map one item from ILRI community
- The following items are duplicates or something (there is not enough metadata to tell for sure):
- https://dspacetest.cgiar.org/handle/10568/106682
- https://dspacetest.cgiar.org/handle/10568/106653
- https://dspacetest.cgiar.org/handle/10568/106694
- This item doesn't exist in the journal, and Weed Science volume 55 was published in 2007, not 2003:
- https://dspacetest.cgiar.org/handle/10568/106665
- All items using `cg.journal.title` instead of `dc.source`
- Several items were missing ISSN despite having a journal title
- Many items were missing DOIs, abstracts, etc
- I did some metadata enrichment by searching for the items and copying relevant data from journal pages
- I asked Bosede to try to do the same for the rest of the journal articles
<!-- vim: set sw=2 ts=2: -->