mirror of
https://github.com/alanorth/cgspace-notes.git
synced 2025-01-27 05:49:12 +01:00
Add notes for 2019-07-25
This commit is contained in:
@ -21,7 +21,7 @@ Abenet had another similar issue a few days ago when trying to find the stats fo
|
||||
<meta property="og:type" content="article" />
|
||||
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/2019-07/" />
|
||||
<meta property="article:published_time" content="2019-07-01T12:13:51+03:00"/>
|
||||
<meta property="article:modified_time" content="2019-07-20T18:24:48+03:00"/>
|
||||
<meta property="article:modified_time" content="2019-07-22T15:54:32+03:00"/>
|
||||
|
||||
<meta name="twitter:card" content="summary"/>
|
||||
<meta name="twitter:title" content="July, 2019"/>
|
||||
@ -47,9 +47,9 @@ Abenet had another similar issue a few days ago when trying to find the stats fo
|
||||
"@type": "BlogPosting",
|
||||
"headline": "July, 2019",
|
||||
"url": "https:\/\/alanorth.github.io\/cgspace-notes\/2019-07\/",
|
||||
"wordCount": "1906",
|
||||
"wordCount": "2119",
|
||||
"datePublished": "2019-07-01T12:13:51\x2b03:00",
|
||||
"dateModified": "2019-07-20T18:24:48\x2b03:00",
|
||||
"dateModified": "2019-07-22T15:54:32\x2b03:00",
|
||||
"author": {
|
||||
"@type": "Person",
|
||||
"name": "Alan Orth"
|
||||
@ -478,7 +478,7 @@ Please see the DSpace documentation for assistance.
|
||||
|
||||
<li><p>I added her as a submitter to <a href="https://cgspace.cgiar.org/handle/10568/74536">CTA ISF Pro-Agro series</a></p></li>
|
||||
|
||||
<li><p>Start looking at 1492 records for the Bioversity batch import</p>
|
||||
<li><p>Start looking at 1429 records for the Bioversity batch import</p>
|
||||
|
||||
<ul>
|
||||
<li>Multiple authors should be specified with multi-value separatator (||) instead of ;</li>
|
||||
@ -519,6 +519,48 @@ Please see the DSpace documentation for assistance.
|
||||
<li><p>Do a little more work on CG Core v2 in the input forms</p></li>
|
||||
</ul>
|
||||
|
||||
<h2 id="2019-07-25">2019-07-25</h2>
|
||||
|
||||
<ul>
|
||||
<li>Generate a list of the ORCID identifiers that we added to CGSpace in 2019 for Sara Jani at ICARDA</li>
|
||||
|
||||
<li><p>Bioversity sent a new file for their migration to CGSpace</p>
|
||||
|
||||
<ul>
|
||||
<li>There is always a blank row and blank column at the end</li>
|
||||
<li>One invalid type (Brie)</li>
|
||||
<li>824 items with leading/trailing spaces in dc.identifier.citation</li>
|
||||
<li>175 items with a trailing comma in dc.identifier.citation (using custom text facet with GREL <code>value.endsWith(',').toString()</code>)</li>
|
||||
<li>Fix them with GREL transform: <code>value.replace(/,$/, '')</code></li>
|
||||
<li>A few strange publishers after splitting multi-value cells, like “(Belgium)”</li>
|
||||
<li>Deleted four ISSNs that are actually ISBNs and are already present in the ISBN field</li>
|
||||
<li>Eight invalid ISBNs</li>
|
||||
<li>Convert all DOIs to “<a href="https://doi.org"">https://doi.org"</a> format and fix one invalid DOI</li>
|
||||
<li>Fix a handful of incorrect CRPs that seem to have been split on comma “,”</li>
|
||||
<li>Lots of strange values in cg.link.reference, and I normalized all DOIs to <a href="https://doi.org">https://doi.org</a> format</li>
|
||||
<li>There are lots of invalid links here, like “36” and “recordlink:publications:2606” and “t3://record?identifier=publications&uid=2606”</li>
|
||||
<li>Also there are hundreds of items that use the same value for cg.link.reference AND cg.link.dataurl</li>
|
||||
<li>Use https:// for all Bioversity links (reference, data url, permalink)</li>
|
||||
</ul></li>
|
||||
|
||||
<li><p>I might be able to use <a href="https://pypi.org/project/isbnlib/">isbnlib</a> to validate ISBNs in Python:</p>
|
||||
|
||||
<pre><code>if isbnlib.is_isbn10('9966-955-07-0') or isbnlib.is_isbn13('9966-955-07-0'):
|
||||
print("Yes")
|
||||
else:
|
||||
print("No")
|
||||
</code></pre></li>
|
||||
|
||||
<li><p>Or with <a href="https://github.com/arthurdejong/python-stdnum">python-stdnum</a>:</p>
|
||||
|
||||
<pre><code>from stdnum import isbn
|
||||
from stdnum import issn
|
||||
|
||||
isbn.validate('978-92-9043-389-7')
|
||||
issn.validate('1020-3362')
|
||||
</code></pre></li>
|
||||
</ul>
|
||||
|
||||
<!-- vim: set sw=2 ts=2: -->
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user