Commenti

steverm ha scritto il 27.05.2018 ore 11:52

a chi lo dici, io avevo inserito già anni fa il bannerino su privacy & cookies ma con quest'ultima ho aggiornato i siti un po' a naso ma non sono sicuro dell'esattezza. Esiste una società che ti crea, dopo aver compilato un questionario sui vari elementi messi sulle pagine web, un banner apposito personalizzato ma è a pagamento se non erro in abbonamento e quindi ho preso solo qualche spunto x i cookie (il sito è www.iubenda.com).

lollo10 ha scritto il 28.05.2018 ore 16:06

Queste sono le info al riguardo:

here is all the information we have collected on data protection issues in connection with the Xara products (Web Designer, Designer Pro) and our MAGIX / Xara hosting:


New Data Protection Ordinance / What must be observed?

Do I need a privacy notice?

As soon as your website has a possibility for data input (e.g. contact form) an appropriate reference is necessary. 
If it is a purely private site that only offers texts, pictures and/or videos for friends and relatives, a data protection declaration is not necessary.

Do I need a cookie hint?
The MAGIX / XARA hosting service does not support any content management systems (WordPress, TYPO3, Drupal) and therefore does not set any cookies. A note is not required.

As the owner of a website, you are responsible for its content and, if applicable, the corresponding information. Unfortunately, we cannot offer you legal support / advice. The "European Commission" offers you very good assistance.
http://ec.europa.eu/justice/smedataprotect/index_en.htm


Which data do we save for our hosted websites (MAGIX / XARA Hosting)?

As usual for every web server, our web servers also store the above-mentioned details

IP address of the customer visiting the website
browser type and browser version, operating system used (user agent)
Referrer URL
host name of the accessing computer
Time of the server request

in the access log files, which usually have a shelf life of a few days.

An automated analysis of customer-related data does not take place on our part; it is also not passed on to third parties.

For control purposes (e.g. in the case of error analysis), our technical staff could inspect the data accordingly. However, this in turn will not be able to deduce the explicit customer on the basis of the IP address.

Will it be possible to switch to HTTPS at MAGIX / XARA?

No, with our hosting you cannot set up a DB system.

 

tizianadoby ha scritto il 30.05.2018 ore 11:58

Se ho capito bene, in teoria, non avendo link esterni, ma pubblicando solo foto o filmati miei non dovrei fare niente. Però io da poco sto facendo uso di google analytics, che semplicemente mi dice quante persone seguono il mio sito, il sistema operativo, se pc o mobile, e da dove (città). Le stesse cose che fa Xara/Magix.

steverm ha scritto il 30.05.2018 ore 12:05

I link semplici non credo siano da citare mentre Google Analyics sicuramente, poi qualcuno dice anche youtube, i widget di facebook, form per email e addirittura Google Font che viene utilizzato da Magix perchè Google monitora anche quelli, nel dubbio li ho messi tutti e spero bastino. PS: ma non si chiamava GDPR ? Qui un mio esempio(ma prendilo con le pinze): https://www.teatroitalia.info/policy.html

tizianadoby ha scritto il 30.05.2018 ore 12:11

Steverm, a me sembra fatto bene il tuo, e a parte alcune cose che non uso (al momento) tipo youtube, tutto il resto mi calza a pennello. Potresti dirmi come hai fatto? E' un banner come quello dei cookies?

 

steverm ha scritto il 30.05.2018 ore 13:42

si come puoi vedere nella pagina iniziale del teatro l'ho legato al banner dei cookies, ti posto le istruzioni html:

 

<!-- Codice per accettazione cookie - Inizio --><script type='text/javascript'>
 //<![CDATA[
 (function(window) {
   if (!!window.cookieChoices) {
     return window.cookieChoices;
   }
   var document = window.document; 
   var supportsTextContent = 'textContent' in document.body;
   var cookieChoices = (function() {
     var cookieName = 'displayCookieConsent';
     var cookieConsentId = 'cookieChoiceInfo';
     var dismissLinkId = 'cookieChoiceDismiss';
     function _createHeaderElement(cookieText, dismissText, linkText, linkHref) {
       var butterBarStyles = 'position:fixed;width:100%;background-color:#FFFFFF;' +
           'margin:0; left:0; top:0;padding:10px;z-index:1000;text-align:center;';
       var cookieConsentElement = document.createElement('div');
       cookieConsentElement.id = cookieConsentId;
       cookieConsentElement.style.cssText = butterBarStyles;
       cookieConsentElement.appendChild(_createConsentText(cookieText));
       if (!!linkText && !!linkHref) {
         cookieConsentElement.appendChild(_createInformationLink(linkText, linkHref));
       }
       cookieConsentElement.appendChild(_createDismissLink(dismissText));
       return cookieConsentElement;
     }
     function _createDialogElement(cookieText, dismissText, linkText, linkHref) {
       var glassStyle = 'position:fixed;width:100%;height:100%;z-index:999;' +
           'top:0;left:0;opacity:0.5;filter:alpha(opacity=50);' +
           'background-color:#ccc;';
       var dialogStyle = 'z-index:1000;position:fixed;left:50%;top:50%';
       var contentStyle = 'position:relative;left:-50%;margin-top:-25%;' +
           'background-color:#fff;padding:20px;box-shadow:4px 4px 25px #888;';
       var cookieConsentElement = document.createElement('div');
       cookieConsentElement.id = cookieConsentId;
       var glassPanel = document.createElement('div');
       glassPanel.style.cssText = glassStyle;
       var content = document.createElement('div');
       content.style.cssText = contentStyle;
       var dialog = document.createElement('div');
       dialog.style.cssText = dialogStyle;
       var dismissLink = _createDismissLink(dismissText);
       dismissLink.style.display = 'block';
       dismissLink.style.textAlign = 'right';
       dismissLink.style.marginTop = '8px';
       content.appendChild(_createConsentText(cookieText));
       if (!!linkText && !!linkHref) {
         content.appendChild(_createInformationLink(linkText, linkHref));
       }
       content.appendChild(dismissLink);
       dialog.appendChild(content);
       cookieConsentElement.appendChild(glassPanel);
       cookieConsentElement.appendChild(dialog);
       return cookieConsentElement;
     }
     function _setElementText(element, text) {
       if (supportsTextContent) {
         element.textContent = text;
       } else {
         element.innerText = text;
       }
     }
     function _createConsentText(cookieText) {
       var consentText = document.createElement('span');
       _setElementText(consentText, cookieText);
       return consentText;
     }
     function _createDismissLink(dismissText) {
       var dismissLink = document.createElement('a');
       _setElementText(dismissLink, dismissText);
       dismissLink.id = dismissLinkId;
       dismissLink.href = '#';
       dismissLink.style.marginLeft = '24px';
       return dismissLink;
     }
     function _createInformationLink(linkText, linkHref) {
       var infoLink = document.createElement('a');
       _setElementText(infoLink, linkText);
       infoLink.href = linkHref;
       infoLink.target = '_blank';
       infoLink.style.marginLeft = '8px';
       return infoLink;
     }
     function _dismissLinkClick() {
       _saveUserPreference();
       _removeCookieConsent();
       return false;
     }
     function _showCookieConsent(cookieText, dismissText, linkText, linkHref, isDialog) {
       if (_shouldDisplayConsent()) {
         _removeCookieConsent();
         var consentElement = (isDialog) ?
             _createDialogElement(cookieText, dismissText, linkText, linkHref) :
             _createHeaderElement(cookieText, dismissText, linkText, linkHref);
         var fragment = document.createDocumentFragment();
         fragment.appendChild(consentElement);
         document.body.appendChild(fragment.cloneNode(true));
         document.getElementById(dismissLinkId).onclick = _dismissLinkClick;
       }
     }
     function showCookieConsentBar(cookieText, dismissText, linkText, linkHref) {
       _showCookieConsent(cookieText, dismissText, linkText, linkHref, false);
     }
     function showCookieConsentDialog(cookieText, dismissText, linkText, linkHref) {
       _showCookieConsent(cookieText, dismissText, linkText, linkHref, true);
     }
     function _removeCookieConsent() {
       var cookieChoiceElement = document.getElementById(cookieConsentId);
       if (cookieChoiceElement != null) {
         cookieChoiceElement.parentNode.removeChild(cookieChoiceElement);
       }
     }
     function _saveUserPreference() {
       // Durata del cookie di un anno
       var expiryDate = new Date();
       expiryDate.setFullYear(expiryDate.getFullYear() + 1);
       document.cookie = cookieName + '=y; expires=' + expiryDate.toGMTString();
     }
     function _shouldDisplayConsent() {
       // Per mostrare il banner solo in mancanza del cookie
       return !document.cookie.match(new RegExp(cookieName + '=([^;]+)'));
     }
     var exports = {};
     exports.showCookieConsentBar = showCookieConsentBar;
     exports.showCookieConsentDialog = showCookieConsentDialog;
     return exports;
   })();
   window.cookieChoices = cookieChoices;
   return cookieChoices;
 })(this);
 document.addEventListener('DOMContentLoaded', function(event) {
     cookieChoices.showCookieConsentBar('Questo sito utilizza i cookie di terze parti. Se continui la navigazione consideriamo che accetti il loro uso e il trattamento dei dati secondo il GDPR
.',
         'OK ACCETTO', '+ INFO', 'http://www.iltuosito/policy.html');
   });
 //]]>
 </script>
<!-- Codice per accettazione cookie - Fine -->