Update notes for 2019-05-16

This commit is contained in:
2019-05-16 18:26:49 +03:00
parent 231ae64633
commit 856084655e
3 changed files with 36 additions and 8 deletions

View File

@ -352,4 +352,16 @@ $ cat dspace.log.2019-05-11 | grep -E 'ip_addr=(100.26.206.188|100.27.19.233|107
- Finally fix the AReS v2 to work via DSpace Test and send it to Peter et al to give their feedback
- We had issues with CORS due to Moayad using a hard-coded domain name rather than a relative URL
## 2019-05-16
- Export a list of all investors (`dc.description.sponsorship`) for Peter to look through and correct:
```
dspace=# \COPY (SELECT DISTINCT text_value, count(*) FROM metadatavalue WHERE resource_type_id = 2 AND metadata_field_id = 29 GROUP BY text_value ORDER BY count DESC LIMIT 1500) to /tmp/2019-05-16-investors.csv WITH CSV HEADER;
COPY 995
```
- Fork the [ICARDA AReS v1 repository](https://github.com/icarda-git/AReS) to [ILRI's GitHub](https://github.com/ilri/AReS) and give access to CodeObia guys
- The plan is that we develop the v2 code here
<!-- vim: set sw=2 ts=2: -->