Skip to content
This repository has been archived by the owner on May 6, 2021. It is now read-only.

Close #691 #693

Merged
merged 5 commits into from
Jul 8, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions mapcomposer/app/static/config/managerConfig.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@
"Español"
]
],
"cookieConsent":true,
"tools":[{
"ptype": "mxp_mapmanager",
"loginManager": "loginTool",
Expand Down
1 change: 1 addition & 0 deletions mapcomposer/app/static/config/mapStoreConfig.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
"height": 100,
"center": true
},
"cookieConsent":true,
"map": {
"projection": "EPSG:900913",
"units": "m",
Expand Down
2 changes: 2 additions & 0 deletions mapcomposer/app/static/config/viewerConfig.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@
"center": [1250000.000000, 5370000.000000],
"zoom": 5
},
"cookieConsent":true,

"loadingPanel": {
"width": 100,
"height": 100,
Expand Down
133 changes: 133 additions & 0 deletions mapcomposer/app/static/cookies-policy-en.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,133 @@
<html xmlns="http://www.w3.org/1999/xhtml" lang="en"">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>Privacy e Cookies Policy</title>

<!-- header style -->
<style type="text/css">
.body_ovl{
font : normal 12px;
font-family : Verdana, Helvetica, sans-serif;
text-align : left;
}

.page {
z-index: 1;
width: 800px;
background-image: none;
border-width: 1px;
border-style: solid;
border-color: #000000;
background-color: #FFFFFF;
padding-bottom: 0px;
margin-left: auto;
margin-top: 20px;
margin-bottom:20px;
margin-right: auto;
text-align: justify;
padding-left:30px;
padding-right:30px;
}

.page p {
width: 750px;
text-align: justify;
}
</style>
</head>
<body bgcolor="#5A5A5A" class="body_ovl" style="padding-top: 0px; padding-bottom: 0px;">
<div class="page">
<div id="wrapper" style="margin: 0 auto;">

<div style="position:relative; font-size:13px; padding-left:10px; padding-right:10px;" id="main">
<h2 style="font-weight: bold;">Privacy and Cookies Policy</h2>
<hr />
<p style="line-height: 100%;">
In accordance with Legislative Decree No. 196/2003, which replaced the Law No. 675/1996 regarding
Personal Data Protection, we inform you that continuing navigation on this site you consent
the processing of your personal data (sensitive information will not be treated in any way).
Your data will only be used for operations at the site and will not be
disclosed to third party companies without your consent. In any case, it is possible
exercise the rights granted to you under the Legislative Decree 196/2003 (access to data,
updating, cancellation).
If you click the "Agree" button, you acknowledge that you have read this text and consent to treatment
of personal data. At any time you can ask the staff of the site to delete you from
service.
</p>

<h4 style="font-weight: bold;">What are Cookies</h4>

<p style="line-height: 100%;">
A cookie is a small piece of text sent to your browser by a website you visit.
It helps the website to remember information about your visit, like your preferred language and other settings.
That can make your next visit easier and the site more useful to you.
The browser saves the information and forward it to the site server when you visit again
that website.
</p>

<p style="line-height: 100%;">
Our cookies help us to:
</p>

<ul style="padding-left:30px; padding-right:10px;">
<li>Make our website work as you'd expect</li>
<li>Remember your settings during and between visits</li>
<li>Improve the performance/security of our website</li>
<li>Allow you to share pages with social networks like Facebook</li>
</ul>

<p style="line-height: 100%;">
We do not use cookies to:
</p>

<ul style="padding-left:30px; padding-right:10px;">
<li>Collect any personally identifiable information (without your express permission)</li>
<li>Collect any sensitive information (without your express permission)</li>
<li>Pass data to advertising networks</li>
</ul>
<p style="line-height: 100%;">
You can learn more about all the cookies we use below.
</p>

<p style="line-height: 100%;">
If the settings on your software that you are using to view this website (your browser) are adjusted to accept cookies we take this, and your continued use of our website, to mean that you are fine with this. Should you wish to remove or not use cookies from our site you can learn how to do this below, however doing so will likely mean that our site will not work as you would expect.
</p>

<h4 style="font-weight: bold;">Cookies set by our own Website</h4>

<p style="line-height: 100%;">
We use cookies to make our site work, including:
</p>

<ul style="padding-left:30px; padding-right:10px;">
<li>Determining if you are logged in or not</li>
<li>Authentication to services WMS, WFS, WPS through HTTP requests</li>
</ul>

<h4 style="font-weight: bold;">Social Website Cookies</h4>
<p style="line-height: 100%;">
To facilitate easy sharing or liking of content on social network platforms such Facebook and Twitter, we have included sharing buttons on our site. Cookies are enabled for:
</p>

<ul style="padding-left:30px; padding-right:10px;">
<li>Twitter</li>
<li>Facebook</li>
</ul>
<p style="line-height: 100%;">
The privacy implications on this will vary from social network to social network and will be dependent on the privacy settings you have chosen on these networks.
</p>
<h4 style="font-weight: bold;">Controlling Cookies</h4>

<p style="line-height: 100%;">
All browsers allow you to manage which cookies you accept, reject and delete via controls found under the ‘Preferences' or ‘Tools' menu. Further information on deleting or controlling cookies is available
<a href="http://www.attacat.co.uk/resources/cookies/how-to-ban" target="_blank">here</a>).
Please note however that if you disable cookies you may not be able to access certain services or facilities of this as of many of the Web sites around the world (cookies are a standard component of most modern websites).
</p>

<br/><br/><br/>

</div>
</div>
</div>
</body>
</html>
138 changes: 138 additions & 0 deletions mapcomposer/app/static/cookies-policy-it.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,138 @@
<html xmlns="http://www.w3.org/1999/xhtml" lang="en"">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>Privacy e Cookies Policy</title>

<!-- header style -->
<style type="text/css">
.body_ovl{
font : normal 12px;
font-family : Verdana, Helvetica, sans-serif;
text-align : left;
}

.page {
z-index: 1;
width: 800px;
background-image: none;
border-width: 1px;
border-style: solid;
border-color: #000000;
background-color: #FFFFFF;
padding-bottom: 0px;
margin-left: auto;
margin-top: 20px;
margin-bottom:20px;
margin-right: auto;
text-align: justify;
padding-left:30px;
padding-right:30px;
}

.page p {
width: 750px;
text-align: justify;
}
</style>
</head>
<body bgcolor="#5A5A5A" class="body_ovl" style="padding-top: 0px; padding-bottom: 0px;">
<div class="page">
<div id="wrapper" style="margin: 0 auto;">

<div style="position:relative; font-size:13px; padding-left:10px; padding-right:10px;" id="main">
<h2 style="font-weight: bold;">Privacy e Cookies Policy</h2>
<hr />
<p style="line-height: 100%;">
Ai sensi del Decreto Legislativo n ° 196/2003, che ha sostituito la legge n ° 675/1996 in materia di
protezione dei dati personali, Vi informiamo che proseguendo la navigazione su questo sito voi acconsentite
al trattamento dei vostri dati personali (i dati sensibili non saranno trattati in alcun modo).
I suoi dati saranno utilizzati esclusivamente per le operazioni all'interno del sito e non potranno essere
comunicati a società di terze parti senza il vostro consenso. In ogni caso, è possibile
esercitare i diritti concessi all'utente ai sensi del Decreto Legislativo n ° 196/2003 (accesso ai dati,
aggiornamento, integrazione, cancellazione).
Facendo clic sul pulsante "Accetto", si dichiara di aver letto questo testo e di acconsentire al trattamento
dei dati personali. In qualsiasi momento è possibile chiedere alla redazione del sito di cancellarti dal
servizio.
</p>

<h4 style="font-weight: bold;">Cosa sono i Cookies</h4>

<p style="line-height: 100%;">
Un cookie è un file di testo che un sito web salva sul browser del computer dell’utente. Solitamente i cookie
consentono di memorizzare le preferenze espresse dall’utente per non dover essere reinserite successivamente.
Il browser salva l’informazione e la ritrasmette al server del sito nel momento in cui l’utente visita nuovamente
quel sito web.
</p>

<p style="line-height: 100%;">
I nostri cookie ci aiutano a:
</p>

<ul style="padding-left:30px; padding-right:10px;">
<li>Permettere al sito web di lavorare come atteso</li>
<li>Ricordare le impostazioni durante e tra le visite al sito</li>
<li>Migliorare la velocità / sicurezza del sito</li>
<li>Permette di condividere le pagine con i social network come Facebook</li>
</ul>

<p style="line-height: 100%;">
Non viene fatto uso di cookies per:
</p>

<ul style="padding-left:30px; padding-right:10px;">
<li>Raccogliere tutte le informazioni di identificazione personale (senza il vostro consenso)</li>
<li>Raccogliere tutte le informazioni sensibili (senza il tuo esplicito consenso)</li>
<li>Passare i dati alle reti pubblicitarie</li>
</ul>
<p style="line-height: 100%;">
Potete saperne di più su tutti i cookies che utilizziamo qui sotto.
</p>

<p style="line-height: 100%;">
Se le impostazioni del software che si sta utilizzando per la navigazione del sito (il browser) sono regolati per accettare
i cookies prendiamo questo, e l'uso continuato del nostro sito web, a significare che si acconsente all'utilizzo di cookies.
Se si desidera rimuovere o non usare i cookies dal nostro sito lo si può fare seguendo le indicazioni riportate di seguito,
così facendo tuttavia il nostro sito potrebbe non funzionare come ci si aspetterebbe.
</p>

<h4 style="font-weight: bold;">I nostri Cookies</h4>

<p style="line-height: 100%;">
Utilizziamo i cookie per garantire determinate funzionalità del sito web tra cui:
</p>

<ul style="padding-left:30px; padding-right:10px;">
<li>Operazioni di Login e successive autenticazioni</li>
<li>Autenticazione a servizi WMS, WFS, WPS attraverso richieste HTTP</li>
</ul>

<h4 style="font-weight: bold;">Social Website Cookies</h4>
<p style="line-height: 100%;">
Tu puoi facilmente esprimere il tuo gradimento o condividere alcuni contenuti su Facebook e Twitter (abbiamo incluso
i pulsanti di condivisione sul nostro sito). I cookies sono stati abilitati per:
</p>

<ul style="padding-left:30px; padding-right:10px;">
<li>Twitter</li>
<li>Facebook</li>
</ul>
<p style="line-height: 100%;">
Le implicazioni di privacy su questo variano da social network a social network e dipenderanno dalle impostazioni di privacy
che avete scelto su queste reti.
</p>
<h4 style="font-weight: bold;">Disabilitare i Cookies</h4>

<p style="line-height: 100%;">
Di solito è possibile disattivare i cookies modificando le impostazioni del browser per impedire l'uso degli stessi (vedi
<a href="http://www.attacat.co.uk/resources/cookies/how-to-ban" target="_blank">qui</a>).
In questo modo però probabilmente si limiteranno le funzionalità del nostro come di molti dei siti web di tutto il mondo (i cookie
sono una componente standard della maggior parte dei siti web moderni).
</p>

<br/><br/><br/>

</div>
</div>
</div>
</body>
</html>
Loading