-
Notifications
You must be signed in to change notification settings - Fork 0
/
privacy.html
96 lines (84 loc) · 3.66 KB
/
privacy.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<title>SimCav - Downloads</title>
<meta charset="UTF-8">
<!--<meta name="viewport" content="width=device-width, initial-scale=1">-->
<meta name="viewport" content="width=device-width">
<link rel="stylesheet" media="(max-width: 899px)" href="main-other800.css">
<link href="main-other.css" media="(min-width: 900px)" rel="stylesheet" />
<link rel="icon" href="logo1.png">
<!-- ICONS -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.4.2/css/all.css" integrity="sha384-/rXc/GQVaYpyDdyxK+ecHPVYJSN9bmVFBvjA/9eOB+pb3F2w2N6fc5qB9Ew5yIns" crossorigin="anonymous">
<!-- FONTS -->
<!-- Title -->
<link href="https://fonts.googleapis.com/css?family=Lora" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Merriweather" rel="stylesheet">
<!-- NavBar -->
<link href="https://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet">
<!-- Body -->
<link href="https://fonts.googleapis.com/css?family=Ubuntu" rel="stylesheet">
<!-- ===================================================================== -->
<!-- Analytics -->
<!-- ===================================================================== -->
<!-- Matomo -->
<script type="text/javascript">
var _paq = _paq || [];
/* tracker methods like "setCustomDimension" should be called before "trackPageView" */
_paq.push(["setDocumentTitle", document.domain + "/" + document.title]);
_paq.push(["setCookieDomain", "*.simcav.org"]);
_paq.push(['trackPageView']);
_paq.push(['enableLinkTracking']);
(function() {
var u="//data.simcav.org/matomo/";
_paq.push(['setTrackerUrl', u+'piwik.php']);
_paq.push(['setSiteId', '1']);
var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0];
g.type='text/javascript'; g.async=true; g.defer=true; g.src=u+'piwik.js'; s.parentNode.insertBefore(g,s);
})();
</script>
<!-- End Matomo Code -->
</head>
<body>
<a id="Back" href="/#Downloads"><i class="fa fa-home"></i><p>Home</p></a>
<div id="mainDiv">
<h2>Analytics</h2>
<p>This website uses analytics via self-hosted Matomo. No personally identifiable information is collected. The following non-identifiable information is stored as aggregated data:</p>
<ul>
<li>Returning visitor (yes/no)</li>
<li>IP (half), anonymized by removing the last 2 bytes (eg. 192.168.xxx.xxx).</li>
<li>Country, guessed from browser language.</li>
<li>Type of device, operating system, browser and screen size.</li>
<li>Number of visits and time on page.</li>
</ul>
<h2>Do not track</h2>
<p>SimCav website respects <em>do not track</em> requests.</p>
<h2>Cookies</h2>
<p>This website uses the following cookies:</p>
<ul>
<li>
_pk_id<br>
Visitor cookie (to count you only once): expires in 13 months.
</li>
<li>
_pk_ses<br>
Sesion cookie: expires after ~30 minutes.
</li>
<li>
PIWIK_SESSID<br>
Session cookie: expires when session ends.
</li>
</ul>
<h2>Opt out</h2>
<iframe id="optout"
src="https://data.simcav.org/matomo/index.php?module=CoreAdminHome&action=optOut&language=en"
></iframe>
<!-- javascript to close div -->
<script type="text/javascript">
function closeFrame() {
document.getElementById("optoutParent").style.display="none";
}
</script>
</div>
</body>
</html>