mirror of
https://github.com/alanorth/cgspace-notes.git
synced 2024-11-26 08:28:18 +01:00
Update notes for 2016-07-01
This commit is contained in:
parent
9bb7a3a50c
commit
1544a5cade
@ -279,7 +279,7 @@ $ ./delete-metadata-values.py -f dc.contributor.corporate -i Corporate-Authors-D
|
|||||||
- Wow, there are 95 authors in the database who have ',' at the end of their name:
|
- Wow, there are 95 authors in the database who have ',' at the end of their name:
|
||||||
|
|
||||||
```
|
```
|
||||||
#select text_value from metadatavalue where metadata_field_id=3 and text_value like '%,';
|
# select text_value from metadatavalue where metadata_field_id=3 and text_value like '%,';
|
||||||
```
|
```
|
||||||
|
|
||||||
- We need to use something like this to fix them, need to write a proper regex later:
|
- We need to use something like this to fix them, need to write a proper regex later:
|
||||||
|
@ -9,3 +9,13 @@ image = "../images/bg.jpg"
|
|||||||
## 2016-07-01
|
## 2016-07-01
|
||||||
|
|
||||||
- Add `dc.description.sponsorship` to Discovery sidebar facets and make investors clickable in item view ([#232](https://github.com/ilri/DSpace/issues/232))
|
- Add `dc.description.sponsorship` to Discovery sidebar facets and make investors clickable in item view ([#232](https://github.com/ilri/DSpace/issues/232))
|
||||||
|
- I think this query should find and replace all authors that have "," at the end of their names (there were 95 matching the select before):
|
||||||
|
|
||||||
|
```
|
||||||
|
dspacetest=# update metadatavalue set text_value = regexp_replace(text_value, '(^.+?),$', '\1') where metadata_field_id=3 and text_value ~ '^.+?,$';
|
||||||
|
UPDATE 95
|
||||||
|
dspacetest=# select text_value from metadatavalue where metadata_field_id=3 and text_value ~ '^.+?,$';
|
||||||
|
text_value
|
||||||
|
------------
|
||||||
|
(0 rows)
|
||||||
|
```
|
||||||
|
@ -413,7 +413,7 @@ $ ./delete-metadata-values.py -f dc.contributor.corporate -i Corporate-Authors-D
|
|||||||
<li>Wow, there are 95 authors in the database who have ‘,’ at the end of their name:</li>
|
<li>Wow, there are 95 authors in the database who have ‘,’ at the end of their name:</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
<pre><code>#select text_value from metadatavalue where metadata_field_id=3 and text_value like '%,';
|
<pre><code># select text_value from metadatavalue where metadata_field_id=3 and text_value like '%,';
|
||||||
</code></pre>
|
</code></pre>
|
||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
|
@ -83,8 +83,17 @@
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>Add <code>dc.description.sponsorship</code> to Discovery sidebar facets and make investors clickable in item view (<a href="https://github.com/ilri/DSpace/issues/232">#232</a>)</li>
|
<li>Add <code>dc.description.sponsorship</code> to Discovery sidebar facets and make investors clickable in item view (<a href="https://github.com/ilri/DSpace/issues/232">#232</a>)</li>
|
||||||
|
<li>I think this query should find and replace all authors that have “,” at the end of their names (there were 95 matching the select before):</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
|
<pre><code>dspacetest=# update metadatavalue set text_value = regexp_replace(text_value, '(^.+?),$', '\1') where metadata_field_id=3 and text_value ~ '^.+?,$';
|
||||||
|
UPDATE 95
|
||||||
|
dspacetest=# select text_value from metadatavalue where metadata_field_id=3 and text_value ~ '^.+?,$';
|
||||||
|
text_value
|
||||||
|
------------
|
||||||
|
(0 rows)
|
||||||
|
</code></pre>
|
||||||
|
|
||||||
</section>
|
</section>
|
||||||
<footer>
|
<footer>
|
||||||
|
|
||||||
|
@ -71,9 +71,15 @@
|
|||||||
</div>
|
</div>
|
||||||
</header>
|
</header>
|
||||||
<div>
|
<div>
|
||||||
2016-07-01 Add dc.description.sponsorship to Discovery sidebar facets and make investors clickable in item view (#232)
|
2016-07-01 Add dc.description.sponsorship to Discovery sidebar facets and make investors clickable in item view (#232) I think this query should find and replace all authors that have “,” at the end of their names (there were 95 matching the select before): dspacetest=# update metadatavalue set text_value = regexp_replace(text_value, '(^.+?),$', '\1') where metadata_field_id=3 and text_value ~ '^.+?,$'; UPDATE 95 dspacetest=# select text_value from metadatavalue where metadata_field_id=3 and text_value ~ '^.+?,$'; text_value
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<footer>
|
||||||
|
<ul class="pager">
|
||||||
|
<li class="next"><a href="/cgspace-notes/2016-07/">Read more <span aria-hidden="true">»</span></a></li>
|
||||||
|
</ul>
|
||||||
|
</footer>
|
||||||
|
|
||||||
</article>
|
</article>
|
||||||
|
|
||||||
|
|
||||||
|
@ -21,7 +21,16 @@
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>Add <code>dc.description.sponsorship</code> to Discovery sidebar facets and make investors clickable in item view (<a href="https://github.com/ilri/DSpace/issues/232">#232</a>)</li>
|
<li>Add <code>dc.description.sponsorship</code> to Discovery sidebar facets and make investors clickable in item view (<a href="https://github.com/ilri/DSpace/issues/232">#232</a>)</li>
|
||||||
|
<li>I think this query should find and replace all authors that have &ldquo;,&rdquo; at the end of their names (there were 95 matching the select before):</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
|
<pre><code>dspacetest=# update metadatavalue set text_value = regexp_replace(text_value, '(^.+?),$', '\1') where metadata_field_id=3 and text_value ~ '^.+?,$';
|
||||||
|
UPDATE 95
|
||||||
|
dspacetest=# select text_value from metadatavalue where metadata_field_id=3 and text_value ~ '^.+?,$';
|
||||||
|
text_value
|
||||||
|
------------
|
||||||
|
(0 rows)
|
||||||
|
</code></pre>
|
||||||
</description>
|
</description>
|
||||||
</item>
|
</item>
|
||||||
|
|
||||||
@ -367,7 +376,7 @@ $ ./delete-metadata-values.py -f dc.contributor.corporate -i Corporate-Authors-D
|
|||||||
<li>Wow, there are 95 authors in the database who have &lsquo;,&rsquo; at the end of their name:</li>
|
<li>Wow, there are 95 authors in the database who have &lsquo;,&rsquo; at the end of their name:</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
<pre><code>#select text_value from metadatavalue where metadata_field_id=3 and text_value like '%,';
|
<pre><code># select text_value from metadatavalue where metadata_field_id=3 and text_value like '%,';
|
||||||
</code></pre>
|
</code></pre>
|
||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
|
@ -75,9 +75,15 @@
|
|||||||
</div>
|
</div>
|
||||||
</header>
|
</header>
|
||||||
<div>
|
<div>
|
||||||
2016-07-01 Add dc.description.sponsorship to Discovery sidebar facets and make investors clickable in item view (#232)
|
2016-07-01 Add dc.description.sponsorship to Discovery sidebar facets and make investors clickable in item view (#232) I think this query should find and replace all authors that have “,” at the end of their names (there were 95 matching the select before): dspacetest=# update metadatavalue set text_value = regexp_replace(text_value, '(^.+?),$', '\1') where metadata_field_id=3 and text_value ~ '^.+?,$'; UPDATE 95 dspacetest=# select text_value from metadatavalue where metadata_field_id=3 and text_value ~ '^.+?,$'; text_value
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<footer>
|
||||||
|
<ul class="pager">
|
||||||
|
<li class="next"><a href="/cgspace-notes/2016-07/">Read more <span aria-hidden="true">»</span></a></li>
|
||||||
|
</ul>
|
||||||
|
</footer>
|
||||||
|
|
||||||
</article>
|
</article>
|
||||||
|
|
||||||
|
|
||||||
|
@ -21,7 +21,16 @@
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>Add <code>dc.description.sponsorship</code> to Discovery sidebar facets and make investors clickable in item view (<a href="https://github.com/ilri/DSpace/issues/232">#232</a>)</li>
|
<li>Add <code>dc.description.sponsorship</code> to Discovery sidebar facets and make investors clickable in item view (<a href="https://github.com/ilri/DSpace/issues/232">#232</a>)</li>
|
||||||
|
<li>I think this query should find and replace all authors that have &ldquo;,&rdquo; at the end of their names (there were 95 matching the select before):</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
|
<pre><code>dspacetest=# update metadatavalue set text_value = regexp_replace(text_value, '(^.+?),$', '\1') where metadata_field_id=3 and text_value ~ '^.+?,$';
|
||||||
|
UPDATE 95
|
||||||
|
dspacetest=# select text_value from metadatavalue where metadata_field_id=3 and text_value ~ '^.+?,$';
|
||||||
|
text_value
|
||||||
|
------------
|
||||||
|
(0 rows)
|
||||||
|
</code></pre>
|
||||||
</description>
|
</description>
|
||||||
</item>
|
</item>
|
||||||
|
|
||||||
@ -367,7 +376,7 @@ $ ./delete-metadata-values.py -f dc.contributor.corporate -i Corporate-Authors-D
|
|||||||
<li>Wow, there are 95 authors in the database who have &lsquo;,&rsquo; at the end of their name:</li>
|
<li>Wow, there are 95 authors in the database who have &lsquo;,&rsquo; at the end of their name:</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
<pre><code>#select text_value from metadatavalue where metadata_field_id=3 and text_value like '%,';
|
<pre><code># select text_value from metadatavalue where metadata_field_id=3 and text_value like '%,';
|
||||||
</code></pre>
|
</code></pre>
|
||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
|
Loading…
Reference in New Issue
Block a user