author | Dan |
Sat, 10 Jan 2009 14:07:54 -0500 | |
changeset 48 | d793361a27ec |
parent 47 | 633ec114f630 |
permissions | -rw-r--r-- |
25 | 1 |
<?php |
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 | 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 | 8 |
p.code { |
9 |
font-family: monospace; |
|
10 |
margin-left: 1.5em; |
|
11 |
} |
|
12 |
</style> |
|
13 |
<h1>Updates and changes</h1> |
|
47 | 14 |
<h3>2009-01-05</h3> |
15 |
<p>Added theme support.</p> |
|
45 | 16 |
<h3>2009-01-04</h3> |
17 |
<p>Added a last 60 minutes graph.</p> |
|
35 | 18 |
<h3>2008-12-24</h3> |
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 |
|
20 |
24 hours as before, plus the last two weeks and the last 30 days. More, of course, can be added if needed.</p> |
|
21 |
<h3>2008-11-15</h3> |
|
25 | 22 |
<p>I've been updating <?php echo $nick; ?> recently with some really cool enhancements to the back-end. This is more technical stuff |
23 |
so you might want to read on only if you're a geek.</p> |
|
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 | 25 |
records after the import of the existing flat file database. It makes for a more portable programming technique and it means it can |
26 |
be easily expanded in the future to include more data. The table's indexed so it should be decently fast.</p> |
|
25 | 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 |
?> |