mirror of
https://github.com/alanorth/cgspace-notes.git
synced 2024-11-22 14:45:03 +01:00
Add notes for 2021-03-31
This commit is contained in:
parent
1629491eff
commit
5b4b5b4e5a
@ -651,5 +651,30 @@ Run 1 took 5m 53s
|
||||
- I realized I never finished deleting all the old fields after our CG Core migration a few months ago
|
||||
- I found a few occurrences of old metadata so I had to move them where possible and delete them where not
|
||||
- I updated the [CG Core v2 migration page]({{< relref "cgspace-cgcorev2-migration.md" >}})
|
||||
- Marianne Gadeberg wrote to ask why the item she wanted to map a few days ago still doesn't appear in the mapped collection
|
||||
- I looked on the item page itself and it lists the collection, but doesn't appear in the collection list
|
||||
- I tried to forceably reindex the collection and the item, but it didn't seem to work
|
||||
- Now I will try a complete Discovery re-index
|
||||
|
||||
## 2021-03-31
|
||||
|
||||
- The Discovery re-index finished, but [the CIP item](https://hdl.handle.net/10568/110633) still does not appear in the GENDER Platform grants collection
|
||||
- The item page itself DOES list the grants collection! WTF
|
||||
- I sent a message to the dspace-tech mailing list to see if someone can comment
|
||||
- I even tried unmapping and re-mapping, but it doesn't change anything: the item still doesn't appear in the collection, but I can see that it is mapped
|
||||
- I signed up for a SHERPA API key so I can try to write something to get journal names from ISSN
|
||||
- This code seems to get a journal title, though I only tried it with a few ISSNs:
|
||||
|
||||
```python
|
||||
import requests
|
||||
|
||||
query_params = {'item-type': 'publication', 'format': 'Json', 'limit': 10, 'offset': 0, 'api-key': 'blahhhahahah', 'filter': '[["issn","equals","0011-183X"]]'}
|
||||
r = requests.get('https://v2.sherpa.ac.uk/cgi/retrieve')
|
||||
if r.status_code and len(r.json()['items']) > 0:
|
||||
r.json()['items'][0]['title'][0]['title']
|
||||
```
|
||||
|
||||
- I wrote a script to check the ISSNs against Crossref's API: `crossref-issn-lookup.py`
|
||||
- I suspect Crossref might have better data actually...
|
||||
|
||||
<!-- vim: set sw=2 ts=2: -->
|
||||
|
@ -244,14 +244,14 @@ db.statementpool = true
|
||||
|
||||
<li><a href="/cgspace-notes/2021-03/">March, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-02/">February, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-01/">January, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-12/">December, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-dspace6-upgrade/">CGSpace DSpace 6 Upgrade</a></li>
|
||||
|
||||
</ol>
|
||||
</section>
|
||||
|
||||
|
@ -266,14 +266,14 @@ $ curl -o /dev/null -s -w %{time_total}\\n https://cgspace.cgiar.org/rest/handle
|
||||
|
||||
<li><a href="/cgspace-notes/2021-03/">March, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-02/">February, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-01/">January, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-12/">December, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-dspace6-upgrade/">CGSpace DSpace 6 Upgrade</a></li>
|
||||
|
||||
</ol>
|
||||
</section>
|
||||
|
||||
|
@ -202,14 +202,14 @@ $ find SimpleArchiveForBio/ -iname “*.pdf” -exec basename {} ; | sor
|
||||
|
||||
<li><a href="/cgspace-notes/2021-03/">March, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-02/">February, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-01/">January, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-12/">December, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-dspace6-upgrade/">CGSpace DSpace 6 Upgrade</a></li>
|
||||
|
||||
</ol>
|
||||
</section>
|
||||
|
||||
|
@ -380,14 +380,14 @@ Bitstream: tést señora alimentación.pdf
|
||||
|
||||
<li><a href="/cgspace-notes/2021-03/">March, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-02/">February, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-01/">January, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-12/">December, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-dspace6-upgrade/">CGSpace DSpace 6 Upgrade</a></li>
|
||||
|
||||
</ol>
|
||||
</section>
|
||||
|
||||
|
@ -318,14 +318,14 @@ Reinstall my local (Mac OS X) DSpace stack with Tomcat 7, PostgreSQL 9.3, and Ja
|
||||
|
||||
<li><a href="/cgspace-notes/2021-03/">March, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-02/">February, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-01/">January, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-12/">December, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-dspace6-upgrade/">CGSpace DSpace 6 Upgrade</a></li>
|
||||
|
||||
</ol>
|
||||
</section>
|
||||
|
||||
|
@ -497,14 +497,14 @@ dspace.log.2016-04-27:7271
|
||||
|
||||
<li><a href="/cgspace-notes/2021-03/">March, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-02/">February, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-01/">January, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-12/">December, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-dspace6-upgrade/">CGSpace DSpace 6 Upgrade</a></li>
|
||||
|
||||
</ol>
|
||||
</section>
|
||||
|
||||
|
@ -373,14 +373,14 @@ sys 0m20.540s
|
||||
|
||||
<li><a href="/cgspace-notes/2021-03/">March, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-02/">February, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-01/">January, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-12/">December, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-dspace6-upgrade/">CGSpace DSpace 6 Upgrade</a></li>
|
||||
|
||||
</ol>
|
||||
</section>
|
||||
|
||||
|
@ -411,14 +411,14 @@ $ ./delete-metadata-values.py -f dc.contributor.corporate -i Corporate-Authors-D
|
||||
|
||||
<li><a href="/cgspace-notes/2021-03/">March, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-02/">February, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-01/">January, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-12/">December, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-dspace6-upgrade/">CGSpace DSpace 6 Upgrade</a></li>
|
||||
|
||||
</ol>
|
||||
</section>
|
||||
|
||||
|
@ -327,14 +327,14 @@ discovery.index.authority.ignore-variants=true
|
||||
|
||||
<li><a href="/cgspace-notes/2021-03/">March, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-02/">February, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-01/">January, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-12/">December, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-dspace6-upgrade/">CGSpace DSpace 6 Upgrade</a></li>
|
||||
|
||||
</ol>
|
||||
</section>
|
||||
|
||||
|
@ -391,14 +391,14 @@ $ JAVA_OPTS="-Dfile.encoding=UTF-8 -Xmx512m" /home/cgspace.cgiar.org/b
|
||||
|
||||
<li><a href="/cgspace-notes/2021-03/">March, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-02/">February, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-01/">January, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-12/">December, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-dspace6-upgrade/">CGSpace DSpace 6 Upgrade</a></li>
|
||||
|
||||
</ol>
|
||||
</section>
|
||||
|
||||
|
@ -608,14 +608,14 @@ $ ./delete-metadata-values.py -i ilrisubjects-delete-13.csv -f cg.subject.ilri -
|
||||
|
||||
<li><a href="/cgspace-notes/2021-03/">March, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-02/">February, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-01/">January, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-12/">December, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-dspace6-upgrade/">CGSpace DSpace 6 Upgrade</a></li>
|
||||
|
||||
</ol>
|
||||
</section>
|
||||
|
||||
|
@ -374,14 +374,14 @@ dspace=# update metadatavalue set text_value = regexp_replace(text_value, 'http:
|
||||
|
||||
<li><a href="/cgspace-notes/2021-03/">March, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-02/">February, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-01/">January, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-12/">December, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-dspace6-upgrade/">CGSpace DSpace 6 Upgrade</a></li>
|
||||
|
||||
</ol>
|
||||
</section>
|
||||
|
||||
|
@ -550,14 +550,14 @@ org.dspace.discovery.SearchServiceException: Error executing query
|
||||
|
||||
<li><a href="/cgspace-notes/2021-03/">March, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-02/">February, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-01/">January, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-12/">December, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-dspace6-upgrade/">CGSpace DSpace 6 Upgrade</a></li>
|
||||
|
||||
</ol>
|
||||
</section>
|
||||
|
||||
|
@ -786,14 +786,14 @@ $ exit
|
||||
|
||||
<li><a href="/cgspace-notes/2021-03/">March, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-02/">February, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-01/">January, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-12/">December, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-dspace6-upgrade/">CGSpace DSpace 6 Upgrade</a></li>
|
||||
|
||||
</ol>
|
||||
</section>
|
||||
|
||||
|
@ -371,14 +371,14 @@ $ gs -sDEVICE=pdfwrite -dCompatibilityLevel=1.4 -dPDFSETTINGS=/ebook -dNOPAUSE -
|
||||
|
||||
<li><a href="/cgspace-notes/2021-03/">March, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-02/">February, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-01/">January, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-12/">December, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-dspace6-upgrade/">CGSpace DSpace 6 Upgrade</a></li>
|
||||
|
||||
</ol>
|
||||
</section>
|
||||
|
||||
|
@ -426,14 +426,14 @@ COPY 1968
|
||||
|
||||
<li><a href="/cgspace-notes/2021-03/">March, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-02/">February, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-01/">January, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-12/">December, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-dspace6-upgrade/">CGSpace DSpace 6 Upgrade</a></li>
|
||||
|
||||
</ol>
|
||||
</section>
|
||||
|
||||
|
@ -357,14 +357,14 @@ $ ./delete-metadata-values.py -i Investors-Delete-121.csv -f dc.description.spon
|
||||
|
||||
<li><a href="/cgspace-notes/2021-03/">March, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-02/">February, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-01/">January, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-12/">December, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-dspace6-upgrade/">CGSpace DSpace 6 Upgrade</a></li>
|
||||
|
||||
</ol>
|
||||
</section>
|
||||
|
||||
|
@ -587,14 +587,14 @@ $ gem install compass -v 1.0.3
|
||||
|
||||
<li><a href="/cgspace-notes/2021-03/">March, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-02/">February, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-01/">January, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-12/">December, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-dspace6-upgrade/">CGSpace DSpace 6 Upgrade</a></li>
|
||||
|
||||
</ol>
|
||||
</section>
|
||||
|
||||
|
@ -393,14 +393,14 @@ UPDATE 187
|
||||
|
||||
<li><a href="/cgspace-notes/2021-03/">March, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-02/">February, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-01/">January, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-12/">December, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-dspace6-upgrade/">CGSpace DSpace 6 Upgrade</a></li>
|
||||
|
||||
</ol>
|
||||
</section>
|
||||
|
||||
|
@ -272,14 +272,14 @@ $ JAVA_OPTS="-Xmx1024m -Dfile.encoding=UTF-8" [dspace]/bin/dspace impo
|
||||
|
||||
<li><a href="/cgspace-notes/2021-03/">March, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-02/">February, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-01/">January, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-12/">December, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-dspace6-upgrade/">CGSpace DSpace 6 Upgrade</a></li>
|
||||
|
||||
</ol>
|
||||
</section>
|
||||
|
||||
|
@ -277,14 +277,14 @@ delete from metadatavalue where resource_type_id=2 and metadata_field_id=235 and
|
||||
|
||||
<li><a href="/cgspace-notes/2021-03/">March, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-02/">February, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-01/">January, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-12/">December, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-dspace6-upgrade/">CGSpace DSpace 6 Upgrade</a></li>
|
||||
|
||||
</ol>
|
||||
</section>
|
||||
|
||||
|
@ -519,14 +519,14 @@ org.apache.commons.dbcp.SQLNestedException: Cannot get a connection, pool error
|
||||
|
||||
<li><a href="/cgspace-notes/2021-03/">March, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-02/">February, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-01/">January, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-12/">December, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-dspace6-upgrade/">CGSpace DSpace 6 Upgrade</a></li>
|
||||
|
||||
</ol>
|
||||
</section>
|
||||
|
||||
|
@ -661,14 +661,14 @@ Cert Status: good
|
||||
|
||||
<li><a href="/cgspace-notes/2021-03/">March, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-02/">February, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-01/">January, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-12/">December, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-dspace6-upgrade/">CGSpace DSpace 6 Upgrade</a></li>
|
||||
|
||||
</ol>
|
||||
</section>
|
||||
|
||||
|
@ -445,14 +445,14 @@ session_id=6C30F10B4351A4ED83EC6ED50AFD6B6A
|
||||
|
||||
<li><a href="/cgspace-notes/2021-03/">March, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-02/">February, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-01/">January, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-12/">December, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-dspace6-upgrade/">CGSpace DSpace 6 Upgrade</a></li>
|
||||
|
||||
</ol>
|
||||
</section>
|
||||
|
||||
|
@ -946,14 +946,14 @@ $ cat dspace.log.2017-11-28 | grep -o -E 'session_id=[A-Z0-9]{32}' | sort -n | u
|
||||
|
||||
<li><a href="/cgspace-notes/2021-03/">March, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-02/">February, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-01/">January, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-12/">December, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-dspace6-upgrade/">CGSpace DSpace 6 Upgrade</a></li>
|
||||
|
||||
</ol>
|
||||
</section>
|
||||
|
||||
|
@ -785,14 +785,14 @@ DELETE 20
|
||||
|
||||
<li><a href="/cgspace-notes/2021-03/">March, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-02/">February, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-01/">January, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-12/">December, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-dspace6-upgrade/">CGSpace DSpace 6 Upgrade</a></li>
|
||||
|
||||
</ol>
|
||||
</section>
|
||||
|
||||
|
@ -1454,14 +1454,14 @@ Catalina:type=Manager,context=/,host=localhost activeSessions 8
|
||||
|
||||
<li><a href="/cgspace-notes/2021-03/">March, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-02/">February, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-01/">January, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-12/">December, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-dspace6-upgrade/">CGSpace DSpace 6 Upgrade</a></li>
|
||||
|
||||
</ol>
|
||||
</section>
|
||||
|
||||
|
@ -1041,14 +1041,14 @@ UPDATE 3
|
||||
|
||||
<li><a href="/cgspace-notes/2021-03/">March, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-02/">February, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-01/">January, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-12/">December, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-dspace6-upgrade/">CGSpace DSpace 6 Upgrade</a></li>
|
||||
|
||||
</ol>
|
||||
</section>
|
||||
|
||||
|
@ -587,14 +587,14 @@ Fixed 5 occurences of: GENEBANKS
|
||||
|
||||
<li><a href="/cgspace-notes/2021-03/">March, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-02/">February, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-01/">January, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-12/">December, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-dspace6-upgrade/">CGSpace DSpace 6 Upgrade</a></li>
|
||||
|
||||
</ol>
|
||||
</section>
|
||||
|
||||
|
@ -596,14 +596,14 @@ $ pg_restore -O -U dspacetest -d dspacetest -W -h localhost /tmp/dspace_2018-04-
|
||||
|
||||
<li><a href="/cgspace-notes/2021-03/">March, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-02/">February, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-01/">January, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-12/">December, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-dspace6-upgrade/">CGSpace DSpace 6 Upgrade</a></li>
|
||||
|
||||
</ol>
|
||||
</section>
|
||||
|
||||
|
@ -525,14 +525,14 @@ $ psql -h localhost -U postgres dspacetest
|
||||
|
||||
<li><a href="/cgspace-notes/2021-03/">March, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-02/">February, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-01/">January, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-12/">December, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-dspace6-upgrade/">CGSpace DSpace 6 Upgrade</a></li>
|
||||
|
||||
</ol>
|
||||
</section>
|
||||
|
||||
|
@ -519,14 +519,14 @@ $ sed '/^id/d' 10568-*.csv | csvcut -c 1,2 > map-to-cifor-archive.csv
|
||||
|
||||
<li><a href="/cgspace-notes/2021-03/">March, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-02/">February, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-01/">January, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-12/">December, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-dspace6-upgrade/">CGSpace DSpace 6 Upgrade</a></li>
|
||||
|
||||
</ol>
|
||||
</section>
|
||||
|
||||
|
@ -571,14 +571,14 @@ dspace=# select count(text_value) from metadatavalue where resource_type_id=2 an
|
||||
|
||||
<li><a href="/cgspace-notes/2021-03/">March, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-02/">February, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-01/">January, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-12/">December, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-dspace6-upgrade/">CGSpace DSpace 6 Upgrade</a></li>
|
||||
|
||||
</ol>
|
||||
</section>
|
||||
|
||||
|
@ -444,14 +444,14 @@ $ dspace database migrate ignored
|
||||
|
||||
<li><a href="/cgspace-notes/2021-03/">March, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-02/">February, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-01/">January, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-12/">December, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-dspace6-upgrade/">CGSpace DSpace 6 Upgrade</a></li>
|
||||
|
||||
</ol>
|
||||
</section>
|
||||
|
||||
|
@ -750,14 +750,14 @@ UPDATE metadatavalue SET text_value='ja' WHERE resource_type_id=2 AND metadata_f
|
||||
|
||||
<li><a href="/cgspace-notes/2021-03/">March, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-02/">February, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-01/">January, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-12/">December, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-dspace6-upgrade/">CGSpace DSpace 6 Upgrade</a></li>
|
||||
|
||||
</ol>
|
||||
</section>
|
||||
|
||||
|
@ -658,14 +658,14 @@ $ curl -X GET -H "Content-Type: application/json" -H "Accept: app
|
||||
|
||||
<li><a href="/cgspace-notes/2021-03/">March, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-02/">February, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-01/">January, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-12/">December, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-dspace6-upgrade/">CGSpace DSpace 6 Upgrade</a></li>
|
||||
|
||||
</ol>
|
||||
</section>
|
||||
|
||||
|
@ -555,14 +555,14 @@ $ dspace dsrun org.dspace.eperson.Groomer -a -b 11/27/2016 -d
|
||||
|
||||
<li><a href="/cgspace-notes/2021-03/">March, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-02/">February, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-01/">January, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-12/">December, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-dspace6-upgrade/">CGSpace DSpace 6 Upgrade</a></li>
|
||||
|
||||
</ol>
|
||||
</section>
|
||||
|
||||
|
@ -596,14 +596,14 @@ UPDATE 1
|
||||
|
||||
<li><a href="/cgspace-notes/2021-03/">March, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-02/">February, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-01/">January, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-12/">December, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-dspace6-upgrade/">CGSpace DSpace 6 Upgrade</a></li>
|
||||
|
||||
</ol>
|
||||
</section>
|
||||
|
||||
|
@ -1266,14 +1266,14 @@ identify: CorruptImageProfile `xmp' @ warning/profile.c/SetImageProfileInternal/
|
||||
|
||||
<li><a href="/cgspace-notes/2021-03/">March, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-02/">February, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-01/">January, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-12/">December, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-dspace6-upgrade/">CGSpace DSpace 6 Upgrade</a></li>
|
||||
|
||||
</ol>
|
||||
</section>
|
||||
|
||||
|
@ -1346,14 +1346,14 @@ Please see the DSpace documentation for assistance.
|
||||
|
||||
<li><a href="/cgspace-notes/2021-03/">March, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-02/">February, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-01/">January, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-12/">December, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-dspace6-upgrade/">CGSpace DSpace 6 Upgrade</a></li>
|
||||
|
||||
</ol>
|
||||
</section>
|
||||
|
||||
|
@ -1210,14 +1210,14 @@ sys 0m2.551s
|
||||
|
||||
<li><a href="/cgspace-notes/2021-03/">March, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-02/">February, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-01/">January, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-12/">December, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-dspace6-upgrade/">CGSpace DSpace 6 Upgrade</a></li>
|
||||
|
||||
</ol>
|
||||
</section>
|
||||
|
||||
|
@ -1301,14 +1301,14 @@ UPDATE 14
|
||||
|
||||
<li><a href="/cgspace-notes/2021-03/">March, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-02/">February, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-01/">January, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-12/">December, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-dspace6-upgrade/">CGSpace DSpace 6 Upgrade</a></li>
|
||||
|
||||
</ol>
|
||||
</section>
|
||||
|
||||
|
@ -633,14 +633,14 @@ COPY 64871
|
||||
|
||||
<li><a href="/cgspace-notes/2021-03/">March, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-02/">February, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-01/">January, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-12/">December, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-dspace6-upgrade/">CGSpace DSpace 6 Upgrade</a></li>
|
||||
|
||||
</ol>
|
||||
</section>
|
||||
|
||||
|
@ -319,14 +319,14 @@ UPDATE 2
|
||||
|
||||
<li><a href="/cgspace-notes/2021-03/">March, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-02/">February, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-01/">January, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-12/">December, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-dspace6-upgrade/">CGSpace DSpace 6 Upgrade</a></li>
|
||||
|
||||
</ol>
|
||||
</section>
|
||||
|
||||
|
@ -556,14 +556,14 @@ issn.validate('1020-3362')
|
||||
|
||||
<li><a href="/cgspace-notes/2021-03/">March, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-02/">February, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-01/">January, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-12/">December, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-dspace6-upgrade/">CGSpace DSpace 6 Upgrade</a></li>
|
||||
|
||||
</ol>
|
||||
</section>
|
||||
|
||||
|
@ -575,14 +575,14 @@ sys 2m27.496s
|
||||
|
||||
<li><a href="/cgspace-notes/2021-03/">March, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-02/">February, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-01/">January, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-12/">December, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-dspace6-upgrade/">CGSpace DSpace 6 Upgrade</a></li>
|
||||
|
||||
</ol>
|
||||
</section>
|
||||
|
||||
|
@ -583,14 +583,14 @@ $ csv-metadata-quality -i /tmp/clarisa-institutions.csv -o /tmp/clarisa-institut
|
||||
|
||||
<li><a href="/cgspace-notes/2021-03/">March, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-02/">February, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-01/">January, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-12/">December, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-dspace6-upgrade/">CGSpace DSpace 6 Upgrade</a></li>
|
||||
|
||||
</ol>
|
||||
</section>
|
||||
|
||||
|
@ -387,14 +387,14 @@ $ dspace import -a -c 10568/104057 -e fuu@cgiar.org -m 2019-10-15-Bioversity.map
|
||||
|
||||
<li><a href="/cgspace-notes/2021-03/">March, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-02/">February, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-01/">January, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-12/">December, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-dspace6-upgrade/">CGSpace DSpace 6 Upgrade</a></li>
|
||||
|
||||
</ol>
|
||||
</section>
|
||||
|
||||
|
@ -694,14 +694,14 @@ $ tidy -xml -utf8 -iq -m -w 0 dspace/config/controlled-vocabularies/cg-creator-i
|
||||
|
||||
<li><a href="/cgspace-notes/2021-03/">March, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-02/">February, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-01/">January, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-12/">December, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-dspace6-upgrade/">CGSpace DSpace 6 Upgrade</a></li>
|
||||
|
||||
</ol>
|
||||
</section>
|
||||
|
||||
|
@ -406,14 +406,14 @@ UPDATE 1
|
||||
|
||||
<li><a href="/cgspace-notes/2021-03/">March, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-02/">February, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-01/">January, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-12/">December, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-dspace6-upgrade/">CGSpace DSpace 6 Upgrade</a></li>
|
||||
|
||||
</ol>
|
||||
</section>
|
||||
|
||||
|
@ -606,14 +606,14 @@ COPY 2900
|
||||
|
||||
<li><a href="/cgspace-notes/2021-03/">March, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-02/">February, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-01/">January, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-12/">December, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-dspace6-upgrade/">CGSpace DSpace 6 Upgrade</a></li>
|
||||
|
||||
</ol>
|
||||
</section>
|
||||
|
||||
|
@ -1277,14 +1277,14 @@ Moving: 21993 into core statistics-2019
|
||||
|
||||
<li><a href="/cgspace-notes/2021-03/">March, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-02/">February, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-01/">January, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-12/">December, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-dspace6-upgrade/">CGSpace DSpace 6 Upgrade</a></li>
|
||||
|
||||
</ol>
|
||||
</section>
|
||||
|
||||
|
@ -486,14 +486,14 @@ $ tidy -xml -utf8 -iq -m -w 0 dspace/config/controlled-vocabularies/cg-creator-i
|
||||
|
||||
<li><a href="/cgspace-notes/2021-03/">March, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-02/">February, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-01/">January, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-12/">December, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-dspace6-upgrade/">CGSpace DSpace 6 Upgrade</a></li>
|
||||
|
||||
</ol>
|
||||
</section>
|
||||
|
||||
|
@ -660,14 +660,14 @@ $ psql -c 'select * from pg_stat_activity' | wc -l
|
||||
|
||||
<li><a href="/cgspace-notes/2021-03/">March, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-02/">February, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-01/">January, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-12/">December, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-dspace6-upgrade/">CGSpace DSpace 6 Upgrade</a></li>
|
||||
|
||||
</ol>
|
||||
</section>
|
||||
|
||||
|
@ -479,14 +479,14 @@ Caused by: java.lang.NullPointerException
|
||||
|
||||
<li><a href="/cgspace-notes/2021-03/">March, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-02/">February, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-01/">January, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-12/">December, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-dspace6-upgrade/">CGSpace DSpace 6 Upgrade</a></li>
|
||||
|
||||
</ol>
|
||||
</section>
|
||||
|
||||
|
@ -813,14 +813,14 @@ $ csvcut -c 'id,cg.subject.ilri[],cg.subject.ilri[en_US],dc.subject[en_US]' /tmp
|
||||
|
||||
<li><a href="/cgspace-notes/2021-03/">March, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-02/">February, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-01/">January, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-12/">December, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-dspace6-upgrade/">CGSpace DSpace 6 Upgrade</a></li>
|
||||
|
||||
</ol>
|
||||
</section>
|
||||
|
||||
|
@ -1144,14 +1144,14 @@ Fixed 4 occurences of: Muloi, D.M.
|
||||
|
||||
<li><a href="/cgspace-notes/2021-03/">March, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-02/">February, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-01/">January, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-12/">December, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-dspace6-upgrade/">CGSpace DSpace 6 Upgrade</a></li>
|
||||
|
||||
</ol>
|
||||
</section>
|
||||
|
||||
|
@ -800,14 +800,14 @@ $ grep -c added /tmp/2020-08-27-countrycodetagger.log
|
||||
|
||||
<li><a href="/cgspace-notes/2021-03/">March, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-02/">February, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-01/">January, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-12/">December, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-dspace6-upgrade/">CGSpace DSpace 6 Upgrade</a></li>
|
||||
|
||||
</ol>
|
||||
</section>
|
||||
|
||||
|
@ -719,14 +719,14 @@ solr_query_params = {
|
||||
|
||||
<li><a href="/cgspace-notes/2021-03/">March, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-02/">February, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-01/">January, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-12/">December, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-dspace6-upgrade/">CGSpace DSpace 6 Upgrade</a></li>
|
||||
|
||||
</ol>
|
||||
</section>
|
||||
|
||||
|
@ -1243,14 +1243,14 @@ $ ./delete-metadata-values.py -i 2020-10-31-delete-74-sponsors.csv -db dspace -u
|
||||
|
||||
<li><a href="/cgspace-notes/2021-03/">March, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-02/">February, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-01/">January, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-12/">December, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-dspace6-upgrade/">CGSpace DSpace 6 Upgrade</a></li>
|
||||
|
||||
</ol>
|
||||
</section>
|
||||
|
||||
|
@ -733,14 +733,14 @@ $ ./fix-metadata-values.py -i 2020-11-30-fix-hung-orcid.csv -db dspace63 -u dspa
|
||||
|
||||
<li><a href="/cgspace-notes/2021-03/">March, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-02/">February, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-01/">January, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-12/">December, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-dspace6-upgrade/">CGSpace DSpace 6 Upgrade</a></li>
|
||||
|
||||
</ol>
|
||||
</section>
|
||||
|
||||
|
@ -871,14 +871,14 @@ $ curl -XDELETE 'http://localhost:9200/openrxv-items-2020-12-29?pretty'
|
||||
|
||||
<li><a href="/cgspace-notes/2021-03/">March, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-02/">February, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-01/">January, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-12/">December, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-dspace6-upgrade/">CGSpace DSpace 6 Upgrade</a></li>
|
||||
|
||||
</ol>
|
||||
</section>
|
||||
|
||||
|
@ -690,14 +690,14 @@ java.lang.IllegalArgumentException: Invalid character found in the request targe
|
||||
|
||||
<li><a href="/cgspace-notes/2021-03/">March, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-02/">February, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-01/">January, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-12/">December, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-dspace6-upgrade/">CGSpace DSpace 6 Upgrade</a></li>
|
||||
|
||||
</ol>
|
||||
</section>
|
||||
|
||||
|
@ -901,14 +901,14 @@ dspace.log.2021-02-28:0
|
||||
|
||||
<li><a href="/cgspace-notes/2021-03/">March, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-02/">February, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-01/">January, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-12/">December, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-dspace6-upgrade/">CGSpace DSpace 6 Upgrade</a></li>
|
||||
|
||||
</ol>
|
||||
</section>
|
||||
|
||||
|
@ -19,7 +19,7 @@ Also, we found some issues building and running OpenRXV currently due to ecosyst
|
||||
<meta property="og:type" content="article" />
|
||||
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/2021-03/" />
|
||||
<meta property="article:published_time" content="2021-03-01T10:13:54+02:00" />
|
||||
<meta property="article:modified_time" content="2021-03-23T09:34:40+02:00" />
|
||||
<meta property="article:modified_time" content="2021-03-30T09:56:38+03:00" />
|
||||
|
||||
|
||||
|
||||
@ -44,9 +44,9 @@ Also, we found some issues building and running OpenRXV currently due to ecosyst
|
||||
"@type": "BlogPosting",
|
||||
"headline": "March, 2021",
|
||||
"url": "https://alanorth.github.io/cgspace-notes/2021-03/",
|
||||
"wordCount": "3964",
|
||||
"wordCount": "4421",
|
||||
"datePublished": "2021-03-01T10:13:54+02:00",
|
||||
"dateModified": "2021-03-23T09:34:40+02:00",
|
||||
"dateModified": "2021-03-30T09:56:38+03:00",
|
||||
"author": {
|
||||
"@type": "Person",
|
||||
"name": "Alan Orth"
|
||||
@ -776,6 +776,79 @@ Run 1 took 5m 53s
|
||||
<ul>
|
||||
<li>Make a backup of the <code>openrxv-items-final</code> index on AReS Explorer and start a new harvest</li>
|
||||
</ul>
|
||||
<h2 id="2021-03-29">2021-03-29</h2>
|
||||
<ul>
|
||||
<li>The AReS harvesting that I started yesterday finished successfully and all indexes look OK:
|
||||
<ul>
|
||||
<li><code>openrxv-items</code> is an alias of <code>openrxv-items-final</code> and has a correct number of items</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li>Last week Bosede from IITA said she was trying to move an item from one collection to another and the system was “rolling” and never finished
|
||||
<ul>
|
||||
<li>I looked in Munin and I don’t see anything particularly wrong that day, so I told her to try again</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li>Marianne Gadeberg asked about mapping an item last week
|
||||
<ul>
|
||||
<li>Searched for <a href="https://hdl.handle.net/10568/110633">the item</a>’s handle, the title, the title in quotes, the UUID, with pluses instead of spaces, etc in the item mapper… but I can never find it in the results</li>
|
||||
<li>I see someone has reported this issue on Jira in DSpace 5.x’s XMLUI item mapper: <a href="https://jira.lyrasis.org/browse/DS-2761">https://jira.lyrasis.org/browse/DS-2761</a></li>
|
||||
<li>The Solr log shows that my query (with and without quotes, etc) has 143 results:</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<pre><code class="language-console" data-lang="console">2021-03-29 08:55:40,073 INFO org.apache.solr.core.SolrCore @ [search] webapp=/solr path=/select params={q=Gender+mainstreaming+in+local+potato+seed+system+in+Georgia&fl=handle,search.resourcetype,search.resourceid,search.uniqueid&start=0&fq=NOT(withdrawn:true)&fq=NOT(discoverable:false)&fq=-location:l5308ea39-7c65-401b-890b-c2b93dad649a&wt=javabin&version=2} hits=143 status=0 QTime=0
|
||||
</code></pre><ul>
|
||||
<li>But the item mapper only displays ten items, with no pagination
|
||||
<ul>
|
||||
<li>There is no way to search by handle or ID</li>
|
||||
<li>I mapped the item manually using a CSV</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<h2 id="2021-03-30">2021-03-30</h2>
|
||||
<ul>
|
||||
<li>I realized I never finished deleting all the old fields after our CG Core migration a few months ago
|
||||
<ul>
|
||||
<li>I found a few occurrences of old metadata so I had to move them where possible and delete them where not</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li>I updated the <a href="/cgspace-notes/cgspace-cgcorev2-migration/">CG Core v2 migration page</a></li>
|
||||
<li>Marianne Gadeberg wrote to ask why the item she wanted to map a few days ago still doesn’t appear in the mapped collection
|
||||
<ul>
|
||||
<li>I looked on the item page itself and it lists the collection, but doesn’t appear in the collection list</li>
|
||||
<li>I tried to forceably reindex the collection and the item, but it didn’t seem to work</li>
|
||||
<li>Now I will try a complete Discovery re-index</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<h2 id="2021-03-31">2021-03-31</h2>
|
||||
<ul>
|
||||
<li>The Discovery re-index finished, but <a href="https://hdl.handle.net/10568/110633">the CIP item</a> still does not appear in the GENDER Platform grants collection
|
||||
<ul>
|
||||
<li>The item page itself DOES list the grants collection! WTF</li>
|
||||
<li>I sent a message to the dspace-tech mailing list to see if someone can comment</li>
|
||||
<li>I even tried unmapping and re-mapping, but it doesn’t change anything: the item still doesn’t appear in the collection, but I can see that it is mapped</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li>I signed up for a SHERPA API key so I can try to write something to get journal names from ISSN
|
||||
<ul>
|
||||
<li>This code seems to get a journal title, though I only tried it with a few ISSNs:</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="highlight"><pre style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4"><code class="language-python" data-lang="python"><span style="color:#f92672">import</span> requests
|
||||
|
||||
query_params <span style="color:#f92672">=</span> {<span style="color:#e6db74">'item-type'</span>: <span style="color:#e6db74">'publication'</span>, <span style="color:#e6db74">'format'</span>: <span style="color:#e6db74">'Json'</span>, <span style="color:#e6db74">'limit'</span>: <span style="color:#ae81ff">10</span>, <span style="color:#e6db74">'offset'</span>: <span style="color:#ae81ff">0</span>, <span style="color:#e6db74">'api-key'</span>: <span style="color:#e6db74">'blahhhahahah'</span>, <span style="color:#e6db74">'filter'</span>: <span style="color:#e6db74">'[["issn","equals","0011-183X"]]'</span>}
|
||||
r <span style="color:#f92672">=</span> requests<span style="color:#f92672">.</span>get(<span style="color:#e6db74">'https://v2.sherpa.ac.uk/cgi/retrieve'</span>)
|
||||
<span style="color:#66d9ef">if</span> r<span style="color:#f92672">.</span>status_code <span style="color:#f92672">and</span> len(r<span style="color:#f92672">.</span>json()[<span style="color:#e6db74">'items'</span>]) <span style="color:#f92672">></span> <span style="color:#ae81ff">0</span>:
|
||||
r<span style="color:#f92672">.</span>json()[<span style="color:#e6db74">'items'</span>][<span style="color:#ae81ff">0</span>][<span style="color:#e6db74">'title'</span>][<span style="color:#ae81ff">0</span>][<span style="color:#e6db74">'title'</span>]
|
||||
</code></pre></div><ul>
|
||||
<li>I wrote a script to check the ISSNs against Crossref’s API: <code>crossref-issn-lookup.py</code>
|
||||
<ul>
|
||||
<li>I suspect Crossref might have better data actually…</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<!-- raw HTML omitted -->
|
||||
|
||||
|
||||
@ -799,14 +872,14 @@ Run 1 took 5m 53s
|
||||
|
||||
<li><a href="/cgspace-notes/2021-03/">March, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-02/">February, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-01/">January, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-12/">December, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-dspace6-upgrade/">CGSpace DSpace 6 Upgrade</a></li>
|
||||
|
||||
</ol>
|
||||
</section>
|
||||
|
||||
|
@ -97,14 +97,14 @@
|
||||
|
||||
<li><a href="/cgspace-notes/2021-03/">March, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-02/">February, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-01/">January, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-12/">December, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-dspace6-upgrade/">CGSpace DSpace 6 Upgrade</a></li>
|
||||
|
||||
</ol>
|
||||
</section>
|
||||
|
||||
|
@ -10,7 +10,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="2021-03-23T09:34:40+02:00" />
|
||||
<meta property="og:updated_time" content="2021-03-30T09:56:38+03:00" />
|
||||
|
||||
|
||||
|
||||
@ -110,14 +110,14 @@
|
||||
|
||||
<li><a href="/cgspace-notes/2021-03/">March, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-02/">February, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-01/">January, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-12/">December, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-dspace6-upgrade/">CGSpace DSpace 6 Upgrade</a></li>
|
||||
|
||||
</ol>
|
||||
</section>
|
||||
|
||||
|
@ -10,7 +10,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="2021-03-23T09:34:40+02:00" />
|
||||
<meta property="og:updated_time" content="2021-03-30T09:56:38+03:00" />
|
||||
|
||||
|
||||
|
||||
@ -107,6 +107,27 @@
|
||||
|
||||
|
||||
|
||||
<article class="blog-post">
|
||||
<header>
|
||||
<h2 class="blog-post-title" dir="auto"><a href="https://alanorth.github.io/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></h2>
|
||||
<p class="blog-post-meta"><time datetime="2021-02-21T13:27:35+02:00">Sun Feb 21, 2021</time> by Alan Orth in
|
||||
<span class="fas fa-folder" aria-hidden="true"></span> <a href="/cgspace-notes/categories/notes/" rel="category tag">Notes</a>
|
||||
|
||||
|
||||
<span class="fas fa-tag" aria-hidden="true"></span> <a href="/cgspace-notes/tags/migration/" rel="tag">Migration</a>
|
||||
|
||||
</p>
|
||||
</header>
|
||||
<p>Changes to CGSpace metadata fields to align more with DC, QDC, and DCTERMS as well as CG Core v2. Implemented on 2021-02-21.</p>
|
||||
<p>With reference to <a href="https://agriculturalsemantics.github.io/cg-core/cgcore.html">CG Core v2 draft standard</a> by Marie-Angélique as well as <a href="http://www.dublincore.org/specifications/dublin-core/dcmi-terms/">DCMI DCTERMS</a>.</p>
|
||||
<a href='https://alanorth.github.io/cgspace-notes/cgspace-cgcorev2-migration/'>Read more →</a>
|
||||
</article>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<article class="blog-post">
|
||||
<header>
|
||||
<h2 class="blog-post-title" dir="auto"><a href="https://alanorth.github.io/cgspace-notes/2021-02/">February, 2021</a></h2>
|
||||
@ -342,34 +363,6 @@
|
||||
|
||||
|
||||
|
||||
|
||||
<article class="blog-post">
|
||||
<header>
|
||||
<h2 class="blog-post-title" dir="auto"><a href="https://alanorth.github.io/cgspace-notes/2020-07/">July, 2020</a></h2>
|
||||
<p class="blog-post-meta"><time datetime="2020-07-01T10:53:54+03:00">Wed Jul 01, 2020</time> by Alan Orth in
|
||||
<span class="fas fa-folder" aria-hidden="true"></span> <a href="/cgspace-notes/categories/notes/" rel="category tag">Notes</a>
|
||||
|
||||
|
||||
</p>
|
||||
</header>
|
||||
<h2 id="2020-07-01">2020-07-01</h2>
|
||||
<ul>
|
||||
<li>A few users noticed that CGSpace wasn’t loading items today, item pages seem blank
|
||||
<ul>
|
||||
<li>I looked at the PostgreSQL locks but they don’t seem unusual</li>
|
||||
<li>I guess this is the same “blank item page” issue that we had a few times in 2019 that we never solved</li>
|
||||
<li>I restarted Tomcat and PostgreSQL and the issue was gone</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li>Since I was restarting Tomcat anyways I decided to redeploy the latest changes from the <code>5_x-prod</code> branch and I added a note about COVID-19 items to the CGSpace frontpage at Peter’s request</li>
|
||||
</ul>
|
||||
<a href='https://alanorth.github.io/cgspace-notes/2020-07/'>Read more →</a>
|
||||
</article>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<nav class="blog-pagination">
|
||||
|
||||
|
||||
@ -396,14 +389,14 @@
|
||||
|
||||
<li><a href="/cgspace-notes/2021-03/">March, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-02/">February, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-01/">January, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-12/">December, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-dspace6-upgrade/">CGSpace DSpace 6 Upgrade</a></li>
|
||||
|
||||
</ol>
|
||||
</section>
|
||||
|
||||
|
@ -24,6 +24,16 @@
|
||||
</ul></description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>CGSpace CG Core v2 Migration</title>
|
||||
<link>https://alanorth.github.io/cgspace-notes/cgspace-cgcorev2-migration/</link>
|
||||
<pubDate>Sun, 21 Feb 2021 13:27:35 +0200</pubDate>
|
||||
|
||||
<guid>https://alanorth.github.io/cgspace-notes/cgspace-cgcorev2-migration/</guid>
|
||||
<description><p>Changes to CGSpace metadata fields to align more with DC, QDC, and DCTERMS as well as CG Core v2. Implemented on 2021-02-21.</p>
|
||||
<p>With reference to <a href="https://agriculturalsemantics.github.io/cg-core/cgcore.html">CG Core v2 draft standard</a> by Marie-Angélique as well as <a href="http://www.dublincore.org/specifications/dublin-core/dcmi-terms/">DCMI DCTERMS</a>.</p></description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>February, 2021</title>
|
||||
<link>https://alanorth.github.io/cgspace-notes/2021-02/</link>
|
||||
@ -384,16 +394,6 @@
|
||||
</code></pre></description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>CGSpace CG Core v2 Migration</title>
|
||||
<link>https://alanorth.github.io/cgspace-notes/cgspace-cgcorev2-migration/</link>
|
||||
<pubDate>Mon, 28 Oct 2019 13:27:35 +0200</pubDate>
|
||||
|
||||
<guid>https://alanorth.github.io/cgspace-notes/cgspace-cgcorev2-migration/</guid>
|
||||
<description><p>Possible changes to CGSpace metadata fields to align more with DC, QDC, and DCTERMS as well as CG Core v2.</p>
|
||||
<p>With reference to <a href="https://agriculturalsemantics.github.io/cg-core/cgcore.html">CG Core v2 draft standard</a> by Marie-Angélique as well as <a href="http://www.dublincore.org/specifications/dublin-core/dcmi-terms/">DCMI DCTERMS</a>.</p></description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>October, 2019</title>
|
||||
<link>https://alanorth.github.io/cgspace-notes/2019-10/</link>
|
||||
|
@ -10,7 +10,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="2021-03-23T09:34:40+02:00" />
|
||||
<meta property="og:updated_time" content="2021-03-30T09:56:38+03:00" />
|
||||
|
||||
|
||||
|
||||
@ -81,6 +81,34 @@
|
||||
|
||||
|
||||
|
||||
<article class="blog-post">
|
||||
<header>
|
||||
<h2 class="blog-post-title" dir="auto"><a href="https://alanorth.github.io/cgspace-notes/2020-07/">July, 2020</a></h2>
|
||||
<p class="blog-post-meta"><time datetime="2020-07-01T10:53:54+03:00">Wed Jul 01, 2020</time> by Alan Orth in
|
||||
<span class="fas fa-folder" aria-hidden="true"></span> <a href="/cgspace-notes/categories/notes/" rel="category tag">Notes</a>
|
||||
|
||||
|
||||
</p>
|
||||
</header>
|
||||
<h2 id="2020-07-01">2020-07-01</h2>
|
||||
<ul>
|
||||
<li>A few users noticed that CGSpace wasn’t loading items today, item pages seem blank
|
||||
<ul>
|
||||
<li>I looked at the PostgreSQL locks but they don’t seem unusual</li>
|
||||
<li>I guess this is the same “blank item page” issue that we had a few times in 2019 that we never solved</li>
|
||||
<li>I restarted Tomcat and PostgreSQL and the issue was gone</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li>Since I was restarting Tomcat anyways I decided to redeploy the latest changes from the <code>5_x-prod</code> branch and I added a note about COVID-19 items to the CGSpace frontpage at Peter’s request</li>
|
||||
</ul>
|
||||
<a href='https://alanorth.github.io/cgspace-notes/2020-07/'>Read more →</a>
|
||||
</article>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<article class="blog-post">
|
||||
<header>
|
||||
<h2 class="blog-post-title" dir="auto"><a href="https://alanorth.github.io/cgspace-notes/2020-06/">June, 2020</a></h2>
|
||||
@ -332,27 +360,6 @@
|
||||
|
||||
|
||||
|
||||
<article class="blog-post">
|
||||
<header>
|
||||
<h2 class="blog-post-title" dir="auto"><a href="https://alanorth.github.io/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></h2>
|
||||
<p class="blog-post-meta"><time datetime="2019-10-28T13:27:35+02:00">Mon Oct 28, 2019</time> by Alan Orth in
|
||||
<span class="fas fa-folder" aria-hidden="true"></span> <a href="/cgspace-notes/categories/notes/" rel="category tag">Notes</a>
|
||||
|
||||
|
||||
<span class="fas fa-tag" aria-hidden="true"></span> <a href="/cgspace-notes/tags/migration/" rel="tag">Migration</a>
|
||||
|
||||
</p>
|
||||
</header>
|
||||
<p>Possible changes to CGSpace metadata fields to align more with DC, QDC, and DCTERMS as well as CG Core v2.</p>
|
||||
<p>With reference to <a href="https://agriculturalsemantics.github.io/cg-core/cgcore.html">CG Core v2 draft standard</a> by Marie-Angélique as well as <a href="http://www.dublincore.org/specifications/dublin-core/dcmi-terms/">DCMI DCTERMS</a>.</p>
|
||||
<a href='https://alanorth.github.io/cgspace-notes/cgspace-cgcorev2-migration/'>Read more →</a>
|
||||
</article>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<article class="blog-post">
|
||||
<header>
|
||||
<h2 class="blog-post-title" dir="auto"><a href="https://alanorth.github.io/cgspace-notes/2019-10/">October, 2019</a></h2>
|
||||
@ -396,14 +403,14 @@
|
||||
|
||||
<li><a href="/cgspace-notes/2021-03/">March, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-02/">February, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-01/">January, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-12/">December, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-dspace6-upgrade/">CGSpace DSpace 6 Upgrade</a></li>
|
||||
|
||||
</ol>
|
||||
</section>
|
||||
|
||||
|
@ -10,7 +10,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="2021-03-23T09:34:40+02:00" />
|
||||
<meta property="og:updated_time" content="2021-03-30T09:56:38+03:00" />
|
||||
|
||||
|
||||
|
||||
@ -449,14 +449,14 @@ sys 0m1.979s
|
||||
|
||||
<li><a href="/cgspace-notes/2021-03/">March, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-02/">February, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-01/">January, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-12/">December, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-dspace6-upgrade/">CGSpace DSpace 6 Upgrade</a></li>
|
||||
|
||||
</ol>
|
||||
</section>
|
||||
|
||||
|
@ -10,7 +10,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="2021-03-23T09:34:40+02:00" />
|
||||
<meta property="og:updated_time" content="2021-03-30T09:56:38+03:00" />
|
||||
|
||||
|
||||
|
||||
@ -371,14 +371,14 @@ sys 2m7.289s
|
||||
|
||||
<li><a href="/cgspace-notes/2021-03/">March, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-02/">February, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-01/">January, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-12/">December, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-dspace6-upgrade/">CGSpace DSpace 6 Upgrade</a></li>
|
||||
|
||||
</ol>
|
||||
</section>
|
||||
|
||||
|
@ -10,7 +10,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="2021-03-23T09:34:40+02:00" />
|
||||
<meta property="og:updated_time" content="2021-03-30T09:56:38+03:00" />
|
||||
|
||||
|
||||
|
||||
@ -293,14 +293,14 @@ COPY 54701
|
||||
|
||||
<li><a href="/cgspace-notes/2021-03/">March, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-02/">February, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-01/">January, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-12/">December, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-dspace6-upgrade/">CGSpace DSpace 6 Upgrade</a></li>
|
||||
|
||||
</ol>
|
||||
</section>
|
||||
|
||||
|
@ -284,14 +284,14 @@ dspace=# select setval('handle_seq',86873);
|
||||
|
||||
<li><a href="/cgspace-notes/2021-03/">March, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-02/">February, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-01/">January, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-12/">December, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-dspace6-upgrade/">CGSpace DSpace 6 Upgrade</a></li>
|
||||
|
||||
</ol>
|
||||
</section>
|
||||
|
||||
|
@ -10,8 +10,8 @@
|
||||
<meta property="og:description" content="Possible changes to CGSpace metadata fields to align more with DC, QDC, and DCTERMS as well as CG Core v2." />
|
||||
<meta property="og:type" content="article" />
|
||||
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/cgspace-cgcorev2-migration/" />
|
||||
<meta property="article:published_time" content="2019-10-28T13:27:35+02:00" />
|
||||
<meta property="article:modified_time" content="2021-01-28T16:28:21+02:00" />
|
||||
<meta property="article:published_time" content="2021-02-21T13:27:35+02:00" />
|
||||
<meta property="article:modified_time" content="2021-03-30T09:56:38+03:00" />
|
||||
|
||||
|
||||
|
||||
@ -28,9 +28,9 @@
|
||||
"@type": "BlogPosting",
|
||||
"headline": "CGSpace CG Core v2 Migration",
|
||||
"url": "https://alanorth.github.io/cgspace-notes/cgspace-cgcorev2-migration/",
|
||||
"wordCount": "571",
|
||||
"datePublished": "2019-10-28T13:27:35+02:00",
|
||||
"dateModified": "2021-01-28T16:28:21+02:00",
|
||||
"wordCount": "573",
|
||||
"datePublished": "2021-02-21T13:27:35+02:00",
|
||||
"dateModified": "2021-03-30T09:56:38+03:00",
|
||||
"author": {
|
||||
"@type": "Person",
|
||||
"name": "Alan Orth"
|
||||
@ -98,7 +98,7 @@
|
||||
<header>
|
||||
<h2 class="blog-post-title" dir="auto"><a href="https://alanorth.github.io/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></h2>
|
||||
<p class="blog-post-meta">
|
||||
<time datetime="2019-10-28T13:27:35+02:00">Mon Oct 28, 2019</time>
|
||||
<time datetime="2021-02-21T13:27:35+02:00">Sun Feb 21, 2021</time>
|
||||
in
|
||||
<span class="fas fa-folder" aria-hidden="true"></span> <a href="/cgspace-notes/categories/notes/" rel="category tag">Notes</a>
|
||||
|
||||
@ -107,7 +107,7 @@
|
||||
|
||||
</p>
|
||||
</header>
|
||||
<p>Possible changes to CGSpace metadata fields to align more with DC, QDC, and DCTERMS as well as CG Core v2.</p>
|
||||
<p>Changes to CGSpace metadata fields to align more with DC, QDC, and DCTERMS as well as CG Core v2. Implemented on 2021-02-21.</p>
|
||||
<p>With reference to <a href="https://agriculturalsemantics.github.io/cg-core/cgcore.html">CG Core v2 draft standard</a> by Marie-Angélique as well as <a href="http://www.dublincore.org/specifications/dublin-core/dcmi-terms/">DCMI DCTERMS</a>.</p>
|
||||
<ul>
|
||||
<li><a href="#proposed-changes">Proposed Changes</a></li>
|
||||
@ -198,11 +198,11 @@
|
||||
<h2 id="fields-to-delete">Fields to delete</h2>
|
||||
<p>Fields to delete after migration:</p>
|
||||
<ul>
|
||||
<li><input disabled="" type="checkbox"> cg.creator.id</li>
|
||||
<li><input disabled="" type="checkbox"> cg.fulltextstatus</li>
|
||||
<li><input disabled="" type="checkbox"> cg.identifier.status</li>
|
||||
<li><input disabled="" type="checkbox"> cg.link.reference</li>
|
||||
<li><input disabled="" type="checkbox"> cg.targetaudience</li>
|
||||
<li><input checked="" disabled="" type="checkbox"> cg.creator.id</li>
|
||||
<li><input checked="" disabled="" type="checkbox"> cg.fulltextstatus</li>
|
||||
<li><input checked="" disabled="" type="checkbox"> cg.identifier.status</li>
|
||||
<li><input checked="" disabled="" type="checkbox"> cg.link.reference</li>
|
||||
<li><input checked="" disabled="" type="checkbox"> cg.targetaudience</li>
|
||||
</ul>
|
||||
<h2 id="implementation-progress">Implementation Progress</h2>
|
||||
<p>Tally of the status of the implementation of the new fields in the CGSpace <code>6_x-cgcorev2</code> branch.</p>
|
||||
@ -464,14 +464,14 @@
|
||||
|
||||
<li><a href="/cgspace-notes/2021-03/">March, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-02/">February, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-01/">January, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-12/">December, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-dspace6-upgrade/">CGSpace DSpace 6 Upgrade</a></li>
|
||||
|
||||
</ol>
|
||||
</section>
|
||||
|
||||
|
@ -473,14 +473,14 @@ $ chrt -b 0 dspace solr-upgrade-statistics-6x -n 2500000 -i statistics-2018
|
||||
|
||||
<li><a href="/cgspace-notes/2021-03/">March, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-02/">February, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-01/">January, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-12/">December, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-dspace6-upgrade/">CGSpace DSpace 6 Upgrade</a></li>
|
||||
|
||||
</ol>
|
||||
</section>
|
||||
|
||||
|
@ -10,7 +10,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="2021-03-23T09:34:40+02:00" />
|
||||
<meta property="og:updated_time" content="2021-03-30T09:56:38+03:00" />
|
||||
|
||||
|
||||
|
||||
@ -122,6 +122,27 @@
|
||||
|
||||
|
||||
|
||||
<article class="blog-post">
|
||||
<header>
|
||||
<h2 class="blog-post-title" dir="auto"><a href="https://alanorth.github.io/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></h2>
|
||||
<p class="blog-post-meta"><time datetime="2021-02-21T13:27:35+02:00">Sun Feb 21, 2021</time> by Alan Orth in
|
||||
<span class="fas fa-folder" aria-hidden="true"></span> <a href="/cgspace-notes/categories/notes/" rel="category tag">Notes</a>
|
||||
|
||||
|
||||
<span class="fas fa-tag" aria-hidden="true"></span> <a href="/cgspace-notes/tags/migration/" rel="tag">Migration</a>
|
||||
|
||||
</p>
|
||||
</header>
|
||||
<p>Changes to CGSpace metadata fields to align more with DC, QDC, and DCTERMS as well as CG Core v2. Implemented on 2021-02-21.</p>
|
||||
<p>With reference to <a href="https://agriculturalsemantics.github.io/cg-core/cgcore.html">CG Core v2 draft standard</a> by Marie-Angélique as well as <a href="http://www.dublincore.org/specifications/dublin-core/dcmi-terms/">DCMI DCTERMS</a>.</p>
|
||||
<a href='https://alanorth.github.io/cgspace-notes/cgspace-cgcorev2-migration/'>Read more →</a>
|
||||
</article>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<article class="blog-post">
|
||||
<header>
|
||||
<h2 class="blog-post-title" dir="auto"><a href="https://alanorth.github.io/cgspace-notes/2021-02/">February, 2021</a></h2>
|
||||
@ -357,34 +378,6 @@
|
||||
|
||||
|
||||
|
||||
|
||||
<article class="blog-post">
|
||||
<header>
|
||||
<h2 class="blog-post-title" dir="auto"><a href="https://alanorth.github.io/cgspace-notes/2020-07/">July, 2020</a></h2>
|
||||
<p class="blog-post-meta"><time datetime="2020-07-01T10:53:54+03:00">Wed Jul 01, 2020</time> by Alan Orth in
|
||||
<span class="fas fa-folder" aria-hidden="true"></span> <a href="/cgspace-notes/categories/notes/" rel="category tag">Notes</a>
|
||||
|
||||
|
||||
</p>
|
||||
</header>
|
||||
<h2 id="2020-07-01">2020-07-01</h2>
|
||||
<ul>
|
||||
<li>A few users noticed that CGSpace wasn’t loading items today, item pages seem blank
|
||||
<ul>
|
||||
<li>I looked at the PostgreSQL locks but they don’t seem unusual</li>
|
||||
<li>I guess this is the same “blank item page” issue that we had a few times in 2019 that we never solved</li>
|
||||
<li>I restarted Tomcat and PostgreSQL and the issue was gone</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li>Since I was restarting Tomcat anyways I decided to redeploy the latest changes from the <code>5_x-prod</code> branch and I added a note about COVID-19 items to the CGSpace frontpage at Peter’s request</li>
|
||||
</ul>
|
||||
<a href='https://alanorth.github.io/cgspace-notes/2020-07/'>Read more →</a>
|
||||
</article>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<nav class="blog-pagination">
|
||||
|
||||
|
||||
@ -411,14 +404,14 @@
|
||||
|
||||
<li><a href="/cgspace-notes/2021-03/">March, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-02/">February, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-01/">January, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-12/">December, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-dspace6-upgrade/">CGSpace DSpace 6 Upgrade</a></li>
|
||||
|
||||
</ol>
|
||||
</section>
|
||||
|
||||
|
@ -24,6 +24,16 @@
|
||||
</ul></description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>CGSpace CG Core v2 Migration</title>
|
||||
<link>https://alanorth.github.io/cgspace-notes/cgspace-cgcorev2-migration/</link>
|
||||
<pubDate>Sun, 21 Feb 2021 13:27:35 +0200</pubDate>
|
||||
|
||||
<guid>https://alanorth.github.io/cgspace-notes/cgspace-cgcorev2-migration/</guid>
|
||||
<description><p>Changes to CGSpace metadata fields to align more with DC, QDC, and DCTERMS as well as CG Core v2. Implemented on 2021-02-21.</p>
|
||||
<p>With reference to <a href="https://agriculturalsemantics.github.io/cg-core/cgcore.html">CG Core v2 draft standard</a> by Marie-Angélique as well as <a href="http://www.dublincore.org/specifications/dublin-core/dcmi-terms/">DCMI DCTERMS</a>.</p></description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>February, 2021</title>
|
||||
<link>https://alanorth.github.io/cgspace-notes/2021-02/</link>
|
||||
@ -384,16 +394,6 @@
|
||||
</code></pre></description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>CGSpace CG Core v2 Migration</title>
|
||||
<link>https://alanorth.github.io/cgspace-notes/cgspace-cgcorev2-migration/</link>
|
||||
<pubDate>Mon, 28 Oct 2019 13:27:35 +0200</pubDate>
|
||||
|
||||
<guid>https://alanorth.github.io/cgspace-notes/cgspace-cgcorev2-migration/</guid>
|
||||
<description><p>Possible changes to CGSpace metadata fields to align more with DC, QDC, and DCTERMS as well as CG Core v2.</p>
|
||||
<p>With reference to <a href="https://agriculturalsemantics.github.io/cg-core/cgcore.html">CG Core v2 draft standard</a> by Marie-Angélique as well as <a href="http://www.dublincore.org/specifications/dublin-core/dcmi-terms/">DCMI DCTERMS</a>.</p></description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>October, 2019</title>
|
||||
<link>https://alanorth.github.io/cgspace-notes/2019-10/</link>
|
||||
|
@ -10,7 +10,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="2021-03-23T09:34:40+02:00" />
|
||||
<meta property="og:updated_time" content="2021-03-30T09:56:38+03:00" />
|
||||
|
||||
|
||||
|
||||
@ -96,6 +96,34 @@
|
||||
|
||||
|
||||
|
||||
<article class="blog-post">
|
||||
<header>
|
||||
<h2 class="blog-post-title" dir="auto"><a href="https://alanorth.github.io/cgspace-notes/2020-07/">July, 2020</a></h2>
|
||||
<p class="blog-post-meta"><time datetime="2020-07-01T10:53:54+03:00">Wed Jul 01, 2020</time> by Alan Orth in
|
||||
<span class="fas fa-folder" aria-hidden="true"></span> <a href="/cgspace-notes/categories/notes/" rel="category tag">Notes</a>
|
||||
|
||||
|
||||
</p>
|
||||
</header>
|
||||
<h2 id="2020-07-01">2020-07-01</h2>
|
||||
<ul>
|
||||
<li>A few users noticed that CGSpace wasn’t loading items today, item pages seem blank
|
||||
<ul>
|
||||
<li>I looked at the PostgreSQL locks but they don’t seem unusual</li>
|
||||
<li>I guess this is the same “blank item page” issue that we had a few times in 2019 that we never solved</li>
|
||||
<li>I restarted Tomcat and PostgreSQL and the issue was gone</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li>Since I was restarting Tomcat anyways I decided to redeploy the latest changes from the <code>5_x-prod</code> branch and I added a note about COVID-19 items to the CGSpace frontpage at Peter’s request</li>
|
||||
</ul>
|
||||
<a href='https://alanorth.github.io/cgspace-notes/2020-07/'>Read more →</a>
|
||||
</article>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<article class="blog-post">
|
||||
<header>
|
||||
<h2 class="blog-post-title" dir="auto"><a href="https://alanorth.github.io/cgspace-notes/2020-06/">June, 2020</a></h2>
|
||||
@ -347,27 +375,6 @@
|
||||
|
||||
|
||||
|
||||
<article class="blog-post">
|
||||
<header>
|
||||
<h2 class="blog-post-title" dir="auto"><a href="https://alanorth.github.io/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></h2>
|
||||
<p class="blog-post-meta"><time datetime="2019-10-28T13:27:35+02:00">Mon Oct 28, 2019</time> by Alan Orth in
|
||||
<span class="fas fa-folder" aria-hidden="true"></span> <a href="/cgspace-notes/categories/notes/" rel="category tag">Notes</a>
|
||||
|
||||
|
||||
<span class="fas fa-tag" aria-hidden="true"></span> <a href="/cgspace-notes/tags/migration/" rel="tag">Migration</a>
|
||||
|
||||
</p>
|
||||
</header>
|
||||
<p>Possible changes to CGSpace metadata fields to align more with DC, QDC, and DCTERMS as well as CG Core v2.</p>
|
||||
<p>With reference to <a href="https://agriculturalsemantics.github.io/cg-core/cgcore.html">CG Core v2 draft standard</a> by Marie-Angélique as well as <a href="http://www.dublincore.org/specifications/dublin-core/dcmi-terms/">DCMI DCTERMS</a>.</p>
|
||||
<a href='https://alanorth.github.io/cgspace-notes/cgspace-cgcorev2-migration/'>Read more →</a>
|
||||
</article>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<article class="blog-post">
|
||||
<header>
|
||||
<h2 class="blog-post-title" dir="auto"><a href="https://alanorth.github.io/cgspace-notes/2019-10/">October, 2019</a></h2>
|
||||
@ -411,14 +418,14 @@
|
||||
|
||||
<li><a href="/cgspace-notes/2021-03/">March, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-02/">February, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-01/">January, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-12/">December, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-dspace6-upgrade/">CGSpace DSpace 6 Upgrade</a></li>
|
||||
|
||||
</ol>
|
||||
</section>
|
||||
|
||||
|
@ -10,7 +10,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="2021-03-23T09:34:40+02:00" />
|
||||
<meta property="og:updated_time" content="2021-03-30T09:56:38+03:00" />
|
||||
|
||||
|
||||
|
||||
@ -464,14 +464,14 @@ sys 0m1.979s
|
||||
|
||||
<li><a href="/cgspace-notes/2021-03/">March, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-02/">February, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-01/">January, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-12/">December, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-dspace6-upgrade/">CGSpace DSpace 6 Upgrade</a></li>
|
||||
|
||||
</ol>
|
||||
</section>
|
||||
|
||||
|
@ -10,7 +10,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="2021-03-23T09:34:40+02:00" />
|
||||
<meta property="og:updated_time" content="2021-03-30T09:56:38+03:00" />
|
||||
|
||||
|
||||
|
||||
@ -386,14 +386,14 @@ sys 2m7.289s
|
||||
|
||||
<li><a href="/cgspace-notes/2021-03/">March, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-02/">February, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-01/">January, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-12/">December, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-dspace6-upgrade/">CGSpace DSpace 6 Upgrade</a></li>
|
||||
|
||||
</ol>
|
||||
</section>
|
||||
|
||||
|
@ -10,7 +10,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="2021-03-23T09:34:40+02:00" />
|
||||
<meta property="og:updated_time" content="2021-03-30T09:56:38+03:00" />
|
||||
|
||||
|
||||
|
||||
@ -435,14 +435,14 @@ COPY 54701
|
||||
|
||||
<li><a href="/cgspace-notes/2021-03/">March, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-02/">February, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-01/">January, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-12/">December, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-dspace6-upgrade/">CGSpace DSpace 6 Upgrade</a></li>
|
||||
|
||||
</ol>
|
||||
</section>
|
||||
|
||||
|
@ -10,7 +10,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="2021-03-23T09:34:40+02:00" />
|
||||
<meta property="og:updated_time" content="2021-03-30T09:56:38+03:00" />
|
||||
|
||||
|
||||
|
||||
@ -414,14 +414,14 @@ dspacetest=# select text_value from metadatavalue where metadata_field_id=3 and
|
||||
|
||||
<li><a href="/cgspace-notes/2021-03/">March, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-02/">February, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-01/">January, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-12/">December, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-dspace6-upgrade/">CGSpace DSpace 6 Upgrade</a></li>
|
||||
|
||||
</ol>
|
||||
</section>
|
||||
|
||||
|
@ -10,7 +10,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="2021-03-23T09:34:40+02:00" />
|
||||
<meta property="og:updated_time" content="2021-03-30T09:56:38+03:00" />
|
||||
|
||||
|
||||
|
||||
@ -325,14 +325,14 @@
|
||||
|
||||
<li><a href="/cgspace-notes/2021-03/">March, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-02/">February, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-01/">January, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-12/">December, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-dspace6-upgrade/">CGSpace DSpace 6 Upgrade</a></li>
|
||||
|
||||
</ol>
|
||||
</section>
|
||||
|
||||
|
@ -10,7 +10,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="2021-03-23T09:34:40+02:00" />
|
||||
<meta property="og:updated_time" content="2021-03-30T09:56:38+03:00" />
|
||||
|
||||
|
||||
|
||||
@ -122,6 +122,27 @@
|
||||
|
||||
|
||||
|
||||
<article class="blog-post">
|
||||
<header>
|
||||
<h2 class="blog-post-title" dir="auto"><a href="https://alanorth.github.io/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></h2>
|
||||
<p class="blog-post-meta"><time datetime="2021-02-21T13:27:35+02:00">Sun Feb 21, 2021</time> by Alan Orth in
|
||||
<span class="fas fa-folder" aria-hidden="true"></span> <a href="/cgspace-notes/categories/notes/" rel="category tag">Notes</a>
|
||||
|
||||
|
||||
<span class="fas fa-tag" aria-hidden="true"></span> <a href="/cgspace-notes/tags/migration/" rel="tag">Migration</a>
|
||||
|
||||
</p>
|
||||
</header>
|
||||
<p>Changes to CGSpace metadata fields to align more with DC, QDC, and DCTERMS as well as CG Core v2. Implemented on 2021-02-21.</p>
|
||||
<p>With reference to <a href="https://agriculturalsemantics.github.io/cg-core/cgcore.html">CG Core v2 draft standard</a> by Marie-Angélique as well as <a href="http://www.dublincore.org/specifications/dublin-core/dcmi-terms/">DCMI DCTERMS</a>.</p>
|
||||
<a href='https://alanorth.github.io/cgspace-notes/cgspace-cgcorev2-migration/'>Read more →</a>
|
||||
</article>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<article class="blog-post">
|
||||
<header>
|
||||
<h2 class="blog-post-title" dir="auto"><a href="https://alanorth.github.io/cgspace-notes/2021-02/">February, 2021</a></h2>
|
||||
@ -357,34 +378,6 @@
|
||||
|
||||
|
||||
|
||||
|
||||
<article class="blog-post">
|
||||
<header>
|
||||
<h2 class="blog-post-title" dir="auto"><a href="https://alanorth.github.io/cgspace-notes/2020-07/">July, 2020</a></h2>
|
||||
<p class="blog-post-meta"><time datetime="2020-07-01T10:53:54+03:00">Wed Jul 01, 2020</time> by Alan Orth in
|
||||
<span class="fas fa-folder" aria-hidden="true"></span> <a href="/cgspace-notes/categories/notes/" rel="category tag">Notes</a>
|
||||
|
||||
|
||||
</p>
|
||||
</header>
|
||||
<h2 id="2020-07-01">2020-07-01</h2>
|
||||
<ul>
|
||||
<li>A few users noticed that CGSpace wasn’t loading items today, item pages seem blank
|
||||
<ul>
|
||||
<li>I looked at the PostgreSQL locks but they don’t seem unusual</li>
|
||||
<li>I guess this is the same “blank item page” issue that we had a few times in 2019 that we never solved</li>
|
||||
<li>I restarted Tomcat and PostgreSQL and the issue was gone</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li>Since I was restarting Tomcat anyways I decided to redeploy the latest changes from the <code>5_x-prod</code> branch and I added a note about COVID-19 items to the CGSpace frontpage at Peter’s request</li>
|
||||
</ul>
|
||||
<a href='https://alanorth.github.io/cgspace-notes/2020-07/'>Read more →</a>
|
||||
</article>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<nav class="blog-pagination">
|
||||
|
||||
|
||||
@ -411,14 +404,14 @@
|
||||
|
||||
<li><a href="/cgspace-notes/2021-03/">March, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-02/">February, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-01/">January, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-12/">December, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-dspace6-upgrade/">CGSpace DSpace 6 Upgrade</a></li>
|
||||
|
||||
</ol>
|
||||
</section>
|
||||
|
||||
|
@ -24,6 +24,16 @@
|
||||
</ul></description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>CGSpace CG Core v2 Migration</title>
|
||||
<link>https://alanorth.github.io/cgspace-notes/cgspace-cgcorev2-migration/</link>
|
||||
<pubDate>Sun, 21 Feb 2021 13:27:35 +0200</pubDate>
|
||||
|
||||
<guid>https://alanorth.github.io/cgspace-notes/cgspace-cgcorev2-migration/</guid>
|
||||
<description><p>Changes to CGSpace metadata fields to align more with DC, QDC, and DCTERMS as well as CG Core v2. Implemented on 2021-02-21.</p>
|
||||
<p>With reference to <a href="https://agriculturalsemantics.github.io/cg-core/cgcore.html">CG Core v2 draft standard</a> by Marie-Angélique as well as <a href="http://www.dublincore.org/specifications/dublin-core/dcmi-terms/">DCMI DCTERMS</a>.</p></description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>February, 2021</title>
|
||||
<link>https://alanorth.github.io/cgspace-notes/2021-02/</link>
|
||||
@ -384,16 +394,6 @@
|
||||
</code></pre></description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>CGSpace CG Core v2 Migration</title>
|
||||
<link>https://alanorth.github.io/cgspace-notes/cgspace-cgcorev2-migration/</link>
|
||||
<pubDate>Mon, 28 Oct 2019 13:27:35 +0200</pubDate>
|
||||
|
||||
<guid>https://alanorth.github.io/cgspace-notes/cgspace-cgcorev2-migration/</guid>
|
||||
<description><p>Possible changes to CGSpace metadata fields to align more with DC, QDC, and DCTERMS as well as CG Core v2.</p>
|
||||
<p>With reference to <a href="https://agriculturalsemantics.github.io/cg-core/cgcore.html">CG Core v2 draft standard</a> by Marie-Angélique as well as <a href="http://www.dublincore.org/specifications/dublin-core/dcmi-terms/">DCMI DCTERMS</a>.</p></description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>October, 2019</title>
|
||||
<link>https://alanorth.github.io/cgspace-notes/2019-10/</link>
|
||||
|
@ -10,7 +10,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="2021-03-23T09:34:40+02:00" />
|
||||
<meta property="og:updated_time" content="2021-03-30T09:56:38+03:00" />
|
||||
|
||||
|
||||
|
||||
@ -96,6 +96,34 @@
|
||||
|
||||
|
||||
|
||||
<article class="blog-post">
|
||||
<header>
|
||||
<h2 class="blog-post-title" dir="auto"><a href="https://alanorth.github.io/cgspace-notes/2020-07/">July, 2020</a></h2>
|
||||
<p class="blog-post-meta"><time datetime="2020-07-01T10:53:54+03:00">Wed Jul 01, 2020</time> by Alan Orth in
|
||||
<span class="fas fa-folder" aria-hidden="true"></span> <a href="/cgspace-notes/categories/notes/" rel="category tag">Notes</a>
|
||||
|
||||
|
||||
</p>
|
||||
</header>
|
||||
<h2 id="2020-07-01">2020-07-01</h2>
|
||||
<ul>
|
||||
<li>A few users noticed that CGSpace wasn’t loading items today, item pages seem blank
|
||||
<ul>
|
||||
<li>I looked at the PostgreSQL locks but they don’t seem unusual</li>
|
||||
<li>I guess this is the same “blank item page” issue that we had a few times in 2019 that we never solved</li>
|
||||
<li>I restarted Tomcat and PostgreSQL and the issue was gone</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li>Since I was restarting Tomcat anyways I decided to redeploy the latest changes from the <code>5_x-prod</code> branch and I added a note about COVID-19 items to the CGSpace frontpage at Peter’s request</li>
|
||||
</ul>
|
||||
<a href='https://alanorth.github.io/cgspace-notes/2020-07/'>Read more →</a>
|
||||
</article>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<article class="blog-post">
|
||||
<header>
|
||||
<h2 class="blog-post-title" dir="auto"><a href="https://alanorth.github.io/cgspace-notes/2020-06/">June, 2020</a></h2>
|
||||
@ -347,27 +375,6 @@
|
||||
|
||||
|
||||
|
||||
<article class="blog-post">
|
||||
<header>
|
||||
<h2 class="blog-post-title" dir="auto"><a href="https://alanorth.github.io/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></h2>
|
||||
<p class="blog-post-meta"><time datetime="2019-10-28T13:27:35+02:00">Mon Oct 28, 2019</time> by Alan Orth in
|
||||
<span class="fas fa-folder" aria-hidden="true"></span> <a href="/cgspace-notes/categories/notes/" rel="category tag">Notes</a>
|
||||
|
||||
|
||||
<span class="fas fa-tag" aria-hidden="true"></span> <a href="/cgspace-notes/tags/migration/" rel="tag">Migration</a>
|
||||
|
||||
</p>
|
||||
</header>
|
||||
<p>Possible changes to CGSpace metadata fields to align more with DC, QDC, and DCTERMS as well as CG Core v2.</p>
|
||||
<p>With reference to <a href="https://agriculturalsemantics.github.io/cg-core/cgcore.html">CG Core v2 draft standard</a> by Marie-Angélique as well as <a href="http://www.dublincore.org/specifications/dublin-core/dcmi-terms/">DCMI DCTERMS</a>.</p>
|
||||
<a href='https://alanorth.github.io/cgspace-notes/cgspace-cgcorev2-migration/'>Read more →</a>
|
||||
</article>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<article class="blog-post">
|
||||
<header>
|
||||
<h2 class="blog-post-title" dir="auto"><a href="https://alanorth.github.io/cgspace-notes/2019-10/">October, 2019</a></h2>
|
||||
@ -411,14 +418,14 @@
|
||||
|
||||
<li><a href="/cgspace-notes/2021-03/">March, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-02/">February, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-01/">January, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-12/">December, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-dspace6-upgrade/">CGSpace DSpace 6 Upgrade</a></li>
|
||||
|
||||
</ol>
|
||||
</section>
|
||||
|
||||
|
@ -10,7 +10,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="2021-03-23T09:34:40+02:00" />
|
||||
<meta property="og:updated_time" content="2021-03-30T09:56:38+03:00" />
|
||||
|
||||
|
||||
|
||||
@ -464,14 +464,14 @@ sys 0m1.979s
|
||||
|
||||
<li><a href="/cgspace-notes/2021-03/">March, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-02/">February, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-01/">January, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-12/">December, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-dspace6-upgrade/">CGSpace DSpace 6 Upgrade</a></li>
|
||||
|
||||
</ol>
|
||||
</section>
|
||||
|
||||
|
@ -10,7 +10,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="2021-03-23T09:34:40+02:00" />
|
||||
<meta property="og:updated_time" content="2021-03-30T09:56:38+03:00" />
|
||||
|
||||
|
||||
|
||||
@ -386,14 +386,14 @@ sys 2m7.289s
|
||||
|
||||
<li><a href="/cgspace-notes/2021-03/">March, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-02/">February, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-01/">January, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-12/">December, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-dspace6-upgrade/">CGSpace DSpace 6 Upgrade</a></li>
|
||||
|
||||
</ol>
|
||||
</section>
|
||||
|
||||
|
@ -10,7 +10,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="2021-03-23T09:34:40+02:00" />
|
||||
<meta property="og:updated_time" content="2021-03-30T09:56:38+03:00" />
|
||||
|
||||
|
||||
|
||||
@ -435,14 +435,14 @@ COPY 54701
|
||||
|
||||
<li><a href="/cgspace-notes/2021-03/">March, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-02/">February, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-01/">January, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-12/">December, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-dspace6-upgrade/">CGSpace DSpace 6 Upgrade</a></li>
|
||||
|
||||
</ol>
|
||||
</section>
|
||||
|
||||
|
@ -10,7 +10,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="2021-03-23T09:34:40+02:00" />
|
||||
<meta property="og:updated_time" content="2021-03-30T09:56:38+03:00" />
|
||||
|
||||
|
||||
|
||||
@ -414,14 +414,14 @@ dspacetest=# select text_value from metadatavalue where metadata_field_id=3 and
|
||||
|
||||
<li><a href="/cgspace-notes/2021-03/">March, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-02/">February, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-01/">January, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-12/">December, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-dspace6-upgrade/">CGSpace DSpace 6 Upgrade</a></li>
|
||||
|
||||
</ol>
|
||||
</section>
|
||||
|
||||
|
@ -10,7 +10,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="2021-03-23T09:34:40+02:00" />
|
||||
<meta property="og:updated_time" content="2021-03-30T09:56:38+03:00" />
|
||||
|
||||
|
||||
|
||||
@ -325,14 +325,14 @@
|
||||
|
||||
<li><a href="/cgspace-notes/2021-03/">March, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-02/">February, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-01/">January, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-12/">December, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-dspace6-upgrade/">CGSpace DSpace 6 Upgrade</a></li>
|
||||
|
||||
</ol>
|
||||
</section>
|
||||
|
||||
|
@ -6,12 +6,13 @@ Disallow: /cgspace-notes/
|
||||
Disallow: /cgspace-notes/2021-03/
|
||||
Disallow: /cgspace-notes/categories/notes/
|
||||
Disallow: /cgspace-notes/posts/
|
||||
Disallow: /cgspace-notes/cgspace-cgcorev2-migration/
|
||||
Disallow: /cgspace-notes/tags/migration/
|
||||
Disallow: /cgspace-notes/tags/
|
||||
Disallow: /cgspace-notes/2021-02/
|
||||
Disallow: /cgspace-notes/2021-01/
|
||||
Disallow: /cgspace-notes/2020-12/
|
||||
Disallow: /cgspace-notes/cgspace-dspace6-upgrade/
|
||||
Disallow: /cgspace-notes/tags/migration/
|
||||
Disallow: /cgspace-notes/tags/
|
||||
Disallow: /cgspace-notes/2020-11/
|
||||
Disallow: /cgspace-notes/2020-10/
|
||||
Disallow: /cgspace-notes/2020-09/
|
||||
@ -25,7 +26,6 @@ Disallow: /cgspace-notes/2020-02/
|
||||
Disallow: /cgspace-notes/2020-01/
|
||||
Disallow: /cgspace-notes/2019-12/
|
||||
Disallow: /cgspace-notes/2019-11/
|
||||
Disallow: /cgspace-notes/cgspace-cgcorev2-migration/
|
||||
Disallow: /cgspace-notes/2019-10/
|
||||
Disallow: /cgspace-notes/2019-09/
|
||||
Disallow: /cgspace-notes/2019-08/
|
||||
|
@ -3,19 +3,28 @@
|
||||
xmlns:xhtml="http://www.w3.org/1999/xhtml">
|
||||
<url>
|
||||
<loc>https://alanorth.github.io/cgspace-notes/categories/</loc>
|
||||
<lastmod>2021-03-23T09:34:40+02:00</lastmod>
|
||||
<lastmod>2021-03-30T09:56:38+03:00</lastmod>
|
||||
</url><url>
|
||||
<loc>https://alanorth.github.io/cgspace-notes/</loc>
|
||||
<lastmod>2021-03-23T09:34:40+02:00</lastmod>
|
||||
<lastmod>2021-03-30T09:56:38+03:00</lastmod>
|
||||
</url><url>
|
||||
<loc>https://alanorth.github.io/cgspace-notes/2021-03/</loc>
|
||||
<lastmod>2021-03-23T09:34:40+02:00</lastmod>
|
||||
<lastmod>2021-03-30T09:56:38+03:00</lastmod>
|
||||
</url><url>
|
||||
<loc>https://alanorth.github.io/cgspace-notes/categories/notes/</loc>
|
||||
<lastmod>2021-03-23T09:34:40+02:00</lastmod>
|
||||
<lastmod>2021-03-30T09:56:38+03:00</lastmod>
|
||||
</url><url>
|
||||
<loc>https://alanorth.github.io/cgspace-notes/posts/</loc>
|
||||
<lastmod>2021-03-23T09:34:40+02:00</lastmod>
|
||||
<lastmod>2021-03-30T09:56:38+03:00</lastmod>
|
||||
</url><url>
|
||||
<loc>https://alanorth.github.io/cgspace-notes/cgspace-cgcorev2-migration/</loc>
|
||||
<lastmod>2021-03-30T09:56:38+03:00</lastmod>
|
||||
</url><url>
|
||||
<loc>https://alanorth.github.io/cgspace-notes/tags/migration/</loc>
|
||||
<lastmod>2021-03-30T09:56:38+03:00</lastmod>
|
||||
</url><url>
|
||||
<loc>https://alanorth.github.io/cgspace-notes/tags/</loc>
|
||||
<lastmod>2021-03-30T09:56:38+03:00</lastmod>
|
||||
</url><url>
|
||||
<loc>https://alanorth.github.io/cgspace-notes/2021-02/</loc>
|
||||
<lastmod>2021-03-04T22:46:05+02:00</lastmod>
|
||||
@ -28,12 +37,6 @@
|
||||
</url><url>
|
||||
<loc>https://alanorth.github.io/cgspace-notes/cgspace-dspace6-upgrade/</loc>
|
||||
<lastmod>2020-12-01T19:15:48+02:00</lastmod>
|
||||
</url><url>
|
||||
<loc>https://alanorth.github.io/cgspace-notes/tags/migration/</loc>
|
||||
<lastmod>2021-01-28T16:28:21+02:00</lastmod>
|
||||
</url><url>
|
||||
<loc>https://alanorth.github.io/cgspace-notes/tags/</loc>
|
||||
<lastmod>2021-01-28T16:28:21+02:00</lastmod>
|
||||
</url><url>
|
||||
<loc>https://alanorth.github.io/cgspace-notes/2020-11/</loc>
|
||||
<lastmod>2020-11-30T20:12:55+02:00</lastmod>
|
||||
@ -73,9 +76,6 @@
|
||||
</url><url>
|
||||
<loc>https://alanorth.github.io/cgspace-notes/2019-11/</loc>
|
||||
<lastmod>2019-11-28T17:30:45+02:00</lastmod>
|
||||
</url><url>
|
||||
<loc>https://alanorth.github.io/cgspace-notes/cgspace-cgcorev2-migration/</loc>
|
||||
<lastmod>2021-01-28T16:28:21+02:00</lastmod>
|
||||
</url><url>
|
||||
<loc>https://alanorth.github.io/cgspace-notes/2019-10/</loc>
|
||||
<lastmod>2019-10-29T17:41:17+02:00</lastmod>
|
||||
|
@ -10,7 +10,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/tags/" />
|
||||
<meta property="og:updated_time" content="2021-01-28T16:28:21+02:00" />
|
||||
<meta property="og:updated_time" content="2021-03-30T09:56:38+03:00" />
|
||||
|
||||
|
||||
|
||||
@ -84,7 +84,7 @@
|
||||
<article class="blog-post">
|
||||
<header>
|
||||
<h2 class="blog-post-title" dir="auto"><a href="https://alanorth.github.io/cgspace-notes/tags/migration/">Migration</a></h2>
|
||||
<p class="blog-post-meta"><time datetime="2020-11-15T13:27:35+02:00">Sun Nov 15, 2020</time> by Alan Orth</p>
|
||||
<p class="blog-post-meta"><time datetime="2021-02-21T13:27:35+02:00">Sun Feb 21, 2021</time> by Alan Orth</p>
|
||||
</header>
|
||||
|
||||
<a href='https://alanorth.github.io/cgspace-notes/tags/migration/'>Read more →</a>
|
||||
@ -124,14 +124,14 @@
|
||||
|
||||
<li><a href="/cgspace-notes/2021-03/">March, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-02/">February, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-01/">January, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-12/">December, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-dspace6-upgrade/">CGSpace DSpace 6 Upgrade</a></li>
|
||||
|
||||
</ol>
|
||||
</section>
|
||||
|
||||
|
@ -6,11 +6,11 @@
|
||||
<description>Recent content in Tags on CGSpace Notes</description>
|
||||
<generator>Hugo -- gohugo.io</generator>
|
||||
<language>en-us</language>
|
||||
<lastBuildDate>Sun, 15 Nov 2020 13:27:35 +0200</lastBuildDate><atom:link href="https://alanorth.github.io/cgspace-notes/tags/index.xml" rel="self" type="application/rss+xml" />
|
||||
<lastBuildDate>Sun, 21 Feb 2021 13:27:35 +0200</lastBuildDate><atom:link href="https://alanorth.github.io/cgspace-notes/tags/index.xml" rel="self" type="application/rss+xml" />
|
||||
<item>
|
||||
<title>Migration</title>
|
||||
<link>https://alanorth.github.io/cgspace-notes/tags/migration/</link>
|
||||
<pubDate>Sun, 15 Nov 2020 13:27:35 +0200</pubDate>
|
||||
<pubDate>Sun, 21 Feb 2021 13:27:35 +0200</pubDate>
|
||||
|
||||
<guid>https://alanorth.github.io/cgspace-notes/tags/migration/</guid>
|
||||
<description></description>
|
||||
|
@ -10,7 +10,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/tags/migration/" />
|
||||
<meta property="og:updated_time" content="2021-01-28T16:28:21+02:00" />
|
||||
<meta property="og:updated_time" content="2021-03-30T09:56:38+03:00" />
|
||||
|
||||
|
||||
|
||||
@ -81,6 +81,27 @@
|
||||
|
||||
|
||||
|
||||
<article class="blog-post">
|
||||
<header>
|
||||
<h2 class="blog-post-title" dir="auto"><a href="https://alanorth.github.io/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></h2>
|
||||
<p class="blog-post-meta"><time datetime="2021-02-21T13:27:35+02:00">Sun Feb 21, 2021</time> by Alan Orth in
|
||||
<span class="fas fa-folder" aria-hidden="true"></span> <a href="/cgspace-notes/categories/notes/" rel="category tag">Notes</a>
|
||||
|
||||
|
||||
<span class="fas fa-tag" aria-hidden="true"></span> <a href="/cgspace-notes/tags/migration/" rel="tag">Migration</a>
|
||||
|
||||
</p>
|
||||
</header>
|
||||
<p>Changes to CGSpace metadata fields to align more with DC, QDC, and DCTERMS as well as CG Core v2. Implemented on 2021-02-21.</p>
|
||||
<p>With reference to <a href="https://agriculturalsemantics.github.io/cg-core/cgcore.html">CG Core v2 draft standard</a> by Marie-Angélique as well as <a href="http://www.dublincore.org/specifications/dublin-core/dcmi-terms/">DCMI DCTERMS</a>.</p>
|
||||
<a href='https://alanorth.github.io/cgspace-notes/cgspace-cgcorev2-migration/'>Read more →</a>
|
||||
</article>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<article class="blog-post">
|
||||
<header>
|
||||
<h2 class="blog-post-title" dir="auto"><a href="https://alanorth.github.io/cgspace-notes/cgspace-dspace6-upgrade/">CGSpace DSpace 6 Upgrade</a></h2>
|
||||
@ -101,27 +122,6 @@
|
||||
|
||||
|
||||
|
||||
<article class="blog-post">
|
||||
<header>
|
||||
<h2 class="blog-post-title" dir="auto"><a href="https://alanorth.github.io/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></h2>
|
||||
<p class="blog-post-meta"><time datetime="2019-10-28T13:27:35+02:00">Mon Oct 28, 2019</time> by Alan Orth in
|
||||
<span class="fas fa-folder" aria-hidden="true"></span> <a href="/cgspace-notes/categories/notes/" rel="category tag">Notes</a>
|
||||
|
||||
|
||||
<span class="fas fa-tag" aria-hidden="true"></span> <a href="/cgspace-notes/tags/migration/" rel="tag">Migration</a>
|
||||
|
||||
</p>
|
||||
</header>
|
||||
<p>Possible changes to CGSpace metadata fields to align more with DC, QDC, and DCTERMS as well as CG Core v2.</p>
|
||||
<p>With reference to <a href="https://agriculturalsemantics.github.io/cg-core/cgcore.html">CG Core v2 draft standard</a> by Marie-Angélique as well as <a href="http://www.dublincore.org/specifications/dublin-core/dcmi-terms/">DCMI DCTERMS</a>.</p>
|
||||
<a href='https://alanorth.github.io/cgspace-notes/cgspace-cgcorev2-migration/'>Read more →</a>
|
||||
</article>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<article class="blog-post">
|
||||
<header>
|
||||
<h2 class="blog-post-title" dir="auto"><a href="https://alanorth.github.io/cgspace-notes/cgiar-library-migration/">CGIAR Library Migration</a></h2>
|
||||
@ -157,14 +157,14 @@
|
||||
|
||||
<li><a href="/cgspace-notes/2021-03/">March, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-02/">February, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-01/">January, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-12/">December, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-dspace6-upgrade/">CGSpace DSpace 6 Upgrade</a></li>
|
||||
|
||||
</ol>
|
||||
</section>
|
||||
|
||||
|
@ -6,7 +6,17 @@
|
||||
<description>Recent content in Migration on CGSpace Notes</description>
|
||||
<generator>Hugo -- gohugo.io</generator>
|
||||
<language>en-us</language>
|
||||
<lastBuildDate>Sun, 15 Nov 2020 13:27:35 +0200</lastBuildDate><atom:link href="https://alanorth.github.io/cgspace-notes/tags/migration/index.xml" rel="self" type="application/rss+xml" />
|
||||
<lastBuildDate>Sun, 21 Feb 2021 13:27:35 +0200</lastBuildDate><atom:link href="https://alanorth.github.io/cgspace-notes/tags/migration/index.xml" rel="self" type="application/rss+xml" />
|
||||
<item>
|
||||
<title>CGSpace CG Core v2 Migration</title>
|
||||
<link>https://alanorth.github.io/cgspace-notes/cgspace-cgcorev2-migration/</link>
|
||||
<pubDate>Sun, 21 Feb 2021 13:27:35 +0200</pubDate>
|
||||
|
||||
<guid>https://alanorth.github.io/cgspace-notes/cgspace-cgcorev2-migration/</guid>
|
||||
<description><p>Changes to CGSpace metadata fields to align more with DC, QDC, and DCTERMS as well as CG Core v2. Implemented on 2021-02-21.</p>
|
||||
<p>With reference to <a href="https://agriculturalsemantics.github.io/cg-core/cgcore.html">CG Core v2 draft standard</a> by Marie-Angélique as well as <a href="http://www.dublincore.org/specifications/dublin-core/dcmi-terms/">DCMI DCTERMS</a>.</p></description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>CGSpace DSpace 6 Upgrade</title>
|
||||
<link>https://alanorth.github.io/cgspace-notes/cgspace-dspace6-upgrade/</link>
|
||||
@ -16,16 +26,6 @@
|
||||
<description><p>Notes about the DSpace 6 upgrade on CGSpace in 2020-11.</p></description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>CGSpace CG Core v2 Migration</title>
|
||||
<link>https://alanorth.github.io/cgspace-notes/cgspace-cgcorev2-migration/</link>
|
||||
<pubDate>Mon, 28 Oct 2019 13:27:35 +0200</pubDate>
|
||||
|
||||
<guid>https://alanorth.github.io/cgspace-notes/cgspace-cgcorev2-migration/</guid>
|
||||
<description><p>Possible changes to CGSpace metadata fields to align more with DC, QDC, and DCTERMS as well as CG Core v2.</p>
|
||||
<p>With reference to <a href="https://agriculturalsemantics.github.io/cg-core/cgcore.html">CG Core v2 draft standard</a> by Marie-Angélique as well as <a href="http://www.dublincore.org/specifications/dublin-core/dcmi-terms/">DCMI DCTERMS</a>.</p></description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>CGIAR Library Migration</title>
|
||||
<link>https://alanorth.github.io/cgspace-notes/cgiar-library-migration/</link>
|
||||
|
@ -387,14 +387,14 @@ DELETE 1
|
||||
|
||||
<li><a href="/cgspace-notes/2021-03/">March, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-cgcorev2-migration/">CGSpace CG Core v2 Migration</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-02/">February, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2021-01/">January, 2021</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/2020-12/">December, 2020</a></li>
|
||||
|
||||
<li><a href="/cgspace-notes/cgspace-dspace6-upgrade/">CGSpace DSpace 6 Upgrade</a></li>
|
||||
|
||||
</ol>
|
||||
</section>
|
||||
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user