htdocs/news.php
author Dan
Mon, 05 Jan 2009 22:29:36 -0500
changeset 44 73f74d395f95
parent 35 a76ae7eaa2eb
child 46 186507f67064
permissions -rw-r--r--
Added theme support. Oh yeah, you can customize graphs using graph_{line,bar}.def.

<?php
require('../config.php');
require('../stats-fe.php');

$title = "$nick - updates";
require("./themes/$webtheme/header.php");
?>  <style type="text/css">
    p.code {
      font-family: monospace;
      margin-left: 1.5em;
    }
    </style>
    <h1>Updates and changes</h1>
    <h3>2009-01-04</h3>
    <p>Added a last 60 minutes graph.</p>
    <h3>2008-12-24</h3>
    <p><?php echo $nick; ?> now has modular graph support and thus is able to show different graphs. Included now are options for the last
       24 hours as before, plus the last two weeks and the last 30 days. More, of course, can be added if needed.</p>
    <h3>2008-11-15</h3>
    <p>I've been updating <?php echo $nick; ?> recently with some really cool enhancements to the back-end. This is more technical stuff
       so you might want to read on only if you're a geek.</p>
    <p><?php echo $nick; ?> only stores info with MySQL now. All the stats go into a MySQL table that had an initial size of over 360,000
       records after the import of the existing flat file database. It makes for a more portable programming technique and it means it can
       be easily expanded in the future to include more data. The table's indexed so it should be decently fast.</p>
    <p>In addition, smarter functionality is being included, plus a few bugs here and there have been fixed.</p>
<?php
require("./themes/$webtheme/footer.php");
?>