forked from userdatamanifesto/www
-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.php
103 lines (72 loc) · 3.72 KB
/
index.php
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
97
98
99
100
101
102
103
<?php
date_default_timezone_set('America/New_York');
error_reporting(E_ERROR | E_WARNING | E_PARSE | E_NOTICE);
require('campaigner/libcampaigner.php');
$response=CAMPAIGNER::listener();
//echo('<center><span class="notify">'.$response.'</span></center>');
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>User Data Manifesto</title>
<link rel="stylesheet" href="style1.0.css" type="text/css" />
<link rel="stylesheet" href="campaigner/style.css" type="text/css" />
</head>
<body bgcolor="#EEEEEE">
<?php
echo('<center><span class="notify">'.$response.'</span></center>');
?>
<table border="0" width="100%"><tr><td></td><td width="620px">
<a href="/"><img src="udm.png" align="left" border="0" > <span class="head1">user data manifesto</span><br /></a>
<span class="head2"> defining basic rights for people to control their own data in the internet age</span>
<br />
<br />
<p class="mainitem">1. Own the data<br />
<span class="subitem">The data that someone directly or indirectly creates belongs to the person who created it.</span>
</p>
<p class="mainitem">2. Know where the data is stored<br />
<span class="subitem">Everybody should be able to know: where their personal data is physically stored, how long, on which server, in what country, and what laws apply.</span>
</p>
<p class="mainitem">3. Choose the storage location<br />
<span class="subitem">Everybody should always be able to migrate their personal data to a different provider, server or their own machine at any time without being locked in to a specific vendor.</span>
</p>
<p class="mainitem">4. Control access<br />
<span class="subitem">Everybody should be able to know, choose and control who has access to their own data to see or modify it.</span>
</p>
<p class="mainitem">5. Choose the conditions<br />
<span class="subitem">If someone chooses to share their own data, then the owner of the data selects the sharing license and conditions.</span>
</p>
<p class="mainitem">6. Invulnerability of data<br />
<span class="subitem">
Everybody should be able to protect their own data against surveillance and to federate their own data for backups to prevent data loss or for any other reason.
</span>
</p>
<p class="mainitem">7. Use it optimally<br />
<span class="subitem">Everybody should be able to access and use their own data at all times with any device they choose and in the most convenient and easiest way for them.</span>
</p>
<p class="mainitem">8. Server software transparency<br />
<span class="subitem">Server software should be free and open source software so that the source code of the software can be inspected to confirm that it works as specified.</span>
</p>
<br />
<span class="related">Services, projects and software that respects the user data rights and this manifesto. <a href="#contact">Contact us</a> to have software or projects added to this list.</span><br />
<ul class="list">
<li><a href="http://buddycloud.com">buddycloud</a></li>
<li><a href="http://data.fm">data.fm</a></li>
<li><a href="http://diasporaproject.org/">Diaspora</a></li>
<li><a href="http://open-xchange.com">Open-Xchange</a></li>
<li><a href="http://owncloud.org">ownCloud</a></li>
<li><a href="http://sparkleshare.org">Sparkleshare</a></li>
<li><a href="http://status.net/">status.net</a></li>
<li><a href="http://tent.io/">tent.io</a></li>
<li><a href="http://unhosted.org/">Unhosted apps</a></li>
<li><a href="https://github.com/wrr/wwwhisper">wwwhisper</a></li>
</ul>
<?php
CAMPAIGNER::show();
?>
<br /><br />
<span class="contact" id="contact"><b>Contact:</b> frank.karlitschek (at) userdatamanifesto.org</span>
</td><td></td></tr></table>
</body>
</html>