mirror of
https://github.com/alanorth/cgspace-notes.git
synced 2024-11-22 14:45:03 +01:00
Add notes for 2018-01-22
This commit is contained in:
parent
9ba5c15cf9
commit
ae90d6bd0e
@ -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 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
|
$ 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
|
||||||
|
```
|
||||||
|
@ -92,7 +92,7 @@ Danny wrote to ask for help renewing the wildcard ilri.org certificate and I adv
|
|||||||
|
|
||||||
<meta property="article:published_time" content="2018-01-02T08:35:54-08:00"/>
|
<meta property="article:published_time" content="2018-01-02T08:35:54-08:00"/>
|
||||||
|
|
||||||
<meta property="article:modified_time" content="2018-01-20T10:44:30+02:00"/>
|
<meta property="article:modified_time" content="2018-01-20T11:15:07+02:00"/>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@ -194,9 +194,9 @@ Danny wrote to ask for help renewing the wildcard ilri.org certificate and I adv
|
|||||||
"@type": "BlogPosting",
|
"@type": "BlogPosting",
|
||||||
"headline": "January, 2018",
|
"headline": "January, 2018",
|
||||||
"url": "https://alanorth.github.io/cgspace-notes/2018-01/",
|
"url": "https://alanorth.github.io/cgspace-notes/2018-01/",
|
||||||
"wordCount": "5329",
|
"wordCount": "5530",
|
||||||
"datePublished": "2018-01-02T08:35:54-08:00",
|
"datePublished": "2018-01-02T08:35:54-08:00",
|
||||||
"dateModified": "2018-01-20T10:44:30+02:00",
|
"dateModified": "2018-01-20T11:15:07+02:00",
|
||||||
"author": {
|
"author": {
|
||||||
"@type": "Person",
|
"@type": "Person",
|
||||||
"name": "Alan Orth"
|
"name": "Alan Orth"
|
||||||
@ -1330,6 +1330,32 @@ $ docker cp ~/src/git/DSpace/dspace/etc/postgres/update-sequences.sql dspace_db:
|
|||||||
$ docker exec dspace_db psql -U dspace -f /tmp/update-sequences.sql dspace
|
$ docker exec dspace_db psql -U dspace -f /tmp/update-sequences.sql dspace
|
||||||
</code></pre>
|
</code></pre>
|
||||||
|
|
||||||
|
<h2 id="2018-01-22">2018-01-22</h2>
|
||||||
|
|
||||||
|
<ul>
|
||||||
|
<li>Look over Udana’s CSV of 25 WLE records from last week</li>
|
||||||
|
<li>I sent him some corrections:
|
||||||
|
|
||||||
|
<ul>
|
||||||
|
<li>The file encoding is Windows-1252</li>
|
||||||
|
<li>There were whitespace issues in the dc.identifier.citation field (spaces at the beginning and end, and multiple spaces in between some words)</li>
|
||||||
|
<li>Also, the authors listed in the citation need to be in normal format, separated by commas or colons (however you prefer), not with ||</li>
|
||||||
|
<li>There were spaces in the beginning and end of some cg.identifier.doi fields</li>
|
||||||
|
<li>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)</li>
|
||||||
|
<li>The current list of regions we use is here: <a href="https://github.com/ilri/DSpace/blob/5_x-prod/dspace/config/input-forms.xml#L5162">https://github.com/ilri/DSpace/blob/5_x-prod/dspace/config/input-forms.xml#L5162</a></li>
|
||||||
|
<li>You have a syntax error in your cg.coverage.regions (extra ||)</li>
|
||||||
|
<li>The value of dc.identifier.issn should just be the ISSN but you have: eISSN: 1479-487X</li>
|
||||||
|
</ul></li>
|
||||||
|
<li>I wrote a quick Python script to use the DSpace REST API to find all collections under a given community</li>
|
||||||
|
<li>The source code is here: <a href="https://gist.github.com/alanorth/ddd7f555f0e487fe0e9d3eb4ff26ce50">rest-find-collections.py</a></li>
|
||||||
|
<li>Peter had said that found a bunch of ILRI collections that were called “untitled”, but I don’t see any:</li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<pre><code>$ ./rest-find-collections.py 10568/1 | wc -l
|
||||||
|
308
|
||||||
|
$ ./rest-find-collections.py 10568/1 | grep -i untitled
|
||||||
|
</code></pre>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -31,7 +31,7 @@ Disallow: /cgspace-notes/2015-12/
|
|||||||
Disallow: /cgspace-notes/2015-11/
|
Disallow: /cgspace-notes/2015-11/
|
||||||
Disallow: /cgspace-notes/
|
Disallow: /cgspace-notes/
|
||||||
Disallow: /cgspace-notes/categories/
|
Disallow: /cgspace-notes/categories/
|
||||||
Disallow: /cgspace-notes/categories/notes/
|
|
||||||
Disallow: /cgspace-notes/tags/notes/
|
Disallow: /cgspace-notes/tags/notes/
|
||||||
|
Disallow: /cgspace-notes/categories/notes/
|
||||||
Disallow: /cgspace-notes/post/
|
Disallow: /cgspace-notes/post/
|
||||||
Disallow: /cgspace-notes/tags/
|
Disallow: /cgspace-notes/tags/
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
|
|
||||||
<url>
|
<url>
|
||||||
<loc>https://alanorth.github.io/cgspace-notes/2018-01/</loc>
|
<loc>https://alanorth.github.io/cgspace-notes/2018-01/</loc>
|
||||||
<lastmod>2018-01-20T10:44:30+02:00</lastmod>
|
<lastmod>2018-01-20T11:15:07+02:00</lastmod>
|
||||||
</url>
|
</url>
|
||||||
|
|
||||||
<url>
|
<url>
|
||||||
@ -144,7 +144,7 @@
|
|||||||
|
|
||||||
<url>
|
<url>
|
||||||
<loc>https://alanorth.github.io/cgspace-notes/</loc>
|
<loc>https://alanorth.github.io/cgspace-notes/</loc>
|
||||||
<lastmod>2018-01-20T10:44:30+02:00</lastmod>
|
<lastmod>2018-01-20T11:15:07+02:00</lastmod>
|
||||||
<priority>0</priority>
|
<priority>0</priority>
|
||||||
</url>
|
</url>
|
||||||
|
|
||||||
@ -153,27 +153,27 @@
|
|||||||
<priority>0</priority>
|
<priority>0</priority>
|
||||||
</url>
|
</url>
|
||||||
|
|
||||||
|
<url>
|
||||||
|
<loc>https://alanorth.github.io/cgspace-notes/tags/notes/</loc>
|
||||||
|
<lastmod>2018-01-20T11:15:07+02:00</lastmod>
|
||||||
|
<priority>0</priority>
|
||||||
|
</url>
|
||||||
|
|
||||||
<url>
|
<url>
|
||||||
<loc>https://alanorth.github.io/cgspace-notes/categories/notes/</loc>
|
<loc>https://alanorth.github.io/cgspace-notes/categories/notes/</loc>
|
||||||
<lastmod>2017-09-28T12:00:49+03:00</lastmod>
|
<lastmod>2017-09-28T12:00:49+03:00</lastmod>
|
||||||
<priority>0</priority>
|
<priority>0</priority>
|
||||||
</url>
|
</url>
|
||||||
|
|
||||||
<url>
|
|
||||||
<loc>https://alanorth.github.io/cgspace-notes/tags/notes/</loc>
|
|
||||||
<lastmod>2018-01-20T10:44:30+02:00</lastmod>
|
|
||||||
<priority>0</priority>
|
|
||||||
</url>
|
|
||||||
|
|
||||||
<url>
|
<url>
|
||||||
<loc>https://alanorth.github.io/cgspace-notes/post/</loc>
|
<loc>https://alanorth.github.io/cgspace-notes/post/</loc>
|
||||||
<lastmod>2018-01-20T10:44:30+02:00</lastmod>
|
<lastmod>2018-01-20T11:15:07+02:00</lastmod>
|
||||||
<priority>0</priority>
|
<priority>0</priority>
|
||||||
</url>
|
</url>
|
||||||
|
|
||||||
<url>
|
<url>
|
||||||
<loc>https://alanorth.github.io/cgspace-notes/tags/</loc>
|
<loc>https://alanorth.github.io/cgspace-notes/tags/</loc>
|
||||||
<lastmod>2018-01-20T10:44:30+02:00</lastmod>
|
<lastmod>2018-01-20T11:15:07+02:00</lastmod>
|
||||||
<priority>0</priority>
|
<priority>0</priority>
|
||||||
</url>
|
</url>
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user