mirror of
https://github.com/alanorth/cgspace-notes.git
synced 2024-11-22 14:45:03 +01:00
Add notes for 2018-04-18
This commit is contained in:
parent
b778f1be62
commit
040b3575d5
@ -332,3 +332,37 @@ Total time: 4 minutes 12 seconds
|
||||
## 2018-04-16
|
||||
|
||||
- Communicate with Bioversity about their project to migrate their e-Library (Typo3) and Sci-lit databases to CGSpace
|
||||
|
||||
## 2018-04-18
|
||||
|
||||
- IWMI people are asking about building a search query that outputs RSS for their reports
|
||||
- They want the same results as this Discovery query: https://cgspace.cgiar.org/discover?filtertype_1=dateAccessioned&filter_relational_operator_1=contains&filter_1=2018&submit_apply_filter=&query=&scope=10568%2F16814&rpp=100&sort_by=dc.date.issued_dt&order=desc
|
||||
- They will need to use OpenSearch, but I can't remember all the parameters
|
||||
- Apparently search sort options for OpenSearch are in `dspace.cfg`:
|
||||
|
||||
```
|
||||
webui.itemlist.sort-option.1 = title:dc.title:title
|
||||
webui.itemlist.sort-option.2 = dateissued:dc.date.issued:date
|
||||
webui.itemlist.sort-option.3 = dateaccessioned:dc.date.accessioned:date
|
||||
webui.itemlist.sort-option.4 = type:dc.type:text
|
||||
```
|
||||
|
||||
- They want items by issue date, so we need to use sort option 2
|
||||
- According to the DSpace Manual there are only the following parameters to OpenSearch: format, scope, rpp, start, and sort_by
|
||||
- The OpenSearch `query` parameter expects a Discovery search filter that is defined in `dspace/config/spring/api/discovery.xml`
|
||||
- So for IWMI they should be able to use something like this: https://cgspace.cgiar.org/open-search/discover?query=dateIssued:2018&scope=10568/16814&sort_by=2&order=DESC&format=rss
|
||||
- There are also `rpp` (results per page) and `start` parameters but in my testing now on DSpace 5.5 they behave very strangely
|
||||
- For example, set `rpp=1` and then check the results for `start` values of 0, 1, and 2 and they are all the same!
|
||||
- If I have time I will check if this behavior persists on DSpace 6.x on the official DSpace demo and file a bug
|
||||
- Also, the DSpace Manual as of 5.x has very poor documentation for OpenSearch
|
||||
- They don't tell you to use Discovery search filters in the `query` (with format `query=dateIssued:2018`)
|
||||
- They don't tell you that the sort options are actually defined in `dspace.cfg` (ie, you need to use `2` instead of `dc.date.issued_dt`)
|
||||
- They are missing the `order` parameter (ASC vs DESC)
|
||||
- I notice that DSpace Test has crashed again, due to memory:
|
||||
|
||||
```
|
||||
# grep -c 'java.lang.OutOfMemoryError: Java heap space' /var/log/tomcat7/catalina.out
|
||||
178
|
||||
```
|
||||
|
||||
- I will increase the JVM heap size from 5120M to 6144M, though we don't have much room left to grow as DSpace Test (linode19) is using a smaller instance size than CGSpace
|
||||
|
@ -53,7 +53,7 @@ $ psql -c 'SELECT * from pg_stat_activity;' | grep idle | grep -c cgspac
|
||||
|
||||
|
||||
"/>
|
||||
<meta name="generator" content="Hugo 0.38.2" />
|
||||
<meta name="generator" content="Hugo 0.39" />
|
||||
|
||||
|
||||
|
||||
|
@ -55,7 +55,7 @@ Replace lzop with xz in log compression cron jobs on DSpace Test—it uses less
|
||||
|
||||
|
||||
"/>
|
||||
<meta name="generator" content="Hugo 0.38.2" />
|
||||
<meta name="generator" content="Hugo 0.39" />
|
||||
|
||||
|
||||
|
||||
|
@ -45,7 +45,7 @@ Update GitHub wiki for documentation of maintenance tasks.
|
||||
|
||||
|
||||
"/>
|
||||
<meta name="generator" content="Hugo 0.38.2" />
|
||||
<meta name="generator" content="Hugo 0.39" />
|
||||
|
||||
|
||||
|
||||
|
@ -59,7 +59,7 @@ Also, lots of things like “COTE D`LVOIRE” and “COTE D IVOIRE&r
|
||||
|
||||
|
||||
"/>
|
||||
<meta name="generator" content="Hugo 0.38.2" />
|
||||
<meta name="generator" content="Hugo 0.39" />
|
||||
|
||||
|
||||
|
||||
|
@ -45,7 +45,7 @@ Reinstall my local (Mac OS X) DSpace stack with Tomcat 7, PostgreSQL 9.3, and Ja
|
||||
|
||||
|
||||
"/>
|
||||
<meta name="generator" content="Hugo 0.38.2" />
|
||||
<meta name="generator" content="Hugo 0.39" />
|
||||
|
||||
|
||||
|
||||
|
@ -49,7 +49,7 @@ Also, I noticed the checker log has some errors we should pay attention to:
|
||||
|
||||
|
||||
"/>
|
||||
<meta name="generator" content="Hugo 0.38.2" />
|
||||
<meta name="generator" content="Hugo 0.39" />
|
||||
|
||||
|
||||
|
||||
|
@ -53,7 +53,7 @@ There are 3,000 IPs accessing the REST API in a 24-hour period!
|
||||
|
||||
|
||||
"/>
|
||||
<meta name="generator" content="Hugo 0.38.2" />
|
||||
<meta name="generator" content="Hugo 0.39" />
|
||||
|
||||
|
||||
|
||||
|
@ -51,7 +51,7 @@ Working on second phase of metadata migration, looks like this will work for mov
|
||||
|
||||
|
||||
"/>
|
||||
<meta name="generator" content="Hugo 0.38.2" />
|
||||
<meta name="generator" content="Hugo 0.39" />
|
||||
|
||||
|
||||
|
||||
|
@ -67,7 +67,7 @@ In this case the select query was showing 95 results before the update
|
||||
|
||||
|
||||
"/>
|
||||
<meta name="generator" content="Hugo 0.38.2" />
|
||||
<meta name="generator" content="Hugo 0.39" />
|
||||
|
||||
|
||||
|
||||
|
@ -61,7 +61,7 @@ $ git rebase -i dspace-5.5
|
||||
|
||||
|
||||
"/>
|
||||
<meta name="generator" content="Hugo 0.38.2" />
|
||||
<meta name="generator" content="Hugo 0.39" />
|
||||
|
||||
|
||||
|
||||
|
@ -53,7 +53,7 @@ $ ldapsearch -x -H ldaps://svcgroot2.cgiarad.org:3269/ -b "dc=cgiarad,dc=or
|
||||
|
||||
|
||||
"/>
|
||||
<meta name="generator" content="Hugo 0.38.2" />
|
||||
<meta name="generator" content="Hugo 0.39" />
|
||||
|
||||
|
||||
|
||||
|
@ -61,7 +61,7 @@ I exported a random item’s metadata as CSV, deleted all columns except id
|
||||
|
||||
|
||||
"/>
|
||||
<meta name="generator" content="Hugo 0.38.2" />
|
||||
<meta name="generator" content="Hugo 0.39" />
|
||||
|
||||
|
||||
|
||||
|
@ -45,7 +45,7 @@ Add dc.type to the output options for Atmire’s Listings and Reports module
|
||||
|
||||
|
||||
"/>
|
||||
<meta name="generator" content="Hugo 0.38.2" />
|
||||
<meta name="generator" content="Hugo 0.39" />
|
||||
|
||||
|
||||
|
||||
|
@ -69,7 +69,7 @@ Another worrying error from dspace.log is:
|
||||
|
||||
|
||||
"/>
|
||||
<meta name="generator" content="Hugo 0.38.2" />
|
||||
<meta name="generator" content="Hugo 0.39" />
|
||||
|
||||
|
||||
|
||||
|
@ -45,7 +45,7 @@ I asked on the dspace-tech mailing list because it seems to be broken, and actua
|
||||
|
||||
|
||||
"/>
|
||||
<meta name="generator" content="Hugo 0.38.2" />
|
||||
<meta name="generator" content="Hugo 0.39" />
|
||||
|
||||
|
||||
|
||||
|
@ -73,7 +73,7 @@ Looks like we’ll be using cg.identifier.ccafsprojectpii as the field name
|
||||
|
||||
|
||||
"/>
|
||||
<meta name="generator" content="Hugo 0.38.2" />
|
||||
<meta name="generator" content="Hugo 0.39" />
|
||||
|
||||
|
||||
|
||||
|
@ -77,7 +77,7 @@ $ identify ~/Desktop/alc_contrastes_desafios.jpg
|
||||
|
||||
|
||||
"/>
|
||||
<meta name="generator" content="Hugo 0.38.2" />
|
||||
<meta name="generator" content="Hugo 0.39" />
|
||||
|
||||
|
||||
|
||||
|
@ -63,7 +63,7 @@ $ [dspace]/bin/dspace filter-media -f -i 10568/16498 -p "ImageMagick PDF Th
|
||||
|
||||
|
||||
"/>
|
||||
<meta name="generator" content="Hugo 0.38.2" />
|
||||
<meta name="generator" content="Hugo 0.39" />
|
||||
|
||||
|
||||
|
||||
|
@ -29,7 +29,7 @@
|
||||
<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.38.2" />
|
||||
<meta name="generator" content="Hugo 0.39" />
|
||||
|
||||
|
||||
|
||||
|
@ -29,7 +29,7 @@
|
||||
<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.38.2" />
|
||||
<meta name="generator" content="Hugo 0.39" />
|
||||
|
||||
|
||||
|
||||
|
@ -57,7 +57,7 @@ We can use PostgreSQL’s extended output format (-x) plus sed to format the
|
||||
|
||||
|
||||
"/>
|
||||
<meta name="generator" content="Hugo 0.38.2" />
|
||||
<meta name="generator" content="Hugo 0.39" />
|
||||
|
||||
|
||||
|
||||
|
@ -77,7 +77,7 @@ Then I cleaned up the author authorities and HTML characters in OpenRefine and s
|
||||
|
||||
|
||||
"/>
|
||||
<meta name="generator" content="Hugo 0.38.2" />
|
||||
<meta name="generator" content="Hugo 0.39" />
|
||||
|
||||
|
||||
|
||||
|
@ -53,7 +53,7 @@ Ask Sisay to clean up the WLE approvers a bit, as Marianne’s user account
|
||||
|
||||
|
||||
"/>
|
||||
<meta name="generator" content="Hugo 0.38.2" />
|
||||
<meta name="generator" content="Hugo 0.39" />
|
||||
|
||||
|
||||
|
||||
|
@ -57,7 +57,7 @@ Add Katherine Lutz to the groups for content submission and edit steps of the CG
|
||||
|
||||
|
||||
"/>
|
||||
<meta name="generator" content="Hugo 0.38.2" />
|
||||
<meta name="generator" content="Hugo 0.39" />
|
||||
|
||||
|
||||
|
||||
|
@ -77,7 +77,7 @@ COPY 54701
|
||||
|
||||
|
||||
"/>
|
||||
<meta name="generator" content="Hugo 0.38.2" />
|
||||
<meta name="generator" content="Hugo 0.39" />
|
||||
|
||||
|
||||
|
||||
|
@ -47,7 +47,7 @@ The list of connections to XMLUI and REST API for today:
|
||||
|
||||
|
||||
"/>
|
||||
<meta name="generator" content="Hugo 0.38.2" />
|
||||
<meta name="generator" content="Hugo 0.39" />
|
||||
|
||||
|
||||
|
||||
|
@ -185,7 +185,7 @@ Danny wrote to ask for help renewing the wildcard ilri.org certificate and I adv
|
||||
|
||||
|
||||
"/>
|
||||
<meta name="generator" content="Hugo 0.38.2" />
|
||||
<meta name="generator" content="Hugo 0.39" />
|
||||
|
||||
|
||||
|
||||
|
@ -47,7 +47,7 @@ I copied the logic in the jmx_tomcat_dbpools provided by Ubuntu’s munin-pl
|
||||
|
||||
|
||||
"/>
|
||||
<meta name="generator" content="Hugo 0.38.2" />
|
||||
<meta name="generator" content="Hugo 0.39" />
|
||||
|
||||
|
||||
|
||||
|
@ -41,7 +41,7 @@ Export a CSV of the IITA community metadata for Martin Mueller
|
||||
|
||||
|
||||
"/>
|
||||
<meta name="generator" content="Hugo 0.38.2" />
|
||||
<meta name="generator" content="Hugo 0.39" />
|
||||
|
||||
|
||||
|
||||
|
@ -21,7 +21,7 @@ Catalina logs at least show some memory errors yesterday:
|
||||
|
||||
<meta property="article:published_time" content="2018-04-01T16:13:54+02:00"/>
|
||||
|
||||
<meta property="article:modified_time" content="2018-04-15T11:18:17+03:00"/>
|
||||
<meta property="article:modified_time" content="2018-04-16T12:10:44+03:00"/>
|
||||
|
||||
|
||||
|
||||
@ -43,7 +43,7 @@ Catalina logs at least show some memory errors yesterday:
|
||||
|
||||
|
||||
"/>
|
||||
<meta name="generator" content="Hugo 0.38.2" />
|
||||
<meta name="generator" content="Hugo 0.39" />
|
||||
|
||||
|
||||
|
||||
@ -53,9 +53,9 @@ Catalina logs at least show some memory errors yesterday:
|
||||
"@type": "BlogPosting",
|
||||
"headline": "April, 2018",
|
||||
"url": "https://alanorth.github.io/cgspace-notes/2018-04/",
|
||||
"wordCount": "1613",
|
||||
"wordCount": "1912",
|
||||
"datePublished": "2018-04-01T16:13:54+02:00",
|
||||
"dateModified": "2018-04-15T11:18:17+03:00",
|
||||
"dateModified": "2018-04-16T12:10:44+03:00",
|
||||
"author": {
|
||||
"@type": "Person",
|
||||
"name": "Alan Orth"
|
||||
@ -494,6 +494,44 @@ Total time: 4 minutes 12 seconds
|
||||
<li>Communicate with Bioversity about their project to migrate their e-Library (Typo3) and Sci-lit databases to CGSpace</li>
|
||||
</ul>
|
||||
|
||||
<h2 id="2018-04-18">2018-04-18</h2>
|
||||
|
||||
<ul>
|
||||
<li>IWMI people are asking about building a search query that outputs RSS for their reports</li>
|
||||
<li>They want the same results as this Discovery query: <a href="https://cgspace.cgiar.org/discover?filtertype_1=dateAccessioned&filter_relational_operator_1=contains&filter_1=2018&submit_apply_filter=&query=&scope=10568%2F16814&rpp=100&sort_by=dc.date.issued_dt&order=desc">https://cgspace.cgiar.org/discover?filtertype_1=dateAccessioned&filter_relational_operator_1=contains&filter_1=2018&submit_apply_filter=&query=&scope=10568%2F16814&rpp=100&sort_by=dc.date.issued_dt&order=desc</a></li>
|
||||
<li>They will need to use OpenSearch, but I can’t remember all the parameters</li>
|
||||
<li>Apparently search sort options for OpenSearch are in <code>dspace.cfg</code>:</li>
|
||||
</ul>
|
||||
|
||||
<pre><code>webui.itemlist.sort-option.1 = title:dc.title:title
|
||||
webui.itemlist.sort-option.2 = dateissued:dc.date.issued:date
|
||||
webui.itemlist.sort-option.3 = dateaccessioned:dc.date.accessioned:date
|
||||
webui.itemlist.sort-option.4 = type:dc.type:text
|
||||
</code></pre>
|
||||
|
||||
<ul>
|
||||
<li>They want items by issue date, so we need to use sort option 2</li>
|
||||
<li>According to the DSpace Manual there are only the following parameters to OpenSearch: format, scope, rpp, start, and sort_by</li>
|
||||
<li>The OpenSearch <code>query</code> parameter expects a Discovery search filter that is defined in <code>dspace/config/spring/api/discovery.xml</code></li>
|
||||
<li>So for IWMI they should be able to use something like this: <a href="https://cgspace.cgiar.org/open-search/discover?query=dateIssued:2018&scope=10568/16814&sort_by=2&order=DESC&format=rss">https://cgspace.cgiar.org/open-search/discover?query=dateIssued:2018&scope=10568/16814&sort_by=2&order=DESC&format=rss</a></li>
|
||||
<li>There are also <code>rpp</code> (results per page) and <code>start</code> parameters but in my testing now on DSpace 5.5 they behave very strangely</li>
|
||||
<li>For example, set <code>rpp=1</code> and then check the results for <code>start</code> values of 0, 1, and 2 and they are all the same!</li>
|
||||
<li>If I have time I will check if this behavior persists on DSpace 6.x on the official DSpace demo and file a bug</li>
|
||||
<li>Also, the DSpace Manual as of 5.x has very poor documentation for OpenSearch</li>
|
||||
<li>They don’t tell you to use Discovery search filters in the <code>query</code> (with format <code>query=dateIssued:2018</code>)</li>
|
||||
<li>They don’t tell you that the sort options are actually defined in <code>dspace.cfg</code> (ie, you need to use <code>2</code> instead of <code>dc.date.issued_dt</code>)</li>
|
||||
<li>They are missing the <code>order</code> parameter (ASC vs DESC)</li>
|
||||
<li>I notice that DSpace Test has crashed again, due to memory:</li>
|
||||
</ul>
|
||||
|
||||
<pre><code># grep -c 'java.lang.OutOfMemoryError: Java heap space' /var/log/tomcat7/catalina.out
|
||||
178
|
||||
</code></pre>
|
||||
|
||||
<ul>
|
||||
<li>I will increase the JVM heap size from 5120M to 6144M, though we don’t have much room left to grow as DSpace Test (linode19) is using a smaller instance size than CGSpace</li>
|
||||
</ul>
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -26,7 +26,7 @@
|
||||
<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.38.2" />
|
||||
<meta name="generator" content="Hugo 0.39" />
|
||||
|
||||
|
||||
|
||||
|
@ -26,7 +26,7 @@
|
||||
<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.38.2" />
|
||||
<meta name="generator" content="Hugo 0.39" />
|
||||
|
||||
|
||||
|
||||
|
@ -26,7 +26,7 @@
|
||||
<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.38.2" />
|
||||
<meta name="generator" content="Hugo 0.39" />
|
||||
|
||||
|
||||
|
||||
|
@ -26,7 +26,7 @@
|
||||
<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.38.2" />
|
||||
<meta name="generator" content="Hugo 0.39" />
|
||||
|
||||
|
||||
|
||||
|
@ -26,7 +26,7 @@
|
||||
<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.38.2" />
|
||||
<meta name="generator" content="Hugo 0.39" />
|
||||
|
||||
|
||||
|
||||
|
@ -26,7 +26,7 @@
|
||||
<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.38.2" />
|
||||
<meta name="generator" content="Hugo 0.39" />
|
||||
|
||||
|
||||
|
||||
|
@ -26,7 +26,7 @@
|
||||
<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.38.2" />
|
||||
<meta name="generator" content="Hugo 0.39" />
|
||||
|
||||
|
||||
|
||||
|
@ -26,7 +26,7 @@
|
||||
<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.38.2" />
|
||||
<meta name="generator" content="Hugo 0.39" />
|
||||
|
||||
|
||||
|
||||
|
@ -26,7 +26,7 @@
|
||||
<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.38.2" />
|
||||
<meta name="generator" content="Hugo 0.39" />
|
||||
|
||||
|
||||
|
||||
|
@ -29,7 +29,7 @@
|
||||
<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.38.2" />
|
||||
<meta name="generator" content="Hugo 0.39" />
|
||||
|
||||
|
||||
|
||||
|
@ -26,7 +26,7 @@
|
||||
<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.38.2" />
|
||||
<meta name="generator" content="Hugo 0.39" />
|
||||
|
||||
|
||||
|
||||
|
@ -26,7 +26,7 @@
|
||||
<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.38.2" />
|
||||
<meta name="generator" content="Hugo 0.39" />
|
||||
|
||||
|
||||
|
||||
|
@ -26,7 +26,7 @@
|
||||
<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.38.2" />
|
||||
<meta name="generator" content="Hugo 0.39" />
|
||||
|
||||
|
||||
|
||||
|
@ -26,7 +26,7 @@
|
||||
<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.38.2" />
|
||||
<meta name="generator" content="Hugo 0.39" />
|
||||
|
||||
|
||||
|
||||
|
@ -26,7 +26,7 @@
|
||||
<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.38.2" />
|
||||
<meta name="generator" content="Hugo 0.39" />
|
||||
|
||||
|
||||
|
||||
|
@ -26,7 +26,7 @@
|
||||
<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.38.2" />
|
||||
<meta name="generator" content="Hugo 0.39" />
|
||||
|
||||
|
||||
|
||||
|
@ -26,7 +26,7 @@
|
||||
<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.38.2" />
|
||||
<meta name="generator" content="Hugo 0.39" />
|
||||
|
||||
|
||||
|
||||
|
@ -26,7 +26,7 @@
|
||||
<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.38.2" />
|
||||
<meta name="generator" content="Hugo 0.39" />
|
||||
|
||||
|
||||
|
||||
|
@ -4,7 +4,7 @@
|
||||
|
||||
<url>
|
||||
<loc>https://alanorth.github.io/cgspace-notes/2018-04/</loc>
|
||||
<lastmod>2018-04-15T11:18:17+03:00</lastmod>
|
||||
<lastmod>2018-04-16T12:10:44+03:00</lastmod>
|
||||
</url>
|
||||
|
||||
<url>
|
||||
@ -159,7 +159,7 @@
|
||||
|
||||
<url>
|
||||
<loc>https://alanorth.github.io/cgspace-notes/</loc>
|
||||
<lastmod>2018-04-15T11:18:17+03:00</lastmod>
|
||||
<lastmod>2018-04-16T12:10:44+03:00</lastmod>
|
||||
<priority>0</priority>
|
||||
</url>
|
||||
|
||||
@ -170,7 +170,7 @@
|
||||
|
||||
<url>
|
||||
<loc>https://alanorth.github.io/cgspace-notes/tags/notes/</loc>
|
||||
<lastmod>2018-04-15T11:18:17+03:00</lastmod>
|
||||
<lastmod>2018-04-16T12:10:44+03:00</lastmod>
|
||||
<priority>0</priority>
|
||||
</url>
|
||||
|
||||
@ -182,13 +182,13 @@
|
||||
|
||||
<url>
|
||||
<loc>https://alanorth.github.io/cgspace-notes/posts/</loc>
|
||||
<lastmod>2018-04-15T11:18:17+03:00</lastmod>
|
||||
<lastmod>2018-04-16T12:10:44+03:00</lastmod>
|
||||
<priority>0</priority>
|
||||
</url>
|
||||
|
||||
<url>
|
||||
<loc>https://alanorth.github.io/cgspace-notes/tags/</loc>
|
||||
<lastmod>2018-04-15T11:18:17+03:00</lastmod>
|
||||
<lastmod>2018-04-16T12:10:44+03:00</lastmod>
|
||||
<priority>0</priority>
|
||||
</url>
|
||||
|
||||
|
@ -26,7 +26,7 @@
|
||||
<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.38.2" />
|
||||
<meta name="generator" content="Hugo 0.39" />
|
||||
|
||||
|
||||
|
||||
|
@ -26,7 +26,7 @@
|
||||
<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.38.2" />
|
||||
<meta name="generator" content="Hugo 0.39" />
|
||||
|
||||
|
||||
|
||||
|
@ -26,7 +26,7 @@
|
||||
<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.38.2" />
|
||||
<meta name="generator" content="Hugo 0.39" />
|
||||
|
||||
|
||||
|
||||
|
@ -26,7 +26,7 @@
|
||||
<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.38.2" />
|
||||
<meta name="generator" content="Hugo 0.39" />
|
||||
|
||||
|
||||
|
||||
|
@ -26,7 +26,7 @@
|
||||
<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.38.2" />
|
||||
<meta name="generator" content="Hugo 0.39" />
|
||||
|
||||
|
||||
|
||||
|
@ -26,7 +26,7 @@
|
||||
<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.38.2" />
|
||||
<meta name="generator" content="Hugo 0.39" />
|
||||
|
||||
|
||||
|
||||
|
@ -26,7 +26,7 @@
|
||||
<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.38.2" />
|
||||
<meta name="generator" content="Hugo 0.39" />
|
||||
|
||||
|
||||
|
||||
|
@ -26,7 +26,7 @@
|
||||
<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.38.2" />
|
||||
<meta name="generator" content="Hugo 0.39" />
|
||||
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user