* v0.9.55

- CGI Support (eg PHP, Perl, etc)
- Slight PC Admin updates
- Numerous bug fixes
- Security updates

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
This commit is contained in:
zefie
2025-01-03 12:49:50 -05:00
committed by GitHub
parent 9314705def
commit 907cec23c2
28 changed files with 1637 additions and 576 deletions

View File

@@ -24,10 +24,11 @@ if (isNaN(start_time)) {
var image_size = fs.statSync(image_filename).size
var image_size_kb = parseFloat(image_size / 1024).toFixed(3);
var throughput = parseFloat((image_size / download_time) * 1024).toFixed(0);
var throughput_bps = parseInt(throughput * 8)
data += `
<table>
<tr>
<td height=20>
<td height=5>
<tr>
<td valign=top align=right width=200><shadow>POP Number:</shadow>
<td width=10>
@@ -61,18 +62,21 @@ if (isNaN(start_time)) {
<tr>
<td valign=top align=right><shadow>Throughput:</shadow>
<td width=10>
<td valign=top>${throughput} bytes/sec
<td valign=top>${throughput} bytes/sec (${throughput_bps} bps)
</table>
`;
}
data += `
</table>
<p>
<p>
<a selected href="wtv-tricks:/benchmark">Re-Test</a>
<table>
<tr>
<td width=120>
<td><a selected href="wtv-tricks:/benchmark">Re-Test</a>
<td width=30>
<a href="wtv-tricks:/tricks">Back to Tricks</a>
<td><a href="wtv-tricks:/tricks">Back to Tricks</a>
</table>
</CENTER>
</BODY>
</HTML>