Add notes for 2019-12-08

This commit is contained in:
2019-12-08 16:03:19 +02:00
parent 55255a6122
commit d2156110e4
85 changed files with 141 additions and 85 deletions

View File

@ -75,4 +75,29 @@ $ http 'https://dspacetest.cgiar.org/oai/request?verb=GetRecord&metadataPrefix=o
- The DSpace Test ones actually now capture the DOI, where the CGSpace doesn't...
- And the DSpace Test one doesn't include review status as `dc.description`, but I don't think that's an important field
## 2019-12-04
- Peter noticed that there were about seventy items on CGSpace that were marked as private
- Some have been withdrawn, but I extracted a list of the forty-eight that were not:
```
dspace=# \COPY (SELECT handle, owning_collection FROM item, handle WHERE item.discoverable='f' AND item.in_archive='t' AND handle.resource_id = item.item_id) to /tmp/2019-12-04-CGSpace-private-items.csv WITH CSV HEADER;
COPY 48
```
## 2019-12-05
- Give [presentation about CG Core v2](https://hdl.handle.net/10568/106045) to the MEL Developers' Retreat in Nairobi, Kenya (via Skype)
- Send some pull requests to the cg-core schema repository:
- [HTML syntax fixes](https://github.com/AgriculturalSemantics/cg-core/pull/16)
- [Add LICENSE file](https://github.com/AgriculturalSemantics/cg-core/pull/17)
- [Build main.css using npm build](https://github.com/AgriculturalSemantics/cg-core/pull/18)
## 2019-12-08
- Enrico noticed that the AReS Explorer on CGSpace (linode18) was down
- I only see HTTP 502 in the nginx logs on CGSpace... so I assume it's something wrong with the AReS server
- I ran all system updates on the AReS server (linode20) and rebooted it
- After rebooting the Explorer was accessible again
<!-- vim: set sw=2 ts=2: -->