mirror of
https://github.com/alanorth/cgspace-notes.git
synced 2024-12-23 13:34:32 +01:00
Update notes for 2019-05-08
This commit is contained in:
parent
bb929a4488
commit
a34c071939
@ -260,4 +260,36 @@ $ cat dspace.log.2019-05-01 | grep -E 'session_id=[A-Z0-9]{32}' | sort | uniq |
|
|||||||
- I send her the link to the collection RSS feed
|
- I send her the link to the collection RSS feed
|
||||||
- Add requests cache to `resolve-addresses.py` script
|
- Add requests cache to `resolve-addresses.py` script
|
||||||
|
|
||||||
|
## 2019-05-08
|
||||||
|
|
||||||
|
- A user said that CGSpace emails have stopped sending again
|
||||||
|
- Indeed, the `dspace test-email` script is showing an authentication failure:
|
||||||
|
|
||||||
|
```
|
||||||
|
$ dspace test-email
|
||||||
|
|
||||||
|
About to send test email:
|
||||||
|
- To: wooooo@cgiar.org
|
||||||
|
- Subject: DSpace test email
|
||||||
|
- Server: smtp.office365.com
|
||||||
|
|
||||||
|
Error sending email:
|
||||||
|
- Error: javax.mail.AuthenticationFailedException
|
||||||
|
|
||||||
|
Please see the DSpace documentation for assistance.
|
||||||
|
```
|
||||||
|
|
||||||
|
- I checked the settings and apparently I had updated it incorrectly last week after ICT reset the password
|
||||||
|
- Help Moayad with certbot-auto for Let's Encrypt scripts on the new AReS server (linode20)
|
||||||
|
- Normalize all `text_lang` values for metadata on CGSpace and DSpace Test (as I had tested last month):
|
||||||
|
|
||||||
|
```
|
||||||
|
UPDATE metadatavalue SET text_lang='en_US' WHERE resource_type_id=2 AND metadata_field_id != 28 AND text_lang IN ('ethnob', 'en', '*', 'E.', '');
|
||||||
|
UPDATE metadatavalue SET text_lang='en_US' WHERE resource_type_id=2 AND metadata_field_id != 28 AND text_lang IS NULL;
|
||||||
|
UPDATE metadatavalue SET text_lang='es_ES' WHERE resource_type_id=2 AND metadata_field_id != 28 AND text_lang IN ('es', 'spa');
|
||||||
|
```
|
||||||
|
|
||||||
|
- Send Francesca Giampieri from Bioversity a CSV export of all their items issued in 2018
|
||||||
|
- They will be doing a migration of 1500 items from their TYPO3 database into CGSpace soon and want an example CSV with all required metadata columns
|
||||||
|
|
||||||
<!-- vim: set sw=2 ts=2: -->
|
<!-- vim: set sw=2 ts=2: -->
|
||||||
|
@ -28,7 +28,7 @@ But after this I tried to delete the item from the XMLUI and it is still present
|
|||||||
<meta property="og:type" content="article" />
|
<meta property="og:type" content="article" />
|
||||||
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/2019-05/" />
|
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/2019-05/" />
|
||||||
<meta property="article:published_time" content="2019-05-01T07:37:43+03:00"/>
|
<meta property="article:published_time" content="2019-05-01T07:37:43+03:00"/>
|
||||||
<meta property="article:modified_time" content="2019-05-06T15:41:40+03:00"/>
|
<meta property="article:modified_time" content="2019-05-07T16:51:55+03:00"/>
|
||||||
|
|
||||||
<meta name="twitter:card" content="summary"/>
|
<meta name="twitter:card" content="summary"/>
|
||||||
<meta name="twitter:title" content="May, 2019"/>
|
<meta name="twitter:title" content="May, 2019"/>
|
||||||
@ -61,9 +61,9 @@ But after this I tried to delete the item from the XMLUI and it is still present
|
|||||||
"@type": "BlogPosting",
|
"@type": "BlogPosting",
|
||||||
"headline": "May, 2019",
|
"headline": "May, 2019",
|
||||||
"url": "https:\/\/alanorth.github.io\/cgspace-notes\/2019-05\/",
|
"url": "https:\/\/alanorth.github.io\/cgspace-notes\/2019-05\/",
|
||||||
"wordCount": "1783",
|
"wordCount": "1973",
|
||||||
"datePublished": "2019-05-01T07:37:43\x2b03:00",
|
"datePublished": "2019-05-01T07:37:43\x2b03:00",
|
||||||
"dateModified": "2019-05-06T15:41:40\x2b03:00",
|
"dateModified": "2019-05-07T16:51:55\x2b03:00",
|
||||||
"author": {
|
"author": {
|
||||||
"@type": "Person",
|
"@type": "Person",
|
||||||
"name": "Alan Orth"
|
"name": "Alan Orth"
|
||||||
@ -439,6 +439,46 @@ $ cat dspace.log.2019-05-01 | grep -E 'session_id=[A-Z0-9]{32}' | sort | uniq |
|
|||||||
<li>Add requests cache to <code>resolve-addresses.py</code> script</li>
|
<li>Add requests cache to <code>resolve-addresses.py</code> script</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
|
<h2 id="2019-05-08">2019-05-08</h2>
|
||||||
|
|
||||||
|
<ul>
|
||||||
|
<li><p>A user said that CGSpace emails have stopped sending again</p>
|
||||||
|
|
||||||
|
<ul>
|
||||||
|
<li><p>Indeed, the <code>dspace test-email</code> script is showing an authentication failure:</p>
|
||||||
|
|
||||||
|
<pre><code>$ dspace test-email
|
||||||
|
|
||||||
|
About to send test email:
|
||||||
|
- To: wooooo@cgiar.org
|
||||||
|
- Subject: DSpace test email
|
||||||
|
- Server: smtp.office365.com
|
||||||
|
|
||||||
|
Error sending email:
|
||||||
|
- Error: javax.mail.AuthenticationFailedException
|
||||||
|
|
||||||
|
Please see the DSpace documentation for assistance.
|
||||||
|
</code></pre></li>
|
||||||
|
</ul></li>
|
||||||
|
|
||||||
|
<li><p>I checked the settings and apparently I had updated it incorrectly last week after ICT reset the password</p></li>
|
||||||
|
|
||||||
|
<li><p>Help Moayad with certbot-auto for Let’s Encrypt scripts on the new AReS server (linode20)</p></li>
|
||||||
|
|
||||||
|
<li><p>Normalize all <code>text_lang</code> values for metadata on CGSpace and DSpace Test (as I had tested last month):</p>
|
||||||
|
|
||||||
|
<pre><code>UPDATE metadatavalue SET text_lang='en_US' WHERE resource_type_id=2 AND metadata_field_id != 28 AND text_lang IN ('ethnob', 'en', '*', 'E.', '');
|
||||||
|
UPDATE metadatavalue SET text_lang='en_US' WHERE resource_type_id=2 AND metadata_field_id != 28 AND text_lang IS NULL;
|
||||||
|
UPDATE metadatavalue SET text_lang='es_ES' WHERE resource_type_id=2 AND metadata_field_id != 28 AND text_lang IN ('es', 'spa');
|
||||||
|
</code></pre></li>
|
||||||
|
|
||||||
|
<li><p>Send Francesca Giampieri from Bioversity a CSV export of all their items issued in 2018</p>
|
||||||
|
|
||||||
|
<ul>
|
||||||
|
<li>They will be doing a migration of 1500 items from their TYPO3 database into CGSpace soon and want an example CSV with all required metadata columns</li>
|
||||||
|
</ul></li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
<!-- vim: set sw=2 ts=2: -->
|
<!-- vim: set sw=2 ts=2: -->
|
||||||
|
|
||||||
|
|
||||||
|
@ -4,30 +4,30 @@
|
|||||||
|
|
||||||
<url>
|
<url>
|
||||||
<loc>https://alanorth.github.io/cgspace-notes/</loc>
|
<loc>https://alanorth.github.io/cgspace-notes/</loc>
|
||||||
<lastmod>2019-05-06T15:41:40+03:00</lastmod>
|
<lastmod>2019-05-07T16:51:55+03:00</lastmod>
|
||||||
<priority>0</priority>
|
<priority>0</priority>
|
||||||
</url>
|
</url>
|
||||||
|
|
||||||
<url>
|
<url>
|
||||||
<loc>https://alanorth.github.io/cgspace-notes/2019-05/</loc>
|
<loc>https://alanorth.github.io/cgspace-notes/2019-05/</loc>
|
||||||
<lastmod>2019-05-06T15:41:40+03:00</lastmod>
|
<lastmod>2019-05-07T16:51:55+03:00</lastmod>
|
||||||
</url>
|
</url>
|
||||||
|
|
||||||
<url>
|
<url>
|
||||||
<loc>https://alanorth.github.io/cgspace-notes/tags/notes/</loc>
|
<loc>https://alanorth.github.io/cgspace-notes/tags/notes/</loc>
|
||||||
<lastmod>2019-05-06T15:41:40+03:00</lastmod>
|
<lastmod>2019-05-07T16:51:55+03:00</lastmod>
|
||||||
<priority>0</priority>
|
<priority>0</priority>
|
||||||
</url>
|
</url>
|
||||||
|
|
||||||
<url>
|
<url>
|
||||||
<loc>https://alanorth.github.io/cgspace-notes/posts/</loc>
|
<loc>https://alanorth.github.io/cgspace-notes/posts/</loc>
|
||||||
<lastmod>2019-05-06T15:41:40+03:00</lastmod>
|
<lastmod>2019-05-07T16:51:55+03: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>2019-05-06T15:41:40+03:00</lastmod>
|
<lastmod>2019-05-07T16:51:55+03:00</lastmod>
|
||||||
<priority>0</priority>
|
<priority>0</priority>
|
||||||
</url>
|
</url>
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user