Actionsfile feedback item #2974204 2010-03-21
[privoxy.git] / TODO
1 $Id: TODO,v 1.16 2010/02/09 16:20:42 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 generic 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. Involves finding out what our
124     requirements are and which SF alternatives fulfil them.
125     It would probably also make sense to look into what other
126     projects did when migrating away from SF.
127
128 54) Move away from CVS to a more modern revision control system.
129     Find out if there are any objection against going with Git.
130     Using Git would also have the advantage that SF now pretents
131     to support it, so we could do it independently from 53).
132
133 55) Apply for Coverity scans: http://scan.coverity.com/
134
135 56) Apply for the "free online access for qualified open-source
136     software projects" for the Co-Advisor HTTP compliance tests:
137     http://coad.measurement-factory.com/details.html#pricing
138
139 57) Allow piping into external programs to allow more powerful
140     filters and policy decisions.
141
142 58) Move more template strings from the code into the actual templates.
143
144 59) Import the German template translation.
145
146 60) Ask the Russian translators for input on how to make their
147     life easier.
148
149 61) Consider (optionally?) skipping the hostname comparison when
150     checking if a connections that goes to a HTTP proxy can be reused.
151     Do all HTTP proxy support that? Is it worth it?
152
153 63) Reject clearly too large requests earlier?
154
155 64) Use proper copyright attribution. "Privoxy Developers"
156     is no legal entity.
157
158 65) Polish Website. Probably involves ditching the Docbook
159     mess in favour of wml. There should be already some threads
160     in the mailinglists archives about this.
161
162 66) Increase maximum number of action and filter files.
163
164 67) Clean up directory layout. Depends on 54 so we don't
165     lose the revision history.
166
167 68) Use standard make syntax so we don't depend on GNU make.
168
169 69) Update autoconf setup (or move away from it).
170
171 70) If the server connection is reset but the headers are
172     received, consider passing the mess to the client instead
173     of showing the connect-failed template. Relates to #2698674.
174
175 71) Allow to listen on multiple addresses without having to
176     bind to all.
177
178 74) Let Privoxy-Regression-Test optionally check that action
179     sections which disable actions actually are preceded by
180     sections that enable said actions.
181
182 75) Create a tool that creates Privoxy action (and filter?) files
183     out of adblock files. Could be implemented as option for
184     url-pattern-translator.pl.
185
186 76) Cache DNS responses. Note that this has been requested
187     several times by users, but is not a developer priority.
188     If you care about this, feel free to submit patches.
189
190 77) Allow to configure the IP address used in outgoing connections.