X-Git-Url: http://www.privoxy.org/gitweb/?p=privoxy.git;a=blobdiff_plain;f=TODO;h=1b8525e90b1e3107d2a85c4a03be8abc9af1aa68;hp=6c0938d63456e0dadfe52aacd040161a4b9ef78a;hb=abd3e3e501609fbe043b4864d6b2258e842930b4;hpb=e23d3a4e65f85ffcac33de3aa73674a4eda657a7 diff --git a/TODO b/TODO index 6c0938d6..1b8525e9 100644 --- a/TODO +++ b/TODO @@ -1,4 +1,4 @@ -$Id: TODO,v 1.47 2011/07/04 17:48:11 fabiankeil Exp $ +$Id: TODO,v 1.52 2011/08/17 10:23:42 fabiankeil Exp $ Some Privoxy related tasks, sorted by the time they have been added, not by priority. @@ -96,9 +96,8 @@ have been added, not by priority. 41) Change documentation framework to one that works cross-platform. Evaluate WML. -42) Add DTrace hooks. Now that FreeBSD has userland DTrace +42) Add a DTrace USDT provider. Now that FreeBSD has userland DTrace support there's no longer any reason not to. - DTrace bible preorderd. 43) Write a tool to check URL patterns against URLs in the log file. This could be included in Privoxy-Regression-Test. @@ -169,9 +168,6 @@ have been added, not by priority. received, consider passing the mess to the client instead of showing the connect-failed template. Relates to #2698674. -71) Allow to listen on multiple addresses without having to - bind to all. - 74) Let Privoxy-Regression-Test optionally check that action sections which disable actions actually are preceded by sections that enable said actions. @@ -259,3 +255,21 @@ have been added, not by priority. addresses, instead of trusting the libc to return them in an order that makes sense. Like #93, this could be useful as a workaround for misconfigured setups. + +95) Support a non-standard client header in CONNECT requests that + contains the URL of the requested ressource, which is then treated + like the request URL. + + This way the client could opt-in for path-based blocking of https + requests. Given that the headers from the CONNECT request aren't + forwarded to the destination server, an unencrypted URL should be + acceptable if the client and Privoxy are running on the same system + or in a trusted environment. + +96) Enabled filters should be easier to look up. Currently most functions + that work with filters spent more (duplicated) code on finding + filters than on actually doing something useful with them. Dividing + filters by type instead of filter file would reduce the lookup-code + quite a bit. + +97) Add support for Tor's 'optimistic data' socks extension.