Add: 72) Use less ugly Privoxy (fav)icons.
[privoxy.git] / TODO
1 $Id: TODO,v 1.3 2009/06/19 13:24:14 fabiankeil Exp $
2
3 Some Privoxy related task, not ordered in any way.
4
5 1)  Add some regression tests. Filters should be tested automatically
6     (variables too). Could probably reuse large parts of Privoxy-Filter-Test.
7
8 3)  Fix some more XXX: comments.
9
10 4)  Fix some more compiler warnings. (Especially on amd64)
11     Partly done.
12
13 6)  Remove actions that aren't needed anymore:
14
15     content-type-overwrite should probably stay as it's also
16     used by some of the CGI pages (XXX: name them).
17
18     crunch-client-header and crunch-server-header should probably
19     go, their only advantage is that their search strings can be
20     controlled through the CGI pages, other than that they only
21     have disadvantages.
22
23     crunch-if-none-match can be replaced with a header filter.
24
25     prevent-compression has a misleading name and could
26     be replaced with a header filter.
27
28 7)  force-text-mode has a stupid name and should probably
29     be renamed to force-filter-mode.
30
31 8)  handle-as-empty-document and handle-as-image should
32     be merged to something like handle-as{something} to
33     prevent them from being activated at the same time.
34
35 10) There's a bug in the CGI editor that turns the
36     first section's "Insert new section below" into
37     a "Insert new section above" button.
38
39 11) CGI templates should use semantically-correct HTML
40     and scale properly.
41
42 12) Add pipelining support.
43
44 13) Use zlib to compress content before sending it to
45     the client. Measure if it makes a difference.
46
47 14) Log and filter POST parameters.
48
49 15) If trusted CGI pages are requested without trusted referrer,
50     set the status code to 403 instead of 200.
51
52 16) Filter SSL encrypted content as well.
53
54     At the beginning we could use a unencrypted connection between
55     client and Privoxy, and use an encrypted connection between
56     Privoxy and the server.
57
58     This should be good enough for most of the content the
59     user would want to filter.
60
61 19) enable-forward-fallback. Syntax? Suggested by K.R.
62
63 21) User Manual delivery doesn't accept multiple slashes. Should it?
64
65 22) Verify action files properly (Including arguments) and
66     act accordingly (should probably intercept all requests
67     with a "Invalid option foo detected" CGI page).
68
69 23) Do the same in case of syntax errors in the configuration file,
70     instead of just exiting or ignoring the problem.
71
72 25) Handle multiple filters with the same name better. Reject them?
73
74 26) Let show-url-info detect clearly invalid URLs.
75
76 27) Make errno logging less thread-unsafe.
77     Verify that it's really an improvement.
78
79 28) Don't take default ports in case of invalid forwarding ports.
80
81 31) If a string action foo is disabled csp->action->string[ACTION_STRING_FOO]
82     doesn't necessarily contain NULL, but may contain the string of an
83     enabled foo action in an overruled section. Is it a bug? Does it matter?
84
85 32) In case of forwarding failures with socks port == 9050,
86     show extra info about Tor (the whole FAQ entry?).
87
88 35) Do less work in the accept_connection() thread.
89     Partly done. Good enough?
90
91 36) Unload unused action files directly, even if they are
92     disabled without replacement.
93
94 38) In the final results, explicitly list disabled multi actions
95     with their parameters. Not as trivial as it sounds.
96
97 39) Verify loadcfg.c jarfile reloading and friends.
98     /* XXX: Does disabling this actually work? */
99
100 40) Fix core dumping in daemon mode.
101
102 41) Change documentation framework to one that works cross-platform.
103     Evaluate WML.
104
105 42) Add DTrace hooks.
106
107 43) Write a tool to check URL patterns against URLs in the log file.
108     This could be included in Privoxy-Regression-Test.
109
110 44) Privoxy-Log-Parser: Consider highlighting "Connection" in:
111     23:13:03.506 283b6100 Header: Replaced: 'Connection: Keep-Alive' with 'Connection: close'
112
113 49) Add FAQ for NTLM proxies. Still necessary?
114
115 50) Investigate possible PCRS template speedup when searching
116     macros with strstr() before compiling pcrs commands.
117     Investigated, needs some restructuring but is probably worth it.
118
119 51) Make user-manual directive more general to allow serving
120     the FAQ and other stuff, too. Consider changing the port
121     for "same origin policy" issues.
122
123 53) Find a more reliable hoster.
124
125 54) Move away from CVS to a more modern revision control system.
126
127 55) Apply for Coverity scans: http://scan.coverity.com/
128
129 56) Apply for the "free online access for qualified open-source
130     software projects" for the Co-Advisor HTTP compliance tests:
131     http://coad.measurement-factory.com/details.html#pricing
132
133 57) Allow piping into external filter programs.
134
135 58) Move more template strings from the code into the actual templates.
136
137 59) Import the German template translation.
138
139 60) Ask the Russian translators for input on how to make their
140     life easier.
141
142 61) Consider (optionally?) skipping the hostname comparison when
143     checking if a connections that goes to a HTTP proxy can be reused.
144     Do all HTTP proxy support that? Is it worth it?
145
146 63) Reject clearly too large requests earlier?
147
148 64) Use proper copyright attribution. "Privoxy Developers"
149     is no legal entity.
150
151 65) Polish Website.
152
153 66) Increase maximum number of action and filter files.
154
155 67) Clean up directory layout. Depends on 54 so we don't
156     lose the revision history.
157
158 68) Use standard make syntax so we don't depend on GNU make.
159
160 69) Update autoconf setup (or move away from it).
161
162 70) If the server connection is reset but the headers are
163     received, consider passing the mess to the client instead
164     of showing the connect-failed template. Relates to #2698674.
165
166 71) Allow to listen on multiple addresses without having to
167     bind to all.
168
169 72) Use less ugly Privoxy (fav)icons.