Add notes for 2016-10-05

This commit is contained in:
Alan Orth 2016-10-06 08:06:32 +03:00
parent d36443d3e8
commit a0103feaae
Signed by: alanorth
GPG Key ID: 0FB860CC9C45B1B9
17 changed files with 67 additions and 1 deletions

View File

@ -40,3 +40,13 @@ $ ./delete-metadata-values.py -i authors-delete-3.csv -f dc.contributor.author -
``` ```
- Remove old about page ([#284](https://github.com/ilri/DSpace/pull/284)) - Remove old about page ([#284](https://github.com/ilri/DSpace/pull/284))
- CGSpace crashed a few times today
- Generate list of unique authors in CCAFS collections:
```
dspacetest=# \copy (select distinct text_value, count(*) as count from metadatavalue where metadata_field_id = (select metadata_field_id from metadatafieldregistry where element = 'contributor' and qualifier = 'author') AND resource_type_id = 2 AND resource_id IN (select item_id from collection2item where collection_id IN (select resource_id from handle where handle in ('10568/32729', '10568/5472', '10568/5473', '10568/10288', '10568/70974', '10568/3547', '10568/3549', '10568/3531','10568/16890','10568/5470','10568/3546', '10568/36024', '10568/66581', '10568/21789', '10568/5469', '10568/5468', '10568/3548', '10568/71053', '10568/25167'))) group by text_value order by count desc) to /tmp/ccafs-authors.csv with csv;
```
## 2016-10-05
- Work on more infrastructure cleanups for Ansible DSpace role

View File

@ -230,6 +230,7 @@ db.statementpool = true
</ul> </ul>
</article> </article>

View File

@ -245,6 +245,7 @@ $ curl -o /dev/null -s -w %{time_total}\\n https://cgspace.cgiar.org/rest/handle
</ul> </ul>
</article> </article>

View File

@ -170,6 +170,7 @@ $ find SimpleArchiveForBio/ -iname &ldquo;*.pdf&rdquo; -exec basename {} \; | so
<p><img src="2016/01/xmlui-subjects-after.png" alt="XMLUI subjects after" /></p> <p><img src="2016/01/xmlui-subjects-after.png" alt="XMLUI subjects after" /></p>
</article> </article>

View File

@ -409,6 +409,7 @@ Bitstream: tést señora alimentación.pdf
</ul> </ul>
</article> </article>

View File

@ -323,6 +323,7 @@
</ul> </ul>
</article> </article>

View File

@ -536,6 +536,7 @@ dspace.log.2016-04-27:7271
</ul> </ul>
</article> </article>

View File

@ -382,6 +382,7 @@ sys 0m20.540s
</ul> </ul>
</article> </article>

View File

@ -429,6 +429,7 @@ $ ./delete-metadata-values.py -f dc.contributor.corporate -i Corporate-Authors-D
</code></pre> </code></pre>
</article> </article>

View File

@ -331,6 +331,7 @@ discovery.index.authority.ignore-variants=true
</ul> </ul>
</article> </article>

View File

@ -410,6 +410,7 @@ $ JAVA_OPTS=&quot;-Dfile.encoding=UTF-8 -Xmx512m&quot; /home/cgspace.cgiar.org/b
</ul> </ul>
</article> </article>

View File

@ -718,6 +718,7 @@ $ ./delete-metadata-values.py -i ilrisubjects-delete-13.csv -f cg.subject.ilri -
</ul> </ul>
</article> </article>

View File

@ -132,10 +132,22 @@ $ ./delete-metadata-values.py -i authors-delete-3.csv -f dc.contributor.author -
<ul> <ul>
<li>Remove old about page (<a href="https://github.com/ilri/DSpace/pull/284">#284</a>)</li> <li>Remove old about page (<a href="https://github.com/ilri/DSpace/pull/284">#284</a>)</li>
<li>CGSpace crashed a few times today</li>
<li>Generate list of unique authors in CCAFS collections:</li>
</ul>
<pre><code>dspacetest=# \copy (select distinct text_value, count(*) as count from metadatavalue where metadata_field_id = (select metadata_field_id from metadatafieldregistry where element = 'contributor' and qualifier = 'author') AND resource_type_id = 2 AND resource_id IN (select item_id from collection2item where collection_id IN (select resource_id from handle where handle in ('10568/32729', '10568/5472', '10568/5473', '10568/10288', '10568/70974', '10568/3547', '10568/3549', '10568/3531','10568/16890','10568/5470','10568/3546', '10568/36024', '10568/66581', '10568/21789', '10568/5469', '10568/5468', '10568/3548', '10568/71053', '10568/25167'))) group by text_value order by count desc) to /tmp/ccafs-authors.csv with csv;
</code></pre>
<h2 id="2016-10-05">2016-10-05</h2>
<ul>
<li>Work on more infrastructure cleanups for Ansible DSpace role</li>
</ul> </ul>
</article> </article>

View File

@ -65,6 +65,17 @@ $ ./delete-metadata-values.py -i authors-delete-3.csv -f dc.contributor.author -
&lt;ul&gt; &lt;ul&gt;
&lt;li&gt;Remove old about page (&lt;a href=&#34;https://github.com/ilri/DSpace/pull/284&#34;&gt;#284&lt;/a&gt;)&lt;/li&gt; &lt;li&gt;Remove old about page (&lt;a href=&#34;https://github.com/ilri/DSpace/pull/284&#34;&gt;#284&lt;/a&gt;)&lt;/li&gt;
&lt;li&gt;CGSpace crashed a few times today&lt;/li&gt;
&lt;li&gt;Generate list of unique authors in CCAFS collections:&lt;/li&gt;
&lt;/ul&gt;
&lt;pre&gt;&lt;code&gt;dspacetest=# \copy (select distinct text_value, count(*) as count from metadatavalue where metadata_field_id = (select metadata_field_id from metadatafieldregistry where element = &#39;contributor&#39; and qualifier = &#39;author&#39;) AND resource_type_id = 2 AND resource_id IN (select item_id from collection2item where collection_id IN (select resource_id from handle where handle in (&#39;10568/32729&#39;, &#39;10568/5472&#39;, &#39;10568/5473&#39;, &#39;10568/10288&#39;, &#39;10568/70974&#39;, &#39;10568/3547&#39;, &#39;10568/3549&#39;, &#39;10568/3531&#39;,&#39;10568/16890&#39;,&#39;10568/5470&#39;,&#39;10568/3546&#39;, &#39;10568/36024&#39;, &#39;10568/66581&#39;, &#39;10568/21789&#39;, &#39;10568/5469&#39;, &#39;10568/5468&#39;, &#39;10568/3548&#39;, &#39;10568/71053&#39;, &#39;10568/25167&#39;))) group by text_value order by count desc) to /tmp/ccafs-authors.csv with csv;
&lt;/code&gt;&lt;/pre&gt;
&lt;h2 id=&#34;2016-10-05&#34;&gt;2016-10-05&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;Work on more infrastructure cleanups for Ansible DSpace role&lt;/li&gt;
&lt;/ul&gt; &lt;/ul&gt;
</description> </description>
</item> </item>

View File

@ -65,6 +65,17 @@ $ ./delete-metadata-values.py -i authors-delete-3.csv -f dc.contributor.author -
&lt;ul&gt; &lt;ul&gt;
&lt;li&gt;Remove old about page (&lt;a href=&#34;https://github.com/ilri/DSpace/pull/284&#34;&gt;#284&lt;/a&gt;)&lt;/li&gt; &lt;li&gt;Remove old about page (&lt;a href=&#34;https://github.com/ilri/DSpace/pull/284&#34;&gt;#284&lt;/a&gt;)&lt;/li&gt;
&lt;li&gt;CGSpace crashed a few times today&lt;/li&gt;
&lt;li&gt;Generate list of unique authors in CCAFS collections:&lt;/li&gt;
&lt;/ul&gt;
&lt;pre&gt;&lt;code&gt;dspacetest=# \copy (select distinct text_value, count(*) as count from metadatavalue where metadata_field_id = (select metadata_field_id from metadatafieldregistry where element = &#39;contributor&#39; and qualifier = &#39;author&#39;) AND resource_type_id = 2 AND resource_id IN (select item_id from collection2item where collection_id IN (select resource_id from handle where handle in (&#39;10568/32729&#39;, &#39;10568/5472&#39;, &#39;10568/5473&#39;, &#39;10568/10288&#39;, &#39;10568/70974&#39;, &#39;10568/3547&#39;, &#39;10568/3549&#39;, &#39;10568/3531&#39;,&#39;10568/16890&#39;,&#39;10568/5470&#39;,&#39;10568/3546&#39;, &#39;10568/36024&#39;, &#39;10568/66581&#39;, &#39;10568/21789&#39;, &#39;10568/5469&#39;, &#39;10568/5468&#39;, &#39;10568/3548&#39;, &#39;10568/71053&#39;, &#39;10568/25167&#39;))) group by text_value order by count desc) to /tmp/ccafs-authors.csv with csv;
&lt;/code&gt;&lt;/pre&gt;
&lt;h2 id=&#34;2016-10-05&#34;&gt;2016-10-05&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;Work on more infrastructure cleanups for Ansible DSpace role&lt;/li&gt;
&lt;/ul&gt; &lt;/ul&gt;
</description> </description>
</item> </item>

View File

@ -64,6 +64,17 @@ $ ./delete-metadata-values.py -i authors-delete-3.csv -f dc.contributor.author -
&lt;ul&gt; &lt;ul&gt;
&lt;li&gt;Remove old about page (&lt;a href=&#34;https://github.com/ilri/DSpace/pull/284&#34;&gt;#284&lt;/a&gt;)&lt;/li&gt; &lt;li&gt;Remove old about page (&lt;a href=&#34;https://github.com/ilri/DSpace/pull/284&#34;&gt;#284&lt;/a&gt;)&lt;/li&gt;
&lt;li&gt;CGSpace crashed a few times today&lt;/li&gt;
&lt;li&gt;Generate list of unique authors in CCAFS collections:&lt;/li&gt;
&lt;/ul&gt;
&lt;pre&gt;&lt;code&gt;dspacetest=# \copy (select distinct text_value, count(*) as count from metadatavalue where metadata_field_id = (select metadata_field_id from metadatafieldregistry where element = &#39;contributor&#39; and qualifier = &#39;author&#39;) AND resource_type_id = 2 AND resource_id IN (select item_id from collection2item where collection_id IN (select resource_id from handle where handle in (&#39;10568/32729&#39;, &#39;10568/5472&#39;, &#39;10568/5473&#39;, &#39;10568/10288&#39;, &#39;10568/70974&#39;, &#39;10568/3547&#39;, &#39;10568/3549&#39;, &#39;10568/3531&#39;,&#39;10568/16890&#39;,&#39;10568/5470&#39;,&#39;10568/3546&#39;, &#39;10568/36024&#39;, &#39;10568/66581&#39;, &#39;10568/21789&#39;, &#39;10568/5469&#39;, &#39;10568/5468&#39;, &#39;10568/3548&#39;, &#39;10568/71053&#39;, &#39;10568/25167&#39;))) group by text_value order by count desc) to /tmp/ccafs-authors.csv with csv;
&lt;/code&gt;&lt;/pre&gt;
&lt;h2 id=&#34;2016-10-05&#34;&gt;2016-10-05&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;Work on more infrastructure cleanups for Ansible DSpace role&lt;/li&gt;
&lt;/ul&gt; &lt;/ul&gt;
</description> </description>
</item> </item>

@ -1 +1 @@
Subproject commit 48a6a82dccd35d262be7a4d9271c0194557e48ef Subproject commit 07ea0a3d68bd34ffc3c113060ddbccaefd5a4f52