merged branch 'speed-records', squashed

This commit is contained in:
scuti 2024-10-18 21:21:02 -07:00
parent ded4e29594
commit 4d1816e0ce
11 changed files with 275 additions and 79 deletions

View File

@ -1,15 +1,21 @@
CFLAGS= -Ofast -I"include" CFLAGS= -Ofast -I"include"
BIN=cts BIN=cts
all: main all: colors4python staticgen
# build for static page generator
staticgen: colors.o src/dbquery.c staticgen: colors.o src/dbquery.c
echo "\nCompiling executable as static page generator\n" echo "\nCompiling executable as static page generator\n"
gcc -c src/dbquery.c $(CFLAGS) -DSTATICGEN gcc -c src/dbquery.c $(CFLAGS) -DSTATICGEN
gcc -c src/main.c $(CFLAGS) -DSTATICGEN gcc -c src/main.c $(CFLAGS) -DSTATICGEN
gcc colors.o dbquery.o main.o -lsqlite3 -o $(BIN) gcc colors.o dbquery.o main.o -lsqlite3 -o $(BIN)
main: main.o # used by python script to colorize names (html)
colors4python:
gcc $(CFLAGS) src/colors.c -o colors -DCOLORS4PYTHON
# build for cgi
cgi: main.o
gcc colors.o dbquery.o main.o -lsqlite3 -o $(BIN) gcc colors.o dbquery.o main.o -lsqlite3 -o $(BIN)
main.o: dbquery.o src/main.c main.o: dbquery.o src/main.c

View File

@ -8,39 +8,44 @@ A common gateway inferface (CGI) program written in C to display Race CTS leader
The first is only needed for compilation of the C program. The latter two are only for the auxiliary script `allmaps.py`. The first is only needed for compilation of the C program. The latter two are only for the auxiliary script `allmaps.py`.
## Compiling ## Compiling
`make` makes a CGI program. `make` makes a static page generator.
`make staticgen` makes a static page generator. `make cgi` makes a CGI program.
## Usage: Import data from Xonotic ## Usage: Import data from Xonotic
This program uses an sqlite3 database file created from `~/.xonotic/data/data/server.db` (text). This program uses an sqlite3 database file created from `~/.xonotic/data/data/server.db` (text).
sqlite3 my-new.db sqlite3 my-new.db
sqlite > .read schema.sql sqlite > .read schema.sql
python scripts/import-from-xon.py my-new.db ~/.xonotic/data/data/server.db python scripts/import-from-xon.py my-new.db ~/.xonotic/data/data/server.db
## Usage: CGI Query Strings ## Usage: (CGI) Queries
The program queries the database `db/cts.db` (`./src/dbquery.c`, function `static bool executequery`)
* `(none)` * `(none)`
- Query file: `queries/mranks.sql` - file: `queries/mranks.sql`
- Requests the map list of the server and related data. - Requests the map list of the server, the best times scored per map and by which player.
* `?fastest-players`
- file: `queries/fastest-players.sql`
- Requests the map list of the server, the highest velocities attained per map and by which player.
* `?map=[map name]` * `?map=[map name]`
- Query file: `queries/mleaderboard-ojoin.sql` - file: `queries/mleaderboard-ojoin.sql`
- Requests the leaderboard of the map. - Requests the leaderboard of the map.
* `?player=[clientid]` * `?player=[clientid]`
- Query file: `queries/rplayers.sql` - file: `queries/rplayers.sql`
- Requests a player's ranks for all maps leaderboards s/he is present on. - Requests a player's ranks for all maps leaderboards s/he is present on.
`queries/fastest-player-of-map.sql` is used exclusively by the python script `scripts/allmaps.py`.
## Usage: Static Page Generation ## Usage: Static Page Generation
python scripts/allmaps.py python scripts/allmaps.py
The CGI program is still invoked in static generation. The files `allmaps.py`, `output/leaderboard.css`, `overview.html`, `map.html` produce the output. The files `allmaps.py`, `output/leaderboard.css`, `overview.html`, `map.html` produce the output.
Before executing `allmaps.py`, copy and modify the templates. Before executing `allmaps.py`, copy and modify the templates.

View File

@ -14,12 +14,18 @@ void hsl2rgb(struct Rgb *, const struct Hls const *);
void rgb2hsl(struct Hls *, const struct Rgb const *); void rgb2hsl(struct Hls *, const struct Rgb const *);
static void decspan(const int); static const char *decspan(const int);
static void hexspan(const char *); static void hexspan(char *, int, const char *);
static void b(char * const); static void colorize_noalloc(char * const);
static void sanitize(char *);
void print_plname(const char*); void print_plname(const char*);
static char* append_to_str(char *, const char *);
char* colorize_name(char *, char * const);
#endif #endif

View File

@ -0,0 +1,5 @@
select speed, ifnull(alias, 'Unregistered Player')
from Speed, Fastest_players
left join Id2alias
on idvalue = cryptokey
where Speed.mapid = Fastest_players. mapid and Speed.mapid = ?

View File

@ -0,0 +1,12 @@
select Speed.mapid, max(trank), speed, ifnull(alias, 'Unregistered Player')
from Speed, Fastest_players, Cts_times
left join Id2alias
on Fastest_players.idvalue = cryptokey
where Speed.mapid = Fastest_players.mapid
and Cts_times.mapid = Speed.mapid
and tvalue != 0
group by Cts_times.mapid
order by count(trank) DESC;
-- if condition tvalue != 0 is not present
-- database will return that maps have 99 records

View File

@ -22,6 +22,18 @@ CREATE TABLE Id2alias(
alias TEXT, alias TEXT,
PRIMARY KEY (cryptokey) PRIMARY KEY (cryptokey)
); );
drop table if exists Speed;
create table Speed(
mapid text,
speed float,
primary key (mapid)
);
drop table if exists Fastest_players;
create table Fastest_players (
mapid text,
idvalue text,
primary key (mapid)
);
-- These table fields are unaltered. -- These table fields are unaltered.
-- Exerpts from source/qcsrc/race.qc -- Exerpts from source/qcsrc/race.qc
@ -38,4 +50,4 @@ CREATE TABLE Id2alias(
-- re: foreign key from & to Cts_ranks & Id2alias. -- re: foreign key from & to Cts_ranks & Id2alias.
-- An ranked unregistered player will have a row in Cts_ranks, but will not have a row in Id2alias. -- An ranked unregistered player will have a row in Cts_ranks, but will not have a row in Id2alias.
-- A registered player may have a row in Id2alias, but may not necessary have a rank. -- A registered player may have a row in Id2alias, but may not necessary have a rank.

View File

@ -1,6 +1,13 @@
import sqlite3 as sql import sqlite3 as sql
import subprocess, traceback import subprocess, traceback
# import contextlib
#
import sys, io, os
# import ctypes
# colors = ctypes.CDLL('./colors.so')
# colors.colorize_name.argtypes = (ctypes.char_p, ctypes.int, ctypes.char_p)
# get all maps in database # get all maps in database
def getmaps(database): def getmaps(database):
output = [] output = []
@ -15,26 +22,50 @@ def getmaps(database):
return output return output
# if there is no query then it outputs the index file. # if there is no query then it outputs the index file.
def getcontent(query=None): def run_cgi(query=None):
cmd = [("./cts")] cmd = [("./cts")]
proc = subprocess.Popen(cmd, env=query, stdout=subprocess.PIPE, shell=True) proc = subprocess.Popen(cmd, env=query, stdout=subprocess.PIPE, shell=True)
# communicate returns 'bytes' class with function 'decode' # communicate returns 'bytes' class with function 'decode'
return proc.communicate()[0].decode('utf-8') return proc.communicate()[0].decode('utf-8')
def renderindex(template): def run_colors(player_name):
# no env variable ret = player_name
table = getcontent() result = subprocess.run(['./colors', player_name], capture_output=True, text=True)
filename = "./output/index.html" if result.returncode == 0:
with open(filename, 'w+') as fout: ret = result.stdout
fout.write(template % (table)) return ret
fout.close
pass def get_speed_record(database, map_id):
message = "{name} traveled the fastest at {speed} qu/s."
query = str()
result = []
with open("queries/fastest-player-of-map.sql") as f:
query = f.read()
# q = query.replace('?', map_id)
# print(q)
with sql.connect(database) as con:
cursor = con.cursor()
try:
cursor.execute(query, (map_id,))
result = cursor.fetchall()
except sql.Error:
pass
player_name = result[0][1]
colored = (run_colors(player_name)).strip()
velocity = round(result[0][0], 2)
return message.format(name=colored, speed=velocity)
def main(): def main():
template = "" template = ""
with open("overview.html", 'r') as fin: with open("overview.html", 'r') as fin:
template = fin.read() template = fin.read()
renderindex(template) with open("output/index.html", 'w') as fout:
fout.write(template % run_cgi())
# use same template for fastest-players
query = {"QUERY_STRING" : "fastest-players"}
with open("output/fastest-players.html", 'w') as fout:
fout.write(template % run_cgi(query))
maps = getmaps("db/cts.db") maps = getmaps("db/cts.db")
with open("map.html", 'r') as fin: with open("map.html", 'r') as fin:
template = fin.read() template = fin.read()
@ -43,14 +74,16 @@ def main():
# game_map is a tuple obj. # game_map is a tuple obj.
map_name = game_map[0] map_name = game_map[0]
query = {"QUERY_STRING" : ("map=%s" % map_name)} query = {"QUERY_STRING" : ("map=%s" % map_name)}
table = getcontent(query) filename = ("output/maps/%s.html" % map_name)
filename = ("./output/maps/%s.html" % map_name) sentence = get_speed_record("db/cts.db", map_name)
with open(filename, 'w+') as fout: with open(filename, 'w+') as fout:
title = map_name title = map_name
fout.write(template.format( fout.write(template.format(
title=title, title=title,
map_name=map_name, map_name=map_name,
table=table) table=run_cgi(query),
speed=sentence
)
) )
# fout.write(template % (title, map_name, table)) # fout.write(template % (title, map_name, table))
return True return True

View File

@ -85,9 +85,13 @@ def uid2namefix(row):
# O(n) and organize cts related data into list of rows. # O(n) and organize cts related data into list of rows.
def filters(db): def filters(db):
tt = [] tt = [] # time (seconds)
tr = [] tr = [] # ranks
ti = [] ti = [] # id
# xonotic only stores one player per map
# for speed records (fastest player only)
s = [] # speed
sid = [] # speed id
rank_index = 2 rank_index = 2
for d in db: for d in db:
if d.find("uid2name") != -1: if d.find("uid2name") != -1:
@ -99,15 +103,20 @@ def filters(db):
if d.find("cts100record/time") != -1: if d.find("cts100record/time") != -1:
e[rank_index] = int(e[rank_index].replace("time", "")) e[rank_index] = int(e[rank_index].replace("time", ""))
tt.append(e) tt.append(e)
if d.find("cts100record/crypto_idfp") != -1: elif d.find("cts100record/crypto_idfp") != -1:
e[3] = unquote(e[3]) e[3] = unquote(e[3])
e[rank_index] = int(e[rank_index].replace("crypto_idfp", "")) e[rank_index] = int(e[rank_index].replace("crypto_idfp", ""))
tr.append(e) tr.append(e)
if d.find("cts100record/speed") != -1: elif d.find("cts100record/speed/speed") != -1:
# print(d) # example:
# speed records - not implemented # ['zeel-omnitek', 'cts100record', 'speed', 'speed', '1584.598511']
pass # --- note, index 1, 2, 3 are unneeded
return tt, tr, ti s.append([ e[0], unquote(e[-1]) ])
elif d.find("cts100record/speed/crypto_idfp") != -1:
# example:
# ['minideck_cts_v4r4', 'cts100record', 'speed', 'crypto_idfp', 'duHTyaSGpdTk7oebwPFoo899xPoTwP9bja4DUjCjTLo%3D']
sid.append([ e[0], unquote(e[-1]) ])
return tt, tr, ti, s, sid
#------------------------------------------------+ #------------------------------------------------+
# Functions: Database Creation # Functions: Database Creation
@ -133,7 +142,7 @@ def i(d, s):
with con: with con:
csr = con.cursor() csr = con.cursor()
try: try:
times, ranks, ids = filters(get_list_from_server_txt(s)) times, ranks, ids, speed, speed_ids = filters(get_list_from_server_txt(s))
if times: if times:
inserttodb(csr, "INSERT OR REPLACE INTO Cts_times VALUES(?, ?, ?, ?)", times) inserttodb(csr, "INSERT OR REPLACE INTO Cts_times VALUES(?, ?, ?, ?)", times)
logging.info('\n'.join(y for y in [str(x) for x in times])) logging.info('\n'.join(y for y in [str(x) for x in times]))
@ -143,6 +152,10 @@ def i(d, s):
if ids: if ids:
inserttodb(csr, "INSERT OR REPLACE INTO Id2alias VALUES(?, ?, ?)", ids) inserttodb(csr, "INSERT OR REPLACE INTO Id2alias VALUES(?, ?, ?)", ids)
logging.info('\n'.join(y for y in [str(x) for x in ids])) logging.info('\n'.join(y for y in [str(x) for x in ids]))
if speed:
inserttodb(csr, "INSERT OR REPLACE INTO Speed VALUES(?, ?)", speed)
if speed_ids:
inserttodb(csr, "INSERT OR REPLACE INTO Fastest_players VALUES(?, ?)", speed_ids)
except sql.Error: except sql.Error:
logging.exception("sql error encountered in function 'i'") logging.exception("sql error encountered in function 'i'")
if con: if con:
@ -151,7 +164,7 @@ def i(d, s):
# 'insert' new data into a file i.e sql query file # 'insert' new data into a file i.e sql query file
def f(d, s): def f(d, s):
with open(d, 'w', encoding='utf-8') as h: with open(d, 'w', encoding='utf-8') as h:
times, ranks, ids = filters(get_list_from_server_txt(s)) times, ranks, ids, speed, speed_ids = filters(get_list_from_server_txt(s))
for t in times: for t in times:
h.write("INSERT OR REPLACE INTO Cts_times VALUES(%s, %s, %s, %s)\n" % tuple(t)) h.write("INSERT OR REPLACE INTO Cts_times VALUES(%s, %s, %s, %s)\n" % tuple(t))
pass pass

View File

@ -80,42 +80,36 @@ void rgb2hsl(struct Hls *dest, const struct Rgb const *src) {
} }
} }
static void decspan(const int d) { static const char* decspan(const int d) {
switch(d) { switch(d) {
case 0: case 0:
printf("<span style='color:rgb(128,128,128)'>"); return "<span style='color:rgb(128,128,128)'>";
break;
case 1: case 1:
printf("<span style='color:rgb(255,0,0)'>"); return "<span style='color:rgb(255,0,0)'>";
break;
case 2: case 2:
printf("<span style='color:rgb(51,255,0)'>"); return "<span style='color:rgb(51,255,0)'>";
break;
case 3: case 3:
printf("<span style='color:rgb(255,255,0)'>"); return "<span style='color:rgb(255,255,0)'>";
break;
case 4: case 4:
printf("<span style='color:rgb(51,102,255)'>"); return "<span style='color:rgb(51,102,255)'>";
break;
case 5: case 5:
printf("<span style='color:rgb(51,255,255)'>"); return "<span style='color:rgb(51,255,255)'>";
break;
case 6: case 6:
printf("<span style='color:rgb(255,51,102)'>"); return "<span style='color:rgb(255,51,102)'>";
break;
case 7: case 7:
printf("<span style='color:rgb(255,255,255)'>"); return "<span style='color:rgb(255,255,255)'>";
break;
case 8: case 8:
printf("<span style='color:rgb(153,153,153)'>"); return "<span style='color:rgb(153,153,153)'>";
break;
case 9: case 9:
printf("<span style='color:rgb(128,128,128)'>"); return "<span style='color:rgb(128,128,128)'>";
break;
} }
} }
static void hexspan(const char *str) { static void hexspan(char *buf, int bufsize, const char *str) {
// length of ...
// "<span style=\"color:rgb(%d,%d,%d)\">"
// where each %d ranges from 0 to 255
// char buf[40];
const char h1[2] = {str[0], '\0'}; const char h1[2] = {str[0], '\0'};
const char h2[2] = {str[1], '\0'}; const char h2[2] = {str[1], '\0'};
const char h3[2] = {str[2], '\0'}; const char h3[2] = {str[2], '\0'};
@ -131,17 +125,21 @@ static void hexspan(const char *str) {
nhls.l = MIN_CONTRAST; nhls.l = MIN_CONTRAST;
hsl2rgb(&nrgb, &nhls); hsl2rgb(&nrgb, &nhls);
} }
printf("<span style=\"color:rgb(%d,%d,%d)\">", nrgb.r, nrgb.g, nrgb.b); int wrote = snprintf(
buf, bufsize,
"<span style=\"color:rgb(%d,%d,%d)\">",
nrgb.r, nrgb.g, nrgb.b);
// output = buf;
} }
static void b(char * const str) { #define TAG_LEN 40
static void colorize_noalloc(char * const str) {
char *token = strtok(str, "^"); char *token = strtok(str, "^");
char c; char c;
printf("<TD>");
while (token) { while (token) {
c = token[0]; c = token[0];
if (isdigit(c)) { if (isdigit(c)) {
decspan(c - '0'); printf( decspan(c - '0') );
if (strlen(token) > 1) { if (strlen(token) > 1) {
printf("%s", token + 1); printf("%s", token + 1);
} }
@ -150,7 +148,9 @@ static void b(char * const str) {
(isxdigit(token[1]) && (isxdigit(token[1]) &&
isxdigit(token[2]) && isxdigit(token[2]) &&
isxdigit(token[3]))) { isxdigit(token[3]))) {
hexspan(token + 1); //exclude x char tag[TAG_LEN];
hexspan(tag, TAG_LEN, token + 1);
printf( tag ); //exclude x
if (strlen(token) > 4){ if (strlen(token) > 4){
printf("%s", token + 4); printf("%s", token + 4);
} }
@ -160,7 +160,16 @@ static void b(char * const str) {
} }
token = strtok(NULL, "^"); token = strtok(NULL, "^");
} }
printf("</TD>"); }
static void sanitize(char *user_name) {
if (user_name == NULL) {
return;
}
char *pos = user_name;
while (pos = strstr(pos, "^^")) {
strcpy(pos, (pos + 1));
}
} }
void print_plname(const char* str) { void print_plname(const char* str) {
@ -170,11 +179,85 @@ void print_plname(const char* str) {
char *copy; char *copy;
copy = calloc(strlen(str) + 1, sizeof(char)); copy = calloc(strlen(str) + 1, sizeof(char));
strcpy(copy, str); strcpy(copy, str);
char *pos = copy; sanitize(copy);
while (pos = strstr(pos, "^^")) { colorize_noalloc(copy);
strcpy(pos, (pos + 1)); fflush(stdout);
}
b(copy);
free(copy); free(copy);
} }
static char* append_to_str(char *dest, const char *src) {
if (dest == NULL || src == NULL) {
fprintf(stderr, "append_to_str(): warning - received null ptr" );
return NULL;
}
size_t new_len = strlen(dest) + strlen(src) + 1;
char *new_str = realloc(dest, new_len);
if (new_str != NULL) {
strcat(new_str, src);
}
return new_str;
}
// the most colorful names are the longest
// names with 8 colors can go to 400 chars
char* colorize_name(char *buf, /*int bufsize,*/ char * const str) {
char *token = strtok(str, "^");
char c;
// unsigned int i = 0;
while (token) {
c = token[0];
if (isdigit(c)) {
// printf("%i : %s\n", i, buf);;
buf = append_to_str(buf, decspan(c - '0') );
if (strlen(token) > 1) {
buf = append_to_str(buf, token + 1);
}
buf = append_to_str(buf, "</span>");
} else if ((c == 'x' && strlen(token) > 3) &&
(isxdigit(token[1]) &&
isxdigit(token[2]) &&
isxdigit(token[3]))) {
char tag[TAG_LEN];
hexspan(tag, TAG_LEN, token + 1); //exclude x
buf = append_to_str(buf, tag );
if (strlen(token) > 4){
buf = append_to_str(buf, token + 4);
}
buf = append_to_str(buf, "</span>");
} else {
buf = append_to_str(buf, token);
}
token = strtok(NULL, "^");
// i++;
}
return buf;
}
/* test:
./colors ^9[^1S^9]^x469Kom^0ier^7
./colors ^9[^1S^9]^^x469Kom^0ier^7
*/
#ifdef COLORS4PYTHON
int main(int argc, const char **argv) {
if (argc < 1) {
return -1;
}
char *colored = (char*)calloc(strlen(argv[1]) + 1, sizeof(char));
char *player_name = (char*)calloc(strlen(argv[1]) + 1, sizeof(char));
strcpy(player_name, argv[1]);
sanitize(player_name);
colored = colorize_name(colored, /*sizeof(colored),*/ player_name);
fprintf(stdout, "%s\n", colored);
// clean up
fflush(stdout);
free(colored);
free(player_name);
return 0;
}
#endif

View File

@ -5,9 +5,10 @@
#include <sqlite3.h> #include <sqlite3.h>
#include "colors.h" #include "colors.h"
#define QOVERVIEW 'o' #define QOVERVIEW 'o' // default case - see get_filename()
#define QRPLAYER 'p' #define QRPLAYER 'p' // ?player=
#define QMLEADERBOARD 'm' #define QMLEADERBOARD 'm' // ?map=
#define QFASTEST 'f'
static inline char *get_filename(char * const c) { static inline char *get_filename(char * const c) {
char *qout = "queries/mranks.sql"; char *qout = "queries/mranks.sql";
@ -22,6 +23,9 @@ static inline char *get_filename(char * const c) {
case QRPLAYER: case QRPLAYER:
qout = "queries/rplayers.sql"; qout = "queries/rplayers.sql";
break; break;
case QFASTEST:
qout = "queries/fastest-players.sql";
break;
} }
} }
return qout; return qout;
@ -58,6 +62,15 @@ static inline void print_tblheader(const char *c) {
<TH class='columnname'>Rank</TH>\ <TH class='columnname'>Rank</TH>\
</TR>"; </TR>";
break; break;
case QFASTEST:
labels = "<table class='leaderboard'>\
<th class='tablename' COLSPAN='4'> <H3><BR>Map List</H3> </th>\
<tr>\
<th class='columnname'>Name</th>\
<th class='columnname'>Records</th>\
<th class='columnname'>Highest Velocty (qu/s)</th>\
<th class='columnname'>Held By</th>\
</tr>";
} }
printf("%s", labels); printf("%s", labels);
} }
@ -84,9 +97,11 @@ static void print_time(const unsigned char *strcs) {
static void qresult(sqlite3_stmt * const sp, const char *c) { static void qresult(sqlite3_stmt * const sp, const char *c) {
#define ISPLAYERNAME(x, y) (y == 1 && *x == QMLEADERBOARD) || \ #define ISPLAYERNAME(x, y) (y == 1 && *x == QMLEADERBOARD) || \
(y == 3 && *x == QOVERVIEW)|| \ (y == 3 && *x == QOVERVIEW)|| \
(y == 0 && *x == QRPLAYER) (y == 0 && *x == QRPLAYER) || \
(y == 3 && *x == QFASTEST)
#define ISMAPNAME(x, y) (y == 0 && *x == QOVERVIEW) ||\ #define ISMAPNAME(x, y) (y == 0 && *x == QOVERVIEW) ||\
(y == 1 && *x == QRPLAYER) (y == 1 && *x == QRPLAYER) || \
(y == 0 && *x == QFASTEST)
int e; int e;
unsigned int i; unsigned int i;
const unsigned int cc = sqlite3_column_count(sp); const unsigned int cc = sqlite3_column_count(sp);
@ -96,7 +111,9 @@ static void qresult(sqlite3_stmt * const sp, const char *c) {
for (i = 0; i < cc; ++i) { for (i = 0; i < cc; ++i) {
unsigned const char * const field = sqlite3_column_text(sp, i); unsigned const char * const field = sqlite3_column_text(sp, i);
if (ISPLAYERNAME(c, i)) { if (ISPLAYERNAME(c, i)) {
printf("<TD>");
print_plname(field); print_plname(field);
printf("</TD>");
} else if (ISMAPNAME(c, i)) { } else if (ISMAPNAME(c, i)) {
#ifdef STATICGEN #ifdef STATICGEN
printf("<TD><a href='./maps/%s.html'>%s</a></TD>", field, field); printf("<TD><a href='./maps/%s.html'>%s</a></TD>", field, field);
@ -105,11 +122,13 @@ static void qresult(sqlite3_stmt * const sp, const char *c) {
#endif #endif
} else if (i == 2 && (*c == QMLEADERBOARD || *c == QOVERVIEW)) { } else if (i == 2 && (*c == QMLEADERBOARD || *c == QOVERVIEW)) {
print_time(field); print_time(field);
} else if (i == 2 && *c == QFASTEST) { // velocity
printf("<TD>%.2f</TD>", atof(field) );
} else { } else {
printf("<TD>%s</TD>", field); printf("<TD>%s</TD>", field);
} }
} }
printf("</TR>"); printf("</TR>\n");
} }
printf("</TABLE>"); printf("</TABLE>");
} }

View File

@ -15,6 +15,8 @@
<!-- code generated table goes here --> <!-- code generated table goes here -->
{table} {table}
<p>{speed}</p>
<footer> <footer>
<p>Page generated using <a href="https://notabug.org/scuti/xdfcgi">xdfcgi</a> by <a href="https://scuti.neocities.org/">scuti</a></p> <p>Page generated using <a href="https://notabug.org/scuti/xdfcgi">xdfcgi</a> by <a href="https://scuti.neocities.org/">scuti</a></p>
</footer> </footer>