]> granicus.if.org Git - apache/blob - ROADMAP
Fixed calculation of bucket lengths
[apache] / ROADMAP
1 APACHE 2.1+ ROADMAP:
2
3 Last modified at [$Date: 2001/12/07 15:53:19 $]
4
5 DEFERRRED FOR APACHE 2.1
6
7     * Source code should follow style guidelines.
8       OK, we all agree pretty code is good.  Probably best to clean this
9       up by hand immediately upon branching a 2.1 tree.
10       Status: Justin volunteers to hand-edit the entire source tree ;)
11
12       Justin says:
13         Recall when the release plan for 2.0 was written:
14             Absolute Enforcement of an "Apache Style" for code.
15         Watch this slip into 3.0.
16
17     * revamp the input filter syntax to provide for ordering of
18       filters created with the Set{Input|Output}Filter and the
19       Add{Input|Output}Filter directives.  A 'relative to filterx' 
20       syntax is definately preferable, but not realistic for 2.0.
21
22     * Platforms that do not support fork (primarily Win32 and AS/400)
23       Architect start-up code that avoids initializing all the modules 
24       in the parent process on platforms that do not support fork.
25       Better yet - not only inform the startup of which phase it's in,
26       but allow the parent 'process' to initialize shared memory, etc,
27       and create a module-by-module stream to pass to the child, so the
28       parent can actually arbitrate the important stuff.
29
30     * Replace stat [deferred open] with open/fstat in directory_walk.
31       Justin, Ian, OtherBill all interested in this.  Implies setting up
32       the apr_file_t member in request_rec, and having all modules use
33       that file, and allow the cleanup to close it [if it isn't a shared,
34       cached file handle.]
35
36     * Refactor auth into auth protocols and auth database stores.
37       Many interested hackers, too destabilizing for 2.0 inclusion.
38
39 DEFERRRED FOR APACHE 3.0
40
41     * The Async Apache Server implemented in terms of APR.
42       [Bill Stoddard's pet project.]
43       Message-ID: <008301c17d42$9b446970$01000100@sashimi> (dev@apr)
44
45     * Add a string "class" that combines a char* with a length
46       and a reference count.  This will help reduce the number
47       of strlen and strdup operations during request processing.