Update notes for 2019-12-18

This commit is contained in:
2019-12-18 16:00:15 +02:00
parent 8622776049
commit 23ba9d8e06
3 changed files with 47 additions and 9 deletions

View File

@ -149,4 +149,22 @@ $ ./fix-metadata-values.py -i /tmp/2019-12-17-investors-fix-112.csv -db dspace -
$ ./delete-metadata-values.py -i /tmp/2019-12-17-investors-delete-68.csv -db dspace -u dspace -p 'fuuu' -m 29 -f dc.description.sponsorship -d
```
- Peter asked about the "Open Government Licence 3.0" that is used by [some items]()
- I notice that it [exists in SPDX as `UGL-UK-3.0`](https://spdx.org/licenses/OGL-UK-3.0.html) so I created a GitHub issue to add this to our controlled vocabulary ([#439](https://github.com/ilri/DSpace/issues/439))
- I only see two in our database that use this for now, so I will update them:
```
dspace=# SELECT text_value FROM metadatavalue WHERE resource_type_id=2 AND metadata_field_id=53 AND text_value LIKE '%Open%';
text_value
-----------------------------
Open Government License 3.0
Open Government License 3.0
(2 rows)
dspace=# UPDATE metadatavalue SET text_value='OGL-UK-3.0' WHERE resource_type_id=2 AND metadata_field_id=53 AND text_value LIKE '%Open Government License 3.0%';
UPDATE 2
```
- I created a pull request to add the license and merged it to the `5_x-prod` branch ([#440](https://github.com/ilri/DSpace/pull/440))
- Add three new CCAFS Phase II project tags to CGSpace ([#441](https://github.com/ilri/DSpace/pull/441))
<!-- vim: set sw=2 ts=2: -->