mirror of
https://github.com/alanorth/cgspace-notes.git
synced 2024-11-22 14:45:03 +01:00
Update notes for 2018-09-10
This commit is contained in:
parent
5e72a7fc30
commit
20d0f3b6e9
@ -112,5 +112,31 @@ org.dspace.authorize.AuthorizeException: Authorization denied for action WORKFLO
|
||||
```
|
||||
|
||||
- Seems to be during submit step, because it's workflow step 1...?
|
||||
- Move some top-level CRP communities to be below the new [CGIAR Research Programs and Platforms](https://cgspace.cgiar.org/handle/10568/97114) community:
|
||||
|
||||
```
|
||||
$ dspace community-filiator --set -p 10568/97114 -c 10568/51670
|
||||
$ dspace community-filiator --set -p 10568/97114 -c 10568/35409
|
||||
$ dspace community-filiator --set -p 10568/97114 -c 10568/3112
|
||||
```
|
||||
|
||||
- Valerio contacted me to point out some issues with metadata on CGSpace, which I corrected in PostgreSQL:
|
||||
|
||||
```
|
||||
update metadatavalue set text_value='ISI Journal' where resource_type_id=2 and metadata_field_id=226 and text_value='ISI Juornal';
|
||||
UPDATE 1
|
||||
update metadatavalue set text_value='ISI Journal' where resource_type_id=2 and metadata_field_id=226 and text_value='ISI journal';
|
||||
UPDATE 23
|
||||
update metadatavalue set text_value='ISI Journal' where resource_type_id=2 and metadata_field_id=226 and text_value='YES';
|
||||
UPDATE 1
|
||||
delete from metadatavalue where resource_type_id=2 and metadata_field_id=226 and text_value='NO';
|
||||
DELETE 17
|
||||
update metadatavalue set text_value='ISI Journal' where resource_type_id=2 and metadata_field_id=226 and text_value='ISI';
|
||||
UPDATE 15
|
||||
```
|
||||
|
||||
- Start working on adding metadata for access and usage rights that we started earlier in 2018 (and also in 2017)
|
||||
- The current `cg.identifier.status` field will become "Access rights" and `dc.rights` will become "Usage rights"
|
||||
- I have some work in progress on the [`5_x-rights` branch](https://github.com/alanorth/DSpace/tree/5_x-rights)
|
||||
|
||||
<!-- vim: set sw=2 ts=2: -->
|
||||
|
@ -18,7 +18,7 @@ I’m testing the new DSpace 5.8 branch in my Ubuntu 18.04 environment and I
|
||||
" />
|
||||
<meta property="og:type" content="article" />
|
||||
<meta property="og:url" content="https://alanorth.github.io/cgspace-notes/2018-09/" /><meta property="article:published_time" content="2018-09-02T09:55:54+03:00"/>
|
||||
<meta property="article:modified_time" content="2018-09-04T17:33:30+03:00"/>
|
||||
<meta property="article:modified_time" content="2018-09-10T11:59:08+03:00"/>
|
||||
<meta name="twitter:card" content="summary"/>
|
||||
<meta name="twitter:title" content="September, 2018"/>
|
||||
<meta name="twitter:description" content="2018-09-02
|
||||
@ -41,9 +41,9 @@ I’m testing the new DSpace 5.8 branch in my Ubuntu 18.04 environment and I
|
||||
"@type": "BlogPosting",
|
||||
"headline": "September, 2018",
|
||||
"url": "https://alanorth.github.io/cgspace-notes/2018-09/",
|
||||
"wordCount": "830",
|
||||
"wordCount": "996",
|
||||
"datePublished": "2018-09-02T09:55:54+03:00",
|
||||
"dateModified": "2018-09-04T17:33:30+03:00",
|
||||
"dateModified": "2018-09-10T11:59:08+03:00",
|
||||
"author": {
|
||||
"@type": "Person",
|
||||
"name": "Alan Orth"
|
||||
@ -229,6 +229,34 @@ org.dspace.authorize.AuthorizeException: Authorization denied for action WORKFLO
|
||||
|
||||
<ul>
|
||||
<li>Seems to be during submit step, because it’s workflow step 1…?</li>
|
||||
<li>Move some top-level CRP communities to be below the new <a href="https://cgspace.cgiar.org/handle/10568/97114">CGIAR Research Programs and Platforms</a> community:</li>
|
||||
</ul>
|
||||
|
||||
<pre><code>$ dspace community-filiator --set -p 10568/97114 -c 10568/51670
|
||||
$ dspace community-filiator --set -p 10568/97114 -c 10568/35409
|
||||
$ dspace community-filiator --set -p 10568/97114 -c 10568/3112
|
||||
</code></pre>
|
||||
|
||||
<ul>
|
||||
<li>Valerio contacted me to point out some issues with metadata on CGSpace, which I corrected in PostgreSQL:</li>
|
||||
</ul>
|
||||
|
||||
<pre><code>update metadatavalue set text_value='ISI Journal' where resource_type_id=2 and metadata_field_id=226 and text_value='ISI Juornal';
|
||||
UPDATE 1
|
||||
update metadatavalue set text_value='ISI Journal' where resource_type_id=2 and metadata_field_id=226 and text_value='ISI journal';
|
||||
UPDATE 23
|
||||
update metadatavalue set text_value='ISI Journal' where resource_type_id=2 and metadata_field_id=226 and text_value='YES';
|
||||
UPDATE 1
|
||||
delete from metadatavalue where resource_type_id=2 and metadata_field_id=226 and text_value='NO';
|
||||
DELETE 17
|
||||
update metadatavalue set text_value='ISI Journal' where resource_type_id=2 and metadata_field_id=226 and text_value='ISI';
|
||||
UPDATE 15
|
||||
</code></pre>
|
||||
|
||||
<ul>
|
||||
<li>Start working on adding metadata for access and usage rights that we started earlier in 2018 (and also in 2017)</li>
|
||||
<li>The current <code>cg.identifier.status</code> field will become “Access rights” and <code>dc.rights</code> will become “Usage rights”</li>
|
||||
<li>I have some work in progress on the <a href="https://github.com/alanorth/DSpace/tree/5_x-rights"><code>5_x-rights</code> branch</a></li>
|
||||
</ul>
|
||||
|
||||
<!-- vim: set sw=2 ts=2: -->
|
||||
|
@ -4,7 +4,7 @@
|
||||
|
||||
<url>
|
||||
<loc>https://alanorth.github.io/cgspace-notes/2018-09/</loc>
|
||||
<lastmod>2018-09-04T17:33:30+03:00</lastmod>
|
||||
<lastmod>2018-09-10T11:59:08+03:00</lastmod>
|
||||
</url>
|
||||
|
||||
<url>
|
||||
@ -184,7 +184,7 @@
|
||||
|
||||
<url>
|
||||
<loc>https://alanorth.github.io/cgspace-notes/</loc>
|
||||
<lastmod>2018-09-04T17:33:30+03:00</lastmod>
|
||||
<lastmod>2018-09-10T11:59:08+03:00</lastmod>
|
||||
<priority>0</priority>
|
||||
</url>
|
||||
|
||||
@ -195,7 +195,7 @@
|
||||
|
||||
<url>
|
||||
<loc>https://alanorth.github.io/cgspace-notes/tags/notes/</loc>
|
||||
<lastmod>2018-09-04T17:33:30+03:00</lastmod>
|
||||
<lastmod>2018-09-10T11:59:08+03:00</lastmod>
|
||||
<priority>0</priority>
|
||||
</url>
|
||||
|
||||
@ -207,13 +207,13 @@
|
||||
|
||||
<url>
|
||||
<loc>https://alanorth.github.io/cgspace-notes/posts/</loc>
|
||||
<lastmod>2018-09-04T17:33:30+03:00</lastmod>
|
||||
<lastmod>2018-09-10T11:59:08+03:00</lastmod>
|
||||
<priority>0</priority>
|
||||
</url>
|
||||
|
||||
<url>
|
||||
<loc>https://alanorth.github.io/cgspace-notes/tags/</loc>
|
||||
<lastmod>2018-09-04T17:33:30+03:00</lastmod>
|
||||
<lastmod>2018-09-10T11:59:08+03:00</lastmod>
|
||||
<priority>0</priority>
|
||||
</url>
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user