htdocs/privacy.php
author Dan
Mon, 05 Jan 2009 22:29:36 -0500
changeset 44 73f74d395f95
parent 20 e2f6e3af9959
permissions -rw-r--r--
Added theme support. Oh yeah, you can customize graphs using graph_{line,bar}.def.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
8
0acb8d9a3194 Welcome, modularization and stats.
Dan
parents:
diff changeset
     1
<?php
0acb8d9a3194 Welcome, modularization and stats.
Dan
parents:
diff changeset
     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
0acb8d9a3194 Welcome, modularization and stats.
Dan
parents:
diff changeset
     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
0acb8d9a3194 Welcome, modularization and stats.
Dan
parents:
diff changeset
     9
    p.code {
0acb8d9a3194 Welcome, modularization and stats.
Dan
parents:
diff changeset
    10
      font-family: monospace;
0acb8d9a3194 Welcome, modularization and stats.
Dan
parents:
diff changeset
    11
      margin-left: 1.5em;
0acb8d9a3194 Welcome, modularization and stats.
Dan
parents:
diff changeset
    12
    }
0acb8d9a3194 Welcome, modularization and stats.
Dan
parents:
diff changeset
    13
    </style>
0acb8d9a3194 Welcome, modularization and stats.
Dan
parents:
diff changeset
    14
    <h1>Privacy information</h1>
20
e2f6e3af9959 Stats now uses MySQL backend
Dan
parents: 8
diff changeset
    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
e2f6e3af9959 Stats now uses MySQL backend
Dan
parents: 8
diff changeset
    16
       backend access abstraction in stats-fe.php) look at the data and draw graphs and measurements based on it.</p>
8
0acb8d9a3194 Welcome, modularization and stats.
Dan
parents:
diff changeset
    17
    <p>The only information <?php echo $nick; ?> collects is</p>
0acb8d9a3194 Welcome, modularization and stats.
Dan
parents:
diff changeset
    18
    <ul>
0acb8d9a3194 Welcome, modularization and stats.
Dan
parents:
diff changeset
    19
      <li>The time of each message</li>
0acb8d9a3194 Welcome, modularization and stats.
Dan
parents:
diff changeset
    20
      <li>The nick that posted that message</li>
0acb8d9a3194 Welcome, modularization and stats.
Dan
parents:
diff changeset
    21
    </ul>
20
e2f6e3af9959 Stats now uses MySQL backend
Dan
parents: 8
diff changeset
    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
0acb8d9a3194 Welcome, modularization and stats.
Dan
parents:
diff changeset
    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>
0acb8d9a3194 Welcome, modularization and stats.
Dan
parents:
diff changeset
    24
    <p class="code">!deluser</p>
20
e2f6e3af9959 Stats now uses MySQL backend
Dan
parents: 8
diff changeset
    25
    <p>(Moderators can also type:</p>
e2f6e3af9959 Stats now uses MySQL backend
Dan
parents: 8
diff changeset
    26
    <p class="code">!deluser | SomeNick</p>
e2f6e3af9959 Stats now uses MySQL backend
Dan
parents: 8
diff changeset
    27
    <p>to remove statistics for a flooder or spammer)</p>
e2f6e3af9959 Stats now uses MySQL backend
Dan
parents: 8
diff changeset
    28
    <p>You can prevent yourself from being logged in the future with:</p>
8
0acb8d9a3194 Welcome, modularization and stats.
Dan
parents:
diff changeset
    29
    <p class="code">/msg <?php echo $nick; ?> anonymize</p>
20
e2f6e3af9959 Stats now uses MySQL backend
Dan
parents: 8
diff changeset
    30
    <p>You'll be asked if you want to anonymize your past statistics as well.</p>
8
0acb8d9a3194 Welcome, modularization and stats.
Dan
parents:
diff changeset
    31
    <p>Remove yourself from the anonymization list with:</p>
0acb8d9a3194 Welcome, modularization and stats.
Dan
parents:
diff changeset
    32
    <p class="code">/msg <?php echo $nick; ?> denonymize</p>
20
e2f6e3af9959 Stats now uses MySQL backend
Dan
parents: 8
diff changeset
    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");