Add notes for 2019-08-20

This commit is contained in:
2019-08-21 01:26:32 +03:00
parent 35125e6fd1
commit d765b637c6
3 changed files with 43 additions and 8 deletions

View File

@ -210,4 +210,19 @@ statistics-2015: org.apache.solr.common.SolrException:org.apache.solr.common.Sol
- After reboot the statistics-2018 core failed to load so I restarted `tomcat7` again
- After this last restart all Solr cores seem to be up and running
## 2019-08-20
- Francesco sent me a new CSV with the raw filenames and paths for the Bioversity migration
- All file paths are relative to the Typo3 upload path of `/fileadmin` on the Bioversity website
- I create a new column with the derived URL that I can use to download the PDFs with my `generate-thumbnails.py` script
- Unfortunately now the filename column has paths too, so I have to use a simple Python/Jython script in OpenRefine to get the basename of the files in the filename column:
```
import os
return os.path.basename(value)
```
- Then I can try to download all the files again with the script
<!-- vim: set sw=2 ts=2: -->