summaryrefslogtreecommitdiff
path: root/TODO.txt
diff options
context:
space:
mode:
authorChris McDonough <chrism@plope.com>2011-12-24 05:08:36 -0500
committerChris McDonough <chrism@plope.com>2011-12-24 05:08:36 -0500
commit76023c6f2eda9a149be65dcd2d8394b7d5c4b38b (patch)
treecf2e3785f39e69881e3435f5cf8fb86a34e657de /TODO.txt
parent3fd721a2ac2a510fd76976af4a6721334dc769c8 (diff)
downloadwaitress-76023c6f2eda9a149be65dcd2d8394b7d5c4b38b.tar.gz
garden
Diffstat (limited to 'TODO.txt')
-rw-r--r--TODO.txt22
1 files changed, 0 insertions, 22 deletions
diff --git a/TODO.txt b/TODO.txt
index 1c472a0..c99e65c 100644
--- a/TODO.txt
+++ b/TODO.txt
@@ -6,8 +6,6 @@
- 0.0.0.0 / IPv6.
-- Validate chunked encoding works as expected.
-
- add unit test for addResponseHeader.
- Documentation.
@@ -20,26 +18,6 @@
- Coverage.
-- # But note that "...a URI must be separated into its components before the
- # escaped characters within those components can be safely decoded."
- # http://www.ietf.org/rfc/rfc2396.txt, sec 2.4.2 Therefore, "/this%2Fpath"
- # becomes "/this%2Fpath", not "/this/path".
-
-- comma_separated_headers = [ntob(h) for h in
- ['Accept', 'Accept-Charset', 'Accept-Encoding',
- 'Accept-Language', 'Accept-Ranges', 'Allow', 'Cache-Control',
- 'Connection', 'Content-Encoding', 'Content-Language', 'Expect',
- 'If-Match', 'If-None-Match', 'Pragma', 'Proxy-Authenticate', 'TE',
- 'Trailer', 'Transfer-Encoding', 'Upgrade', 'Vary', 'Via', 'Warning',
- 'WWW-Authenticate']]
-
-- elif "content-length" not in hkeys:
- # "All 1xx (informational), 204 (no content),
- # and 304 (not modified) responses MUST NOT
- # include a message-body." So no point chunking.
- if status < 200 or status in (204, 205, 304):
- pass
-
- Waitress Version number in header.
- Put maintenance check on server rather than channel to avoid DOS.