htdocs/news.php
author Dan
Mon, 05 Jan 2009 22:50:59 -0500
changeset 47 633ec114f630
parent 46 186507f67064
permissions -rw-r--r--
Updated news with info on theme support
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
25
e5e4ba531f41 Added a news page describing recent updates for end-users.
Dan
parents:
diff changeset
     1
<?php
e5e4ba531f41 Added a news page describing recent updates for end-users.
Dan
parents:
diff changeset
     2
require('../config.php');
44
73f74d395f95 Added theme support. Oh yeah, you can customize graphs using graph_{line,bar}.def.
Dan
parents: 35
diff changeset
     3
require('../stats-fe.php');
25
e5e4ba531f41 Added a news page describing recent updates for end-users.
Dan
parents:
diff changeset
     4
44
73f74d395f95 Added theme support. Oh yeah, you can customize graphs using graph_{line,bar}.def.
Dan
parents: 35
diff changeset
     5
$title = "$nick - updates";
73f74d395f95 Added theme support. Oh yeah, you can customize graphs using graph_{line,bar}.def.
Dan
parents: 35
diff changeset
     6
require("./themes/$webtheme/header.php");
73f74d395f95 Added theme support. Oh yeah, you can customize graphs using graph_{line,bar}.def.
Dan
parents: 35
diff changeset
     7
?>  <style type="text/css">
25
e5e4ba531f41 Added a news page describing recent updates for end-users.
Dan
parents:
diff changeset
     8
    p.code {
e5e4ba531f41 Added a news page describing recent updates for end-users.
Dan
parents:
diff changeset
     9
      font-family: monospace;
e5e4ba531f41 Added a news page describing recent updates for end-users.
Dan
parents:
diff changeset
    10
      margin-left: 1.5em;
e5e4ba531f41 Added a news page describing recent updates for end-users.
Dan
parents:
diff changeset
    11
    }
e5e4ba531f41 Added a news page describing recent updates for end-users.
Dan
parents:
diff changeset
    12
    </style>
e5e4ba531f41 Added a news page describing recent updates for end-users.
Dan
parents:
diff changeset
    13
    <h1>Updates and changes</h1>
47
633ec114f630 Updated news with info on theme support
Dan
parents: 46
diff changeset
    14
    <h3>2009-01-05</h3>
633ec114f630 Updated news with info on theme support
Dan
parents: 46
diff changeset
    15
    <p>Added theme support.</p>
45
53a50ba4d690 Added last 60 minutes graph to index.php
Dan
parents: 35
diff changeset
    16
    <h3>2009-01-04</h3>
53a50ba4d690 Added last 60 minutes graph to index.php
Dan
parents: 35
diff changeset
    17
    <p>Added a last 60 minutes graph.</p>
35
a76ae7eaa2eb Updated news page
Dan
parents: 25
diff changeset
    18
    <h3>2008-12-24</h3>
a76ae7eaa2eb Updated news page
Dan
parents: 25
diff changeset
    19
    <p><?php echo $nick; ?> now has modular graph support and thus is able to show different graphs. Included now are options for the last
a76ae7eaa2eb Updated news page
Dan
parents: 25
diff changeset
    20
       24 hours as before, plus the last two weeks and the last 30 days. More, of course, can be added if needed.</p>
a76ae7eaa2eb Updated news page
Dan
parents: 25
diff changeset
    21
    <h3>2008-11-15</h3>
25
e5e4ba531f41 Added a news page describing recent updates for end-users.
Dan
parents:
diff changeset
    22
    <p>I've been updating <?php echo $nick; ?> recently with some really cool enhancements to the back-end. This is more technical stuff
e5e4ba531f41 Added a news page describing recent updates for end-users.
Dan
parents:
diff changeset
    23
       so you might want to read on only if you're a geek.</p>
e5e4ba531f41 Added a news page describing recent updates for end-users.
Dan
parents:
diff changeset
    24
    <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
35
a76ae7eaa2eb Updated news page
Dan
parents: 25
diff changeset
    25
       records after the import of the existing flat file database. It makes for a more portable programming technique and it means it can
a76ae7eaa2eb Updated news page
Dan
parents: 25
diff changeset
    26
       be easily expanded in the future to include more data. The table's indexed so it should be decently fast.</p>
25
e5e4ba531f41 Added a news page describing recent updates for end-users.
Dan
parents:
diff changeset
    27
    <p>In addition, smarter functionality is being included, plus a few bugs here and there have been fixed.</p>
44
73f74d395f95 Added theme support. Oh yeah, you can customize graphs using graph_{line,bar}.def.
Dan
parents: 35
diff changeset
    28
<?php
73f74d395f95 Added theme support. Oh yeah, you can customize graphs using graph_{line,bar}.def.
Dan
parents: 35
diff changeset
    29
require("./themes/$webtheme/footer.php");
73f74d395f95 Added theme support. Oh yeah, you can customize graphs using graph_{line,bar}.def.
Dan
parents: 35
diff changeset
    30
?>