mirror of
https://github.com/alanorth/cgspace-notes.git
synced 2025-01-27 05:49:12 +01:00
Add notes for 2016-10
This commit is contained in:
@ -540,6 +540,11 @@ $ ./delete-metadata-values.py -i ilrisubjects-delete-13.csv -f cg.subject.ilri -
|
||||
- Add `cg.identifier.ciatproject` to metadata registry in preparation for CIAT project tag
|
||||
- Merge changes for CIAT project tag ([#282](https://github.com/ilri/DSpace/pull/282))
|
||||
- DSpace Test (linode02) became unresponsive for some reason, I had to hard reboot it from the Linode console
|
||||
- People on DSpace mailing list gave me a query to get authors from certain collections:
|
||||
|
||||
```
|
||||
dspacetest=# select distinct text_value from metadatavalue where metadata_field_id = (select metadata_field_id from metadatafieldregistry where element = 'contributor' and qualifier = 'author') AND resource_type_id = 2 AND resource_id IN (select item_id from collection2item where collection_id IN (select resource_id from handle where handle in ('10568/5472', '10568/5473')));
|
||||
```
|
||||
|
||||
## 2016-09-30
|
||||
|
||||
|
26
content/post/2016-10.md
Normal file
26
content/post/2016-10.md
Normal file
@ -0,0 +1,26 @@
|
||||
+++
|
||||
date = "2016-10-03T15:53:00+03:00"
|
||||
author = "Alan Orth"
|
||||
title = "October, 2016"
|
||||
tags = ["Notes"]
|
||||
|
||||
+++
|
||||
## 2016-10-03
|
||||
|
||||
- Testing adding [ORCIDs to a CSV](https://wiki.duraspace.org/display/DSDOC5x/ORCID+Integration#ORCIDIntegration-EditingexistingitemsusingBatchCSVEditing) file for a single item to see if the author orders get messed up
|
||||
- Need to test the following scenarios to see how author order is affected:
|
||||
- ORCIDs only
|
||||
- ORCIDs plus normal authors
|
||||
- I exported a random item's metadata as CSV, deleted *all columns* except id and collection, and made a new coloum called `ORCID:dc.contributor.author` with the following random ORCIDs from the ORCID registry:
|
||||
|
||||
```
|
||||
0000-0002-6115-0956||0000-0002-3812-8793||0000-0001-7462-405X
|
||||
```
|
||||
|
||||
- Hmm, with the `dc.contributor.author` column removed, DSpace doesn't detect any changes
|
||||
- With a blank `dc.contributor.author` column, DSpace wants to remove all non-ORCID authors and add the new ORCID authors
|
||||
- I added the [disclaimer text](https://github.com/ilri/DSpace/issues/234) to the About page, then added a footer link to the disclaimer's ID, but there is a Bootstrap issue that causes the page content to disappear when using in-page anchors: https://github.com/twbs/bootstrap/issues/1768
|
||||
|
||||

|
||||
|
||||
- Looks like we'll just have to add the text to the About page (without a link) or add a separate page
|
Reference in New Issue
Block a user