htdocs/privacy.php
author Dan
Sat, 25 Oct 2008 20:24:31 +0000
changeset 18 07be890ef627
parent 8 0acb8d9a3194
child 20 e2f6e3af9959
permissions -rw-r--r--
Minor fix to snippets web iface
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>
0acb8d9a3194 Welcome, modularization and stats.
Dan
parents:
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 a
0acb8d9a3194 Welcome, modularization and stats.
Dan
parents:
diff changeset
    17
       few backend functions in stats-fe.php) look at the data and draw graphs and measurements based on it.</p>
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
      <li>Whether that nick has certain flags, like operator/voice</li>
0acb8d9a3194 Welcome, modularization and stats.
Dan
parents:
diff changeset
    23
    </ul>
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>
0acb8d9a3194 Welcome, modularization and stats.
Dan
parents:
diff changeset
    26
    <p>You can also prevent yourself from being logged in the future with:</p>
0acb8d9a3194 Welcome, modularization and stats.
Dan
parents:
diff changeset
    27
    <p class="code">/msg <?php echo $nick; ?> anonymize</p>
0acb8d9a3194 Welcome, modularization and stats.
Dan
parents:
diff changeset
    28
    <p>Remove yourself from the anonymization list with:</p>
0acb8d9a3194 Welcome, modularization and stats.
Dan
parents:
diff changeset
    29
    <p class="code">/msg <?php echo $nick; ?> denonymize</p>
0acb8d9a3194 Welcome, modularization and stats.
Dan
parents:
diff changeset
    30
    <p>Want to know more about the numbers <?php echo $nick; ?> collects? <a href="datafile.php">Download <?php echo $nick; ?>'s data file yourself</a> (<a href="json.php">in JSON format</a>).</p>
0acb8d9a3194 Welcome, modularization and stats.
Dan
parents:
diff changeset
    31
  </body>
0acb8d9a3194 Welcome, modularization and stats.
Dan
parents:
diff changeset
    32
</head>