mirror of
https://github.com/alanorth/cgspace-notes.git
synced 2024-11-22 06:35:03 +01:00
Update notes
This commit is contained in:
parent
448097a539
commit
1c30c7dd44
@ -389,4 +389,78 @@ solr_query_params = {
|
||||
|
||||
- The date range format for Solr is important, but it seems we only need to add `T00:00:00Z` to the normal ISO 8601 YYYY-MM-DD strings
|
||||
|
||||
## 2020-09-25
|
||||
|
||||
- I did some more work on the dspace-statistics-api and finalized the support for sending a POST to `/items`:
|
||||
|
||||
```
|
||||
$ curl -s -d @request.json https://dspacetest.cgiar.org/rest/statistics/items | json_pp
|
||||
{
|
||||
"currentPage" : 0,
|
||||
"limit" : 10,
|
||||
"statistics" : [
|
||||
{
|
||||
"downloads" : 3329,
|
||||
"id" : "b2c1bbfd-65b0-438c-9e49-d271c49b2696",
|
||||
"views" : 1565
|
||||
},
|
||||
{
|
||||
"downloads" : 3797,
|
||||
"id" : "f44cf173-2344-4eb2-8f00-ee55df32c76f",
|
||||
"views" : 48
|
||||
},
|
||||
{
|
||||
"downloads" : 11064,
|
||||
"id" : "8542f9da-9ce1-4614-abf4-f2e3fdb4b305",
|
||||
"views" : 26
|
||||
},
|
||||
{
|
||||
"downloads" : 6782,
|
||||
"id" : "2324aa41-e9de-4a2b-bc36-16241464683e",
|
||||
"views" : 19
|
||||
},
|
||||
{
|
||||
"downloads" : 48,
|
||||
"id" : "0fe573e7-042a-4240-a4d9-753b61233908",
|
||||
"views" : 12
|
||||
},
|
||||
{
|
||||
"downloads" : 0,
|
||||
"id" : "000e61ca-695d-43e5-9ab8-1f3fd7a67a32",
|
||||
"views" : 4
|
||||
},
|
||||
{
|
||||
"downloads" : 0,
|
||||
"id" : "000dc7cd-9485-424b-8ecf-78002613cc87",
|
||||
"views" : 1
|
||||
},
|
||||
{
|
||||
"downloads" : 0,
|
||||
"id" : "000e1616-3901-4431-80b1-c6bc67312d8c",
|
||||
"views" : 1
|
||||
},
|
||||
{
|
||||
"downloads" : 0,
|
||||
"id" : "000ea897-5557-49c7-9f54-9fa192c0f83b",
|
||||
"views" : 1
|
||||
},
|
||||
{
|
||||
"downloads" : 0,
|
||||
"id" : "000ec427-97e5-4766-85a5-e8dd62199ab5",
|
||||
"views" : 1
|
||||
}
|
||||
],
|
||||
"totalPages" : 13
|
||||
}
|
||||
```
|
||||
|
||||
- I deployed it on DSpace Test and sent a note to Salem so he can test it
|
||||
- I still need to add tests...
|
||||
- After that I will probably tag it as version 1.3.0
|
||||
|
||||
## 2020-09-25
|
||||
|
||||
- Atmire responded with some notes about the issues we're having with CUA and L&R on DSpace Test
|
||||
- They think they have found the reason the issues are happening...
|
||||
|
||||
<!-- vim: set sw=2 ts=2: -->
|
||||
|
@ -25,7 +25,7 @@ I filed an issue on OpenRXV to make some minor edits to the admin UI: https://gi
|
||||
<meta property="og:type" content="article" />
|
||||
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/2020-09/" />
|
||||
<meta property="article:published_time" content="2020-09-02T15:35:54+03:00" />
|
||||
<meta property="article:modified_time" content="2020-09-22T14:14:18+03:00" />
|
||||
<meta property="article:modified_time" content="2020-09-23T12:59:10+03:00" />
|
||||
|
||||
<meta name="twitter:card" content="summary"/>
|
||||
<meta name="twitter:title" content="September, 2020"/>
|
||||
@ -55,9 +55,9 @@ I filed an issue on OpenRXV to make some minor edits to the admin UI: https://gi
|
||||
"@type": "BlogPosting",
|
||||
"headline": "September, 2020",
|
||||
"url": "https://alanorth.github.io/cgspace-notes/2020-09/",
|
||||
"wordCount": "2608",
|
||||
"wordCount": "2822",
|
||||
"datePublished": "2020-09-02T15:35:54+03:00",
|
||||
"dateModified": "2020-09-22T14:14:18+03:00",
|
||||
"dateModified": "2020-09-23T12:59:10+03:00",
|
||||
"author": {
|
||||
"@type": "Person",
|
||||
"name": "Alan Orth"
|
||||
@ -591,6 +591,81 @@ solr_query_params = {
|
||||
</code></pre><ul>
|
||||
<li>The date range format for Solr is important, but it seems we only need to add <code>T00:00:00Z</code> to the normal ISO 8601 YYYY-MM-DD strings</li>
|
||||
</ul>
|
||||
<h2 id="2020-09-25">2020-09-25</h2>
|
||||
<ul>
|
||||
<li>I did some more work on the dspace-statistics-api and finalized the support for sending a POST to <code>/items</code>:</li>
|
||||
</ul>
|
||||
<pre><code>$ curl -s -d @request.json https://dspacetest.cgiar.org/rest/statistics/items | json_pp
|
||||
{
|
||||
"currentPage" : 0,
|
||||
"limit" : 10,
|
||||
"statistics" : [
|
||||
{
|
||||
"downloads" : 3329,
|
||||
"id" : "b2c1bbfd-65b0-438c-9e49-d271c49b2696",
|
||||
"views" : 1565
|
||||
},
|
||||
{
|
||||
"downloads" : 3797,
|
||||
"id" : "f44cf173-2344-4eb2-8f00-ee55df32c76f",
|
||||
"views" : 48
|
||||
},
|
||||
{
|
||||
"downloads" : 11064,
|
||||
"id" : "8542f9da-9ce1-4614-abf4-f2e3fdb4b305",
|
||||
"views" : 26
|
||||
},
|
||||
{
|
||||
"downloads" : 6782,
|
||||
"id" : "2324aa41-e9de-4a2b-bc36-16241464683e",
|
||||
"views" : 19
|
||||
},
|
||||
{
|
||||
"downloads" : 48,
|
||||
"id" : "0fe573e7-042a-4240-a4d9-753b61233908",
|
||||
"views" : 12
|
||||
},
|
||||
{
|
||||
"downloads" : 0,
|
||||
"id" : "000e61ca-695d-43e5-9ab8-1f3fd7a67a32",
|
||||
"views" : 4
|
||||
},
|
||||
{
|
||||
"downloads" : 0,
|
||||
"id" : "000dc7cd-9485-424b-8ecf-78002613cc87",
|
||||
"views" : 1
|
||||
},
|
||||
{
|
||||
"downloads" : 0,
|
||||
"id" : "000e1616-3901-4431-80b1-c6bc67312d8c",
|
||||
"views" : 1
|
||||
},
|
||||
{
|
||||
"downloads" : 0,
|
||||
"id" : "000ea897-5557-49c7-9f54-9fa192c0f83b",
|
||||
"views" : 1
|
||||
},
|
||||
{
|
||||
"downloads" : 0,
|
||||
"id" : "000ec427-97e5-4766-85a5-e8dd62199ab5",
|
||||
"views" : 1
|
||||
}
|
||||
],
|
||||
"totalPages" : 13
|
||||
}
|
||||
</code></pre><ul>
|
||||
<li>I deployed it on DSpace Test and sent a note to Salem so he can test it</li>
|
||||
<li>I still need to add tests…</li>
|
||||
<li>After that I will probably tag it as version 1.3.0</li>
|
||||
</ul>
|
||||
<h2 id="2020-09-25-1">2020-09-25</h2>
|
||||
<ul>
|
||||
<li>Atmire responded with some notes about the issues we’re having with CUA and L&R on DSpace Test
|
||||
<ul>
|
||||
<li>They think they have found the reason the issues are happening…</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<!-- raw HTML omitted -->
|
||||
|
||||
|
||||
|
@ -9,7 +9,7 @@
|
||||
<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 property="og:updated_time" content="2020-09-22T14:14:18+03:00" />
|
||||
<meta property="og:updated_time" content="2020-09-23T12:59:10+03:00" />
|
||||
|
||||
<meta name="twitter:card" content="summary"/>
|
||||
<meta name="twitter:title" content="Categories"/>
|
||||
|
@ -9,7 +9,7 @@
|
||||
<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/notes/" />
|
||||
<meta property="og:updated_time" content="2020-09-22T14:14:18+03:00" />
|
||||
<meta property="og:updated_time" content="2020-09-23T12:59:10+03:00" />
|
||||
|
||||
<meta name="twitter:card" content="summary"/>
|
||||
<meta name="twitter:title" content="Notes"/>
|
||||
|
@ -9,7 +9,7 @@
|
||||
<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/notes/" />
|
||||
<meta property="og:updated_time" content="2020-09-22T14:14:18+03:00" />
|
||||
<meta property="og:updated_time" content="2020-09-23T12:59:10+03:00" />
|
||||
|
||||
<meta name="twitter:card" content="summary"/>
|
||||
<meta name="twitter:title" content="Notes"/>
|
||||
|
@ -9,7 +9,7 @@
|
||||
<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/notes/" />
|
||||
<meta property="og:updated_time" content="2020-09-22T14:14:18+03:00" />
|
||||
<meta property="og:updated_time" content="2020-09-23T12:59:10+03:00" />
|
||||
|
||||
<meta name="twitter:card" content="summary"/>
|
||||
<meta name="twitter:title" content="Notes"/>
|
||||
|
@ -9,7 +9,7 @@
|
||||
<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/notes/" />
|
||||
<meta property="og:updated_time" content="2020-09-22T14:14:18+03:00" />
|
||||
<meta property="og:updated_time" content="2020-09-23T12:59:10+03:00" />
|
||||
|
||||
<meta name="twitter:card" content="summary"/>
|
||||
<meta name="twitter:title" content="Notes"/>
|
||||
|
@ -9,7 +9,7 @@
|
||||
<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/" />
|
||||
<meta property="og:updated_time" content="2020-09-22T14:14:18+03:00" />
|
||||
<meta property="og:updated_time" content="2020-09-23T12:59:10+03:00" />
|
||||
|
||||
<meta name="twitter:card" content="summary"/>
|
||||
<meta name="twitter:title" content="CGSpace Notes"/>
|
||||
|
@ -9,7 +9,7 @@
|
||||
<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/" />
|
||||
<meta property="og:updated_time" content="2020-09-22T14:14:18+03:00" />
|
||||
<meta property="og:updated_time" content="2020-09-23T12:59:10+03:00" />
|
||||
|
||||
<meta name="twitter:card" content="summary"/>
|
||||
<meta name="twitter:title" content="CGSpace Notes"/>
|
||||
|
@ -9,7 +9,7 @@
|
||||
<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/" />
|
||||
<meta property="og:updated_time" content="2020-09-22T14:14:18+03:00" />
|
||||
<meta property="og:updated_time" content="2020-09-23T12:59:10+03:00" />
|
||||
|
||||
<meta name="twitter:card" content="summary"/>
|
||||
<meta name="twitter:title" content="CGSpace Notes"/>
|
||||
|
@ -9,7 +9,7 @@
|
||||
<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/" />
|
||||
<meta property="og:updated_time" content="2020-09-22T14:14:18+03:00" />
|
||||
<meta property="og:updated_time" content="2020-09-23T12:59:10+03:00" />
|
||||
|
||||
<meta name="twitter:card" content="summary"/>
|
||||
<meta name="twitter:title" content="CGSpace Notes"/>
|
||||
|
@ -9,7 +9,7 @@
|
||||
<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/" />
|
||||
<meta property="og:updated_time" content="2020-09-22T14:14:18+03:00" />
|
||||
<meta property="og:updated_time" content="2020-09-23T12:59:10+03:00" />
|
||||
|
||||
<meta name="twitter:card" content="summary"/>
|
||||
<meta name="twitter:title" content="CGSpace Notes"/>
|
||||
|
@ -9,7 +9,7 @@
|
||||
<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/" />
|
||||
<meta property="og:updated_time" content="2020-09-22T14:14:18+03:00" />
|
||||
<meta property="og:updated_time" content="2020-09-23T12:59:10+03:00" />
|
||||
|
||||
<meta name="twitter:card" content="summary"/>
|
||||
<meta name="twitter:title" content="CGSpace Notes"/>
|
||||
|
@ -9,7 +9,7 @@
|
||||
<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/" />
|
||||
<meta property="og:updated_time" content="2020-09-22T14:14:18+03:00" />
|
||||
<meta property="og:updated_time" content="2020-09-23T12:59:10+03:00" />
|
||||
|
||||
<meta name="twitter:card" content="summary"/>
|
||||
<meta name="twitter:title" content="CGSpace Notes"/>
|
||||
|
@ -9,7 +9,7 @@
|
||||
<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/posts/" />
|
||||
<meta property="og:updated_time" content="2020-09-22T14:14:18+03:00" />
|
||||
<meta property="og:updated_time" content="2020-09-23T12:59:10+03:00" />
|
||||
|
||||
<meta name="twitter:card" content="summary"/>
|
||||
<meta name="twitter:title" content="Posts"/>
|
||||
|
@ -9,7 +9,7 @@
|
||||
<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/posts/" />
|
||||
<meta property="og:updated_time" content="2020-09-22T14:14:18+03:00" />
|
||||
<meta property="og:updated_time" content="2020-09-23T12:59:10+03:00" />
|
||||
|
||||
<meta name="twitter:card" content="summary"/>
|
||||
<meta name="twitter:title" content="Posts"/>
|
||||
|
@ -9,7 +9,7 @@
|
||||
<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/posts/" />
|
||||
<meta property="og:updated_time" content="2020-09-22T14:14:18+03:00" />
|
||||
<meta property="og:updated_time" content="2020-09-23T12:59:10+03:00" />
|
||||
|
||||
<meta name="twitter:card" content="summary"/>
|
||||
<meta name="twitter:title" content="Posts"/>
|
||||
|
@ -9,7 +9,7 @@
|
||||
<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/posts/" />
|
||||
<meta property="og:updated_time" content="2020-09-22T14:14:18+03:00" />
|
||||
<meta property="og:updated_time" content="2020-09-23T12:59:10+03:00" />
|
||||
|
||||
<meta name="twitter:card" content="summary"/>
|
||||
<meta name="twitter:title" content="Posts"/>
|
||||
|
@ -9,7 +9,7 @@
|
||||
<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/posts/" />
|
||||
<meta property="og:updated_time" content="2020-09-22T14:14:18+03:00" />
|
||||
<meta property="og:updated_time" content="2020-09-23T12:59:10+03:00" />
|
||||
|
||||
<meta name="twitter:card" content="summary"/>
|
||||
<meta name="twitter:title" content="Posts"/>
|
||||
|
@ -9,7 +9,7 @@
|
||||
<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/posts/" />
|
||||
<meta property="og:updated_time" content="2020-09-22T14:14:18+03:00" />
|
||||
<meta property="og:updated_time" content="2020-09-23T12:59:10+03:00" />
|
||||
|
||||
<meta name="twitter:card" content="summary"/>
|
||||
<meta name="twitter:title" content="Posts"/>
|
||||
|
@ -9,7 +9,7 @@
|
||||
<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/posts/" />
|
||||
<meta property="og:updated_time" content="2020-09-22T14:14:18+03:00" />
|
||||
<meta property="og:updated_time" content="2020-09-23T12:59:10+03:00" />
|
||||
|
||||
<meta name="twitter:card" content="summary"/>
|
||||
<meta name="twitter:title" content="Posts"/>
|
||||
|
@ -4,27 +4,27 @@
|
||||
|
||||
<url>
|
||||
<loc>https://alanorth.github.io/cgspace-notes/categories/</loc>
|
||||
<lastmod>2020-09-22T14:14:18+03:00</lastmod>
|
||||
<lastmod>2020-09-23T12:59:10+03:00</lastmod>
|
||||
</url>
|
||||
|
||||
<url>
|
||||
<loc>https://alanorth.github.io/cgspace-notes/</loc>
|
||||
<lastmod>2020-09-22T14:14:18+03:00</lastmod>
|
||||
<lastmod>2020-09-23T12:59:10+03:00</lastmod>
|
||||
</url>
|
||||
|
||||
<url>
|
||||
<loc>https://alanorth.github.io/cgspace-notes/categories/notes/</loc>
|
||||
<lastmod>2020-09-22T14:14:18+03:00</lastmod>
|
||||
<lastmod>2020-09-23T12:59:10+03:00</lastmod>
|
||||
</url>
|
||||
|
||||
<url>
|
||||
<loc>https://alanorth.github.io/cgspace-notes/posts/</loc>
|
||||
<lastmod>2020-09-22T14:14:18+03:00</lastmod>
|
||||
<lastmod>2020-09-23T12:59:10+03:00</lastmod>
|
||||
</url>
|
||||
|
||||
<url>
|
||||
<loc>https://alanorth.github.io/cgspace-notes/2020-09/</loc>
|
||||
<lastmod>2020-09-22T14:14:18+03:00</lastmod>
|
||||
<lastmod>2020-09-23T12:59:10+03:00</lastmod>
|
||||
</url>
|
||||
|
||||
<url>
|
||||
|
Loading…
Reference in New Issue
Block a user