htdocs/privacy.php
changeset 8 0acb8d9a3194
child 20 e2f6e3af9959
equal deleted inserted replaced
7:1d6e762433fe 8:0acb8d9a3194
       
     1 <?php
       
     2 require('../config.php');
       
     3 
       
     4 ?><html>
       
     5   <head>
       
     6     <title><?php echo $nick; ?> - privacy info</title>
       
     7     <style type="text/css">
       
     8     p.code {
       
     9       font-family: monospace;
       
    10       margin-left: 1.5em;
       
    11     }
       
    12     </style>
       
    13   </head>
       
    14   <body>
       
    15     <h1>Privacy information</h1>
       
    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
       
    17        few backend functions in stats-fe.php) look at the data and draw graphs and measurements based on it.</p>
       
    18     <p>The only information <?php echo $nick; ?> collects is</p>
       
    19     <ul>
       
    20       <li>The time of each message</li>
       
    21       <li>The nick that posted that message</li>
       
    22       <li>Whether that nick has certain flags, like operator/voice</li>
       
    23     </ul>
       
    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>
       
    25     <p class="code">!deluser</p>
       
    26     <p>You can also prevent yourself from being logged in the future with:</p>
       
    27     <p class="code">/msg <?php echo $nick; ?> anonymize</p>
       
    28     <p>Remove yourself from the anonymization list with:</p>
       
    29     <p class="code">/msg <?php echo $nick; ?> denonymize</p>
       
    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>
       
    31   </body>
       
    32 </head>