- major update: app.js: rewrite socket handling to stream data (fix issues POSTing with shoddy dialup, namely fix wtv-update:/sync issues)
- update: wtv-home:/home: remove broken irc test, add links to DiskHax and VFatHax, remove URL Accessor form from MiniBrowser because it doesn't work
- update: wtv-update:/sync: skip file if the Content-length matches the client and the client file is equal or newer, since client is not storing wtv-checksum for some reason. Client file time is set to when the client received the file last, and not actually when the file was modified on our end
- update: wtv-head-waiter:/login-stage-two: offer prompt to minibrowser to go to home or willie
- fix: clean up socket session data on socket error
- code fixup: use `${}` instead of escaping string
- app.js: better minibrowser session cleanup
- update: http(s) proxy: do not send internal 'wtv-connection-close' header to client
- fix: http(s) proxy: handle socks HostUnreachable error
- fix: wtv-head-waiter:/login-stage-two: usernames longerfix: build 3833 crashes when `wtv-user-name` is too long
- fix: wtv-log:/log
- add: wtv-chat
- add: wtv-setup
35 lines
836 B
JavaScript
35 lines
836 B
JavaScript
headers = `200 OK
|
|
Connection: Keep-Alive
|
|
wtv-expire-all: wtv-
|
|
wtv-expire-all: http
|
|
Content-Type: text/html`
|
|
|
|
data = `<html>
|
|
<head>
|
|
<display hideoptions nostatus showwhencomplete skipback clearback fontsize=medium>
|
|
<title>Engaging zefie...</title>
|
|
<meta http-equiv=Refresh content="5; url=wtv-home:/home?">
|
|
</head>
|
|
<body bgcolor="#000000" text="#449944">
|
|
<bgsound src="file://ROM/Sounds/Splash.mid">
|
|
<center>
|
|
<spacer type=block height=88 width=21>
|
|
<img src="file://ROM/Images/spacer.gif" height=4><br>
|
|
<img src="${minisrv_config.config.service_splash_logo}">
|
|
<br><br><br>
|
|
<p><br>
|
|
<p><br>
|
|
<table border>
|
|
<tr><td width=150>
|
|
Mini service
|
|
<tr><td>
|
|
zefie minisrv v${minisrv_config.version}`;
|
|
if (getGitRevision()) {
|
|
data += " (git " + getGitRevision().substring(0, 8) + ")";
|
|
}
|
|
data += `
|
|
<tr><td>&rate;
|
|
</table>
|
|
</center>
|
|
</body>
|
|
</html>`; |