add wtv-tricks:/charmap
This commit is contained in:
49
zefie_wtvp_minisrv/ServiceVault/wtv-tricks/charmap.js
Normal file
49
zefie_wtvp_minisrv/ServiceVault/wtv-tricks/charmap.js
Normal file
@@ -0,0 +1,49 @@
|
|||||||
|
var minisrv_service_file = true;
|
||||||
|
|
||||||
|
var num_per_line = 4
|
||||||
|
var legend_every = 6;
|
||||||
|
|
||||||
|
function getLegend() {
|
||||||
|
d = "<tr>\n";
|
||||||
|
for (var i = 0; i < num_per_line; i++) {
|
||||||
|
d += "<td><b><font color=44cc55>Code</font></b>\n<td><b><font color=44cc55>Char</font></b>\n";
|
||||||
|
}
|
||||||
|
d += "<tr>\n";
|
||||||
|
return d;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
headers = `200 OK
|
||||||
|
Content-Type: text/html`;
|
||||||
|
|
||||||
|
data = `<html>
|
||||||
|
<body>
|
||||||
|
<display nosave nosend>
|
||||||
|
<title>WebTV Character Map</title>
|
||||||
|
<sidebar width=20%>
|
||||||
|
<img src="wtv-tricks:/images/Favorites_bg2.jpg">
|
||||||
|
</sidebar>
|
||||||
|
<body bgcolor="#191919" text="#33bb44" link="36d5ff" vlink="36d5ff" vspace=0>
|
||||||
|
<br>
|
||||||
|
<br>
|
||||||
|
<font color=44cc55><h1>WebTV Character Map</h1></font>
|
||||||
|
<br>
|
||||||
|
<table border=1>`;
|
||||||
|
|
||||||
|
|
||||||
|
for (var i = 0; i <= 255; i++) {
|
||||||
|
if (i % num_per_line === 0) {
|
||||||
|
if (i % (num_per_line * legend_every) === 0) {
|
||||||
|
data += getLegend();
|
||||||
|
} else {
|
||||||
|
data += "<tr>"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
data += "<td>&#" + i + ";\n";
|
||||||
|
data += "<td>&#" + i + ";\n";
|
||||||
|
}
|
||||||
|
|
||||||
|
data += `</table>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
|
`
|
||||||
Binary file not shown.
|
After Width: | Height: | Size: 22 KiB |
Reference in New Issue
Block a user