mirror of
https://github.com/alanorth/cgspace-notes.git
synced 2025-01-27 05:49:12 +01:00
Update notes for 2017-07-04
This commit is contained in:
@ -14,3 +14,11 @@ tags = ["Notes"]
|
||||
## 2017-07-04
|
||||
|
||||
- Merge changes for WLE Phase II theme rename ([#329](https://github.com/ilri/DSpace/pull/329))
|
||||
- Looking at extracting the metadata registries from ICARDA's MEL DSpace database so we can compare fields with CGSpace
|
||||
- We can use PostgreSQL's extended output format (`-x`) plus `sed` to format the output into quasi XML:
|
||||
|
||||
```
|
||||
$ psql dspacenew -x -c 'select element, qualifier, scope_note from metadatafieldregistry where metadata_schema_id=5 order by element, qualifier;' | sed -r 's:^-\[ RECORD (.*) \]-+$:</dc-type>\n<dc-type>:;s:([^ ]*) +\| (.*): <\1>\2</\1>:;s:^$:</dc-type>:;1s:</dc-type>\n::'
|
||||
```
|
||||
|
||||
- The `sed` script is from a post on the [PostgreSQL mailing list](https://www.postgresql.org/message-id/437E44A5.508%40ultimeth.com)
|
||||
|
Reference in New Issue
Block a user