mirror of
https://github.com/alanorth/cgspace-notes.git
synced 2025-01-27 05:49:12 +01:00
Update notes for 2016-04-12
This commit is contained in:
@ -127,3 +127,22 @@ dspacetest=# select text_value, count(*) from metadatavalue where metadata_field
|
||||
- Listings and Reports is still not returning reliable data for `dc.type`
|
||||
- I think we need to ask Atmire, as their documentation isn't too clear on the format of the filter configs
|
||||
- Alternatively, I want to see if I move all the data from `dc.type.output` to `dc.type` and then re-index, if it behaves better
|
||||
- Looking at our `input-forms.xml` I see we have two sets of ILRI subjects, but one has a few extra subjects
|
||||
- Remove one set of ILRI subjects and remove duplicate `VALUE CHAINS` from existing list ([#216](https://github.com/ilri/DSpace/pull/216))
|
||||
- I decided to keep the set of subjects that had `FMD` and `RANGELANDS` added, as it appears to have been requested to have been added, and might be the newer list
|
||||
- I found 226 blank metadatavalues:
|
||||
|
||||
```
|
||||
dspacetest# select * from metadatavalue where resource_type_id=2 and text_value='';
|
||||
```
|
||||
|
||||
- I think we should delete them and do a full re-index:
|
||||
|
||||
```
|
||||
dspacetest=# delete from metadatavalue where resource_type_id=2 and text_value='';
|
||||
DELETE 226
|
||||
```
|
||||
|
||||
- In other news, moving the `dc.type.output` to `dc.type` and re-indexing seems to have fixed the Listings and Reports issue from above
|
||||
- Unfortunately this isn't a very good solution, because Listings and Reports config should allow us to filter on `dc.type.*` but the documentation isn't very clear and I couldn't reach Atmire today
|
||||
- We want to do the `dc.type.output` move on CGSpace anyways, but we should wait as it might affect other external people!
|
||||
|
Reference in New Issue
Block a user