Update notes for 2020-12-16

This commit is contained in:
2020-12-16 12:08:00 +02:00
parent 2f1709ca83
commit 29fbe6555f
23 changed files with 49 additions and 28 deletions

View File

@ -469,5 +469,15 @@ $ curl -XDELETE 'http://localhost:9200/openrxv-items-temp?pretty'
- Interestingly [the item](https://hdl.handle.net/10568/110447) that we noticed was duplicated now only appears once
- The [missing item](https://hdl.handle.net/10568/110133) is still missing
- Jane Poole noticed that the "previous page" and "next page" buttons are not working on AReS
- I filed a bug on GitHub: https://github.com/ilri/OpenRXV/issues/65
- Generate a list of submitters and approvers active in the last months using the Provenance field on CGSpace:
```console
$ psql -h localhost -U postgres dspace -c "SELECT text_value FROM metadatavalue WHERE metadata_field_id=28 AND text_value ~ '^.*on 2020-(06|07|08|09|10|11|12)-*'" > /tmp/provenance.txt
$ grep -o -E 'by .*)' /tmp/provenance.txt | grep -v -E "( on |checksum)" | sed -e 's/by //' -e 's/ (/,/' -e 's/)//' | sort | uniq > /tmp/recent-submitters-approvers.csv
```
- Peter wanted it to send some mail to the users...
<!-- vim: set sw=2 ts=2: -->