author | Dan |
Mon, 05 Jan 2009 22:29:36 -0500 | |
changeset 44 | 73f74d395f95 |
parent 20 | e2f6e3af9959 |
permissions | -rw-r--r-- |
8 | 1 |
<?php |
2 |
require('../config.php'); |
|
44
73f74d395f95
Added theme support. Oh yeah, you can customize graphs using graph_{line,bar}.def.
Dan
parents:
20
diff
changeset
|
3 |
require('../stats-fe.php'); |
8 | 4 |
|
44
73f74d395f95
Added theme support. Oh yeah, you can customize graphs using graph_{line,bar}.def.
Dan
parents:
20
diff
changeset
|
5 |
$title = "$nick - privacy info"; |
73f74d395f95
Added theme support. Oh yeah, you can customize graphs using graph_{line,bar}.def.
Dan
parents:
20
diff
changeset
|
6 |
require("./themes/$webtheme/header.php"); |
73f74d395f95
Added theme support. Oh yeah, you can customize graphs using graph_{line,bar}.def.
Dan
parents:
20
diff
changeset
|
7 |
|
73f74d395f95
Added theme support. Oh yeah, you can customize graphs using graph_{line,bar}.def.
Dan
parents:
20
diff
changeset
|
8 |
?> <style type="text/css"> |
8 | 9 |
p.code { |
10 |
font-family: monospace; |
|
11 |
margin-left: 1.5em; |
|
12 |
} |
|
13 |
</style> |
|
14 |
<h1>Privacy information</h1> |
|
20 | 15 |
<p><?php echo $nick; ?> is designed to collect IRC statistics. It does this by recording raw data and then letting the frontend (index.php and the |
16 |
backend access abstraction in stats-fe.php) look at the data and draw graphs and measurements based on it.</p> |
|
8 | 17 |
<p>The only information <?php echo $nick; ?> collects is</p> |
18 |
<ul> |
|
19 |
<li>The time of each message</li> |
|
20 |
<li>The nick that posted that message</li> |
|
21 |
</ul> |
|
20 | 22 |
<p>In addition, <?php echo $nick; ?> knows whether users currently have permissions such as operator and voice, but this information isn't logged (it's used to determine who can do what). This means that the web interface never knows for sure who is in the channel.</p> |
8 | 23 |
<p><?php echo $nick; ?> also gives you the ability to disable recording statistics about you. To clear all your past statistics, type in any channel:</p> |
24 |
<p class="code">!deluser</p> |
|
20 | 25 |
<p>(Moderators can also type:</p> |
26 |
<p class="code">!deluser | SomeNick</p> |
|
27 |
<p>to remove statistics for a flooder or spammer)</p> |
|
28 |
<p>You can prevent yourself from being logged in the future with:</p> |
|
8 | 29 |
<p class="code">/msg <?php echo $nick; ?> anonymize</p> |
20 | 30 |
<p>You'll be asked if you want to anonymize your past statistics as well.</p> |
8 | 31 |
<p>Remove yourself from the anonymization list with:</p> |
32 |
<p class="code">/msg <?php echo $nick; ?> denonymize</p> |
|
20 | 33 |
<p>Want to know more about the numbers <?php echo $nick; ?> collects? <a href="datafile.php">Download a dump of <?php echo $nick; ?>'s database yourself</a>.</p> |
44
73f74d395f95
Added theme support. Oh yeah, you can customize graphs using graph_{line,bar}.def.
Dan
parents:
20
diff
changeset
|
34 |
<?php |
73f74d395f95
Added theme support. Oh yeah, you can customize graphs using graph_{line,bar}.def.
Dan
parents:
20
diff
changeset
|
35 |
require("./themes/$webtheme/footer.php"); |