mirror of
https://github.com/alanorth/cgspace-notes.git
synced 2024-11-22 06:35:03 +01:00
Add notes for 2018-09-30
This commit is contained in:
parent
22aaf9a05c
commit
d65b9e24ee
@ -611,4 +611,73 @@ $ time schedtool -D -e ionice -c2 -n7 nice -n19 dspace index-discovery -b
|
||||
- It seems to be Moayad trying to do the AReS explorer indexing
|
||||
- He was sending too many (5 or 10) concurrent requests to the server, but still... why is this shit so slow?!
|
||||
|
||||
## 2018-09-30
|
||||
|
||||
- Valerio keeps sending items on CGSpace that have weird or incorrect languages, authors, etc
|
||||
- I think I should just batch export and update all languages...
|
||||
|
||||
```
|
||||
dspace=# \copy (select distinct text_value, count(*) from metadatavalue where metadata_field_id = (select metadata_field_id from metadatafieldregistry where element = 'language' and qualifier = 'iso') AND resource_type_id = 2 group by text_value order by count desc) to /tmp/2018-09-30-languages.csv with csv;
|
||||
```
|
||||
|
||||
- Then I can simply delete the "Other" and "other" ones because that's not useful at all:
|
||||
|
||||
```
|
||||
dspace=# DELETE FROM metadatavalue WHERE resource_type_id=2 AND metadata_field_id = (select metadata_field_id from metadatafieldregistry where element = 'language' and qualifier = 'iso') AND text_value='Other';
|
||||
DELETE 6
|
||||
dspace=# DELETE FROM metadatavalue WHERE resource_type_id=2 AND metadata_field_id = (select metadata_field_id from metadatafieldregistry where element = 'language' and qualifier = 'iso') AND text_value='other';
|
||||
DELETE 79
|
||||
```
|
||||
|
||||
- Looking through the list I see some weird language codes like `gh`, so I checked out those items:
|
||||
|
||||
```
|
||||
dspace=# SELECT resource_id FROM metadatavalue WHERE resource_type_id=2 AND metadata_field_id = (select metadata_field_id from metadatafieldregistry where element = 'language' and qualifier = 'iso') AND text_value='gh';
|
||||
resource_id
|
||||
-------------
|
||||
94530
|
||||
94529
|
||||
dspace=# SELECT handle,item_id FROM item, handle WHERE handle.resource_type_id=2 AND handle.resource_id = item.item_id AND handle.resource_id in (94530, 94529);
|
||||
handle | item_id
|
||||
-------------+---------
|
||||
10568/91386 | 94529
|
||||
10568/91387 | 94530
|
||||
```
|
||||
|
||||
- Those items are from Ghana, so the submitter apparently thought `gh` was a language... I can safely delete them:
|
||||
|
||||
```
|
||||
dspace=# DELETE FROM metadatavalue WHERE resource_type_id=2 AND metadata_field_id = (select metadata_field_id from metadatafieldregistry where element = 'language' and qualifier = 'iso') AND text_value='gh';
|
||||
DELETE 2
|
||||
```
|
||||
|
||||
- The next issue would be `jn`:
|
||||
|
||||
```
|
||||
dspace=# SELECT resource_id FROM metadatavalue WHERE resource_type_id=2 AND metadata_field_id = (select metadata_field_id from metadatafieldregistry where element = 'language' and qualifier = 'iso') AND text_value='jn';
|
||||
resource_id
|
||||
-------------
|
||||
94001
|
||||
94003
|
||||
dspace=# SELECT handle,item_id FROM item, handle WHERE handle.resource_type_id=2 AND handle.resource_id = item.item_id AND handle.resource_id in (94001, 94003);
|
||||
handle | item_id
|
||||
-------------+---------
|
||||
10568/90868 | 94001
|
||||
10568/90870 | 94003
|
||||
```
|
||||
|
||||
- Those items are about Japan, so I will update them to be `ja`
|
||||
- Other replacements:
|
||||
|
||||
```
|
||||
DELETE FROM metadatavalue WHERE resource_type_id=2 AND metadata_field_id = (select metadata_field_id from metadatafieldregistry where element = 'language' and qualifier = 'iso') AND text_value='gh';
|
||||
UPDATE metadatavalue SET text_value='fr' WHERE resource_type_id=2 AND metadata_field_id = (select metadata_field_id from metadatafieldregistry where element = 'language' and qualifier = 'iso') AND text_value='fn';
|
||||
UPDATE metadatavalue SET text_value='hi' WHERE resource_type_id=2 AND metadata_field_id = (select metadata_field_id from metadatafieldregistry where element = 'language' and qualifier = 'iso') AND text_value='in';
|
||||
UPDATE metadatavalue SET text_value='ja' WHERE resource_type_id=2 AND metadata_field_id = (select metadata_field_id from metadatafieldregistry where element = 'language' and qualifier = 'iso') AND text_value='Ja';
|
||||
UPDATE metadatavalue SET text_value='ja' WHERE resource_type_id=2 AND metadata_field_id = (select metadata_field_id from metadatafieldregistry where element = 'language' and qualifier = 'iso') AND text_value='jn';
|
||||
UPDATE metadatavalue SET text_value='ja' WHERE resource_type_id=2 AND metadata_field_id = (select metadata_field_id from metadatafieldregistry where element = 'language' and qualifier = 'iso') AND text_value='jp';
|
||||
```
|
||||
|
||||
- Then there are 12 items with `en|hi`, but they were all in one collection so I just exported it as a CSV and then re-imported the corrected metadata
|
||||
|
||||
<!-- vim: set sw=2 ts=2: -->
|
||||
|
@ -22,6 +22,7 @@ $ psql -c 'SELECT * from pg_stat_activity;' | grep idle | grep -c cgspac
|
||||
<meta property="og:type" content="article" />
|
||||
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/2015-11/" /><meta property="article:published_time" content="2015-11-23T17:00:57+03:00"/>
|
||||
<meta property="article:modified_time" content="2018-03-09T22:10:33+02:00"/>
|
||||
|
||||
<meta name="twitter:card" content="summary"/>
|
||||
<meta name="twitter:title" content="November, 2015"/>
|
||||
<meta name="twitter:description" content="2015-11-22
|
||||
@ -37,7 +38,7 @@ $ psql -c 'SELECT * from pg_stat_activity;' | grep idle | grep -c cgspac
|
||||
|
||||
|
||||
"/>
|
||||
<meta name="generator" content="Hugo 0.48" />
|
||||
<meta name="generator" content="Hugo 0.49" />
|
||||
|
||||
|
||||
|
||||
|
@ -23,6 +23,7 @@ Replace lzop with xz in log compression cron jobs on DSpace Test—it uses less
|
||||
<meta property="og:type" content="article" />
|
||||
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/2015-12/" /><meta property="article:published_time" content="2015-12-02T13:18:00+03:00"/>
|
||||
<meta property="article:modified_time" content="2018-03-09T22:10:33+02:00"/>
|
||||
|
||||
<meta name="twitter:card" content="summary"/>
|
||||
<meta name="twitter:title" content="December, 2015"/>
|
||||
<meta name="twitter:description" content="2015-12-02
|
||||
@ -39,7 +40,7 @@ Replace lzop with xz in log compression cron jobs on DSpace Test—it uses less
|
||||
|
||||
|
||||
"/>
|
||||
<meta name="generator" content="Hugo 0.48" />
|
||||
<meta name="generator" content="Hugo 0.49" />
|
||||
|
||||
|
||||
|
||||
|
@ -18,6 +18,7 @@ Update GitHub wiki for documentation of maintenance tasks.
|
||||
<meta property="og:type" content="article" />
|
||||
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/2016-01/" /><meta property="article:published_time" content="2016-01-13T13:18:00+03:00"/>
|
||||
<meta property="article:modified_time" content="2018-03-09T22:10:33+02:00"/>
|
||||
|
||||
<meta name="twitter:card" content="summary"/>
|
||||
<meta name="twitter:title" content="January, 2016"/>
|
||||
<meta name="twitter:description" content="2016-01-13
|
||||
@ -29,7 +30,7 @@ Update GitHub wiki for documentation of maintenance tasks.
|
||||
|
||||
|
||||
"/>
|
||||
<meta name="generator" content="Hugo 0.48" />
|
||||
<meta name="generator" content="Hugo 0.49" />
|
||||
|
||||
|
||||
|
||||
|
@ -25,6 +25,7 @@ Also, lots of things like “COTE D`LVOIRE” and “COTE D IVOIRE&r
|
||||
<meta property="og:type" content="article" />
|
||||
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/2016-02/" /><meta property="article:published_time" content="2016-02-05T13:18:00+03:00"/>
|
||||
<meta property="article:modified_time" content="2018-03-09T22:10:33+02:00"/>
|
||||
|
||||
<meta name="twitter:card" content="summary"/>
|
||||
<meta name="twitter:title" content="February, 2016"/>
|
||||
<meta name="twitter:description" content="2016-02-05
|
||||
@ -43,7 +44,7 @@ Also, lots of things like “COTE D`LVOIRE” and “COTE D IVOIRE&r
|
||||
|
||||
|
||||
"/>
|
||||
<meta name="generator" content="Hugo 0.48" />
|
||||
<meta name="generator" content="Hugo 0.49" />
|
||||
|
||||
|
||||
|
||||
|
@ -18,6 +18,7 @@ Reinstall my local (Mac OS X) DSpace stack with Tomcat 7, PostgreSQL 9.3, and Ja
|
||||
<meta property="og:type" content="article" />
|
||||
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/2016-03/" /><meta property="article:published_time" content="2016-03-02T16:50:00+03:00"/>
|
||||
<meta property="article:modified_time" content="2018-03-09T22:10:33+02:00"/>
|
||||
|
||||
<meta name="twitter:card" content="summary"/>
|
||||
<meta name="twitter:title" content="March, 2016"/>
|
||||
<meta name="twitter:description" content="2016-03-02
|
||||
@ -29,7 +30,7 @@ Reinstall my local (Mac OS X) DSpace stack with Tomcat 7, PostgreSQL 9.3, and Ja
|
||||
|
||||
|
||||
"/>
|
||||
<meta name="generator" content="Hugo 0.48" />
|
||||
<meta name="generator" content="Hugo 0.49" />
|
||||
|
||||
|
||||
|
||||
|
@ -20,6 +20,7 @@ Also, I noticed the checker log has some errors we should pay attention to:
|
||||
<meta property="og:type" content="article" />
|
||||
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/2016-04/" /><meta property="article:published_time" content="2016-04-04T11:06:00+03:00"/>
|
||||
<meta property="article:modified_time" content="2018-03-09T22:10:33+02:00"/>
|
||||
|
||||
<meta name="twitter:card" content="summary"/>
|
||||
<meta name="twitter:title" content="April, 2016"/>
|
||||
<meta name="twitter:description" content="2016-04-04
|
||||
@ -33,7 +34,7 @@ Also, I noticed the checker log has some errors we should pay attention to:
|
||||
|
||||
|
||||
"/>
|
||||
<meta name="generator" content="Hugo 0.48" />
|
||||
<meta name="generator" content="Hugo 0.49" />
|
||||
|
||||
|
||||
|
||||
|
@ -22,6 +22,7 @@ There are 3,000 IPs accessing the REST API in a 24-hour period!
|
||||
<meta property="og:type" content="article" />
|
||||
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/2016-05/" /><meta property="article:published_time" content="2016-05-01T23:06:00+03:00"/>
|
||||
<meta property="article:modified_time" content="2018-03-09T22:10:33+02:00"/>
|
||||
|
||||
<meta name="twitter:card" content="summary"/>
|
||||
<meta name="twitter:title" content="May, 2016"/>
|
||||
<meta name="twitter:description" content="2016-05-01
|
||||
@ -37,7 +38,7 @@ There are 3,000 IPs accessing the REST API in a 24-hour period!
|
||||
|
||||
|
||||
"/>
|
||||
<meta name="generator" content="Hugo 0.48" />
|
||||
<meta name="generator" content="Hugo 0.49" />
|
||||
|
||||
|
||||
|
||||
|
@ -21,6 +21,7 @@ Working on second phase of metadata migration, looks like this will work for mov
|
||||
<meta property="og:type" content="article" />
|
||||
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/2016-06/" /><meta property="article:published_time" content="2016-06-01T10:53:00+03:00"/>
|
||||
<meta property="article:modified_time" content="2018-03-09T22:10:33+02:00"/>
|
||||
|
||||
<meta name="twitter:card" content="summary"/>
|
||||
<meta name="twitter:title" content="June, 2016"/>
|
||||
<meta name="twitter:description" content="2016-06-01
|
||||
@ -35,7 +36,7 @@ Working on second phase of metadata migration, looks like this will work for mov
|
||||
|
||||
|
||||
"/>
|
||||
<meta name="generator" content="Hugo 0.48" />
|
||||
<meta name="generator" content="Hugo 0.49" />
|
||||
|
||||
|
||||
|
||||
|
@ -29,6 +29,7 @@ In this case the select query was showing 95 results before the update
|
||||
<meta property="og:type" content="article" />
|
||||
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/2016-07/" /><meta property="article:published_time" content="2016-07-01T10:53:00+03:00"/>
|
||||
<meta property="article:modified_time" content="2018-03-09T22:10:33+02:00"/>
|
||||
|
||||
<meta name="twitter:card" content="summary"/>
|
||||
<meta name="twitter:title" content="July, 2016"/>
|
||||
<meta name="twitter:description" content="2016-07-01
|
||||
@ -51,7 +52,7 @@ In this case the select query was showing 95 results before the update
|
||||
|
||||
|
||||
"/>
|
||||
<meta name="generator" content="Hugo 0.48" />
|
||||
<meta name="generator" content="Hugo 0.49" />
|
||||
|
||||
|
||||
|
||||
|
@ -26,6 +26,7 @@ $ git rebase -i dspace-5.5
|
||||
<meta property="og:type" content="article" />
|
||||
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/2016-08/" /><meta property="article:published_time" content="2016-08-01T15:53:00+03:00"/>
|
||||
<meta property="article:modified_time" content="2018-03-09T22:10:33+02:00"/>
|
||||
|
||||
<meta name="twitter:card" content="summary"/>
|
||||
<meta name="twitter:title" content="August, 2016"/>
|
||||
<meta name="twitter:description" content="2016-08-01
|
||||
@ -45,7 +46,7 @@ $ git rebase -i dspace-5.5
|
||||
|
||||
|
||||
"/>
|
||||
<meta name="generator" content="Hugo 0.48" />
|
||||
<meta name="generator" content="Hugo 0.49" />
|
||||
|
||||
|
||||
|
||||
|
@ -22,6 +22,7 @@ $ ldapsearch -x -H ldaps://svcgroot2.cgiarad.org:3269/ -b "dc=cgiarad,dc=or
|
||||
<meta property="og:type" content="article" />
|
||||
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/2016-09/" /><meta property="article:published_time" content="2016-09-01T15:53:00+03:00"/>
|
||||
<meta property="article:modified_time" content="2018-03-09T22:10:33+02:00"/>
|
||||
|
||||
<meta name="twitter:card" content="summary"/>
|
||||
<meta name="twitter:title" content="September, 2016"/>
|
||||
<meta name="twitter:description" content="2016-09-01
|
||||
@ -37,7 +38,7 @@ $ ldapsearch -x -H ldaps://svcgroot2.cgiarad.org:3269/ -b "dc=cgiarad,dc=or
|
||||
|
||||
|
||||
"/>
|
||||
<meta name="generator" content="Hugo 0.48" />
|
||||
<meta name="generator" content="Hugo 0.49" />
|
||||
|
||||
|
||||
|
||||
|
@ -26,6 +26,7 @@ I exported a random item’s metadata as CSV, deleted all columns except id
|
||||
<meta property="og:type" content="article" />
|
||||
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/2016-10/" /><meta property="article:published_time" content="2016-10-03T15:53:00+03:00"/>
|
||||
<meta property="article:modified_time" content="2018-04-04T16:25:57+03:00"/>
|
||||
|
||||
<meta name="twitter:card" content="summary"/>
|
||||
<meta name="twitter:title" content="October, 2016"/>
|
||||
<meta name="twitter:description" content="2016-10-03
|
||||
@ -45,7 +46,7 @@ I exported a random item’s metadata as CSV, deleted all columns except id
|
||||
|
||||
|
||||
"/>
|
||||
<meta name="generator" content="Hugo 0.48" />
|
||||
<meta name="generator" content="Hugo 0.49" />
|
||||
|
||||
|
||||
|
||||
|
@ -18,6 +18,7 @@ Add dc.type to the output options for Atmire’s Listings and Reports module
|
||||
<meta property="og:type" content="article" />
|
||||
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/2016-11/" /><meta property="article:published_time" content="2016-11-01T09:21:00+03:00"/>
|
||||
<meta property="article:modified_time" content="2018-03-09T22:10:33+02:00"/>
|
||||
|
||||
<meta name="twitter:card" content="summary"/>
|
||||
<meta name="twitter:title" content="November, 2016"/>
|
||||
<meta name="twitter:description" content="2016-11-01
|
||||
@ -29,7 +30,7 @@ Add dc.type to the output options for Atmire’s Listings and Reports module
|
||||
|
||||
|
||||
"/>
|
||||
<meta name="generator" content="Hugo 0.48" />
|
||||
<meta name="generator" content="Hugo 0.49" />
|
||||
|
||||
|
||||
|
||||
|
@ -30,6 +30,7 @@ Another worrying error from dspace.log is:
|
||||
<meta property="og:type" content="article" />
|
||||
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/2016-12/" /><meta property="article:published_time" content="2016-12-02T10:43:00+03:00"/>
|
||||
<meta property="article:modified_time" content="2018-03-09T22:10:33+02:00"/>
|
||||
|
||||
<meta name="twitter:card" content="summary"/>
|
||||
<meta name="twitter:title" content="December, 2016"/>
|
||||
<meta name="twitter:description" content="2016-12-02
|
||||
@ -53,7 +54,7 @@ Another worrying error from dspace.log is:
|
||||
|
||||
|
||||
"/>
|
||||
<meta name="generator" content="Hugo 0.48" />
|
||||
<meta name="generator" content="Hugo 0.49" />
|
||||
|
||||
|
||||
|
||||
|
@ -18,6 +18,7 @@ I asked on the dspace-tech mailing list because it seems to be broken, and actua
|
||||
<meta property="og:type" content="article" />
|
||||
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/2017-01/" /><meta property="article:published_time" content="2017-01-02T10:43:00+03:00"/>
|
||||
<meta property="article:modified_time" content="2018-03-09T22:10:33+02:00"/>
|
||||
|
||||
<meta name="twitter:card" content="summary"/>
|
||||
<meta name="twitter:title" content="January, 2017"/>
|
||||
<meta name="twitter:description" content="2017-01-02
|
||||
@ -29,7 +30,7 @@ I asked on the dspace-tech mailing list because it seems to be broken, and actua
|
||||
|
||||
|
||||
"/>
|
||||
<meta name="generator" content="Hugo 0.48" />
|
||||
<meta name="generator" content="Hugo 0.49" />
|
||||
|
||||
|
||||
|
||||
|
@ -32,6 +32,7 @@ Looks like we’ll be using cg.identifier.ccafsprojectpii as the field name
|
||||
<meta property="og:type" content="article" />
|
||||
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/2017-02/" /><meta property="article:published_time" content="2017-02-07T07:04:52-08:00"/>
|
||||
<meta property="article:modified_time" content="2018-03-09T22:10:33+02:00"/>
|
||||
|
||||
<meta name="twitter:card" content="summary"/>
|
||||
<meta name="twitter:title" content="February, 2017"/>
|
||||
<meta name="twitter:description" content="2017-02-07
|
||||
@ -57,7 +58,7 @@ Looks like we’ll be using cg.identifier.ccafsprojectpii as the field name
|
||||
|
||||
|
||||
"/>
|
||||
<meta name="generator" content="Hugo 0.48" />
|
||||
<meta name="generator" content="Hugo 0.49" />
|
||||
|
||||
|
||||
|
||||
|
@ -34,6 +34,7 @@ $ identify ~/Desktop/alc_contrastes_desafios.jpg
|
||||
<meta property="og:type" content="article" />
|
||||
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/2017-03/" /><meta property="article:published_time" content="2017-03-01T17:08:52+02:00"/>
|
||||
<meta property="article:modified_time" content="2018-03-09T22:10:33+02:00"/>
|
||||
|
||||
<meta name="twitter:card" content="summary"/>
|
||||
<meta name="twitter:title" content="March, 2017"/>
|
||||
<meta name="twitter:description" content="2017-03-01
|
||||
@ -61,7 +62,7 @@ $ identify ~/Desktop/alc_contrastes_desafios.jpg
|
||||
|
||||
|
||||
"/>
|
||||
<meta name="generator" content="Hugo 0.48" />
|
||||
<meta name="generator" content="Hugo 0.49" />
|
||||
|
||||
|
||||
|
||||
|
@ -27,6 +27,7 @@ $ [dspace]/bin/dspace filter-media -f -i 10568/16498 -p "ImageMagick PDF Th
|
||||
<meta property="og:type" content="article" />
|
||||
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/2017-04/" /><meta property="article:published_time" content="2017-04-02T17:08:52+02:00"/>
|
||||
<meta property="article:modified_time" content="2018-03-09T22:10:33+02:00"/>
|
||||
|
||||
<meta name="twitter:card" content="summary"/>
|
||||
<meta name="twitter:title" content="April, 2017"/>
|
||||
<meta name="twitter:description" content="2017-04-02
|
||||
@ -47,7 +48,7 @@ $ [dspace]/bin/dspace filter-media -f -i 10568/16498 -p "ImageMagick PDF Th
|
||||
|
||||
|
||||
"/>
|
||||
<meta name="generator" content="Hugo 0.48" />
|
||||
<meta name="generator" content="Hugo 0.49" />
|
||||
|
||||
|
||||
|
||||
|
@ -10,10 +10,11 @@
|
||||
<meta property="og:type" content="article" />
|
||||
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/2017-05/" /><meta property="article:published_time" content="2017-05-01T16:21:52+02:00"/>
|
||||
<meta property="article:modified_time" content="2018-03-09T22:10:33+02:00"/>
|
||||
|
||||
<meta name="twitter:card" content="summary"/>
|
||||
<meta name="twitter:title" content="May, 2017"/>
|
||||
<meta name="twitter:description" content="2017-05-01 ICARDA apparently started working on CG Core on their MEL repository They have done a few cg.* fields, but not very consistent and even copy some of CGSpace items: https://mel.cgiar.org/xmlui/handle/20.500.11766/6911?show=full https://cgspace.cgiar.org/handle/10568/73683 2017-05-02 Atmire got back about the Workflow Statistics issue, and apparently it’s a bug in the CUA module so they will send us a pull request 2017-05-04 Sync DSpace Test with database and assetstore from CGSpace Re-deploy DSpace Test with Atmire’s CUA patch for workflow statistics, run system updates, and restart the server Now I can see the workflow statistics and am able to select users, but everything returns 0 items Megan says there are still some mapped items are not appearing since last week, so I forced a full index-discovery -b Need to remember to check if the collection has more items (currently 39 on CGSpace, but 118 on the freshly reindexed DSPace Test) tomorrow: https://cgspace."/>
|
||||
<meta name="generator" content="Hugo 0.48" />
|
||||
<meta name="generator" content="Hugo 0.49" />
|
||||
|
||||
|
||||
|
||||
|
@ -10,10 +10,11 @@
|
||||
<meta property="og:type" content="article" />
|
||||
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/2017-06/" /><meta property="article:published_time" content="2017-06-01T10:14:52+03:00"/>
|
||||
<meta property="article:modified_time" content="2018-03-09T22:10:33+02:00"/>
|
||||
|
||||
<meta name="twitter:card" content="summary"/>
|
||||
<meta name="twitter:title" content="June, 2017"/>
|
||||
<meta name="twitter:description" content="2017-06-01 After discussion with WLE and CGSpace content people, we decided to just add one metadata field for the WLE Research Themes The cg.identifier.wletheme field will be used for both Phase I and Phase II Research Themes Then we’ll create a new sub-community for Phase II and create collections for the research themes there The current “Research Themes” community will be renamed to “WLE Phase I Research Themes” Tagged all items in the current Phase I collections with their appropriate themes Create pull request to add Phase II research themes to the submission form: #328 Add cg."/>
|
||||
<meta name="generator" content="Hugo 0.48" />
|
||||
<meta name="generator" content="Hugo 0.49" />
|
||||
|
||||
|
||||
|
||||
|
@ -24,6 +24,7 @@ We can use PostgreSQL’s extended output format (-x) plus sed to format the
|
||||
<meta property="og:type" content="article" />
|
||||
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/2017-07/" /><meta property="article:published_time" content="2017-07-01T18:03:52+03:00"/>
|
||||
<meta property="article:modified_time" content="2018-03-09T22:10:33+02:00"/>
|
||||
|
||||
<meta name="twitter:card" content="summary"/>
|
||||
<meta name="twitter:title" content="July, 2017"/>
|
||||
<meta name="twitter:description" content="2017-07-01
|
||||
@ -41,7 +42,7 @@ We can use PostgreSQL’s extended output format (-x) plus sed to format the
|
||||
|
||||
|
||||
"/>
|
||||
<meta name="generator" content="Hugo 0.48" />
|
||||
<meta name="generator" content="Hugo 0.49" />
|
||||
|
||||
|
||||
|
||||
|
@ -34,6 +34,7 @@ Then I cleaned up the author authorities and HTML characters in OpenRefine and s
|
||||
<meta property="og:type" content="article" />
|
||||
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/2017-08/" /><meta property="article:published_time" content="2017-08-01T11:51:52+03:00"/>
|
||||
<meta property="article:modified_time" content="2018-03-09T22:10:33+02:00"/>
|
||||
|
||||
<meta name="twitter:card" content="summary"/>
|
||||
<meta name="twitter:title" content="August, 2017"/>
|
||||
<meta name="twitter:description" content="2017-08-01
|
||||
@ -61,7 +62,7 @@ Then I cleaned up the author authorities and HTML characters in OpenRefine and s
|
||||
|
||||
|
||||
"/>
|
||||
<meta name="generator" content="Hugo 0.48" />
|
||||
<meta name="generator" content="Hugo 0.49" />
|
||||
|
||||
|
||||
|
||||
|
@ -22,6 +22,7 @@ Ask Sisay to clean up the WLE approvers a bit, as Marianne’s user account
|
||||
<meta property="og:type" content="article" />
|
||||
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/2017-09/" /><meta property="article:published_time" content="2017-09-07T16:54:52+07:00"/>
|
||||
<meta property="article:modified_time" content="2018-03-09T22:10:33+02:00"/>
|
||||
|
||||
<meta name="twitter:card" content="summary"/>
|
||||
<meta name="twitter:title" content="September, 2017"/>
|
||||
<meta name="twitter:description" content="2017-09-06
|
||||
@ -37,7 +38,7 @@ Ask Sisay to clean up the WLE approvers a bit, as Marianne’s user account
|
||||
|
||||
|
||||
"/>
|
||||
<meta name="generator" content="Hugo 0.48" />
|
||||
<meta name="generator" content="Hugo 0.49" />
|
||||
|
||||
|
||||
|
||||
|
@ -24,6 +24,7 @@ Add Katherine Lutz to the groups for content submission and edit steps of the CG
|
||||
<meta property="og:type" content="article" />
|
||||
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/2017-10/" /><meta property="article:published_time" content="2017-10-01T08:07:54+03:00"/>
|
||||
<meta property="article:modified_time" content="2018-03-09T22:10:33+02:00"/>
|
||||
|
||||
<meta name="twitter:card" content="summary"/>
|
||||
<meta name="twitter:title" content="October, 2017"/>
|
||||
<meta name="twitter:description" content="2017-10-01
|
||||
@ -41,7 +42,7 @@ Add Katherine Lutz to the groups for content submission and edit steps of the CG
|
||||
|
||||
|
||||
"/>
|
||||
<meta name="generator" content="Hugo 0.48" />
|
||||
<meta name="generator" content="Hugo 0.49" />
|
||||
|
||||
|
||||
|
||||
|
@ -34,6 +34,7 @@ COPY 54701
|
||||
<meta property="og:type" content="article" />
|
||||
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/2017-11/" /><meta property="article:published_time" content="2017-11-02T09:37:54+02:00"/>
|
||||
<meta property="article:modified_time" content="2018-04-10T08:27:55+03:00"/>
|
||||
|
||||
<meta name="twitter:card" content="summary"/>
|
||||
<meta name="twitter:title" content="November, 2017"/>
|
||||
<meta name="twitter:description" content="2017-11-01
|
||||
@ -61,7 +62,7 @@ COPY 54701
|
||||
|
||||
|
||||
"/>
|
||||
<meta name="generator" content="Hugo 0.48" />
|
||||
<meta name="generator" content="Hugo 0.49" />
|
||||
|
||||
|
||||
|
||||
|
@ -19,6 +19,7 @@ The list of connections to XMLUI and REST API for today:
|
||||
<meta property="og:type" content="article" />
|
||||
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/2017-12/" /><meta property="article:published_time" content="2017-12-01T13:53:54+03:00"/>
|
||||
<meta property="article:modified_time" content="2018-03-09T22:10:33+02:00"/>
|
||||
|
||||
<meta name="twitter:card" content="summary"/>
|
||||
<meta name="twitter:title" content="December, 2017"/>
|
||||
<meta name="twitter:description" content="2017-12-01
|
||||
@ -31,7 +32,7 @@ The list of connections to XMLUI and REST API for today:
|
||||
|
||||
|
||||
"/>
|
||||
<meta name="generator" content="Hugo 0.48" />
|
||||
<meta name="generator" content="Hugo 0.49" />
|
||||
|
||||
|
||||
|
||||
|
@ -88,6 +88,7 @@ Danny wrote to ask for help renewing the wildcard ilri.org certificate and I adv
|
||||
<meta property="og:type" content="article" />
|
||||
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/2018-01/" /><meta property="article:published_time" content="2018-01-02T08:35:54-08:00"/>
|
||||
<meta property="article:modified_time" content="2018-03-28T09:48:08+03:00"/>
|
||||
|
||||
<meta name="twitter:card" content="summary"/>
|
||||
<meta name="twitter:title" content="January, 2018"/>
|
||||
<meta name="twitter:description" content="2018-01-02
|
||||
@ -169,7 +170,7 @@ Danny wrote to ask for help renewing the wildcard ilri.org certificate and I adv
|
||||
|
||||
|
||||
"/>
|
||||
<meta name="generator" content="Hugo 0.48" />
|
||||
<meta name="generator" content="Hugo 0.49" />
|
||||
|
||||
|
||||
|
||||
|
@ -19,6 +19,7 @@ I copied the logic in the jmx_tomcat_dbpools provided by Ubuntu’s munin-pl
|
||||
<meta property="og:type" content="article" />
|
||||
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/2018-02/" /><meta property="article:published_time" content="2018-02-01T16:28:54+02:00"/>
|
||||
<meta property="article:modified_time" content="2018-08-19T18:42:55+03:00"/>
|
||||
|
||||
<meta name="twitter:card" content="summary"/>
|
||||
<meta name="twitter:title" content="February, 2018"/>
|
||||
<meta name="twitter:description" content="2018-02-01
|
||||
@ -31,7 +32,7 @@ I copied the logic in the jmx_tomcat_dbpools provided by Ubuntu’s munin-pl
|
||||
|
||||
|
||||
"/>
|
||||
<meta name="generator" content="Hugo 0.48" />
|
||||
<meta name="generator" content="Hugo 0.49" />
|
||||
|
||||
|
||||
|
||||
|
@ -16,6 +16,7 @@ Export a CSV of the IITA community metadata for Martin Mueller
|
||||
<meta property="og:type" content="article" />
|
||||
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/2018-03/" /><meta property="article:published_time" content="2018-03-02T16:07:54+02:00"/>
|
||||
<meta property="article:modified_time" content="2018-04-04T15:57:34+03:00"/>
|
||||
|
||||
<meta name="twitter:card" content="summary"/>
|
||||
<meta name="twitter:title" content="March, 2018"/>
|
||||
<meta name="twitter:description" content="2018-03-02
|
||||
@ -25,7 +26,7 @@ Export a CSV of the IITA community metadata for Martin Mueller
|
||||
|
||||
|
||||
"/>
|
||||
<meta name="generator" content="Hugo 0.48" />
|
||||
<meta name="generator" content="Hugo 0.49" />
|
||||
|
||||
|
||||
|
||||
|
@ -17,6 +17,7 @@ Catalina logs at least show some memory errors yesterday:
|
||||
<meta property="og:type" content="article" />
|
||||
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/2018-04/" /><meta property="article:published_time" content="2018-04-01T16:13:54+02:00"/>
|
||||
<meta property="article:modified_time" content="2018-04-30T18:45:30+03:00"/>
|
||||
|
||||
<meta name="twitter:card" content="summary"/>
|
||||
<meta name="twitter:title" content="April, 2018"/>
|
||||
<meta name="twitter:description" content="2018-04-01
|
||||
@ -27,7 +28,7 @@ Catalina logs at least show some memory errors yesterday:
|
||||
|
||||
|
||||
"/>
|
||||
<meta name="generator" content="Hugo 0.48" />
|
||||
<meta name="generator" content="Hugo 0.49" />
|
||||
|
||||
|
||||
|
||||
|
@ -23,6 +23,7 @@ Also, I switched it to use OpenJDK instead of Oracle Java, as well as re-worked
|
||||
<meta property="og:type" content="article" />
|
||||
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/2018-05/" /><meta property="article:published_time" content="2018-05-01T16:43:54+03:00"/>
|
||||
<meta property="article:modified_time" content="2018-09-04T16:15:26+03:00"/>
|
||||
|
||||
<meta name="twitter:card" content="summary"/>
|
||||
<meta name="twitter:title" content="May, 2018"/>
|
||||
<meta name="twitter:description" content="2018-05-01
|
||||
@ -39,7 +40,7 @@ Also, I switched it to use OpenJDK instead of Oracle Java, as well as re-worked
|
||||
|
||||
|
||||
"/>
|
||||
<meta name="generator" content="Hugo 0.48" />
|
||||
<meta name="generator" content="Hugo 0.49" />
|
||||
|
||||
|
||||
|
||||
|
@ -37,6 +37,7 @@ sys 2m7.289s
|
||||
<meta property="og:type" content="article" />
|
||||
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/2018-06/" /><meta property="article:published_time" content="2018-06-04T19:49:54-07:00"/>
|
||||
<meta property="article:modified_time" content="2018-06-28T13:37:35+03:00"/>
|
||||
|
||||
<meta name="twitter:card" content="summary"/>
|
||||
<meta name="twitter:title" content="June, 2018"/>
|
||||
<meta name="twitter:description" content="2018-06-04
|
||||
@ -67,7 +68,7 @@ sys 2m7.289s
|
||||
|
||||
|
||||
"/>
|
||||
<meta name="generator" content="Hugo 0.48" />
|
||||
<meta name="generator" content="Hugo 0.49" />
|
||||
|
||||
|
||||
|
||||
|
@ -26,6 +26,7 @@ There is insufficient memory for the Java Runtime Environment to continue.
|
||||
<meta property="og:type" content="article" />
|
||||
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/2018-07/" /><meta property="article:published_time" content="2018-07-01T12:56:54+03:00"/>
|
||||
<meta property="article:modified_time" content="2018-07-28T12:06:56+03:00"/>
|
||||
|
||||
<meta name="twitter:card" content="summary"/>
|
||||
<meta name="twitter:title" content="July, 2018"/>
|
||||
<meta name="twitter:description" content="2018-07-01
|
||||
@ -45,7 +46,7 @@ There is insufficient memory for the Java Runtime Environment to continue.
|
||||
|
||||
|
||||
"/>
|
||||
<meta name="generator" content="Hugo 0.48" />
|
||||
<meta name="generator" content="Hugo 0.49" />
|
||||
|
||||
|
||||
|
||||
|
@ -30,6 +30,7 @@ I ran all system updates on DSpace Test and rebooted it
|
||||
<meta property="og:type" content="article" />
|
||||
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/2018-08/" /><meta property="article:published_time" content="2018-08-01T11:52:54+03:00"/>
|
||||
<meta property="article:modified_time" content="2018-09-10T23:35:46+03:00"/>
|
||||
|
||||
<meta name="twitter:card" content="summary"/>
|
||||
<meta name="twitter:title" content="August, 2018"/>
|
||||
<meta name="twitter:description" content="2018-08-01
|
||||
@ -53,7 +54,7 @@ I ran all system updates on DSpace Test and rebooted it
|
||||
|
||||
|
||||
"/>
|
||||
<meta name="generator" content="Hugo 0.48" />
|
||||
<meta name="generator" content="Hugo 0.49" />
|
||||
|
||||
|
||||
|
||||
|
@ -18,7 +18,8 @@ I’m testing the new DSpace 5.8 branch in my Ubuntu 18.04 environment and I
|
||||
" />
|
||||
<meta property="og:type" content="article" />
|
||||
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/2018-09/" /><meta property="article:published_time" content="2018-09-02T09:55:54+03:00"/>
|
||||
<meta property="article:modified_time" content="2018-09-29T15:00:03+03:00"/>
|
||||
<meta property="article:modified_time" content="2018-09-29T19:00:41+03:00"/>
|
||||
|
||||
<meta name="twitter:card" content="summary"/>
|
||||
<meta name="twitter:title" content="September, 2018"/>
|
||||
<meta name="twitter:description" content="2018-09-02
|
||||
@ -31,7 +32,7 @@ I’m testing the new DSpace 5.8 branch in my Ubuntu 18.04 environment and I
|
||||
|
||||
|
||||
"/>
|
||||
<meta name="generator" content="Hugo 0.48" />
|
||||
<meta name="generator" content="Hugo 0.49" />
|
||||
|
||||
|
||||
|
||||
@ -41,9 +42,9 @@ I’m testing the new DSpace 5.8 branch in my Ubuntu 18.04 environment and I
|
||||
"@type": "BlogPosting",
|
||||
"headline": "September, 2018",
|
||||
"url": "https://alanorth.github.io/cgspace-notes/2018-09/",
|
||||
"wordCount": "4757",
|
||||
"wordCount": "5245",
|
||||
"datePublished": "2018-09-02T09:55:54+03:00",
|
||||
"dateModified": "2018-09-29T15:00:03+03:00",
|
||||
"dateModified": "2018-09-29T19:00:41+03:00",
|
||||
"author": {
|
||||
"@type": "Person",
|
||||
"name": "Alan Orth"
|
||||
@ -812,6 +813,83 @@ $ ./fix-metadata-values.py -i 2018-09-29-fix-authors.csv -db dspace -u dspace -p
|
||||
<li>He was sending too many (5 or 10) concurrent requests to the server, but still… why is this shit so slow?!</li>
|
||||
</ul>
|
||||
|
||||
<h2 id="2018-09-30">2018-09-30</h2>
|
||||
|
||||
<ul>
|
||||
<li>Valerio keeps sending items on CGSpace that have weird or incorrect languages, authors, etc</li>
|
||||
<li>I think I should just batch export and update all languages…</li>
|
||||
</ul>
|
||||
|
||||
<pre><code>dspace=# \copy (select distinct text_value, count(*) from metadatavalue where metadata_field_id = (select metadata_field_id from metadatafieldregistry where element = 'language' and qualifier = 'iso') AND resource_type_id = 2 group by text_value order by count desc) to /tmp/2018-09-30-languages.csv with csv;
|
||||
</code></pre>
|
||||
|
||||
<ul>
|
||||
<li>Then I can simply delete the “Other” and “other” ones because that’s not useful at all:</li>
|
||||
</ul>
|
||||
|
||||
<pre><code>dspace=# DELETE FROM metadatavalue WHERE resource_type_id=2 AND metadata_field_id = (select metadata_field_id from metadatafieldregistry where element = 'language' and qualifier = 'iso') AND text_value='Other';
|
||||
DELETE 6
|
||||
dspace=# DELETE FROM metadatavalue WHERE resource_type_id=2 AND metadata_field_id = (select metadata_field_id from metadatafieldregistry where element = 'language' and qualifier = 'iso') AND text_value='other';
|
||||
DELETE 79
|
||||
</code></pre>
|
||||
|
||||
<ul>
|
||||
<li>Looking through the list I see some weird language codes like <code>gh</code>, so I checked out those items:</li>
|
||||
</ul>
|
||||
|
||||
<pre><code>dspace=# SELECT resource_id FROM metadatavalue WHERE resource_type_id=2 AND metadata_field_id = (select metadata_field_id from metadatafieldregistry where element = 'language' and qualifier = 'iso') AND text_value='gh';
|
||||
resource_id
|
||||
-------------
|
||||
94530
|
||||
94529
|
||||
dspace=# SELECT handle,item_id FROM item, handle WHERE handle.resource_type_id=2 AND handle.resource_id = item.item_id AND handle.resource_id in (94530, 94529);
|
||||
handle | item_id
|
||||
-------------+---------
|
||||
10568/91386 | 94529
|
||||
10568/91387 | 94530
|
||||
</code></pre>
|
||||
|
||||
<ul>
|
||||
<li>Those items are from Ghana, so the submitter apparently thought <code>gh</code> was a language… I can safely delete them:</li>
|
||||
</ul>
|
||||
|
||||
<pre><code>dspace=# DELETE FROM metadatavalue WHERE resource_type_id=2 AND metadata_field_id = (select metadata_field_id from metadatafieldregistry where element = 'language' and qualifier = 'iso') AND text_value='gh';
|
||||
DELETE 2
|
||||
</code></pre>
|
||||
|
||||
<ul>
|
||||
<li>The next issue would be <code>jn</code>:</li>
|
||||
</ul>
|
||||
|
||||
<pre><code>dspace=# SELECT resource_id FROM metadatavalue WHERE resource_type_id=2 AND metadata_field_id = (select metadata_field_id from metadatafieldregistry where element = 'language' and qualifier = 'iso') AND text_value='jn';
|
||||
resource_id
|
||||
-------------
|
||||
94001
|
||||
94003
|
||||
dspace=# SELECT handle,item_id FROM item, handle WHERE handle.resource_type_id=2 AND handle.resource_id = item.item_id AND handle.resource_id in (94001, 94003);
|
||||
handle | item_id
|
||||
-------------+---------
|
||||
10568/90868 | 94001
|
||||
10568/90870 | 94003
|
||||
</code></pre>
|
||||
|
||||
<ul>
|
||||
<li>Those items are about Japan, so I will update them to be <code>ja</code></li>
|
||||
<li>Other replacements:</li>
|
||||
</ul>
|
||||
|
||||
<pre><code>DELETE FROM metadatavalue WHERE resource_type_id=2 AND metadata_field_id = (select metadata_field_id from metadatafieldregistry where element = 'language' and qualifier = 'iso') AND text_value='gh';
|
||||
UPDATE metadatavalue SET text_value='fr' WHERE resource_type_id=2 AND metadata_field_id = (select metadata_field_id from metadatafieldregistry where element = 'language' and qualifier = 'iso') AND text_value='fn';
|
||||
UPDATE metadatavalue SET text_value='hi' WHERE resource_type_id=2 AND metadata_field_id = (select metadata_field_id from metadatafieldregistry where element = 'language' and qualifier = 'iso') AND text_value='in';
|
||||
UPDATE metadatavalue SET text_value='ja' WHERE resource_type_id=2 AND metadata_field_id = (select metadata_field_id from metadatafieldregistry where element = 'language' and qualifier = 'iso') AND text_value='Ja';
|
||||
UPDATE metadatavalue SET text_value='ja' WHERE resource_type_id=2 AND metadata_field_id = (select metadata_field_id from metadatafieldregistry where element = 'language' and qualifier = 'iso') AND text_value='jn';
|
||||
UPDATE metadatavalue SET text_value='ja' WHERE resource_type_id=2 AND metadata_field_id = (select metadata_field_id from metadatafieldregistry where element = 'language' and qualifier = 'iso') AND text_value='jp';
|
||||
</code></pre>
|
||||
|
||||
<ul>
|
||||
<li>Then there are 12 items with <code>en|hi</code>, but they were all in one collection so I just exported it as a CSV and then re-imported the corrected metadata</li>
|
||||
</ul>
|
||||
|
||||
<!-- vim: set sw=2 ts=2: -->
|
||||
|
||||
|
||||
|
@ -9,10 +9,11 @@
|
||||
<meta property="og:description" content="Documenting day-to-day work on the [CGSpace](https://cgspace.cgiar.org) repository." />
|
||||
<meta property="og:type" content="website" />
|
||||
<meta property="og:url" content="" />
|
||||
|
||||
<meta name="twitter:card" content="summary"/>
|
||||
<meta name="twitter:title" content="404 Page not found"/>
|
||||
<meta name="twitter:description" content="Documenting day-to-day work on the [CGSpace](https://cgspace.cgiar.org) repository."/>
|
||||
<meta name="generator" content="Hugo 0.48" />
|
||||
<meta name="generator" content="Hugo 0.49" />
|
||||
|
||||
|
||||
|
||||
|
@ -9,10 +9,11 @@
|
||||
<meta property="og:description" content="Documenting day-to-day work on the [CGSpace](https://cgspace.cgiar.org) repository." />
|
||||
<meta property="og:type" content="website" />
|
||||
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/categories/" />
|
||||
|
||||
<meta name="twitter:card" content="summary"/>
|
||||
<meta name="twitter:title" content="Categories"/>
|
||||
<meta name="twitter:description" content="Documenting day-to-day work on the [CGSpace](https://cgspace.cgiar.org) repository."/>
|
||||
<meta name="generator" content="Hugo 0.48" />
|
||||
<meta name="generator" content="Hugo 0.49" />
|
||||
|
||||
|
||||
|
||||
|
@ -10,10 +10,11 @@
|
||||
<meta property="og:type" content="website" />
|
||||
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/categories/notes/" />
|
||||
<meta property="og:updated_time" content="2017-09-18T16:38:35+03:00"/>
|
||||
|
||||
<meta name="twitter:card" content="summary"/>
|
||||
<meta name="twitter:title" content="Notes"/>
|
||||
<meta name="twitter:description" content="Documenting day-to-day work on the [CGSpace](https://cgspace.cgiar.org) repository."/>
|
||||
<meta name="generator" content="Hugo 0.48" />
|
||||
<meta name="generator" content="Hugo 0.49" />
|
||||
|
||||
|
||||
|
||||
|
@ -10,10 +10,11 @@
|
||||
<meta property="og:type" content="website" />
|
||||
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/categories/" />
|
||||
<meta property="og:updated_time" content="2017-11-02T09:37:54+02:00"/>
|
||||
|
||||
<meta name="twitter:card" content="summary"/>
|
||||
<meta name="twitter:title" content="Categories"/>
|
||||
<meta name="twitter:description" content="Documenting day-to-day work on the [CGSpace](https://cgspace.cgiar.org) repository."/>
|
||||
<meta name="generator" content="Hugo 0.48" />
|
||||
<meta name="generator" content="Hugo 0.49" />
|
||||
|
||||
|
||||
|
||||
|
@ -10,10 +10,11 @@
|
||||
<meta property="og:type" content="website" />
|
||||
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/categories/" />
|
||||
<meta property="og:updated_time" content="2017-02-07T07:04:52-08:00"/>
|
||||
|
||||
<meta name="twitter:card" content="summary"/>
|
||||
<meta name="twitter:title" content="Categories"/>
|
||||
<meta name="twitter:description" content="Documenting day-to-day work on the [CGSpace](https://cgspace.cgiar.org) repository."/>
|
||||
<meta name="generator" content="Hugo 0.48" />
|
||||
<meta name="generator" content="Hugo 0.49" />
|
||||
|
||||
|
||||
|
||||
|
@ -10,10 +10,11 @@
|
||||
<meta property="og:type" content="website" />
|
||||
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/categories/" />
|
||||
<meta property="og:updated_time" content="2016-04-04T11:06:00+03:00"/>
|
||||
|
||||
<meta name="twitter:card" content="summary"/>
|
||||
<meta name="twitter:title" content="Categories"/>
|
||||
<meta name="twitter:description" content="Documenting day-to-day work on the [CGSpace](https://cgspace.cgiar.org) repository."/>
|
||||
<meta name="generator" content="Hugo 0.48" />
|
||||
<meta name="generator" content="Hugo 0.49" />
|
||||
|
||||
|
||||
|
||||
|
@ -10,10 +10,11 @@
|
||||
<meta property="og:type" content="article" />
|
||||
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/cgiar-library-migration/" /><meta property="article:published_time" content="2017-09-18T16:38:35+03:00"/>
|
||||
<meta property="article:modified_time" content="2018-03-09T22:10:33+02:00"/>
|
||||
|
||||
<meta name="twitter:card" content="summary"/>
|
||||
<meta name="twitter:title" content="CGIAR Library Migration"/>
|
||||
<meta name="twitter:description" content="Notes on the migration of the CGIAR Library to CGSpace"/>
|
||||
<meta name="generator" content="Hugo 0.48" />
|
||||
<meta name="generator" content="Hugo 0.49" />
|
||||
|
||||
|
||||
|
||||
|
@ -10,10 +10,11 @@
|
||||
<meta property="og:type" content="website" />
|
||||
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/" />
|
||||
<meta property="og:updated_time" content="2018-09-02T09:55:54+03:00"/>
|
||||
|
||||
<meta name="twitter:card" content="summary"/>
|
||||
<meta name="twitter:title" content="CGSpace Notes"/>
|
||||
<meta name="twitter:description" content="Documenting day-to-day work on the [CGSpace](https://cgspace.cgiar.org) repository."/>
|
||||
<meta name="generator" content="Hugo 0.48" />
|
||||
<meta name="generator" content="Hugo 0.49" />
|
||||
|
||||
|
||||
|
||||
|
@ -10,10 +10,11 @@
|
||||
<meta property="og:type" content="website" />
|
||||
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/" />
|
||||
<meta property="og:updated_time" content="2017-11-02T09:37:54+02:00"/>
|
||||
|
||||
<meta name="twitter:card" content="summary"/>
|
||||
<meta name="twitter:title" content="CGSpace Notes"/>
|
||||
<meta name="twitter:description" content="Documenting day-to-day work on the [CGSpace](https://cgspace.cgiar.org) repository."/>
|
||||
<meta name="generator" content="Hugo 0.48" />
|
||||
<meta name="generator" content="Hugo 0.49" />
|
||||
|
||||
|
||||
|
||||
|
@ -10,10 +10,11 @@
|
||||
<meta property="og:type" content="website" />
|
||||
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/" />
|
||||
<meta property="og:updated_time" content="2017-02-07T07:04:52-08:00"/>
|
||||
|
||||
<meta name="twitter:card" content="summary"/>
|
||||
<meta name="twitter:title" content="CGSpace Notes"/>
|
||||
<meta name="twitter:description" content="Documenting day-to-day work on the [CGSpace](https://cgspace.cgiar.org) repository."/>
|
||||
<meta name="generator" content="Hugo 0.48" />
|
||||
<meta name="generator" content="Hugo 0.49" />
|
||||
|
||||
|
||||
|
||||
|
@ -10,10 +10,11 @@
|
||||
<meta property="og:type" content="website" />
|
||||
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/" />
|
||||
<meta property="og:updated_time" content="2016-04-04T11:06:00+03:00"/>
|
||||
|
||||
<meta name="twitter:card" content="summary"/>
|
||||
<meta name="twitter:title" content="CGSpace Notes"/>
|
||||
<meta name="twitter:description" content="Documenting day-to-day work on the [CGSpace](https://cgspace.cgiar.org) repository."/>
|
||||
<meta name="generator" content="Hugo 0.48" />
|
||||
<meta name="generator" content="Hugo 0.49" />
|
||||
|
||||
|
||||
|
||||
|
@ -10,10 +10,11 @@
|
||||
<meta property="og:type" content="website" />
|
||||
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/posts/" />
|
||||
<meta property="og:updated_time" content="2018-09-02T09:55:54+03:00"/>
|
||||
|
||||
<meta name="twitter:card" content="summary"/>
|
||||
<meta name="twitter:title" content="Posts"/>
|
||||
<meta name="twitter:description" content="Documenting day-to-day work on the [CGSpace](https://cgspace.cgiar.org) repository."/>
|
||||
<meta name="generator" content="Hugo 0.48" />
|
||||
<meta name="generator" content="Hugo 0.49" />
|
||||
|
||||
|
||||
|
||||
|
@ -10,10 +10,11 @@
|
||||
<meta property="og:type" content="website" />
|
||||
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/posts/" />
|
||||
<meta property="og:updated_time" content="2017-11-02T09:37:54+02:00"/>
|
||||
|
||||
<meta name="twitter:card" content="summary"/>
|
||||
<meta name="twitter:title" content="Posts"/>
|
||||
<meta name="twitter:description" content="Documenting day-to-day work on the [CGSpace](https://cgspace.cgiar.org) repository."/>
|
||||
<meta name="generator" content="Hugo 0.48" />
|
||||
<meta name="generator" content="Hugo 0.49" />
|
||||
|
||||
|
||||
|
||||
|
@ -10,10 +10,11 @@
|
||||
<meta property="og:type" content="website" />
|
||||
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/posts/" />
|
||||
<meta property="og:updated_time" content="2017-02-07T07:04:52-08:00"/>
|
||||
|
||||
<meta name="twitter:card" content="summary"/>
|
||||
<meta name="twitter:title" content="Posts"/>
|
||||
<meta name="twitter:description" content="Documenting day-to-day work on the [CGSpace](https://cgspace.cgiar.org) repository."/>
|
||||
<meta name="generator" content="Hugo 0.48" />
|
||||
<meta name="generator" content="Hugo 0.49" />
|
||||
|
||||
|
||||
|
||||
|
@ -10,10 +10,11 @@
|
||||
<meta property="og:type" content="website" />
|
||||
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/posts/" />
|
||||
<meta property="og:updated_time" content="2016-04-04T11:06:00+03:00"/>
|
||||
|
||||
<meta name="twitter:card" content="summary"/>
|
||||
<meta name="twitter:title" content="Posts"/>
|
||||
<meta name="twitter:description" content="Documenting day-to-day work on the [CGSpace](https://cgspace.cgiar.org) repository."/>
|
||||
<meta name="generator" content="Hugo 0.48" />
|
||||
<meta name="generator" content="Hugo 0.49" />
|
||||
|
||||
|
||||
|
||||
|
@ -4,7 +4,7 @@
|
||||
|
||||
<url>
|
||||
<loc>https://alanorth.github.io/cgspace-notes/2018-09/</loc>
|
||||
<lastmod>2018-09-29T15:00:03+03:00</lastmod>
|
||||
<lastmod>2018-09-29T19:00:41+03:00</lastmod>
|
||||
</url>
|
||||
|
||||
<url>
|
||||
@ -184,7 +184,7 @@
|
||||
|
||||
<url>
|
||||
<loc>https://alanorth.github.io/cgspace-notes/</loc>
|
||||
<lastmod>2018-09-29T15:00:03+03:00</lastmod>
|
||||
<lastmod>2018-09-29T19:00:41+03:00</lastmod>
|
||||
<priority>0</priority>
|
||||
</url>
|
||||
|
||||
@ -195,7 +195,7 @@
|
||||
|
||||
<url>
|
||||
<loc>https://alanorth.github.io/cgspace-notes/tags/notes/</loc>
|
||||
<lastmod>2018-09-29T15:00:03+03:00</lastmod>
|
||||
<lastmod>2018-09-29T19:00:41+03:00</lastmod>
|
||||
<priority>0</priority>
|
||||
</url>
|
||||
|
||||
@ -207,13 +207,13 @@
|
||||
|
||||
<url>
|
||||
<loc>https://alanorth.github.io/cgspace-notes/posts/</loc>
|
||||
<lastmod>2018-09-29T15:00:03+03:00</lastmod>
|
||||
<lastmod>2018-09-29T19:00:41+03:00</lastmod>
|
||||
<priority>0</priority>
|
||||
</url>
|
||||
|
||||
<url>
|
||||
<loc>https://alanorth.github.io/cgspace-notes/tags/</loc>
|
||||
<lastmod>2018-09-29T15:00:03+03:00</lastmod>
|
||||
<lastmod>2018-09-29T19:00:41+03:00</lastmod>
|
||||
<priority>0</priority>
|
||||
</url>
|
||||
|
||||
|
@ -10,10 +10,11 @@
|
||||
<meta property="og:type" content="website" />
|
||||
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/tags/" />
|
||||
<meta property="og:updated_time" content="2018-09-02T09:55:54+03:00"/>
|
||||
|
||||
<meta name="twitter:card" content="summary"/>
|
||||
<meta name="twitter:title" content="Tags"/>
|
||||
<meta name="twitter:description" content="Documenting day-to-day work on the [CGSpace](https://cgspace.cgiar.org) repository."/>
|
||||
<meta name="generator" content="Hugo 0.48" />
|
||||
<meta name="generator" content="Hugo 0.49" />
|
||||
|
||||
|
||||
|
||||
|
@ -10,10 +10,11 @@
|
||||
<meta property="og:type" content="website" />
|
||||
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/tags/notes/" />
|
||||
<meta property="og:updated_time" content="2018-09-02T09:55:54+03:00"/>
|
||||
|
||||
<meta name="twitter:card" content="summary"/>
|
||||
<meta name="twitter:title" content="Notes"/>
|
||||
<meta name="twitter:description" content="Documenting day-to-day work on the [CGSpace](https://cgspace.cgiar.org) repository."/>
|
||||
<meta name="generator" content="Hugo 0.48" />
|
||||
<meta name="generator" content="Hugo 0.49" />
|
||||
|
||||
|
||||
|
||||
|
@ -10,10 +10,11 @@
|
||||
<meta property="og:type" content="website" />
|
||||
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/tags/notes/" />
|
||||
<meta property="og:updated_time" content="2017-11-02T09:37:54+02:00"/>
|
||||
|
||||
<meta name="twitter:card" content="summary"/>
|
||||
<meta name="twitter:title" content="Notes"/>
|
||||
<meta name="twitter:description" content="Documenting day-to-day work on the [CGSpace](https://cgspace.cgiar.org) repository."/>
|
||||
<meta name="generator" content="Hugo 0.48" />
|
||||
<meta name="generator" content="Hugo 0.49" />
|
||||
|
||||
|
||||
|
||||
|
@ -10,10 +10,11 @@
|
||||
<meta property="og:type" content="website" />
|
||||
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/tags/notes/" />
|
||||
<meta property="og:updated_time" content="2017-01-02T10:43:00+03:00"/>
|
||||
|
||||
<meta name="twitter:card" content="summary"/>
|
||||
<meta name="twitter:title" content="Notes"/>
|
||||
<meta name="twitter:description" content="Documenting day-to-day work on the [CGSpace](https://cgspace.cgiar.org) repository."/>
|
||||
<meta name="generator" content="Hugo 0.48" />
|
||||
<meta name="generator" content="Hugo 0.49" />
|
||||
|
||||
|
||||
|
||||
|
@ -10,10 +10,11 @@
|
||||
<meta property="og:type" content="website" />
|
||||
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/tags/notes/" />
|
||||
<meta property="og:updated_time" content="2016-03-02T16:50:00+03:00"/>
|
||||
|
||||
<meta name="twitter:card" content="summary"/>
|
||||
<meta name="twitter:title" content="Notes"/>
|
||||
<meta name="twitter:description" content="Documenting day-to-day work on the [CGSpace](https://cgspace.cgiar.org) repository."/>
|
||||
<meta name="generator" content="Hugo 0.48" />
|
||||
<meta name="generator" content="Hugo 0.49" />
|
||||
|
||||
|
||||
|
||||
|
@ -10,10 +10,11 @@
|
||||
<meta property="og:type" content="website" />
|
||||
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/tags/" />
|
||||
<meta property="og:updated_time" content="2017-11-02T09:37:54+02:00"/>
|
||||
|
||||
<meta name="twitter:card" content="summary"/>
|
||||
<meta name="twitter:title" content="Tags"/>
|
||||
<meta name="twitter:description" content="Documenting day-to-day work on the [CGSpace](https://cgspace.cgiar.org) repository."/>
|
||||
<meta name="generator" content="Hugo 0.48" />
|
||||
<meta name="generator" content="Hugo 0.49" />
|
||||
|
||||
|
||||
|
||||
|
@ -10,10 +10,11 @@
|
||||
<meta property="og:type" content="website" />
|
||||
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/tags/" />
|
||||
<meta property="og:updated_time" content="2017-02-07T07:04:52-08:00"/>
|
||||
|
||||
<meta name="twitter:card" content="summary"/>
|
||||
<meta name="twitter:title" content="Tags"/>
|
||||
<meta name="twitter:description" content="Documenting day-to-day work on the [CGSpace](https://cgspace.cgiar.org) repository."/>
|
||||
<meta name="generator" content="Hugo 0.48" />
|
||||
<meta name="generator" content="Hugo 0.49" />
|
||||
|
||||
|
||||
|
||||
|
@ -10,10 +10,11 @@
|
||||
<meta property="og:type" content="website" />
|
||||
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/tags/" />
|
||||
<meta property="og:updated_time" content="2016-04-04T11:06:00+03:00"/>
|
||||
|
||||
<meta name="twitter:card" content="summary"/>
|
||||
<meta name="twitter:title" content="Tags"/>
|
||||
<meta name="twitter:description" content="Documenting day-to-day work on the [CGSpace](https://cgspace.cgiar.org) repository."/>
|
||||
<meta name="generator" content="Hugo 0.48" />
|
||||
<meta name="generator" content="Hugo 0.49" />
|
||||
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user