mirror of
https://github.com/alanorth/cgspace-notes.git
synced 2024-11-22 14:45:03 +01:00
Add notes for 2020-01-30
This commit is contained in:
parent
8dbcace252
commit
ba1f1e1510
@ -366,4 +366,30 @@ COPY 2900
|
||||
$ ./fix-metadata-values.py -i /tmp/2020-01-29-ISSNs-Distinct.csv -db dspace -u dspace -p 'fuuu' -f 'dc.identifier.issn[en_US]' -m 21 -t correct -d
|
||||
```
|
||||
|
||||
## 2020-01-30
|
||||
|
||||
- About to start working on the DSpace 6 port and I'm looking at commits that are in the not-yet-tagged DSpace 6.4:
|
||||
- [DS-4342] improve the performance of the collections/collection_id/items REST endpoint:
|
||||
- c2e6719fa763e291b81b2d61da2f8c758fe38ff3
|
||||
- [DS-4136] Improve OAI import performance for a large install:
|
||||
- 3f81daf3d89b17ff4d08783ee9899e5a745851dc
|
||||
- Fix DS-4066 by update all IDs to string type in schema:
|
||||
- f15cb33ab4272a3970572e608810de3076d541a3
|
||||
- [DS-3849] Default ID 'order by' clause for other 'get items' queries:
|
||||
- 7b888fa558e5792cd780d1d6a7f75564f4da3bf9
|
||||
- 8d1aa33f7b9ea5a623e1ed13f139695671c598d4
|
||||
- DS-3914: Fix community defiliation:
|
||||
- 19cc9719879cf69019acad72ee13915a4128e859
|
||||
- b86a7b8d66608ee2bec67fb69b37e27c9a620aa3
|
||||
- [DS-3664] ImageMagick: Only execute "identify" on first page:
|
||||
- 33ba419f3560639bff8ea002cdfc38345c0fea8d
|
||||
- [DS-3602] 6x Port: Incremental Update of Legacy Id fields in Solr Statistics:
|
||||
- 184f2b2153479045fba6239342c63e7f8564b8b6
|
||||
- It's annoying that we have to target DSpace 6.3... I think I should totally cherry-pick these when I'm done
|
||||
- For now I just created a new DSpace repository and checked out the `dspace-6.3` tag and started diffing and copying changes over from our 5.8 repository
|
||||
- There are some things I need to remember to check:
|
||||
- `search.index` settings in DSpace 5's dspace.cfg (dunno where they are now)
|
||||
- `thumbnail-fallback-files.xml`
|
||||
- The code currently lives in the `6_x-dev` branch
|
||||
|
||||
<!-- vim: set sw=2 ts=2: -->
|
||||
|
@ -29,7 +29,7 @@ I tweeted the CGSpace repository link
|
||||
<meta property="og:type" content="article" />
|
||||
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/2020-01/" />
|
||||
<meta property="article:published_time" content="2020-01-06T10:48:30+02:00" />
|
||||
<meta property="article:modified_time" content="2020-01-28T17:37:27+02:00" />
|
||||
<meta property="article:modified_time" content="2020-01-29T18:09:36+02:00" />
|
||||
|
||||
<meta name="twitter:card" content="summary"/>
|
||||
<meta name="twitter:title" content="January, 2020"/>
|
||||
@ -63,9 +63,9 @@ I tweeted the CGSpace repository link
|
||||
"@type": "BlogPosting",
|
||||
"headline": "January, 2020",
|
||||
"url": "https:\/\/alanorth.github.io\/cgspace-notes\/2020-01\/",
|
||||
"wordCount": "3328",
|
||||
"wordCount": "3522",
|
||||
"datePublished": "2020-01-06T10:48:30+02:00",
|
||||
"dateModified": "2020-01-28T17:37:27+02:00",
|
||||
"dateModified": "2020-01-29T18:09:36+02:00",
|
||||
"author": {
|
||||
"@type": "Person",
|
||||
"name": "Alan Orth"
|
||||
@ -509,6 +509,32 @@ COPY 2900
|
||||
<p>``
|
||||
$ ./fix-metadata-values.py -i /tmp/2020-01-29-ISSNs-Distinct.csv -db dspace -u dspace -p ‘fuuu’ -f ‘dc.identifier.issn[en_US]’ -m 21 -t correct -d</p>
|
||||
<pre><code>
|
||||
## 2020-01-30
|
||||
|
||||
- About to start working on the DSpace 6 port and I'm looking at commits that are in the not-yet-tagged DSpace 6.4:
|
||||
- [DS-4342] improve the performance of the collections/collection_id/items REST endpoint:
|
||||
- c2e6719fa763e291b81b2d61da2f8c758fe38ff3
|
||||
- [DS-4136] Improve OAI import performance for a large install:
|
||||
- 3f81daf3d89b17ff4d08783ee9899e5a745851dc
|
||||
- Fix DS-4066 by update all IDs to string type in schema:
|
||||
- f15cb33ab4272a3970572e608810de3076d541a3
|
||||
- [DS-3849] Default ID 'order by' clause for other 'get items' queries:
|
||||
- 7b888fa558e5792cd780d1d6a7f75564f4da3bf9
|
||||
- 8d1aa33f7b9ea5a623e1ed13f139695671c598d4
|
||||
- DS-3914: Fix community defiliation:
|
||||
- 19cc9719879cf69019acad72ee13915a4128e859
|
||||
- b86a7b8d66608ee2bec67fb69b37e27c9a620aa3
|
||||
- [DS-3664] ImageMagick: Only execute "identify" on first page:
|
||||
- 33ba419f3560639bff8ea002cdfc38345c0fea8d
|
||||
- [DS-3602] 6x Port: Incremental Update of Legacy Id fields in Solr Statistics:
|
||||
- 184f2b2153479045fba6239342c63e7f8564b8b6
|
||||
- It's annoying that we have to target DSpace 6.3... I think I should totally cherry-pick these when I'm done
|
||||
- For now I just created a new DSpace repository and checked out the `dspace-6.3` tag and started diffing and copying changes over from our 5.8 repository
|
||||
- There are some things I need to remember to check:
|
||||
- `search.index` settings in DSpace 5's dspace.cfg (dunno where they are now)
|
||||
- `thumbnail-fallback-files.xml`
|
||||
- The code currently lives in the `6_x-dev` branch
|
||||
|
||||
<!-- vim: set sw=2 ts=2: -->
|
||||
</code></pre>
|
||||
|
||||
|
@ -4,27 +4,27 @@
|
||||
|
||||
<url>
|
||||
<loc>https://alanorth.github.io/cgspace-notes/categories/</loc>
|
||||
<lastmod>2020-01-28T17:37:27+02:00</lastmod>
|
||||
<lastmod>2020-01-29T18:09:36+02:00</lastmod>
|
||||
</url>
|
||||
|
||||
<url>
|
||||
<loc>https://alanorth.github.io/cgspace-notes/</loc>
|
||||
<lastmod>2020-01-28T17:37:27+02:00</lastmod>
|
||||
<lastmod>2020-01-29T18:09:36+02:00</lastmod>
|
||||
</url>
|
||||
|
||||
<url>
|
||||
<loc>https://alanorth.github.io/cgspace-notes/2020-01/</loc>
|
||||
<lastmod>2020-01-28T17:37:27+02:00</lastmod>
|
||||
<lastmod>2020-01-29T18:09:36+02:00</lastmod>
|
||||
</url>
|
||||
|
||||
<url>
|
||||
<loc>https://alanorth.github.io/cgspace-notes/categories/notes/</loc>
|
||||
<lastmod>2020-01-28T17:37:27+02:00</lastmod>
|
||||
<lastmod>2020-01-29T18:09:36+02:00</lastmod>
|
||||
</url>
|
||||
|
||||
<url>
|
||||
<loc>https://alanorth.github.io/cgspace-notes/posts/</loc>
|
||||
<lastmod>2020-01-28T17:37:27+02:00</lastmod>
|
||||
<lastmod>2020-01-29T18:09:36+02:00</lastmod>
|
||||
</url>
|
||||
|
||||
<url>
|
||||
|
Loading…
Reference in New Issue
Block a user