Age | Commit message (Collapse) | Author |
|
|
|
This is backwards-compatible - there are only a handful of changes
needed, so we don't have to make a hard break here.
|
|
|
|
The original simple-directory-handler would only html-encode paths to
files. This is obviously completely bogus; the path strings need to
get everything except slashes encoded.
Without this change, paths containing spaces or brackets of any kind
would result in links which caused the server to reject the request,
because the resulting URI would be invalid. Browsers aren't always
smart enough to properly encode all special characters (which makes
sense, because they shouldn't mess with URIs, but they sometimes do,
which means we never really noticed this).
Also get rid of those ugly [] parenthesis synonyms and update
copyright year.
|
|
|
|
|
|
|
|
Port slot 8 (closed?) changed from a bool to a fixnum
in Chicken 5, which made the existing port closed test always succeed,
so output was never flushed. This can lead to hangs when output size
is less than tcp-buffer-size. Use the official accessor instead.
Signed-off-by: Peter Bex <peter@more-magic.net>
|
|
|
|
|
|
|
|
|
|
|
|
|