diff --git a/content/post/2017-02.md b/content/post/2017-02.md
index 3294745d3..f96194810 100644
--- a/content/post/2017-02.md
+++ b/content/post/2017-02.md
@@ -84,3 +84,19 @@ $ ./fix-metadata-values.py -i ccafs-flagships-feb7.csv -f cg.subject.ccafs -t co
- Especially because we only use 2 out of 8 CPUs basically:
![CGSpace CPU](/cgspace-notes/2017/02/cpu-week.png)
+
+- Fix issue with duplicate declaration of in atmire-dspace-xmlui `pom.xml` (causing non-fatal warnings during the maven build)
+- Experiment with making DSpace generate HTTPS handle links, first a change in dspace.cfg or the site's properties file:
+
+```
+handle.canonical.prefix = https://hdl.handle.net/
+```
+
+- And then a SQL command to update existing records:
+
+```
+dspace=# update metadatavalue set text_value = regexp_replace(text_value, 'http://hdl.handle.net', 'https://hdl.handle.net') where metadata_field_id IN (select metadata_field_id from metadatafieldregistry where element = 'identifier' and qualifier = 'uri');
+UPDATE 58193
+```
+
+- Seems to work fine!
diff --git a/public/2017-02/index.html b/public/2017-02/index.html
index afb06faac..d0c73a997 100644
--- a/public/2017-02/index.html
+++ b/public/2017-02/index.html
@@ -92,7 +92,7 @@ Looks like we’ll be using cg.identifier.ccafsprojectpii as the field name
"headline": "February, 2017",
"url": "https://alanorth.github.io/cgspace-notes/2017-02/",
- "wordCount": "553",
+ "wordCount": "629",
"datePublished": "2017-02-07T07:04:52-08:00",
@@ -268,6 +268,26 @@ DELETE 1
+
+- Fix issue with duplicate declaration of in atmire-dspace-xmlui
pom.xml
(causing non-fatal warnings during the maven build)
+- Experiment with making DSpace generate HTTPS handle links, first a change in dspace.cfg or the site’s properties file:
+
+
+handle.canonical.prefix = https://hdl.handle.net/
+
+
+
+- And then a SQL command to update existing records:
+
+
+dspace=# update metadatavalue set text_value = regexp_replace(text_value, 'http://hdl.handle.net', 'https://hdl.handle.net') where metadata_field_id IN (select metadata_field_id from metadatafieldregistry where element = 'identifier' and qualifier = 'uri');
+UPDATE 58193
+
+
+
+
diff --git a/public/index.xml b/public/index.xml
index 1d243da67..5c0867aa6 100644
--- a/public/index.xml
+++ b/public/index.xml
@@ -114,7 +114,27 @@ DELETE 1
<li>Especially because we only use 2 out of 8 CPUs basically:</li>
</ul>
-<p><img src="https://alanorth.github.io/cgspace-notes/cgspace-notes/2017/02/cpu-week.png" alt="CGSpace CPU" /></p>
+<p><img src="https://alanorth.github.io/cgspace-notes/cgspace-notes/2017/02/cpu-week.png" alt="CGSpace CPU" /></p>
+
+<ul>
+<li>Fix issue with duplicate declaration of in atmire-dspace-xmlui <code>pom.xml</code> (causing non-fatal warnings during the maven build)</li>
+<li>Experiment with making DSpace generate HTTPS handle links, first a change in dspace.cfg or the site’s properties file:</li>
+</ul>
+
+<pre><code>handle.canonical.prefix = https://hdl.handle.net/
+</code></pre>
+
+<ul>
+<li>And then a SQL command to update existing records:</li>
+</ul>
+
+<pre><code>dspace=# update metadatavalue set text_value = regexp_replace(text_value, 'http://hdl.handle.net', 'https://hdl.handle.net') where metadata_field_id IN (select metadata_field_id from metadatafieldregistry where element = 'identifier' and qualifier = 'uri');
+UPDATE 58193
+</code></pre>
+
+<ul>
+<li>Seems to work fine!</li>
+</ul>
-
diff --git a/public/post/index.xml b/public/post/index.xml
index 8117d35df..e47b59d34 100644
--- a/public/post/index.xml
+++ b/public/post/index.xml
@@ -114,7 +114,27 @@ DELETE 1
<li>Especially because we only use 2 out of 8 CPUs basically:</li>
</ul>
-<p><img src="https://alanorth.github.io/cgspace-notes/cgspace-notes/2017/02/cpu-week.png" alt="CGSpace CPU" /></p>
+<p><img src="https://alanorth.github.io/cgspace-notes/cgspace-notes/2017/02/cpu-week.png" alt="CGSpace CPU" /></p>
+
+<ul>
+<li>Fix issue with duplicate declaration of in atmire-dspace-xmlui <code>pom.xml</code> (causing non-fatal warnings during the maven build)</li>
+<li>Experiment with making DSpace generate HTTPS handle links, first a change in dspace.cfg or the site’s properties file:</li>
+</ul>
+
+<pre><code>handle.canonical.prefix = https://hdl.handle.net/
+</code></pre>
+
+<ul>
+<li>And then a SQL command to update existing records:</li>
+</ul>
+
+<pre><code>dspace=# update metadatavalue set text_value = regexp_replace(text_value, 'http://hdl.handle.net', 'https://hdl.handle.net') where metadata_field_id IN (select metadata_field_id from metadatafieldregistry where element = 'identifier' and qualifier = 'uri');
+UPDATE 58193
+</code></pre>
+
+<ul>
+<li>Seems to work fine!</li>
+</ul>
-
diff --git a/public/tags/notes/index.xml b/public/tags/notes/index.xml
index 307886340..ef79635c9 100644
--- a/public/tags/notes/index.xml
+++ b/public/tags/notes/index.xml
@@ -113,7 +113,27 @@ DELETE 1
<li>Especially because we only use 2 out of 8 CPUs basically:</li>
</ul>
-<p><img src="https://alanorth.github.io/cgspace-notes/cgspace-notes/2017/02/cpu-week.png" alt="CGSpace CPU" /></p>
+<p><img src="https://alanorth.github.io/cgspace-notes/cgspace-notes/2017/02/cpu-week.png" alt="CGSpace CPU" /></p>
+
+<ul>
+<li>Fix issue with duplicate declaration of in atmire-dspace-xmlui <code>pom.xml</code> (causing non-fatal warnings during the maven build)</li>
+<li>Experiment with making DSpace generate HTTPS handle links, first a change in dspace.cfg or the site’s properties file:</li>
+</ul>
+
+<pre><code>handle.canonical.prefix = https://hdl.handle.net/
+</code></pre>
+
+<ul>
+<li>And then a SQL command to update existing records:</li>
+</ul>
+
+<pre><code>dspace=# update metadatavalue set text_value = regexp_replace(text_value, 'http://hdl.handle.net', 'https://hdl.handle.net') where metadata_field_id IN (select metadata_field_id from metadatafieldregistry where element = 'identifier' and qualifier = 'uri');
+UPDATE 58193
+</code></pre>
+
+<ul>
+<li>Seems to work fine!</li>
+</ul>
-