Simple SVN
Brought to you by:
niallg
| File | Date | Author | Commit |
|---|---|---|---|
| COPY.txt | 2006-10-21 | niallg | [r14] Add tracking to the site. |
| README | 2006-10-21 | niallg | [r14] Add tracking to the site. |
| agents.inc | 2006-10-24 | niallg | [r72] Update site theme. |
| agents.map | 2006-10-21 | niallg | [r14] Add tracking to the site. |
| agents.php | 2007-03-02 | niallg | [r440] Update site. |
| downloads.inc | 2009-03-14 | niallg | [r1169] Update the site |
| downloads.php | 2007-03-02 | niallg | [r440] Update site. |
| get.php | 2006-10-22 | niallg | [r51] Add download tracking. |
| index.php | 2007-03-02 | niallg | [r440] Update site. |
| links.inc | 2009-03-14 | niallg | [r1170] Update to screen self |
| links.php | 2007-03-02 | niallg | [r440] Update site. |
| list.php | 2006-10-23 | niallg | [r66] Move traffic statistics out of main tab group. |
| packages.inc | 2007-03-02 | niallg | [r440] Update site. |
| packages.php | 2007-03-02 | niallg | [r440] Update site. |
| track.inc | 2006-10-22 | niallg | [r48] Add tutorial page. |
| visits.inc | 2009-03-14 | niallg | [r1169] Update the site |
| visits.php | 2007-03-02 | niallg | [r440] Update site. |
create table hits (
id int(11) not null auto_increment,
referer varchar(250) not null default "",
agent varchar(250) not null default "",
client varchar(20) not null default "",
session varchar(50) not null default "",
day date not null,
primary key(id));
create table downloads (
id int(11) not null auto_increment,
version varchar(250) not null default "",
package varchar(100) not null default "",
client varchar(50) not null default "",
day date not null,
primary key(id));
create table agents (
id int(11) not null auto_increment,
identifier varchar(50) not null,
platform varchar(100) not null,
primary key(id, platform));
INSERT INTO agents (identifier, platform) VALUES ('Win98', 'Windows 98');
INSERT INTO agents (identifier, platform) VALUES ('Win95', 'Windows 95');
INSERT INTO agents (identifier, platform) VALUES ('Windows 98', 'Windows 98');
INSERT INTO agents (identifier, platform) VALUES ('Windows 95', 'Windows 95');
INSERT INTO agents (identifier, platform) VALUES ('FreeBSD', 'FreeBSD');
INSERT INTO agents (identifier, platform) VALUES ('Mac', 'Macintosh');
INSERT INTO agents (identifier, platform) VALUES ('Macintosh', 'Macintosh');
INSERT INTO agents (identifier, platform) VALUES ('NT 5.0', 'Windows 2000');
INSERT INTO agents (identifier, platform) VALUES ('NT 5.1', 'Windows XP');
INSERT INTO agents (identifier, platform) VALUES ('NT 4.', 'Windows NT');
INSERT INTO agents (identifier, platform) VALUES ('WinNT', 'Windows NT');
INSERT INTO agents (identifier, platform) VALUES ('Linux', 'Linux');
INSERT INTO agents (identifier, platform) VALUES ('SunOS', 'Solaris');
INSERT INTO agents (identifier, platform) VALUES ('Googlebot', 'Google');