htdocs/privacy.php
changeset 44 73f74d395f95
parent 20 e2f6e3af9959
equal deleted inserted replaced
43:ce2e9caf2dfa 44:73f74d395f95
     1 <?php
     1 <?php
     2 require('../config.php');
     2 require('../config.php');
       
     3 require('../stats-fe.php');
     3 
     4 
     4 ?><html>
     5 $title = "$nick - privacy info";
     5   <head>
     6 require("./themes/$webtheme/header.php");
     6     <title><?php echo $nick; ?> - privacy info</title>
     7 
     7     <style type="text/css">
     8 ?>  <style type="text/css">
     8     p.code {
     9     p.code {
     9       font-family: monospace;
    10       font-family: monospace;
    10       margin-left: 1.5em;
    11       margin-left: 1.5em;
    11     }
    12     }
    12     </style>
    13     </style>
    13   </head>
       
    14   <body>
       
    15     <h1>Privacy information</h1>
    14     <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 the
    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
    17        backend access abstraction in stats-fe.php) look at the data and draw graphs and measurements based on it.</p>
    16        backend access abstraction 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>
    17     <p>The only information <?php echo $nick; ?> collects is</p>
    19     <ul>
    18     <ul>
    30     <p class="code">/msg <?php echo $nick; ?> anonymize</p>
    29     <p class="code">/msg <?php echo $nick; ?> anonymize</p>
    31     <p>You'll be asked if you want to anonymize your past statistics as well.</p>
    30     <p>You'll be asked if you want to anonymize your past statistics as well.</p>
    32     <p>Remove yourself from the anonymization list with:</p>
    31     <p>Remove yourself from the anonymization list with:</p>
    33     <p class="code">/msg <?php echo $nick; ?> denonymize</p>
    32     <p class="code">/msg <?php echo $nick; ?> denonymize</p>
    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>
    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>
    35   </body>
    34 <?php
    36 </head>
    35 require("./themes/$webtheme/footer.php");