Update notes for 2018-10-22

This commit is contained in:
2018-10-22 18:02:19 +03:00
parent 78f29fed98
commit 5287057254
3 changed files with 23 additions and 8 deletions

View File

@ -502,5 +502,13 @@ dspace=# UPDATE metadatavalue SET text_value=replace(text_value, 'http://', 'htt
- While I was doing that I found two items using CGSpace URLs instead of handles in their `dc.identifier.uri` so I corrected those
- I also found several items that had invalid characters or multiple Handles in some related URL field like `cg.link.reference` so I corrected those too
- Improve the usage rights on the submission form by adding a default selection with no value as well as a better hint to look for the CC license on the publisher page or in the PDF ([#398](https://github.com/ilri/DSpace/pull/398))
- I deployed the changes on CGSpace, ran all system updates, and rebooted the server
- Also, I updated all Handles in the database to use HTTPS:
```
dspace=# UPDATE metadatavalue SET text_value=replace(text_value, 'http://', 'https://') WHERE resource_type_id=2 AND text_value LIKE 'http://hdl.handle.net%';
UPDATE 76608
```
<!-- vim: set sw=2 ts=2: -->