htdocs/privacy.php
author Dan
Sat, 15 Nov 2008 15:01:28 -0500
changeset 21 d86ea89358ec
parent 20 e2f6e3af9959
child 44 73f74d395f95
permissions -rw-r--r--
Added IP logger module.
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');
0acb8d9a3194 Welcome, modularization and stats.
Dan
parents:
diff changeset
     3
0acb8d9a3194 Welcome, modularization and stats.
Dan
parents:
diff changeset
     4
?><html>
0acb8d9a3194 Welcome, modularization and stats.
Dan
parents:
diff changeset
     5
  <head>
0acb8d9a3194 Welcome, modularization and stats.
Dan
parents:
diff changeset
     6
    <title><?php echo $nick; ?> - privacy info</title>
0acb8d9a3194 Welcome, modularization and stats.
Dan
parents:
diff changeset
     7
    <style type="text/css">
0acb8d9a3194 Welcome, modularization and stats.
Dan
parents:
diff changeset
     8
    p.code {
0acb8d9a3194 Welcome, modularization and stats.
Dan
parents:
diff changeset
     9
      font-family: monospace;
0acb8d9a3194 Welcome, modularization and stats.
Dan
parents:
diff changeset
    10
      margin-left: 1.5em;
0acb8d9a3194 Welcome, modularization and stats.
Dan
parents:
diff changeset
    11
    }
0acb8d9a3194 Welcome, modularization and stats.
Dan
parents:
diff changeset
    12
    </style>
0acb8d9a3194 Welcome, modularization and stats.
Dan
parents:
diff changeset
    13
  </head>
0acb8d9a3194 Welcome, modularization and stats.
Dan
parents:
diff changeset
    14
  <body>
0acb8d9a3194 Welcome, modularization and stats.
Dan
parents:
diff changeset
    15
    <h1>Privacy information</h1>
20
e2f6e3af9959 Stats now uses MySQL backend
Dan
parents: 8
diff changeset
    16
    <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
    17
       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
    18
    <p>The only information <?php echo $nick; ?> collects is</p>
0acb8d9a3194 Welcome, modularization and stats.
Dan
parents:
diff changeset
    19
    <ul>
0acb8d9a3194 Welcome, modularization and stats.
Dan
parents:
diff changeset
    20
      <li>The time of each message</li>
0acb8d9a3194 Welcome, modularization and stats.
Dan
parents:
diff changeset
    21
      <li>The nick that posted that message</li>
0acb8d9a3194 Welcome, modularization and stats.
Dan
parents:
diff changeset
    22
    </ul>
20
e2f6e3af9959 Stats now uses MySQL backend
Dan
parents: 8
diff changeset
    23
    <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
    24
    <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
    25
    <p class="code">!deluser</p>
20
e2f6e3af9959 Stats now uses MySQL backend
Dan
parents: 8
diff changeset
    26
    <p>(Moderators can also type:</p>
e2f6e3af9959 Stats now uses MySQL backend
Dan
parents: 8
diff changeset
    27
    <p class="code">!deluser | SomeNick</p>
e2f6e3af9959 Stats now uses MySQL backend
Dan
parents: 8
diff changeset
    28
    <p>to remove statistics for a flooder or spammer)</p>
e2f6e3af9959 Stats now uses MySQL backend
Dan
parents: 8
diff changeset
    29
    <p>You can prevent yourself from being logged in the future with:</p>
8
0acb8d9a3194 Welcome, modularization and stats.
Dan
parents:
diff changeset
    30
    <p class="code">/msg <?php echo $nick; ?> anonymize</p>
20
e2f6e3af9959 Stats now uses MySQL backend
Dan
parents: 8
diff changeset
    31
    <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
    32
    <p>Remove yourself from the anonymization list with:</p>
0acb8d9a3194 Welcome, modularization and stats.
Dan
parents:
diff changeset
    33
    <p class="code">/msg <?php echo $nick; ?> denonymize</p>
20
e2f6e3af9959 Stats now uses MySQL backend
Dan
parents: 8
diff changeset
    34
    <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>
8
0acb8d9a3194 Welcome, modularization and stats.
Dan
parents:
diff changeset
    35
  </body>
0acb8d9a3194 Welcome, modularization and stats.
Dan
parents:
diff changeset
    36
</head>