mirror of
https://github.com/alanorth/cgspace-notes.git
synced 2025-01-27 05:49:12 +01:00
Update theme submodule and regenerate public
This commit is contained in:
@ -477,3 +477,34 @@ OCSP Response Data:
|
||||
```
|
||||
|
||||
- I've been monitoring this for almost two years in this GitHub issue: https://github.com/ilri/DSpace/issues/38
|
||||
|
||||
## 2016-09-27
|
||||
|
||||
- Discuss fixing some ORCIDs for CCAFS author Sonja Vermeulen with Magdalena Haman
|
||||
- This author has a few variations:
|
||||
|
||||
```
|
||||
dspacetest=# select distinct text_value, authority, confidence from metadatavalue where metadata_field_id=3 and resource_type_id=2 and text_value like 'Vermeu
|
||||
len, S%';
|
||||
```
|
||||
|
||||
- And it looks like `fe4b719f-6cc4-4d65-8504-7a83130b9f83` is the authority with the correct ORCID linked
|
||||
|
||||
```
|
||||
dspacetest=# update metadatavalue set authority='fe4b719f-6cc4-4d65-8504-7a83130b9f83w', confidence=600 where metadata_field_id=3 and resource_type_id=2 and text_value like 'Vermeulen, S%';
|
||||
UPDATE 101
|
||||
```
|
||||
|
||||
- Hmm, now her name is missing from the authors facet and only shows the authority ID
|
||||
- On the production server there is an item with her ORCID but it is using a different authority: f01f7b7b-be3f-4df7-a61d-b73c067de88d
|
||||
- Maybe I used the wrong one... I need to look again at the production database
|
||||
- On a clean snapshot of the database I see the correct authority should be `f01f7b7b-be3f-4df7-a61d-b73c067de88d`, not `fe4b719f-6cc4-4d65-8504-7a83130b9f83`
|
||||
- Updating her authorities again and reindexing:
|
||||
|
||||
```
|
||||
dspacetest=# update metadatavalue set authority='f01f7b7b-be3f-4df7-a61d-b73c067de88d', confidence=600 where metadata_field_id=3 and resource_type_id=2 and text_value like 'Vermeulen, S%';
|
||||
UPDATE 101
|
||||
```
|
||||
|
||||
- Use GitHub icon from Font Awesome instead of a PNG to save one extra network request
|
||||
- Fix reference to `dc.type.*` in Atmire CUA module, as we now only index `dc.type` for "Output type"
|
||||
|
Reference in New Issue
Block a user