mirror of
https://github.com/alanorth/cgspace-notes.git
synced 2025-01-27 05:49:12 +01:00
Add notes for 2018-01-22
This commit is contained in:
@ -971,3 +971,25 @@ $ docker exec dspace_db vacuumdb -U postgres dspace
|
||||
$ docker cp ~/src/git/DSpace/dspace/etc/postgres/update-sequences.sql dspace_db:/tmp
|
||||
$ docker exec dspace_db psql -U dspace -f /tmp/update-sequences.sql dspace
|
||||
```
|
||||
|
||||
## 2018-01-22
|
||||
|
||||
- Look over Udana's CSV of 25 WLE records from last week
|
||||
- I sent him some corrections:
|
||||
- The file encoding is Windows-1252
|
||||
- There were whitespace issues in the dc.identifier.citation field (spaces at the beginning and end, and multiple spaces in between some words)
|
||||
- Also, the authors listed in the citation need to be in normal format, separated by commas or colons (however you prefer), not with ||
|
||||
- There were spaces in the beginning and end of some cg.identifier.doi fields
|
||||
- Make sure that the cg.coverage.countries field is just countries: ie, no "SOUTH ETHIOPIA" or "EAST AFRICA" (the first should just be ETHIOPIA, the second should be in cg.coverage.region instead)
|
||||
- The current list of regions we use is here: https://github.com/ilri/DSpace/blob/5_x-prod/dspace/config/input-forms.xml#L5162
|
||||
- You have a syntax error in your cg.coverage.regions (extra ||)
|
||||
- The value of dc.identifier.issn should just be the ISSN but you have: eISSN: 1479-487X
|
||||
- I wrote a quick Python script to use the DSpace REST API to find all collections under a given community
|
||||
- The source code is here: [rest-find-collections.py](https://gist.github.com/alanorth/ddd7f555f0e487fe0e9d3eb4ff26ce50)
|
||||
- Peter had said that found a bunch of ILRI collections that were called "untitled", but I don't see any:
|
||||
|
||||
```
|
||||
$ ./rest-find-collections.py 10568/1 | wc -l
|
||||
308
|
||||
$ ./rest-find-collections.py 10568/1 | grep -i untitled
|
||||
```
|
||||
|
Reference in New Issue
Block a user