diff --git a/content/posts/2018-05.md b/content/posts/2018-05.md index d80585a08..bb0fad6fc 100644 --- a/content/posts/2018-05.md +++ b/content/posts/2018-05.md @@ -250,3 +250,12 @@ $ curl -X POST -H 'Content-type:application/json' --data-binary '{"add-field": { - Apparently the default search field is the `df` parameter and you could technically just add it to the query string, so no need to bother with that in the schema now - I copied over the DSpace `search_text` field type from the DSpace Solr config (had to remove some properties so Solr would start) but it doesn't seem to be any better at matching than the `text_en` type - I think I need to focus on trying to return scores with conciliator + +## 2018-05-16 + +- Discuss GDPR with James Stapleton + - As far as I see it, we are "Data Controllers" on CGSpace because we store peoples' names, emails, and phone numbers if they register + - We set cookies on the user's computer, but these do not contain personally identifiable information (PII) and they are "session" cookies which are deleted when the user closes their browser + - We use Google Analytics to track website usage, which makes Google the "Data Processor" and in this case we merely need to *limit* or *obfuscate* the information we send to them + - As the only personally identifiable information we send is the user's IP address, I think we only need to enable [IP Address Anonymization](https://support.google.com/analytics/answer/2763052) in our `analytics.js` code snippets + - Then we can add a "Privacy" page to CGSpace that makes all of this clear diff --git a/docs/2018-05/index.html b/docs/2018-05/index.html index 42ba57122..25f435bd7 100644 --- a/docs/2018-05/index.html +++ b/docs/2018-05/index.html @@ -27,7 +27,7 @@ Also, I switched it to use OpenJDK instead of Oracle Java, as well as re-worked - + @@ -65,9 +65,9 @@ Also, I switched it to use OpenJDK instead of Oracle Java, as well as re-worked "@type": "BlogPosting", "headline": "May, 2018", "url": "https://alanorth.github.io/cgspace-notes/2018-05/", - "wordCount": "1811", + "wordCount": "1945", "datePublished": "2018-05-01T16:43:54+03:00", - "dateModified": "2018-05-15T13:25:03+03:00", + "dateModified": "2018-05-15T18:16:33+03:00", "author": { "@type": "Person", "name": "Alan Orth" @@ -427,6 +427,20 @@ $ curl -X POST -H 'Content-type:application/json' --data-binary '{"add-fiel
analytics.js
code snippets