Add notes for 2018-10-11

This commit is contained in:
2018-10-11 09:32:54 +03:00
parent 8c3ed7bf09
commit c3db7680c2
3 changed files with 29 additions and 8 deletions

View File

@ -176,4 +176,14 @@ org.im4java.core.InfoException: org.im4java.core.CommandException: org.im4java.c
- I suppose I need to enable a workaround for this in Ansible?
- Also I note that for a few days the item views on DSpace Test are broken... I think Sisay must have been doing something
## 2018-10-11
- I emailed DuraSpace to update [our entry in their DSpace registry](https://duraspace.org/registry/entry/4188/?gvid=178) (the data was still on DSpace 3, JSPUI, etc)
- Generate a list of the top 1500 values for `dc.subject` so Sisay can start making a controlled vocabulary for it:
```
dspace=# \COPY (SELECT DISTINCT text_value, count(*) FROM metadatavalue WHERE metadata_field_id = 57 AND resource_type_id = 2 GROUP BY text_value ORDER BY count DESC LIMIT 1500) to /tmp/2018-10-11-top-1500-subject.csv WITH CSV HEADER;
COPY 1500
```
<!-- vim: set sw=2 ts=2: -->