]> granicus.if.org Git - apache/blob - CHANGES
Update CHANGES to reflect the mod_dav change.
[apache] / CHANGES
1 Changes with Apache 2.0.36
2
3   *) fix ProxyPass when frontend is https and backend is http
4      [Doug MacEachern]
5
6   *) Add DASL support to mod_dav
7      [Sung Kim <hunkim@cse.ucsc.edu>]
8
9 Changes with Apache 2.0.35
10
11   *) mod_rewrite: updated to use the new APR global mutex type.
12      [Aaron Bannert]
13
14   *) Fixes for mod_include errors on boundary conditions in which
15      "<!--#" occurs at the very end of a bucket
16      [Paul Reder, Brian Pane]
17
18   *) worker, prefork, perchild, beos MPMs: Add -DFOREGROUND switch to 
19      cause the Apache parent process to run in the foreground (similar to
20      -DNO_DETACH except that it doesn't switch session ids).  
21      [Jeff Trawick]
22
23   *) Added support for Posix semaphore mutex locking (AcceptMutex posixsem)
24      for those platforms that support it. If using the default
25      implementation, this is between pthread and sysvsem in priority.
26      This implies it's the new default for Darwin. [Jim Jagielski]
27
28   *) AIX: Fix the syntax for setting the LDR_CNTRL and AIXTHREAD_SCOPE
29      environment variables in the envvars file.  [Jeff Trawick]
30
31   *) worker MPM: Don't create a listener thread until we have a worker
32      thread.  Otherwise, in situations where we'll have to wait a while
33      to take over scoreboard slots from a previous generation, we'll be
34      accepting connections we can't process yet.  [Jeff Trawick]
35
36   *) Allow worker MPM to build on systems without pthread_kill().
37      [Pier Fumagalli, Jeff Trawick]
38
39   *) Prevent ap_add_output_filters_by_type from being called in
40      ap_set_content_type if the content-type hasn't changed.
41      [Justin Erenkrantz]
42
43   *) Performance: implemented the bucket allocator made possible by the
44      API change in 2.0.34.  [Cliff Woolley]
45
46   *) Don't allow initialization to succeed if we can't get a socket
47      corresponding to one of the Listen statements.  [Jeff Trawick]
48
49 Changes with Apache 2.0.34
50
51   *) Allow all Perchild directives to accept either numerical UID/GID
52      or logical user/group names.  [Scott Lamb <slamb@slamb.org>]
53
54   *) Make Perchild compile cleanly and serve pages again. [Ryan Bloom]
55
56   *) implement ssl proxy to support ProxyPass / https:// and the
57      SSLProxy* directives [Doug MacEachern]
58
59   *) Update mod_cgid to not do single-byte socket reads for CGI headers
60      [Brian Pane]
61
62   *) Made AB's use of the Host: header rfc2616 compliant
63      by Taisuke Yamada <tai@iij.ad.jp> [Dirk-Willem van Gulik].
64
65   *) The old, legacy (and unused) code in which the scoreboard was totally
66      and completely contained in a file (SCOREBOARD_FILE) has been
67      removed. This does not affect scoreboards which are *mapped* to
68      files using named-shared-memory. [Jim Jagielski]
69
70   *) Change bucket brigades API to allow a "bucket allocator" to be
71      passed in at certain points.  This allows us to implement freelists
72      so that we can stop using malloc/free so frequently.
73      [Cliff Woolley, Brian Pane]
74
75   *) Add support for macro expansion within the variable names in
76      <!--#echo--> and <!--#set--> directives [Brian Pane]
77
78   *) Fix some mod_include segfaults [Cliff Woolley, Brian Pane, Brad Nicholes]
79
80   *) Update the Redhat Layout to match Redhat version 7. PR BZ-7422
81      [Joe Orton] 
82
83   *) add compat layer to support RSA SSLC 1.x and 2.x in mod_ssl
84      [Jon Travis, John Barbee, William Rowe, Ryan Bloom, Doug MacEachern]
85
86   *) Add a new parameter to the quick_handler hook to instruct
87      quick handlers to optionally do a lookup rather than actually 
88      serve content. This is the first of several changes required fix
89      several problems with how quick handlers work with subrequests.
90      [Bill Stoddard]
91
92   *) worker MPM: Get MaxRequestsPerChild to work again.  [Jeff Trawick]
93
94   *) [APR-related] The ordering of the default accept mutex method has
95      been changed to better match what's done in Apache 1.3. The ordering 
96      is now (highest to lowest): pthread -> sysvsem -> fcntl -> flock.
97      [Jim Jagielski]
98
99   *) Ensure that the build/ directory is created when using VPATH.
100      [Justin Erenkrantz]
101
102   *) Add some popular types to the mime magic file.  PR 7730.
103      [Linus Walleij <triad@df.lth.se>, Justin Erenkrantz]
104
105   *) Remove the single-byte socket reads for CGI headers [Brian Pane]
106
107   *) When a proxied site was being served, Apache was replacing
108      the original site Server header with it's own, which is not
109      allowed by RFC2616. Fixed. [Graham Leggett]
110
111   *) Fix a mod_cgid problem that left daemon processes stranded
112      in some server restart scenarios.  [Jeff Trawick]
113
114   *) Added exp_foo and rel_foo variables to config_vars.mk for
115      all Apache and Autoconf path variables (like --sysconfdir,
116      --sbindir, etc). exp_foo is the "expanded" version, which means
117      that all internal variable references have been interpolated.
118      rel_foo is the same as $exp_foo, only relative to $prefix if they
119      share a common path.  [Aaron Bannert]
120
121   *) Fix some restart/terminate problems in the worker MPM.  Don't
122      drop connections during graceful restart.  [Jeff Trawick]
123
124   *) Change the header merging behaviour in proxy, as some headers
125      (like Set-Cookie) cannot be unmerged due to stray commas in
126      dates. [Graham Leggett]
127
128   *) Be more vocal about what AcceptMutex values we allow, to make
129      us closer to how 1.3 does it. [Jim Jagielski]
130
131   *) Get nph- CGI scripts working again.  PRs 8902, 8907, 9983
132      [Jeff Trawick]
133
134   *) Upgraded PCRE library to latest version 3.9 [Brian Pane]
135
136   *) Add accessor function to set r->content_type. From now on,
137      ap_rset_content_type() should be used to set r->content_type.
138      This change is required to properly implement the 
139      AddOutputFilterByType configuration directive.
140      [Bill Stoddard, Sander Striker, Ryan Bloom]
141
142   *) Add new M_FOO symbols for the WebDAV/DeltaV methods specified by
143      RFC 3253. Improved the method name/number mapping functions.
144      [Greg Stein]
145
146   *) remove sock_enable_linger from connection.c [Ian Holsman]
147
148   *) Fix for virtual host processing where the requested hostname
149      has a '.' at the end (PR 9187) [Ryan Cruse <ryan@estara.com>]
150
151   *) mod_dav's APIs for REPORT response handling was changed so that
152      providers can generate the content directly into the output filter
153      stack, rather than buffering the response into memory. [Greg Stein]
154
155   *) Fix a hang condition with graceful restart and prefork MPM
156      in the situation where MaxClients is very high but
157      much fewer servers are actually started at the time of the
158      restart.  [Jeff Trawick]
159
160   *) Small performance fixes for mod_include [Brian Pane]
161
162   *) Performance improvement for the error logger [Brian Pane]
163
164   *) Change configure so that Solaris 8 and above have 
165      SINGLE_LISTEN_UNSERIALIZED_ACCEPT defined by default.
166      according to sun people solaris 8+ doesn't have a thundering
167      herd problem [Ian Holsman]
168
169   *) Allow URIs specifying CGI scripts to include '/' at the end
170      (e.g., /cgi-bin/printenv/) on AIX and Solaris (and other OSs
171      which ignore '/' at the end of the names of non-directories).
172      PR 10138  [Jeff Trawick]
173
174   *) implement SSLSessionCache shmht and shmcb based on apr_rmm and
175      apr_shm.  [Madhusudan Mathihalli <madhusudan_mathihalli@hp.com>]
176
177   *) Fix apxs -g handling.  Move config_vars.mk from the top build
178      directory to the build directory.  PR 10163  [Jeff Trawick]
179
180   *) Fix some mod_include problems which broke evaluation of some
181      expressions.  PR 10108  [Jeff Trawick]
182
183   *) Fix the calculation of request time in mod_status.  [Stas Bekman]
184
185   *) Fix the calculation of thread_num in the worker score structure.
186      [Stas Bekman]
187
188   *) Use apr_atomic operations in managing the mod_mem_cache
189      cache_objects for SMP scalability. (see USE_ATOMICS
190      preprocessor directive in mod_file_cache)
191      [Bill Stoddard]
192
193   *) Add filehandle caching to mod_mem_cache. (see CACHE_FD
194      preprocessor directive in mod_file_cache)
195      [Bill Stoddard]
196
197   *) Implement prototype mod_disk_cache for use with mod_cache.
198      [Bill Stoddard]
199
200   *) Add a missing manualdir entry in the Debian config.layout.
201      [Thom May <thom@planetarytramp.net>]
202
203   *) Stop installing libtool for APR and tell APR where it should place
204      its copy of libtool (via our installbuildpath layout variable).
205      [Justin Erenkrantz]
206
207   *) New directive ProxyIOBufferSize. Sets the size of the buffer used
208      when reading from a remote HTTP server in proxy. [Graham Leggett]
209
210   *) Modify receive/send loop in proxy_http and proxy_ftp so that
211      should it be necessary, the remote server socket is closed before
212      transmitting the last buffer (set by ProxyIOBufferSize) to the
213      client. This prevents the backend server from being forced to hang
214      around while the last few bytes are transmitted to a slow client.
215      Fix the case where no error checking was performed on the final
216      brigade in the loop. [Graham Leggett]
217
218   *) Scrap CacheMaxExpireMin and CacheDefaultExpireMin. Change
219      CacheMaxExpire and CacheDefaultExpire to use seconds rather than
220      hours. [Graham Leggett, Bill Stoddard]
221
222   *) New Directive SSIUndefinedEcho. to change the '(none)' echoed
223      for a undefined variable. [Ian Holsman]
224
225   *) Proxy HTTP and CONNECT: Keep trying other addresses from the DNS
226      when we can't get a socket in the specified address family.  We may
227      have gotten back an IPv6 address first and yet our system is not
228      configured to allow IPv6 sockets.  [Jeff Trawick]
229
230   *) Be more careful about recursively removing CVS directories. Make
231      sure that we aren't cd'ing to their home directory first. PR: 9993
232      [Aaron Bannert, James LewisMoss <dres@lewismoss.net>]
233
234   *) Add a missing errordir entry in the Debian config.layout. PR: 10067
235      [Dirk-Jan Faber <dirk-jan@selwerd.nl>, Aaron Bannert,
236       Thom May <thom@planetarytramp.net>]
237
238   *) Rename the filter ordering priorities.  The recent filtering fixes
239      have showcased problems with their usage.  Therefore, we need to
240      rename them to increase the clarity.  (CONTENT->RESOURCE,
241      HTTP_HEADER->CONTENT_SET/PROTOCOL)  [Justin Erenkrantz]
242
243 Changes with Apache 2.0.33
244
245   *) Fix a problem in the new --enable-layout functionality where
246      it wouldn't allow overrides from variables like --prefix,
247      --bindir, etc.  [Thom May <thom@planetarytramp.net>]
248
249   *) Fix a bug in the core input filter for AP_MODE_EXHAUSTIVE. It
250      no longer hangs around waiting for the socket to close before
251      returning exhaustive data.  [Aaron Bannert]
252
253   *) rename apr_exploded_time_t to apr_time_exp_t (as per renames pending)
254      [Thom May <thom@planetarytramp.net>]
255
256   *) Change mod_ssl to always do a full startup/teardown on restarts.
257      this allows mod_ssl to be added to a server that is already
258      running and makes it possible to add/change certs/keys after the
259      server has been started.  [Doug MacEachern]
260
261   *) Introduce PassPhraseDialog "|/path/to/pipe" mechanism to mod_ssl.
262      This pipe must be a bidirectional 'console' style relay, which
263      mod_ssl prints all prompts to the pipe's stdin, and reads the
264      passphrases from the pipe's stdout.  [William Rowe]
265
266   *) Fix bug where --sysconfdir and --localstatedir were being
267      ignored.  [Thom May <thom@planetarytramp.net>, Aaron Bannert]
268      PR 9888
269
270   *) Fix --enable-layout to work again. Caution: When specifying
271      --enable-layout, common arguments like --prefix, --exec-prefix,
272      etc. will be ignored and the settings from the layout will be
273      used instead.  [Thom May <thom@planetarytramp.net>, Aaron Bannert]
274      PR 9124, 9873, 9885
275
276   *) New Directive for mod_proxy: ProxyRemoteMatch. This provides
277      regex pattern matching for the determination of which requests
278      to use the remote proxy for. [Jim Jagielski]
279
280   *) Fix CustomLog bytes-sent with HTTP 0.9.  [Justin Erenkrantz]
281
282   *) Prevent Apache from ignoring SIGHUP due to some lingering 1.3
283      cruft in piped logs and rewritemap child processes.
284      [William Rowe]
285
286   *) All instances of apr_lock_t have been removed and converted
287      to one of the following new lock APIs: apr_thread_mutex.h,
288      apr_proc_mutex.h, or apr_global_mutex.h. No new code should
289      use the apr_lock.h API, as the old API will soon be deprecated.
290      [Aaron Bannert]
291
292   *) Merged in changes to mod_ssl up through 2.8.7-1.3.23.
293      [Ralf S. Engelschall, Cliff Woolley]
294
295   *) mod-include: make it handle flush'es and fix the 'false-alarm'
296      [Justin Erenkrantz, Brian Pane, Ian Holsman]
297
298   *) ap_get_*_filter_handle() functions to allow 3rd party modules
299      to lookup filter handles so they can bypass the filter name
300      lookup when adding filters to a request (via ap_add_*_filter_handle())
301      [Ryan Morgan <rmorgan@covalent.net>]
302
303   *) Fix for multiple file buckets on Win32, where the first file
304      bucket would cause the immediate closure of the socket on any
305      non-keepalive requests.  [Ryan Morgan <rmorgan@covalent.net>]
306
307   *) Correct Win32 failure of mmap of a segment beyond start of the
308      file; fixes large SSL and similar transfers.  [William Rowe]
309      PR 9898
310
311   *) Implement apr_proc_detach changes and allow -DNO_DETACH in the
312      multi-process mode to not "daemonize" while detaching from the
313      controlling terminal. This is necessary for Apache to work with
314      process-management tools like AIX's "System Resource Controller"
315      as well as Dan Bernstein's "daemontools".
316      [Jos Backus <josb@cncdsl.com>, Aaron Bannert]
317
318   *) Convert mod_auth_digest to use the new apr_global_mutex_t
319      type.  [Aaron Bannert]
320
321   *) fix bug in mod-include where it wouldn't send a unmatched
322      part if it was at the end of a bucket [Ian Holsman]
323
324   *) worker MPM: Improve logging of errors with the interface between
325      the listener thread and worker threads.  [Jeff Trawick]
326
327   *) Some browsers ignore cookies that have been merged into a
328      single Set-Cookie header. Set-Cookie and Set-Cookie2 headers
329      are now unmerged in the http proxy before being sent to the
330      client. [Graham Leggett]
331
332   *) Fix a problem with proxy where each entry of a duplicated
333      header such as Set-Cookie would overwrite and obliterate the
334      previous value of the header, resulting in multiple header
335      values (like cookies) going missing.
336      [Graham Leggett, Joshua Slive]
337
338   *) Add the server-limit and thread-limit values to the scoreboard
339      for the sake of third-party applications.
340      [Adam Sussman <myddryn@vishnu.vidya.com>]
341
342   *) Fix segfault when proxy recieves an invalid HTTP response [Ian Holsman]
343
344   *) OS/390: Get make install to properly copy DSO modules.
345      [Jeff Trawick]
346
347   *) Win32: Fix bug in mod_status with displaying "Restart Time"
348      and "Server uptime".
349      [Bill Stoddard]
350
351   *) Fix IPv6 name-based virtual hosts.  [Jeff Trawick]
352
353   *) Introduce AddOutputFilterByType directive.  [Justin Erenkrantz]
354
355   *) Fix DEBUG_CGI support in mod_cgi.  PR 9670, 9671.
356      [David MacKenzie <djm@pix.net>]
357
358   *) Fix incorrect check for script_in in mod_cgi.  PR 9669.
359      [David MacKenzie <djm@pix.net>]
360
361   *) Fix segfault and display error when SSLMutex file can not be
362      created.  [Adam Sussman <myddryn@vishnu.vidya.com>]
363
364   *) Add reference counting to mod_mem_cache cache objects to
365      better manage removing objects from the cache.
366      [Bill Stoddard]
367
368   *) Change the verbage on the ScoreBoardFile in our default configs.
369      Also change the default to be commented out (unspecified) so we
370      get anonymous shared memory by default.  [Aaron Bannert]
371
372   *) Implement new ScoreBoardFile directive logic. This affects how
373      we create the scoreboard's shared memory segment. If the directive
374      is present, a name-based segment is created. If the directive is
375      not present, first an anonymous segment is created, and if that
376      fails, a name-based segment is created from a file of the name
377      DEFAULT_SCOREBOARD. This gives third-party applications the
378      ability to access our scoreboard.  [Aaron Bannert]
379
380   *) Allow mod_deflate to work with non-GET requests and properly send
381      Content-Lengths.  [Sander Striker <striker@apache.org>]
382
383   *) Fix ap_directory_merge() to correctly merge configs when there is
384      no <Directory /> block.  [Justin Erenkrantz, William Rowe]
385
386   *) Remove spurious debug messsages that are normal under HTTP
387      keep-alive logic.  [Jeff Trawick, Justin Erenkrantz]
388
389   *) Fix a bug in mod_cgid that would prevent proper shutdown death
390      of the cgid process.  [Aaron Bannert]
391
392   *) Add signal handling back in to the worker MPM for the one_process
393      (-X, -DDEBUG, -DONE_PROCESS) case.  [Aaron Bannert]
394
395   *) Performance: Reuse per-connection transaction pools in the
396      worker MPM, rather than destroying and recreating them.  [Brian Pane]
397
398   *) Remove all signals from the worker MPM's child process.  Instead,
399      the parent uses the Pipe of Death for all communication with the
400      child processes.  [Ryan Bloom]
401
402 Changes with Apache 2.0.32
403
404   *) mod_negotiation: ForceLanguagePriority now uses 'Prefer' as the
405      default if the directive is not specified.  This mirrors older
406      behavior without changes to the httpd.conf.  [William Rowe]
407
408   *) Win32: solve the win32 service problems in 2.0.31-alpha, by fixing
409      the service, mpm and logging code, and bugs in apr_file_open_stderr 
410      and apr_file_dup2 functions.  Win2K/XP services have no handles 
411      associated for stdin/out/err, which caused unpredictable behavior
412      in the prior release.  [William Rowe, Bill Stoddard]
413
414   *) Win32: simplify the Application Event Log messages, since there isn't
415      likely to be 'more information in the error log' before an error log
416      has been opened.  [William Rowe]
417
418   *) Win32: substantial cleanup to the mpm_winnt code for legibility and
419      to follow the program flow of other MPMs.  [Ryan Bloom, William Rowe]
420
421   *) Win32: apache -k shutdown now behaves like apache -k stop.
422      [Bill Stoddard]
423
424   *) Fix prefork to not kill the parent if a child hits a resource shortage
425      on accept().  [Greg Ames]
426
427   *) Fix seg faults that occur when what should be the httpd request line
428      starts with \r\n followed by garbage.  [Greg Ames]
429
430   *) Allow statically linked support binaries with the new
431      --enable-static-support flag, and enable this behavior in
432      the binbuild script. Also add a new --enable-static-htdbm
433      flag.  [Aaron Bannert]
434
435   *) Allow mod_autoindex to serve symlinks if permitted and attempt to
436      do only one stat() call when generating the directory listings.
437      [Justin Erenkrantz]
438
439   *) Fix resolve_symlink to save the original symlink name if known.
440      [Justin Erenkrantz]
441
442   *) Be a bit more sane with regard to CanonicalNames.  If the user has
443      specified they want to use the CanonicalName, but they have not
444      configured a port with the ServerName, then use the same port that 
445      the original request used. [Ryan Bloom and Ken Coar]
446
447   *) In core_input_filter, check for an empty brigade after 
448      APR_BRIGADE_NORMALIZE().  Otherwise, we can get segfaults if a
449      client says it will post some data but we get FIN before any
450      data arrives.  [Jeff Trawick]
451
452   *) Not being able to bind to the socket is a fatal error.  We should
453      print an error to the console, and return a non-zero status code.
454      With these changes, all of the Unix MPMs do that correctly.
455      [Ryan Bloom]
456
457   *) suexec: Allow HTTPS and SSL_* environment variables to be passed
458      through to CGI scripts. PR 9163
459      [Brian Reid <breid@customlogic.com>, 
460       Zvi Har'El <rl@math.technion.ac.il>]
461
462   *) binbuild.sh: Make sure that we use the expat from our source
463      tree so that there aren't any surprises on the target machine.
464      [Jeff Trawick]
465
466   *) mod_cgid: Add retry logic for when the daemon can't fork fast
467      enough to keep up with new requests.  Start using 
468      HTTP_SERVER_UNAVAILABLE instead of HTTP_INTERNAL_SERVER_ERROR
469      when we can't talk to the daemon.  [Jeff Trawick]
470
471   *) apxs: LTFLAGS envvar can override default libtool options.  Try
472      "LTFLAGS=' ' apxs -c mod_foo.c" to see what libtool does under
473      the covers.  [Jeff Trawick]
474
475   *) The Location: response header field, used for external
476      redirect, *must* be an absoluteURI.  The Redirect directive
477      tested for that, but RedirectMatch didn't -- it would allow
478      almost anything through.  Now it will try to turn an abs_path
479      into an absoluteURI, but it will correctly varf like Redirect
480      if the final redirection target isn't an absoluteURI.  [Ken Coar]
481
482 Changes with Apache 2.0.31
483
484   *) Create the scoreboard (in the parent) in a global pool context,
485      so it survives graceful restarts. This fixes a SEGV during
486      graceful restarts.  [Aaron Bannert]
487
488   *) Add a timeout option to the proxy code 'ProxyTimeout' 
489      [Ian Holsman]
490
491   *) FTP directory listings are now always retrieved in ASCII mode.
492      The FTP proxy properly escapes URI's and HTML in the generated
493      listing, and escapes the path components when talking to the FTP
494      server. It is now possible to browse the root directory by using
495      a url like:   ftp://user@host/%2f/ (ported from apache_1.3.24)
496      Also, the last path component may contain wildcard characters
497      '*' and '?', and if they do, a directory listing is created instead
498      of a file retrieval. Example: ftp://user@host/httpd/server/*.c
499      [Martin Kraemer]
500
501   *) Added single-listener unserialized accept support to the
502      worker MPM [Brian Pane]
503
504   *) New Directive for mod_proxy: 'ProxyPreserveHost'. This passes
505      the incoming host header through to the proxied server
506      [Geoff <g.russell@ieee.org>]
507
508   *) New Directive Option for ProxyPass. It now can block a location
509      from being proxied [Jukka Pihl <jukka.pihl@entirem.com>]
510
511   *) Don't let the default handler try to serve a raw directory.  At
512      best you get gibberish.  Much worse things can happen depending
513      on the OS.  [Jeff Trawick]
514      
515   *) Change the pre_config hook to return a value. Modules can now emit
516      an error message and then cause the server to quit gracefully during
517      startup. This required a bump to the MMN.  [Aaron Bannert]
518
519   *) Fix some unix socket descriptor leaks in the handler side of
520      mod_cgid (the part that runs in the server process).  Whack a
521      silly "close(-1)" in the handler too.  [Jeff Trawick]
522
523   *) Change the pre_mpm hook to return a value, so that scoreboard
524      init errors percolate up to code that knows how to exit 
525      cleanly.  This required a bump to the MMN.  [Jeff Trawick]
526
527   *) Add the socket back to the conn_rec and remove the create_connection
528      hook. The create_connection hook had a design flaw that did not 
529      allow creating connections based on vhost info. [Bill Stoddard]
530
531   *) Fixed PATH_INFO and QUERY_STRING from mod_negotiation results.
532      Resolves the common case of using negotation to resolve the request
533      /script/foo for /script.cgi/foo.  [William Rowe]
534
535   *) Added new functions ap_add_(input|output)_filter_handle to
536      allow modules to bypass the usual filter name lookup when
537      adding hard-coded filters to a request [Brian Pane]
538
539   *) caching should now work on subrequests (still very experimental)
540      [Ian Holsman]
541   
542   *) The Win32 mpm_winnt now has a shared scoreboard.  [William Rowe]
543
544   *) Change ap_get_brigade prototype to use apr_off_t instead of apr_off_t*.
545      [Justin Erenkrantz]
546
547   *) Refactor ap_rgetline so that it does not use an internal brigade.
548      Change ap_rgetline's prototype to return errors.  [Justin Erenkrantz]
549
550   *) Remove mod_auth_db.  [Justin Erenkrantz]
551
552   *) Do not install unnecessary pcre headers like config.h and internal.h.
553      [Joe Orton <joe@manyfish.co.uk>]
554
555   *) Change in quick_hanlder behavior for subrequests. it now passes DONE
556      (as it does for a normal request). quick_handled sub-requests now work
557      in mod-include [Ian Holsman]
558
559   *) Change SUBREQ_CORE so that it is a 'HTTP_HEADER' filter instead of
560      'CONTENT' one, as it needs to run AFTER all content headers
561
562   *) Rename BeOS MPM directive RequestsPerThread to MaxRequestsPerThread.
563      [Lars Eilebrecht]
564
565   *) Split out blocking from the mode in the input filters.
566      [Justin Erenkrantz]
567
568   *) Fix a segfault in mod_include.  [Justin Erenkrantz, Jeff Trawick]
569
570   *) Cause Win32 to capture all child-worker process errors in
571      Apache to the main server error log, until the child can
572      open its own error logs.  [William Rowe]
573
574   *) HPUX 11.*: Do not kill the child process when accept() 
575      returns ENOBUFS on HPUX 11.*. (ported from a 1.3 patch
576      by [madhusudan_mathihalli@hp.com])
577      [Bill Stoddard]
578
579   *) Fix a problem in the parsing of the <Proxy foo> directive.
580      [Jeff Trawick]
581
582   *) rewrite of mod_ssl input filter for better performance and less
583      memory usage [Doug MacEachern]
584
585   *) allow quick_handler to be run on subrequests. [Ian Holsman]
586
587   *) mod_dav now asks its provider to place content directly into the
588      filter stack when handling a GET request. The mod_dav/provider
589      API has changed, so providers need to be updated. [Greg Stein]
590
591   *) Clear the output socket descriptor in unixd_accept() to make sure
592      we don't supply a bogus socket to the caller if the accept fails.
593      This caused problems with the worker MPM, which tried to process
594      the returned socket if it was non-NULL.  [Brian Pane]
595
596   *) Move a check for an empty brigade to the start of core input filter
597      to avoid segfaults.  [Justin Erenkrantz, Jeff Trawick]
598
599   *) Add FileETag directive to allow configurable control of what
600      data are used to form ETag values for file-based URIs.  MMN
601      bumped to 20020111 because of fields added to the end of
602      the core_dir_config structure.  [Ken Coar]
603
604   *) Fix a segfault in mod_rewrite's logging code caused by passing the
605      wrong config to ap_get_remote_host().  [Jeff Trawick]
606
607   *) Allow mod_cgid to work from a binary distribution install by
608      using 755 for the permissions on the log directory instead of
609      750.  [Jeff Trawick]
610
611   *) Fixed a segfault that happened during graceful shutdown (or when
612      the httpd ran out of file descriptors) with the worker MPM [Brian Pane]
613
614   *) Split all Win32 modules [excluding the core components mod_core, 
615      mod_so, mod_win32 and the winnt mpm] into individual loadable
616      modules, so the administrator may individually disable the former
617      compiled-in modules by simply commenting out their LoadModule
618      directives.  [William Rowe]
619
620   *) Saved Win32 module authors and porters many future headaches, by
621      duplicating the appropriate .h files such as os.h into the include
622      directory, including in the build tree.  [William Rowe]
623
624   *) mod_ssl adjustments to help with using toolkits other than OpenSSL:
625       Use SSL functions/macros instead of directly dereferencing SSL
626       structures wherever possible.
627       Add type-casts for the cases where functions return a generic pointer.
628       Add $SSL/include to configure search path.
629      [Madhusudan Mathihalli <madhusudan_mathihalli@hp.com>]
630
631   *) Moved several pointers out of the shared Scoreboard so it is
632      more portable, and will present the vhost name across server
633      generation restarts.  [William Rowe]
634
635   *) Fix SSLPassPhraseDialog exec: and SSLRandomSeed exec:
636      [Doug MacEachern]
637
638 Changes with Apache 2.0.30
639
640   *) Fix the main bug for FreeBSD and threaded MPM's. There are
641      still issues (see STATUS) but at least the server will now
642      run without crashing the machine.
643      [David Reid, Aaron Bannert, Justin Erenkrantz]
644
645   *) Fix a typo in mod_deflate's m4 config section.
646      [albert chin (china@thewrittenword.com)]
647
648   *) Fix a couple of mod_proxy problems forwarding HTTP connections
649      and handling CONNECT:
650      (1) PR #9190  Proxy failed to connect to IPv6 hosts.
651      (2) Proxy failed to connect when the first IP address returned by 
652          the resolver was unreachable but a secondary IP address was.  
653      [Jeff Trawick]
654
655   *) Fix the module identifer as shown in the docs for various core
656      modules (e.g., the identifer for mod_log_config was previously
657      listed as config_log_module).  PR #9338
658      [James Watson <ap2bug@sowega.org>]
659
660   *) Fix LimitRequestBody directive by placing it in the HTTP
661      filter.  [Justin Erenkrantz]
662
663   *) Fix mod_proxy seg fault when the proxied server returns 
664      an HTTP/0.9 response or a bogus status line.
665      [Adam Sussman]
666
667   *) Prevent mod_proxy from truncating one character off the
668      end of the status line returned from the proxied server.
669      [Adam Sussman, Bill Stoddard]
670
671   *) Eliminate loop in ap_proxy_string_read().
672      [Adam Sussman, Bill Stoddard]
673
674   *) Provide $0..$9 results from mod_include regex parsing.
675      [William Rowe]
676
677   *) Allow mod-include to look for alternate start & end tags [Ian Holsman]
678
679   *) Introduced the ForceLanguagePriority directive, to prevent
680      returning MULTIPLE_CHOICES or NONE_ACCEPTABLE in some cases,
681      when using Multiviews.  [William Rowe]
682
683   *) Fix a problem which prevented mod_cgid and suexec from working
684      together reliably [Greg Ames]
685
686   *) Remove the call to exit() from within mod_auth_digest's post_config
687      phase.  [Aaron Bannert]
688
689   *) Fix a problem in mod_auth_digest that could potentially cause
690      problems with initialized static data on a system that uses DSOs.
691      [Aaron Bannert]
692
693   *) Fix a segfault in the worker MPM that could happen during
694      child process exits.  [Brian Pane, Aaron Bannert]
695
696   *) Allow mod_auth_dbm to handle multiple DBM types [Ian Holsman]
697
698   *) Fix matching of vhosts by ip address so we find IPv4
699      vhost address when target address is v4-mapped form of
700      that address.  [Jeff Trawick]
701
702   *) More performance tweaks to the BNDM string-search algorithm
703      used to find "<!--#" tokens in mod_include [Brian Pane]
704
705   *) Miscellaneous small performance fixes: optimized away various
706      string copy operations and removed large temp buffers from
707      the stack [Brian Pane]
708
709   *) Fixed startup segfault that occurred when a VirtualHost
710      directive had a port but no address [Brian Pane]
711
712   *) Allow htdbm to work with multiple DBM types [Ian Holsman]
713
714   *) Win32: Made change to apr_sendfile() to return APR_ENOTIMPL
715      if oslevel < WINNT.  This should fix several problems reported
716      Against 2.0.28 on Windows 98 [Bill Stoddard]
717
718   *) Win32: Fix bug that could cause CGI scripts with QUERY_STRINGS
719      to fail. [Bill Stoddard]
720
721   *) Change core code to allow an MPM to set hard thread/server
722      limits at startup.  prefork, worker, and perchild MPMs now have 
723      directives to set these limits.  [Jeff Trawick]
724
725   *) Win32: The async AcceptEx() event should be autoreset upon
726      successful completion of a wait (WaitForSingleObject). This
727      eliminates a number of spurious
728      setsockopt(SO_UPDATE_ACCEPT_CONTEXT) failed." messages.
729      [Bill Stoddard]
730
731   *) Move any load library path environment variables out of 
732      apachectl and into a separate environment variable file which
733      can be more easily tailored by the admin.  The environment
734      variable file as built by Apache may have additional system-
735      specific settings.  For example, on OS/390 we tailor the heap
736      settings to allow lots of threads.  [Jeff Trawick]
737     
738   *) Use the new APR pool code to reduce pool-related lock
739      contention in the worker MPM.  [Sander Striker]
740
741   *) The POD no longer assumes the child is listening on 127.0.0.1
742      and now pulls the first hostname in the list of listeners to
743      perform the dummy connect on. This fixes a bug when the user
744      had configured the Listen directive for an IP other than
745      127.0.0.1. This would result in undead children and error
746      messages such as "Connection refused: connect to listener".
747      [Aaron Bannert]
748
749   *) The worker MPM now respects the LockFile setting, needed to
750      avoid locking problems with NFS.  [Jeff Trawick]
751
752   *) Fix segfault when worker MPM receives SIGHUP.
753      [Ian Holsman, Aaron Bannert, Justin Erenkrantz]
754
755   *) Fix bug that could potentially prevent the perchild MPM from
756      working with more than one vhost/uid.  [Aaron Bannert]
757
758   *) Change make install and apxs -i processing of DSO modules to 
759      perform special handling on platforms where libtool doesn't install 
760      mod_foo.so.  This fixes some wonkiness on HP-UX, Tru64, and AIX 
761      which prevented standard LoadModule statements from working.
762      [Jeff Trawick]
763
764   *) Whenever mod_so is enabled (not just when there are DSOs for
765      our modules), do whatever special magic is required for compiling/
766      loading third-party modules.  This allows third-party DSOs to
767      be used on an AIX build when there were no built-in modules
768      built as DSOs.  (This should help on OS/390 and BeOS as well.)
769      [Jeff Trawick]
770
771   *) Allow apxs to be used to build DSOs on AIX without requiring the
772      user to hard-code the list of import files.  (This should help
773      on OS/390 and BeOS as well.)  [Jeff Trawick]
774      
775   *) Resolved segfault in mod_isapi when configuring with ISAPICacheFile.
776      PR 8563, 8919  [William Rowe]
777   
778   *) Get binary builds working when libapr and libaprutil are built
779      shared [Greg Ames]
780
781   *) Get shared builds of libapr and libaprutil, as well as Apache DSOs,
782      working on AIX.  [Aaron Bannert, Dick Dunbar <RLDunbar@pacbell.net>,
783      Gary Hook <ghook@us.ibm.com>, Victor Orlikowski, Jeff Trawick]
784
785   *) Fix the handling of SSI directives in which the ">" of the
786      terminating "-->" is the last byte in a file [Brian Pane]
787
788   *) Add back in the "suEXEC mechanism enabled (wrapper: /path/to/suexec)"
789      message that we had back in apache-1.3 and still have scattered
790      throughout our docs.  [Aaron Bannert]
791
792   *) Prevent the Win32 port from continuing after encountering an
793      error in the command line args to apache.  [William Rowe]
794
795   *) On a error in the proxy, make it write a line to the error log
796      [Ian Holsman]
797
798   *) Various mod_ssl performance improvements [Doug MacEachern]
799
800 Changes with Apache 2.0.29
801
802   *) Add buffering in core_output_filter to ensure that long
803      lists of small buckets don't cause small packet writes.
804      [Brian Pane, Ryan Bloom]
805
806   *) Fix the installation target to make sure that the manual is 
807      installed in the correct location.
808      [Yoshifumi Hiramatsu <hiramatu@boreas.dti.ne.jp> and
809       Gomez Henri <hgomez@slib.fr>]
810
811   *) Fix the cmd command for mod_include.  When we are processing
812      a cmd command, we do not want to use the r->filename to set
813      the command name.  The command comes from the SSI tag.  To do this,
814      I added a variable to the function that builds the command line
815      in mod_cgi.  This allows the include_cmd function to specify
816      the command line itself. [Ryan Bloom]
817
818   *) Change open_logs hook to return a value, allowing you
819      to flag a error while opening logs
820      [Ian Holsman, Doug MacEachern]
821
822   *) Change post_config hook to return a value, allowing you
823      to flag a error post config
824      [Ian Holsman, Jeff Trawick]
825
826   *) Allow SUEXEC_BIN (the path to the suexec binary that is
827      hard-coded into the server) to be specified to the configure
828      script by the --with-suexec-bin parameter.  [Aaron Bannert]
829
830   *) Fix segv in worker MPM following accept on pipe-of-death
831      [Brian Pane]
832
833   *) Add mod_deflate to experimental.  
834      [Ian Holsman, Justin Erenkrantz]
835
836   *) Bail out at configure time if an invalid MPM was specified.
837      [jean-frederic clere <jfrederic.clere@fujitsu-siemens.com>]
838
839   *) Prevent segv in ap_note_basic_auth_failure() when no AuthName is
840      configured [John Sterling <sterling@covalent.net>]
841
842   *) Fix apxs to use sbindir.  [Henri Gomez <hgomez@slib.fr>]
843
844   *) Fix a problem with IPv6 vhosts.  PR #8118  [Jeff Trawick]
845
846   *) Optimization for the BNDM string-search function in
847      mod_include.  [Brian Pane]
848
849   *) Fixed the behavior of the XBitHack directive.
850      [Taketo Kabe <kabe@sra-tohoku.co.jp>, Cliff Woolley] PR#8804
851
852   *) The threaded MPM for Unix has been removed.  Use the worker
853      MPM instead.  [various]
854
855   *) APR-ize the resolver logic in mod_unique_id.  This fixes a bug
856      in logging the error from a failed DNS lookup.  [Jeff Trawick]
857
858   *) Added the missing macros AP_INIT_TAKE13 and AP_INIT_TAKE123.
859      [Cliff Woolley]
860
861   *) Get mod_cgid killed when a MPM exits due to a fatal error.
862      [Jeff Trawick]
863
864   *) Fix a file descriptor leak in mod_include.  When we include a
865      file, we use a sub-request, but we didn't destroy the sub-request
866      immediately, instead we waited until the original request was
867      done.  This patch closes the sub-request as soon as the data is
868      done being generated.  [Brian Pane <bpane@pacbell.net>]
869
870   *) Allow modules that add sockets to the ap_listeners list to
871      define the function that should be used to accept on that
872      socket.  Each MPM can define their own function to use for
873      the accept function with the MPM_ACCEPT_FUNC macro.  This
874      also abstracts out all of the Unix accept error handling
875      logic, which has become out of synch across Unix MPMs.
876      [Ryan Bloom]
877
878   *) Fix a bug which would cause the response headers to be omitted
879      when sending a negotiated ErrorDocument because the required
880      filters were attached to the wrong request_rec.
881      [John Sterling <sterling@covalent.net>]
882
883   *) Remove commas from the end of the macros that define
884      directives that are used by MPMs.  Prior to this patch,
885      you would use these macros without commas, which was unlike
886      the macros for any other directives.  Now, the caller provides
887      the comma rather than the macro providing it.  This makes
888      the macros look more like the rest of the directives.
889      [Ryan Bloom and Cliff Woolley]
890
891   *) Add 'redirect-carefully' environment option to disable sending
892      redirects under special circumstances.  This is helpful for 
893      Microsoft's WebFolders when accessing a directory resource via
894      DAV methods.  [Justin Erenkrantz]
895
896   *) Begin to abstract out the underlying transport layer.
897      The first step is to remove the socket from the conn_rec,
898      the server now lives in a context that is passed to the
899      core's input and output filters. This forces us to be very
900      careful when adding calls that use the socket directly,
901      because the socket isn't available in most locations.
902      [Ryan Bloom]
903
904   *) Really reset the MaxClients value in worker and threaded
905      when the configured value is not a multiple of the number 
906      of threads per child.  We said we did previously but we 
907      forgot to. [Jeff Trawick]
908
909   *) Add Debian layout.  [Daniel Stone <daniel@sfarc.net>]
910
911   *) If shared modules are requested and mod_so is not available,
912      produce a fatal config-time error.  [Justin Erenkrantz]
913
914   *) Improve http2env's performance by cutting the work it has to
915      do.  [Brian Pane <bpane@pacbell.net>]
916
917   *) use new 'apr_hash_merge' function in mod_mime (performance fix)
918      [Brian Pane <bpane@pacbell.net>]
919
920 Changes with Apache 2.0.28
921
922   *) Fix infinite loop in mod_cgid.c.  
923      [Dale Ghent <daleg@elemental.org>, Brian Pane <bpane@pacbell.net>]
924
925   *) When no port is given in a "ServerName host" directive, the
926      server_rec->port is now set to zero, not 80. That allows for
927      run-time deduction of the correct server port (depending on
928      SSL/plain, and depending also on the current setting of
929      UseCanonicalName). This change makes redirections
930      work, even with https:// connections. As in Apache-1.3, the
931      connection's actual port number is never used, only the ServerName
932      setting or the client's Host: setting. Documentation updated
933      to reflect the change. [Martin Kraemer]
934
935   *) Add a '%{note-name}e' argument to mod-headers, which works in
936      the same way as mod_log_confg.  [Ian Holsman]
937
938   *) Fix the spelling of the AP_MPMQ_MIN_SPARE_DAEMONS and
939      AP_MPMQ_MAX_REQUESTS_DAEMON macros in ap_mpm.h and all standard
940      MPMs.  [Cliff Woolley]
941
942   *) Introduce htdbm, a user management utility for db/dbm authorization
943      databases.  [Mladen Turk <mturk@mappingsoft.com>]
944
945   *) Optimize usage of strlen and strcat in ap_directory_walk.
946      [Brian Pane <bpane@pacbell.net>]
947
948 Changes with Apache 2.0.27
949
950   *) Introduce an Apache mod_ssl initial configuration template 
951      (ssl.conf, generated from ssl-std.conf).  [Ralf S. Engelschall]
952
953   *) Fixed a memory leak in the getline parsing code that could
954      be triggered by arbitrarily large header lines. Requests
955      from the core input filter for single lines are now limited
956      to HUGE_STRING_LEN (8192 bytes).  [Aaron Bannert]
957
958   *) Fix a truncation bug in how we print the port on the Via: header. 
959      The routine that prints the Via: header now takes a length for
960      the port string.  [Zvi Har'El <rl@math.technion.ac.il>]
961
962   *) Some syntax errors in mod_mime_magic's magic file can result
963      in a 500 error, which previously was unlogged.  Now we log the
964      error.  [Jeff Trawick]
965
966   *) Add the support/checkgid helper app, which checks the run-time
967      validity of group identifiers usable in the Group directive.
968      [Ken Coar]
969
970   *) Various --enable-so options have been fixed: --enable-so is
971      treated as "static"; explicit --enable-so=shared issues an error;
972      and explicit --enable-so fails with error on systems without
973      APR_HAS_DSO.  [Aaron Bannert]
974
975   *) Fix a segfault in the core input filter when the client socket
976      gets disconnected unexpectedly.  [Cliff Woolley]
977
978   *) Fix the reporting for child processes that die.  This removes
979      all of the non-portable W* macros from Apache. 
980      [Jeff Trawick and Ryan Bloom]
981
982   *) Win32: Track and display "Parent Server Generation:" in
983      mod_status output. The generation will be bumped at
984      server graceful restart, when the child process exits
985      by hitting MaxRequestsPerChild or if the child 
986      process exits abnormally. [Bill Stoddard]
987
988   *) Win32: Fix problem where MaxRequestsPerChild directive was
989      not being picked up in favor of the default. Enable
990      the parent to start up a new child process immediately upon
991      the old child starting shutdown.
992      [Bill Stoddard]
993
994   *) Fix some bungling of the remote port in rfc1413.c so that 
995      IdentityCheck retrieves the proper user id instead of failing
996      and thus always returning "nobody."  
997      [Dick Streefland <Dick.Streefland@xs4all.nl>]
998
999   *) Introduced thread saftey for mod_rewrite's internal cache.
1000      [Brian Pane <bpane@pacbell.net>]
1001
1002   *) Simplified mod_env's directives to behave as most directives are
1003      expected, in that UnsetEnv will not unset a SetEnv and PassEnv 
1004      directive following that UnsetEnv within the same container.
1005      Also provides a runtime startup warning if a PassEnv configured 
1006      environment value is undefined.  [William Rowe]
1007
1008   *) The worker MPM is now completely ported to APR's new lock API. It
1009      uses native APR types for thread mutexes, cross-process mutexes,
1010      and condition variables.  [Aaron Bannert]
1011
1012   *) Sync up documentation to remove all references to the now deprecated
1013      Port directive.  [Justin Erenkrantz]
1014
1015   *) Moved all ldap modules from the core to httpd-ldap sub-project
1016      [Ryan Bloom]
1017
1018   *) Exit when we can't listen on any of the configured ports.  This
1019      is the same behavior as 1.3, and it avoids having the MPMs to
1020      deal with bogus ap_listen_rec structures.  [Jeff Trawick]
1021
1022   *) Cleanup the proxy code that creates a request to the origin
1023      server.  This change adds an optional hook, which allows modules
1024      to gain control while the request is created if the proxy module
1025      is loaded.  The purpose of this hook is to allow modules to add
1026      input and/or output filters to the request to the origin.  While
1027      I was at it, I made the core use this hook, so that proxy request
1028      creation uses some of the code from the core.  This can still be
1029      greatly improved, but this is a good start.  [Ryan Bloom]
1030
1031 Changes with Apache 2.0.26
1032
1033   *) Port the MaxClients changes from the worker MPM to the threaded
1034      MPM.  [Ryan Bloom]
1035
1036   *) Fix mod_proxy so that it handles chunked transfer-encoding and works
1037      with the new input filtering system.  [Justin Erenkrantz]
1038
1039   *) Introduce the MultiviewsMatch directive, to allow the operator
1040      to be flexible in recognizing Handlers and Filters filename
1041      extensions as part of the Multiviews matching logic, strict with
1042      MultiviewsMatch NegotiatedOnly to accept only filename extentions 
1043      that designate negotiated parameters, (content type, charset, etc.)
1044      or MultiviewsAll for the 1.3 behavior of matching any files, even
1045      if they have unregistered extensions.  [William Rowe]
1046
1047   *) Fixed the configure script to add a LoadModule directive to
1048      the default httpd.conf for any module that was compiled
1049      as a DSO.  [Aaron Bannert <aaron@clove.org>]
1050
1051   *) rewrite mod_ssl input filtering to work with the new input filtering
1052      system.  [Justin Erenkrantz]
1053
1054   *) prefork: Don't segfault when we are able to listen on some but
1055      not all of the configured ports.  [Jeff Trawick]
1056
1057   *) Build mod_so even if no core modules are built shared.
1058      [Aaron Bannert <aaron@clove.org>]
1059
1060   *) Introduce ap_directory_walk rewrite (with further optimizations
1061      required) to adapt to the ap_process_request_internal() changes.
1062      Optimized so subrequests and redirects now reuse previous section 
1063      merges, until we mismatch with the original directory_walk, and
1064      precomputed r->finfo results will cause directory_walk to skip
1065      the most expensive phases of the function.  [William Rowe]
1066
1067   *) Allow ApacheMonitor to connect to and control Apache on other 
1068      WinNT/2K machines.   [Mladen Turk <mturk@mappingsoft.com>]
1069
1070   *) Remove the Port directive.  In it's place, the Listen directive
1071      is now a required directive, which tells Apache what port to
1072      listen on.  The ServerName directive has also been extended
1073      to accept an optional port.  If the port is specified to the
1074      ServerName, the server will report that port whenever it
1075      reports the port that it is listening on.  This change was
1076      made to ease configuration errors that stem from having a Port
1077      directive, and a Listen directive.  In that situation, the server
1078      would only listen to the port specified by the Listen command,
1079      which caused a lot of confusion to users.  [Ryan Bloom]
1080
1081   *) Added mod_mime_magic, mod_unique_id and mod_vhost_alias to the Win32
1082      build, as loadable modules.  [William Rowe]
1083
1084   *) Fix --enable-mods-shared processing.  If most is specified,
1085      then all modules that can be compiled as shared modules are.
1086      [Aaron Bannert <aaron@clove.org>]
1087
1088   *) Update the mime.types file to map video/vnd.mpegurl to mxu
1089      and add commonly used audio/x-mpegurl for m3u extensions.        
1090      [Heiko Recktenwald <uzs106@uni-bonn.de>, Lars Eilebrecht]
1091
1092   *) Eliminate the depreciated r->content_language, in favor of the array
1093      r->content_languages introduced many years ago.  Module authors must
1094      substantially overhaul their modules, so this needs to be upgraded
1095      if the module still relied on backwards-brokeness.  [William Rowe]
1096
1097   *) Allow configure help strings to work with autoconf 2.50+ and 2.13.
1098      [Justin Erenkrantz]
1099
1100   *) Rewrite the input filtering mechanisms to consolidate and reorganize
1101      code.  In short, core_input_filter does something now and
1102      ap_http_filter is now only concerned with HTTP.  [Justin Erenkrantz]
1103
1104   *) Update the Win32 build to re-absorb mod_proxy and family.
1105      [William Rowe]
1106
1107   *) Resolved the build failure on Win32 using MSVC 5.0 (without the
1108      current SDK.)  [William Rowe]
1109
1110   *) Some style changes to the code that does ProxyErrorOverride. Fixed
1111      config merge behaviour. [Graham Leggett]
1112
1113   *) Allow support programs to be compiled against a static version
1114      of libapr.  This allows the smaller support programs to be 
1115      relocated.  [Aaron Bannert <aaron@clove.org>]
1116
1117   *) Update the mime.types file to the registered media types as
1118      of 2001-09-25, and add mapping for xsl extension [Mark Cox]
1119
1120   *) Fix MaxClients in the Worker MPM, so that it specifies the maximum
1121      number of clients that can connect at the same time, instead of
1122      specifying the maximum number of child processes.
1123      [Aaron Bannert <aaron@clove.org>]
1124
1125   *) Switch proc_pthread AcceptMutex configuration directive to pthread to 
1126      be consistent with 1.3.  [Justin Erenkrantz]
1127
1128   *) Cache apr_explode_localtime() value for 15 seconds.
1129      [Brian Pane <bpane@pacbell.net>]
1130
1131   *) Fix mod_include to not return ETag or Last-Modified headers.
1132      [Ian Holsman <ianh@cnet.com>]
1133
1134   *) Fix worker MPM's scoreboard logic.  [Aaron Bannert <aaron@clove.org>]
1135
1136   *) Eliminate the wasteful run-time conversion of method names from strings 
1137      to numbers in places where the methods are known at compile time.  
1138      [Brian Pane <bpane@pacbell.net>]
1139
1140   *) Turn the worker MPM's queue into a LIFO.  This may
1141      improve cache-hit performance under some conditions.
1142      [Aaron Bannert <aaron@clove.org>]
1143
1144   *) Switch back to SIGUSR1 for graceful restarts on all platforms that
1145      support it.  [Justin Erenkrantz]
1146
1147   *) Cleanup the worker MPM.  We no longer re-use transaction
1148      pools.  This incurs less overhead than shuffling the pools
1149      around so that they can be re-used.  Remove one of the
1150      queue's condition variables.  We just redefined the API to
1151      state that you can't try to add more stuff than you allocated
1152      segments for.  [Aaron Bannert <aaron@clove.org>]
1153
1154   *) Fix SSL VPATH builds [Cody Sherr <csherr@covalent.net>]
1155
1156   *) Fixed persistent connections when a request contains a body.
1157      [Greg Stein]
1158
1159   *) mod_dav uses a new API to speak to the backend provider for dead
1160      property management. [Greg Stein]
1161
1162   *) Remove the Win32 script-processing exception from mod_cgi, and
1163      roll build_command_line/build_argv_list into a unified, overrideable
1164      ap_cgi_build_command optional function.  [William Rowe]
1165
1166   *) Rewrite find_start_sequence to use a better search algorithm
1167      to find the start tag.  [Justin Erenkrantz]
1168
1169   *) Fix a seg fault in mod_include.  When we are generating an
1170      internal redirect, we must set r->uri to "", not a bogus
1171      string, and not NULL.  [Ryan Bloom]
1172
1173   *) Optimized location_walk, so subrequests, redirects and second passes
1174      now reuse previous section merges on a <Location > by <Location >
1175      basis, until we mismatch with the original location_walk. 
1176      [William Rowe]
1177
1178   *) Back out the 1.45 change to util_script.c.  This change made
1179      us set the environment variable REQUEST_URI to the redirected
1180      URI, instead of the originally requested URI.
1181      [Taketo Kabe <kabe@sra-tohoku.co.jp>]
1182
1183   *) Make mod_include do lazy evaluation of potentially expensive to
1184      compute variables.  [Brian Pane <bpane@pacbell.net>]
1185
1186   *) Fix logging of bytes sent for HEAD requests.  %b and %B should
1187      log either - or 0, before this patch, they were both logging
1188      the file size.  [Taketo Kabe <kabe@sra-tohoku.co.jp>]
1189
1190   *) Make mod_include check for BYTE_CHECK_THRESHOLD per bucket rather 
1191      than per character.  [Brian Pane <bpane@pacbell.net>]
1192
1193   *) Normalize the primary request, redirects and sub-requests to
1194      run the same ap_process_request_internal for consistency in
1195      robustness, behavior and security.  [William Rowe]
1196
1197   *) Fix a segfault with mod_include when r->path_info is not set
1198      (which is the case with mod_proxy).  [Ian Holsman <ianh@cnet.com>]
1199
1200   *) Add -X functionality back.  This indicates to all MPMs and any other
1201      part of Apache that it should run in "debug" mode.  [Justin Erenkrantz]
1202
1203   *) Some initial support for the cygwin platform [prefork only].
1204      This is not to be confused with support for the WinNT/Win32
1205      platform, which is the recommended configuration for native
1206      Win32 users.  The cygwin platform support is recommended for
1207      cygwin platform users. [Stipe Tolj <tolj@wapme-systems.de>]
1208
1209   *) Changed syntax of Set{Input|Output}Filter.  The list of filters
1210      must be semicolon delimited (if more than one filter is given.)
1211      The Set{Input|Output}Filter directive now overrides a parent
1212      container's directive (e.g. SetInputFilter in <Directory /web/foo>
1213      will override any SetInputFilter directive in <Directory /web>.)
1214      This new syntax is more consistent with Add{Input|Output}Filter
1215      directives defined in mod_mime.  Also cures a bug in prior releases
1216      where the Set{Input|Output}Filter directive would corrupt the 
1217      global configuration if the multiple directives were nested.
1218      [William Rowe]
1219
1220   *) Cured what's ailed mime for quite some time.  If an AddSomething
1221      was given in the configuration (Language, Charset, Handler or
1222      Encoding) Apache would set the content type as given by AddType, 
1223      but refused to check the mime.types file if AddType wasn't given 
1224      for that specific extension.  Setting the AddHandler for .html 
1225      without setting the AddType text/html html would cause Apache to 
1226      use the default content type.  [William Rowe]
1227
1228   *) Added some bulletproofing to memory allocation in the LDAP cache
1229      code. [Graham Leggett]
1230
1231 Changes with Apache 2.0.25
1232
1233   *) Move the installed /manual directory out of the /htdocs/ tree, so
1234      that it can be kept more independently from the remaining document
1235      root. The "Alias /manual ..." already allowed for easy projection
1236      into existing private document trees. [Martin Kraemer]
1237
1238   *) Add specified user attributes to the environment when using
1239      mod_auth_ldap. This allows you to use mod_include to embed specified
1240      user attributes in a page like so:
1241      Hello <!--#echo var="AUTHENTICATE_CN"-->, how are you?
1242      [Graham Leggett]
1243
1244   *) Fix a performance problem with the worker MPM.  We now create
1245      transaction pools once, and re-use them for each connection.
1246      [Aaron Bannert <aaron@clove.org>]
1247
1248   *) Modfied mod_mime to prevent mod_negotation from serving a multiview
1249      of a 'handler' or 'filter', so that any filename extension that does 
1250      not contribute to the negotiated metadata can't be served without
1251      an explicit request.  E.g., if the .Z extension is associated with
1252      an unzip filter, the user request somefile.Z.html, mod_negotiation
1253      won't serve it.  It can serve somefile.Z.html when somefile.Z is
1254      requested, since the .Z extension is explictly requested, if the
1255      .html extension is associated with ContentType text/html.
1256      [William Rowe]
1257
1258   *) Introduce the AddInputFilter filter[;filter...] ext [ext...]
1259      and corresponding AddOutputFilter syntax, to insert one or more 
1260      filters by mod_mime filename extension processing.
1261      [William Rowe]
1262
1263   *) Fix a growing connection pool in core_output_filter() for 
1264      keepalive requests.  [Jeff Trawick]
1265
1266   *) Moved split_and_pass_pretag_buckets back to being a
1267      macro at Ryans's request. Removed the return from it
1268      by setting and returning a return code instead. Updated
1269      the code to check the return code from the macro and
1270      do the right thing. [Paul J. Reder]
1271
1272   *) Fix a segfault when a numeric value was received for Host:.
1273      [Jeff Trawick]
1274
1275   *) Add a function ap_remove_input_filter.  This is to match
1276      up with ap_remove_output_filter.  [Ryan Bloom]
1277
1278   *) Clean up location_walk, so that this step performs a minimum
1279      amount of redundant effort (it must be run twice, but it will no
1280      longer reparse all <Location > blocks when the request uri
1281      hadn't changed.)  [William Rowe]
1282
1283   *) Eliminate proxy: (and all other 'special') processing from the
1284      ap_directory_walk() phase.  Modules that want to use special
1285      walk logic should refer to the mod_proxy map_to_location example,
1286      with it's proxy_walk and proxysection implementation.  This makes
1287      either directory_walk flavor much more legible, since that phase
1288      only runs against real <Directory > blocks.
1289      [William Rowe]
1290
1291   *) Fix a security problem in mod_include which would allow
1292      an SSI document to be passed to the client unparsed.
1293      [Cliff Woolley, Brian Pane]
1294
1295   *) Introduce the map_to_storage hook, which allows modules to bypass
1296      the directory_walk and file_walk for non-file requests.  TRACE
1297      shortcut moved to http_protocol.c as APR_HOOK_MIDDLE, and the
1298      directory_walk/file_walk happen as APR_HOOK_VERY_LAST in core.c.
1299      [William Rowe]
1300
1301   *) Add the ability for mod_include to add the INCLUDES filter
1302      if the file is configured for the server-parsed handler.
1303      This makes the configuration for .shtml files much easier
1304      to understand, and allows mod_include to honor Apache 1.3
1305      config files.   Based on Doug MacEachern's patch to PHP
1306      to do the same thing.  [Ryan Bloom]
1307
1308   *) force OpenSSL to ignore process local-caching and to always
1309      get/set/delete sessions using mod_ssl's callbacks
1310      [Madhusudan Mathihalli <madhusudan_mathihalli@hp.com>,
1311       Geoff Thorpe <geoff@geoffthorpe.net>]
1312
1313   *) Make the worker MPM shutdown and restart cleanly.  This also
1314      cleans up some race conditions, and gets the worker using
1315      pools more cleanly.  [Aaron Bannert <aaron@clove.org>]
1316
1317   *) Implement CRYPTO_set_locking_callback() in terms of apr_lock
1318      for mod_ssl
1319      [Madhusudan Mathihalli <madhusudan_mathihalli@hp.com>]
1320
1321   *) Fix for mod_include. Ryan's patch to check error
1322      codes put a return in the wrong place. Also, the
1323      include handler return code wasn't being checked.
1324      I don't like macros with returns, so I converted
1325      SPLIT_AND_PASS_PRETAG_BUCKETS into a function.
1326      [Paul J. Reder <rederpj@raleigh.ibm.com>]
1327
1328   *) fix segv in mod_mime if no AddTypes are configured
1329      [John Sterling <sterling@covalent.net>]
1330
1331   *) Enable ssl client authentication at SSL_accept time
1332      [Madhusudan Mathihalli <madhusudan_mathihalli@hp.com>]
1333
1334   *) Fix a segfault in mod_include when the original request has no
1335      associated filename (e.g., we're filtering the error document for
1336      a bad URI).  [Jeff Trawick]
1337
1338   *) Fix a storage leak (a strdup() call) in mod_mime_magic.  [Jeff Trawick]
1339
1340   *) The prefork and OS/2 MPMs are overwriting the pid file when a second copy
1341      of httpd is started and shuts down due to socket conflict. Moving the
1342      call to ap_log_pid solves the problem.
1343
1344   *) Changed the late-1.3 log_config substitution %c to %X, to log the
1345      status of the closed connection, as it conflicts with the far more
1346      common, historical ssl logging directive %...{var}c.  [William Rowe]
1347
1348   *) Added the common error/ tree to the build/install targets 
1349      (similar to the common icons/ tree) for the multi-language error 
1350      messages that Lars committed earlier.  [William Rowe]
1351
1352   *) Added a multi process, multi threaded OS/2 MPM mpmt_os2.  [Brian Havard]
1353
1354   *) Added a default commented-out mod_ldap and mod_auth_ldap
1355      configuration to httpd-std.conf and httpd-win.conf
1356      [Graham Leggett]
1357
1358   *) Added documentation for mod_ldap and mod_auth_ldap.
1359      [Graham Leggett]
1360
1361   *) Enabled negative caching on attribute comparisons in the LDAP cache.
1362      Fixed a problem where the default cache TTL was set in milliseconds
1363      not microseconds causing the cache to time out almost immediately.
1364      [Graham Leggett]
1365
1366   *) Fixed all the #if APR_HAS_SHARED_MEMORY checks within the LDAP
1367      module code to follow APR. [Graham Leggett]
1368
1369   *) Fixed LDAP cleanup on graceful restarts. LDAP connections are now
1370      cleaned up when the connection pool pool is cleaned up.
1371      [Graham Leggett]
1372
1373   *) Fix a minor issue with Jeff Trawick's mod_include
1374      patch. Without this patch, the code will just allocate
1375      more bytes in get_combined_directive than are needed.
1376      [Paul Reder]
1377
1378   *) Added the LDAP authentication module mod_auth_ldap.
1379      [Dave Carrigan <dave@rudedog.org>, Graham Leggett]
1380
1381   *) Added the LDAP cache and connection pooling module mod_ldap.
1382      [Dave Carrigan <dave@rudedog.org>, Graham Leggett]
1383
1384   *) Fix --enable-modules=all breakage with mod_auth_db and mod_auth_digest
1385      by allowing a module to disable itself if its prerequisites are not
1386      met.  [Justin Erenkrantz]
1387
1388 Changes with Apache 2.0.24
1389
1390   *) Fix a couple of issues in mod_include when the tag appeared at
1391      offsets near 8192 in the file being parsed.  [Jeff Trawick]
1392
1393   *) Fix an assertion failure in mod_ssl when the keepalive timeout is  
1394      reached.  [Jeff Trawick]
1395
1396   *) Numerous improvements to the Win32 build system.  Introduced command line
1397      builds without requiring .mak files for MSVC 6.0 and later versions.
1398      Improved .dsp file compatibility for both Visual Studio 5.0 and 6.0 users.
1399      [William Rowe]
1400
1401   *) Assorted corrections and improvements to the winnt_mpm startup code.  Better
1402      reporting of uninstalled services and other error conditions, and changed the 
1403      default service name to Apache2.  [William Rowe]
1404
1405   *) Numerous improvements to the Win32 ApacheMonitor utility, including winnt_mpm 
1406      compatibility with existing Apache 1.3 Win32 Apache management utilites.  
1407      [Mladen Turk <mturk@mappingsoft.com>, William Rowe]
1408
1409   *) Fixed the segfaults in mod_mime introduced by hash tables in 2.0.20.
1410      [William Rowe, Greg Ames]
1411
1412   *) Rounded out the mod_mime Add/Remove pairs by adding RemoveLanguage
1413      and RemoveCharset directives.  [William Rowe]
1414
1415   *) The Unix MPMs other than perchild now allow child server 
1416      processes to use the accept mutex when starting as root and 
1417      using SysV sems for the accept mutex.  Previously, this 
1418      combination would lead to fatal errors in the child server 
1419      processes.  perchild can't use SysV sems because of security
1420      issues.  [Jeff Trawick, Greg Ames]
1421
1422   *) Added Win32 revision stamp resources to all http binaries
1423      (including modules/ and support/ tools.)  PR7322  [William Rowe]
1424
1425   *) Fix ap_rvprintf to support more than 4K of data at one time.
1426      [Cody Sherr <csherr@covalent.net>]
1427
1428   *) We have always used the obsolete/deprecated Netscape syntax
1429      for our tracking cookies; now the CookieStyle directive
1430      allows the Webmaster to choose the Netscape, RFC2109, or
1431      RFC2965 format.  The new CookieDomain directive allows the
1432      setting of the cookie's Domain= attribute, too.  PR #s 5006,
1433      5023, 5920, 6140 [Ken Coar]
1434
1435   *) Tweak server/Makefile so that the rules for generating exports.c
1436      are compatible with make utilities which don't expand wildcards
1437      in a dependency list (e.g., OS/390 make, certain levels of GNU
1438      make).  [Jeff Trawick]
1439
1440   *) Install the SSL headers.  [John Sterling <sterling@covalent.net>]
1441
1442   *) Begin to sanitize the MPM configuration directives.  Now, all
1443      MPMs use the same functions for all common MPM directives.  This
1444      should make it easier to catch all bugs in these directives once.
1445      [Cody Sherr <csherr@covalent.net>]
1446
1447   *) Close a major resource leak.  Every time we had issued a
1448      graceful restart, we leaked a socket descriptor.
1449      [Ryan Bloom]
1450
1451   *) Fix a problem with the new method code.  We need to cast
1452      the 1 to an apr_int64_t or it will be treated as a 32-bit
1453      integer, and it will wrap after being shifted 32 times.
1454      [Cody Sherr <csherr@covalent.net> and Ryan Morgan <rmorgan@covalent.net>]
1455
1456   *) Fix a bug in mod_expires.  Previous to this patch, if you
1457      told mod_expires to add 604800 seconds to the last-modified
1458      time, it actually added 604800 usec's to the last-modified time,
1459      so that when looking at the response it looked like nothing
1460      had been done.  The root of the problem was that we always compute
1461      time in usec's, but we ask users to input sec's.  This means we
1462      need to convert to usec's before using those values.
1463      [Ryan Bloom]
1464
1465   *) The worker MPM now handles shutdown and restart requests.  It
1466      definitely isn't perfect, but we do stop the servers correctly.
1467      The biggest problem right now is that SIGHUP causes the server to
1468      just die.  [Ryan Bloom]
1469
1470 Changes with Apache 2.0.23
1471
1472   *) Use the prefork MPM by default on Unix.  [various]
1473
1474   *) Added a systray icon monitor application for Win32.
1475      [Mladen Turk <mturk@mappingsoft.com>]
1476
1477   *) mod_rewrite: Fix the line ending on some non-Unix systems for 
1478      messages written to the rewrite log.  
1479      [Richard Labennett <rlabenn@us.ibm.com>]
1480
1481   *) All mod_autoindex query parsing is now quietly quashed with the 
1482      IndexOption IgnoreClient.  The IndexOption SuppressColumnSorting 
1483      still drops the column sort <a href>'s for the column headers, but 
1484      IgnoreClient is required to ignore these Query options entirely.  
1485      [William Rowe]
1486
1487   *) Introduced new mod_autoindex query argument parsing for F=[0|1|2]
1488      to allow the client to select plain, FancyIndexing or HTMLTable
1489      formatting, V=[0|1] to inhibit or enable version sorting, and 
1490      P=pattern to return only specific files.  The old Query Arguments
1491      were reorganized as C=f for sorting column 'f' (same N, D, S, or M
1492      as before), and O=A|D for ordering ascending or descending.  
1493      [William Rowe]
1494
1495   *) Fixed an error in mod_include's directive parsing routines which
1496      caused #if, #elif, and #else expressions containing backslashes
1497      to be improperly evaluated.  [Cliff Woolley]
1498
1499   *) Introduced new mod_autoindex IndexOptions flags: SuppressIcon to 
1500      drop the icon column, SuppressRules to drop the <hr> elements, 
1501      and HTMLTable to create rudimentary HTML table listings (implies 
1502      FancyIndexing).  [William Rowe]
1503
1504   *) Re-introduced the mod_autoindex IndexOptions flag TrackModified
1505      from Apache 1.3.15.  This is needed for two reasons, first, given
1506      multiple machines within a server farm, ETags and Last-Modified 
1507      stamps won't correspond from machine to machine, and second, many 
1508      Unixes don't capture changes to the date or time stamp of existing 
1509      files, since these don't modify the dirent itself.  [William Rowe]
1510
1511   *) Re-introduced the mod_autoindex IndexOptions flag FoldersFirst 
1512      and DirectoryWidth options from Apache 1.3.10. 
1513      [William Rowe, Ken Coar]
1514
1515   *) Eliminated FancyIndexing directive, deprecated early in Apache
1516      1.3 by the IndexOptions FancyIndexing syntax.  [William Rowe]
1517
1518   *) mod_autoindex now excludes any file names that would result in
1519      an error, other than a success or redirect.  Also optimized
1520      the parent directory, always included except in the URI '/'.
1521      [William Rowe]
1522
1523   *) Refactored mod_negotiation and mod_mime to help mod_dir accept
1524      negotiated index pages, and prevent the server from defaulting
1525      to an autoindex of the directory.  mod_negotiation will now die
1526      with a 500 Internal Error if it could match some filenames 
1527      (e.g. for mod_dir) but none can be served.  mod_negotation now
1528      refuses to serve any file with an extention that mod_mime doesn't
1529      recognize, and wasn't part of the request.  [William Rowe]
1530
1531   *) Eliminate mod_cgi's handling of .exe files without the .exe file
1532      extension.  This is already handled by multiviews, if the admin
1533      wishes to AddHandler .exe or define a content type handler and 
1534      associate .exe files with that content type.  Multiviews must be
1535      enabled to allow these to be served.  [William Rowe]
1536
1537   *) Speed up the server's response to a spike in incoming workload
1538      or restarts by assigning empty scoreboard slots to new processes
1539      when they are available.  [Greg Ames]
1540
1541   *) Add a handler to mod_includes.c.  This handler is designed to
1542      implement the XbitHack directive.  This can't be done with a
1543      fixup, because we need to check the content-type, which is
1544      only available in the handler phase.  [Ryan Bloom]
1545
1546   *) Make the includes filter check return codes from filters lower in
1547      the filter chain.  If a lower level filter returns an error, then
1548      the request needs to stop immediately.  This allows mod_include to
1549      stop parsing data once a lower filter recognizes an error.
1550      [Ryan Bloom]
1551
1552   *) Add the ability to extend the methods that Apache understands
1553      and have those methods <limit>able in the httpd.conf. It uses 
1554      the same bit mask/shifted offset as the original HTTP methods 
1555      such as M_GET or M_POST, but expands the total bits from an int to 
1556      an ap_int64_t to handle more bits for new request methods than 
1557      an int provides.  [Cody Sherr <csherr@covalent.net>]
1558
1559   *) Fix broken mod_mime behavior in merging its arguments.  Possible
1560      cause of unexplicable crashes introduced in 2.0.20.  [William Rowe]
1561
1562   *) Solve many mod_ssl porting issues (too many to detail) with 
1563      help from the whole team, but most notably [Ralf S. Engelschall, 
1564      Madhusudan Mathihalli <madhusudan_mathihalli@hp.com>, 
1565      Doug MacEachern, William Rowe, Cliff Woolley]
1566
1567   *) More stall fixes for the threaded & worker mpm's.
1568      Make mod_status output more accurate.  Don't
1569      count workers in processes which aren't actively
1570      serving requests. [Greg Ames]
1571      
1572   *) Win32: Get SSI exec cgi tag working. [Bill Stoddard]
1573
1574   *) Add a single listener/multiple worker MPM.  This MPM is
1575      definately not fully correct, but it allows us to solve many
1576      of the problems that exist in the threaded MPM.  This is a 
1577      modified version of the threaded MPM.  [Ryan Bloom]
1578
1579   *) Improve content generation throughout Apache, providing closer
1580      compliance with HTML 3.2, HTML 4.01 Transitional and XHTML 1.0
1581      Transitional specifications.  [William Rowe]
1582
1583 Changes with Apache 2.0.22
1584   
1585   *) Fix a problem where the threaded MPM stalls after restarts or
1586      segfaults.  Also prevent multiple active processes from using
1587      the same scoreboard slot.  [Greg Ames]
1588
1589   *) Apache/Win32 now fills in the service description with Apache's
1590      server version string, including loaded and advertised modules.
1591      [William Rowe]
1592
1593   *) Improved support for the Win32 build, to recover gracefully from
1594      missing apr or apr-util directories or the awk interpreter, 
1595      create the proper cgi-bin examples, including a test-cgi.bat, and 
1596      fix the perl shebang line for printenv.pl, when installing from 
1597      the build environment.  [William Rowe]
1598
1599   *) Fix a segfault in threaded.c caused by passing uninitialized
1600      apr_thread_t * to apr_thread_join().  [Jeff Trawick]
1601
1602   *) Use new APR number conversion functions to reduce CPU consumption 
1603      when setting the content length, and in mod_log_config.
1604      [Brian Pane]
1605      
1606   *) Fix problem reported by Taketo Kabe <kabe@sra-tohoku.co.jp>
1607      where HEAD response headers were being repeated twice for
1608      files greater than 32K bytes (4*AP_MIN_BYTES_TO_WRITE). This
1609      problem in the http_header filter was exposed by the recent rewrite
1610      of the content_length filter. [Taketo Kabe, Bill Stoddard]
1611
1612   *) Fix seg faults in mod_status with ExtendedStatus enabled, after
1613      restarts.  A garbage pointer to a vhost's server_rec from the
1614      previous generation was being left around under certain
1615      conditions. [Greg Ames]
1616
1617   *) Fix a cosmetic problem with mod_include.  Non-existant SSI vars
1618      used to appear as '(none', without the closing paren.
1619      [Günter Knauf <eflash@gmx.net>]
1620
1621   *) Improve the exports generating awk script.  In the past, we had
1622      work around problems in the awk script by avoiding some #if and
1623      #ifdefs.  This has bitten us many times in generating the exports.c
1624      file.  This improvement allows corrects the header file parsing.
1625      [Sander Striker <striker@apache.org>]
1626
1627 Changes with Apache 2.0.21
1628
1629   *) Resolve the Win32 htpasswd bug, where a file that existed would be
1630      overwritten, regardless of the -c flag.
1631      [William Rowe, Mladen Turk <mladen.turk@mail.inet.hr>]
1632
1633   *) Introduce connection sub-pools into ab.  Truncating the lifetime
1634      of these allocations means that ab no longer perpetually grows
1635      its working set, running out of memory on large request attempts.
1636      [William Rowe]
1637
1638   *) Make scoreboard creation a hook.  This allows management
1639      modules to have access to the scoreboard at the time that it is
1640      created, and at every restart request.  
1641      [Cody Sherr <csherr@covalent.net>]
1642
1643   *) Changed AP_MPMQ_MAX_DAEMONS to refer to MaxClients and
1644      added an AP_MPMQ_MAX_DAEMON_USED to refer to the highest
1645      daemon index actually used in the scoreboard. I also
1646      updated the pertinent calls. [Paul J. Reder]
1647
1648   *) Win32: Prevent listening sockets from being inherited by
1649      the Apache child process, CGI scripts, rotatelog process
1650      etc.  If the Apache child process segfaults, any processes 
1651      that the child started are not reaped. Prior to this fix,
1652      these processes inherited the listening sockets which sometimes
1653      prevented the restarted Apache child process from accepting
1654      connections (ie, the server would hang). 
1655      [Bill Stoddard]
1656
1657   *) Provide vhost and request strings when ExtendedStatus is on.
1658      [Greg Ames]
1659
1660   *) Fix some issues with the pod and prefork: check the pod *after*
1661      processing a connection so that a server processing a time-
1662      consuming request bails out as soon as practical; when the
1663      parent process wakes up a server process via connect(), use an
1664      APR timeout on the connect() so that we don't hang for a long
1665      time if there aren't server processes around to do accept().
1666      [Jeff Trawick, Greg Ames]
1667
1668   *) Performance improvement to mod_mime.c. find_ct() in mod_mime, 
1669      spends a lot of time in apr_table_get calls.  Using the default 
1670      httpd.conf, the tables for languages and charsets are somewhat
1671      large, so the time spent scanning them on each request is
1672      significant. Replacing the tables with hash tables provides
1673      a nice speedup. [Brian Pane <bpane@pacbell.net>]
1674
1675   *) Add two functions to allow modules to access random parts of the
1676      scoreboard.  This allows modules compiled for one MPM to access the
1677      scoreboard, even if it the server was compiled for another MPM.
1678      [Harrie Hazewinkel <harrie@covalent.net>]
1679
1680 Changes with Apache 2.0.20
1681
1682   *) Fix problem in content-length filter where the filter would
1683      buffer all the output from a CGI before sending any bytes
1684      down the filter stack to the network. This problem would cause
1685      significant memory consumption if the CGIs generated
1686      lots of bytes. [Bill Stoddard]
1687   
1688   *) Get non-blocking CGI pipe reads working with the bucket brigades.
1689      [Bill Stoddard]
1690
1691   *) Fix seg fault on Windows when serving files cached with mod_file_cache.
1692      [Bill Stoddard]
1693
1694   *) Fix a bug in the threaded MPM that would cause it to kill off all
1695      workers immediately after starting if the number of workers started
1696      was above a certain threshold.  [Ryan Bloom, Bill Stoddard]
1697
1698 Changes with Apache 2.0.19
1699
1700   *) Fix problem with threaded MPM.  The problem was that if each child
1701      process was busy serving a single long-lived request and the server
1702      was sent a graceful restart signal, the server would stop serving
1703      requests.  This would happen because each child process would wait to
1704      die until the last thread was done, and the parent wouldn't spawn any
1705      new children until a process died.  Now, the parent looks at the fact
1706      that the children are dying gracefully, and starts new children.
1707      Those new children only start enough threads to compliment the number
1708      of threads in the other child process that shares the same spot in
1709      the scoreboard.  In this way, we make sure to never go over
1710      MaxClients.  [Ryan Bloom]
1711
1712   *) modified mod_negotiation and mod_autoindex to speed up by almost a
1713      factor of two on apr_dir_read()-enhanced platforms, such as Win32
1714      and OS2, by calling ap_sub_request_lookup_dirent() with the results
1715      already provided by apr_dir_read().  [William Rowe]
1716
1717   *) mod_file_cache is now more robust to filtering and serves requests
1718      slightly more efficiently.  [Cliff Woolley]
1719
1720   *) Fix problem handling FLUSH bucket in the chunked encoding filter.
1721      Module was calling ap_rwrite() followed by ap_rflush() but the 
1722      served content was not being displayed in the browser. Inspection
1723      of the output stream revealed that the first data chunk was
1724      missing the trailing CRLF required by the RFC.  [Bill Stoddard]
1725
1726   *) apxs no longer generates ap_send_http_header() in the example handler
1727
1728   *) Fix an ab problem which could cause a divide-by-zero exception
1729      with certain invocations (e.g., ab -k -c 6 -n 100 localhost/).
1730      [Ian Holsman <ianh@cnet.com>]
1731
1732   *) Solve case-insensitive platforms' confusion about negotiated
1733      filenames, allowing files of differnt case to match in choosing
1734      the document to serve.  [William Rowe]
1735
1736   *) Fix brokenness when ThreadsPerChild is higher than the built-in
1737      limit.  We left ap_threads_per_child at the higher value which
1738      led to segfaults when doing certain scoreboard operations.
1739      [Jeff Trawick]
1740
1741   *) Fix seg faults and/or missing output from mod_include.  The
1742      default_handler was using the subrequest pool for files and
1743      MMAPs, even though the associated APR structures typically 
1744      live longer than the subrequest. [Greg Ames]
1745   
1746   *) Extend mod_setenvif to support specifying regular expressions
1747      on the SetEnvIf (and SetEnvIfNoCase) directive attribute field.
1748      Example:  SetEnvIf ^TS*  [a-z].* HAVE_TS 
1749      will cause HAVE_TS to be set if any of the request headers begins 
1750      with "TS" and has a value that begins with any character in the
1751      set [a-z]. [Bill Stoddard]
1752
1753   *) httpd children now re-bind themselves to a random CPU on
1754      multiprocessor systems on AIX via bindprocessor() in 2.0.
1755      [Victor J. Orlikowski]
1756
1757   *) Fix htdigest. It would go into a loop in getline when adding 
1758      a second user. [Bill Stoddard]
1759
1760   *) Win32 platforms now fully support mod_userdir options.  [Will Rowe]
1761
1762   *) Automatically generate httpd.exp for AIX.
1763      DSOs now work again on AIX in 2.0
1764      [Victor J. Orlikowski]
1765
1766   *) Add a new request hook, error_log.  This phase allows modules
1767      to act on the error log string _after_ it has been written
1768      to the error log.  The goal for this hook is to allow monitoring
1769      modules to send the error string to the monitoring agent.
1770      [Ryan Bloom]
1771
1772   *) Modify mod_echo to make it use filters for input and output.
1773      [Ryan Morgan <rmorgan@covalent.net>]
1774
1775   *) Extend mod_headers to support conditional driven Header 
1776      add, append and set. Use SetEnvIf to set an envar and conditionally
1777      add/append/set headers based on this envar thusly:
1778
1779      SetEnvIf TSMyHeader value HAVE_TSMyHeader
1780      Header add MyHeader "%t %D" env=HAVE_TSMyHeader
1781
1782      If the request contains header "TSMyHeader: value" then header
1783      MyHeader: "t=xxxxxxxxxx D=yyyy" will be sent on the response.
1784      [Bill Stoddard]
1785
1786   *) Extend mod_headers to support using format specifiers on Header
1787      add, append and set header values. Two format specifiers are supported:
1788
1789      %t - reports, in UTC microseconds since the epoch, when the
1790           request was received.
1791
1792      %D - reports the time, in microseconds, between when the request was 
1793           received and the response sent. 
1794
1795      Examples:
1796      Header add MyHeader "This request served in %D microseconds. %t"
1797
1798      results in a header being added to the response that looks like this:
1799      
1800      MyHeader: This request served in D=5438 microseconds. t=991424704447256
1801
1802      [Bill Stoddard]
1803
1804   *) Fix reset_filter().  We need to be careful how we remove filters.
1805      If we set r->output_filters to NULL, we also have to reset the
1806      connection's filters.  [John Sterling]
1807
1808   *) Optimise reset_filter() in http_protocol.c. [Greg Stein]
1809
1810   *) Add a check to ap_die() to make sure the filter stack is sane and
1811      contains the correct basic filters when an error occurs. This fixes
1812      a problem where headers are not being sent on error. [John Sterling]
1813
1814   *) New Header directive 'echo' option. "Header echo regex" will
1815      cause any headers received on the request that match regex to be
1816      echoed to (included in) the response headers.
1817      [Bill Stoddard]
1818
1819   *) include/ap_compat.h tested and set APR_COMPAT_H instead of AP_COMPAT_H.
1820      This prevented the inclusion of apr_compat.h.  PR #7773
1821      [Oleg Broytmann <phd@phd.pp.ru>]
1822
1823   *) Moved util_uri to the apr-util library.  This required a bunch of
1824      apr_name changes for the uri utility functions.  [Justin Erenkrantz]
1825
1826   *) Move the addition of default AP_HTTP_HTTP_HEADER filters to the
1827      insert_filter phase so that other filters are not bypassed by default.
1828      [Graham Leggett]
1829
1830   *) Reimplement mod_headers as an output filter. mod_headers can now
1831      add custom headers to inbound requests using the RequestHeader directive
1832      and to responses using the same old Header directive.  [Graham Leggett]
1833
1834 Changes with Apache 2.0.18
1835
1836   *) Fix command-line processing so that if a bad argument is specified
1837      Apache will exit.  [Jeff Trawick]
1838
1839   *) Change the make targets and rules to be consistent in all of the
1840      Apache-owned source trees.  [Roy Fielding]
1841      
1842   *) Fix processing of the TRACE method.  Previously we passed bogus
1843      parms to form_header_field() and it overlaid some vhost structures,
1844      resulting in a segfault in check_hostalias(). 
1845      [Greg Ames, Jeff Trawick]
1846
1847   *) Win32: Add support for reliable piped logs. If the logging process
1848      goes down, Apache will automatically restart it. This function has 
1849      been part of Apache on Unix/Linux/BSD since the early v1.3 releases.
1850      [Bill Stoddard]
1851
1852   *) Do not start piped log processes during the config file 
1853      preflight.  This change also circumvents a problem on 
1854      Windows where the rotatelog processes created during preflight
1855      was not getting cleaned up properly.
1856      [Bill Stoddard]
1857
1858   *) add "Request Phase Participation" info to mod_info
1859      [Doug MacEachern]
1860
1861   *) Make first phase changes to the scoreboard data structures in
1862      preparation for the rewriting of the scoreboard per my posted
1863      design notes. [Paul J. Reder]
1864
1865   *) Fix httpd's definition of LTFLAGS to be consistent with that of apr
1866      and apr-util, allow it to be overridden by the configure command-line
1867      (default="--silent") and introduce LT_LDFLAGS to replace what we were
1868      formerly abusing as LTFLAGS.  [Roy Fielding]
1869
1870   *) Clean up the reporting of incorrect closing container tags.
1871      [Barrie Slaymaker <barries@slaysys.com>]
1872
1873   *) Simplify the configure process by moving all libtool stuff to APR
1874      and moving hints.m4 inline.  [Roy Fielding]
1875
1876   *) Add the AP_DECLARE()/AP_CORE_DECLARE macros on the return types
1877      of functions used by mod_proxy for export in the DLL 
1878      [Ian Holsman <IanH@cnet.com>]
1879
1880   *) Prevent a hang when a cgi handled by mod_cgid tries to read a
1881      request body from its stdin but no reqest body is being written to 
1882      the cgi.  [Jeff Trawick]
1883
1884   *) mod_log_config: %c connection status incorrectly logged
1885      as "-" (non-keepalive) when MaxKeepAliveRequests is set to 0.
1886      [Bill Stoddard]
1887
1888   *) Get mod_cern_meta working under Windows
1889      [Bill Stoddard]
1890
1891   *) Create Files, and thus MMAPs, out of the request pool, not the
1892      connection pool.  This solves a small resource leak that had us
1893      not closing files until a connection was closed.  In order to do
1894      this, at the end of the core_output_filter, we loop through the
1895      brigade and convert any data we have into a single HEAP bucket
1896      that we know will survive clearing the request_rec.
1897      [Ryan Bloom, Justin Erenkrantz <jerenkrantz@ebuilt.com>,
1898       Cliff Woolley]
1899
1900   *) Completely revamp configure so that it preserves the standard make
1901      variables CPPFLAGS, CFLAGS, CXXFLAGS, LDFLAGS and LIBS by moving
1902      the configure additions to EXTRA_* variables.  Also, allow the user
1903      to specify NOTEST_* values for all of the above, which eliminates the
1904      need for THREAD_CPPFLAGS, THREAD_CFLAGS, and OPTIM.  Fix the setting
1905      of INCLUDES and EXTRA_INCLUDES.  Check flags as they are added to
1906      avoid pointless duplications.  Fix the order in which flags are given
1907      on the compile and link lines.  Remove obsolete macros APR_DOEXTRA,
1908      AC_ADD_LIBRARY, AC_CHECK_DEFINE, APACHE_PASSTHRU, and APACHE_ONCE.
1909      Added APR_SAVE_THE_ENVIRONMENT and APR_RESTORE_THE_ENVIRONMENT macros.
1910      Renamed AC_TYPE_RLIM_T macro to APACHE_TYPE_RLIM_T.  [Roy Fielding]
1911
1912   *) Get mod_tls to compile/work better on Windows.  PR #7612
1913      [Bernhard Schrenk <b.schrenk@improx.com>]
1914
1915   *) Fix shutdown/restart hangs in the threaded MPM.
1916      [Jeff Trawick, Greg Ames, Ryan Bloom]
1917   
1918   *) Removed the keptalive boolean from conn_rec because it is now only
1919      used by a single routine and can be replaced by a local variable.
1920      [Greg Stein, Ryan Bloom, Roy Fielding]
1921
1922   *) Patch prefork to put enough of the signal processing back in so that
1923      signals are all handled properly now. The previous patch fixed the
1924      deadlock race condition, but broke the user directed signal handling.
1925      This fixes it to work the way it did before my previous prefork patch
1926      (primarily, SIGTERM is now working).
1927  
1928   *) Change how input filters decide how much data is returned to the
1929      higher filter.  We used to use a field in the conn_rec, with this
1930      change, we use an argument to ap_get_brigade to determine how much
1931      data is retrieved. [Ryan Bloom]
1932
1933   *) Fix seg fault at start-up introduced by Ryan's change to enable
1934      modules to specify their own logging tags. mod_log_config
1935      registers an optional function, ap_register_log_handler().
1936      ap_register_log_handler() was being called by http_core before
1937      the directive hash table was created. This patch creates the
1938      directive hash table before ap_register_log_handler() is
1939      registered as an optional function.
1940      [jean-frederic clere <jfrederic.clere@fujitsu-siemens.com>]
1941
1942   *) Add ap_set_int_slot() function
1943      [John K. Sterling <sterling@covalent.net>]
1944
1945   *) Under certain circumstances, Apache did not supply the
1946      right response headers when requiring authentication.
1947      [Gertjan van Wingerde <Gertjan.van.Wingerde@cmg.nl>] PR#7114
1948      (This is a port of the change that went into Apache 1.3.19.)
1949
1950   *) Allow modules to specify their own logging tags.  This basically
1951      allows a module to tell mod_log_config that when %x is encountered
1952      a specific function should be called.  Currently, x can be any single
1953      character.  It may be more useful to make this a string at some point.
1954      [Ryan Bloom]
1955
1956 Changes with Apache 2.0.17
1957
1958   *) If a higher-level filter handles the the byterange aspects of a
1959      request, then the byterange filter should not try to redo the
1960      work.  The most common case of this happening, is a byterange
1961      request going through the proxy, and the origin server handles
1962      the byterange request.  The proxy should ignore it.
1963      [Graham Leggett <minfrin@sharp.fm>]
1964
1965   *) Changed the threaded mpm to have child_main join to each of the
1966      worker threads to make sure the kids are all gone before child_main
1967      exits after a signal (cleanup from perform_idle_server_maintenance).
1968      This is an extension of Ryans recent commit to make the child_main
1969      the signal thread.
1970
1971   *) Add more options to the ap_mpm_query function.  This also allows MPMs to
1972      report if their threads are dynamic or static.  Finally, this also
1973      implements a new API, ap_show_mpm, which returns the MPM that was
1974      required into the core. [Harrie Hazewinkel <harrie@covalent.net>]
1975
1976   *) Do not install the binaries from the support directory twice.
1977      [jun-ichiro hagino <itojun@iijlab.net>]
1978
1979   *) The ap_f* functions should flush data to the filter that is passed
1980      in, not the the filter after the one passed in.
1981      [Ryan Morgan <rmorgan@covalent.net>]
1982
1983   *) Make ab work again by changing its native types to apr types and formats.
1984      [Justin Erenkrantz <jerenkrantz@ebuilt.com>]
1985
1986   *) Move the byterange filter and all of the supporting functions back
1987      to the HTTP module.  The byterange filter turned out to be very
1988      HTTP specific, and it belongs in the HTTP module.  [Greg Stein]
1989
1990   *) Make clean, distclean, and extraclean consistently according to the
1991      Gnu makefile guidelines.  [Justin Erenkrantz <jerenkrantz@ebuilt.com>]
1992
1993   *) Fix errors in the renaming of the apr_threadattr_detach_xxx functions.
1994      This may have been causing problems stopping processes in the threaded
1995      mpm's. [Greg Ames]
1996
1997   *) Fix content-length in mod_negotiation to a long int representation.
1998      [William Rowe]
1999
2000   *) Remove BindAddress from the default config file.
2001      [giles@nemeton.com.au]
2002
2003   *) Allow module authors to add a module to their Apache build using
2004      --with-module, without re-running buildconf.  The syntax is:
2005         --with-module=module_type:/path/to/module.c
2006      The configure script will copy the module.c file to 
2007      modules/module_type, and it will be added to the relevant Makefiles.
2008      currently, this only works for static modules.  [Ryan Bloom]
2009
2010   *) Changes required to make prefork clean up idle children properly.
2011      There was a window during which a starting worker deadlocks when
2012      an idle cleanup arrives before it completes init. Apache then keeps
2013      trying to cleanup the same deadlocked worker forever (until higher
2014      pids come along, but it still will never reduce below the deadlocked
2015      pid). Thus the number of children would not reduce to the correct
2016      idle level. [Paul J. Reder]
2017
2018 Changes with Apache 2.0.16
2019
2020   *) Change the default installation directory to /usr/local/apache2,
2021      as now defined by the "Apache" layout in config.layout. [Marc Slemko]
2022
2023   *) OS/2: Added support for building loadable modules as OS/2 DLLs. 
2024      [Brian Havard]
2025
2026   *) Get MaxRequestsPerChild working with the Windows MPM.
2027      [Bill Stoddard]
2028
2029   *) Make generic hooks to work, with mod_generic_hook_import/export
2030      experimental modules.  [Ben Laurie, Will Rowe]
2031
2032   *) Fix segfaults for configuration file syntax errors such as
2033      "<Directory>" followed by "</Directory" and
2034      "<Directory>" followed by "</Directoryz>".  [Jeff Trawick]
2035
2036   *) Cleanup the --enable-layout option of configure.  This makes
2037      us use a consistent location for the config.layout file, and it
2038      makes configure more portable.
2039      [jun-ichiro hagino <itojun@iijlab.net>]
2040
2041   *) Changes to 'ab'; fixed int overrun's, added statistics, output in
2042      csv/gnuplot format, rudimentary ssl support and various other tweaks
2043      to make results more true to what is measured. The upshot of this it
2044      turns out that 'ab' has often underreported the true performance of
2045      apache. Often by a order of magnitude :-) See talk/paper of Sander 
2046      Temme at April ApacheCon 2001 for details.
2047      [Dirk-Willem van Gulik]
2048
2049   *) Clean up mod_cgid's temporary request pool.  Besides fixing a
2050      storage leak this ensures that some unnecessary pipes are closed.
2051      [Jeff Trawick]
2052
2053   *) Performance: Add quick_handler hook. This hook is called at the
2054      very beginning of the request processing before location_walk,
2055      translate_name, etc.  This hook is useful for URI keyed content
2056      caches like Mike Abbott's Quick Shortcut Cache.
2057      [Bill Stoddard]
2058
2059   *) top_module global variable renamed to ap_top_module [Perl]
2060
2061   *) Move ap_set_last_modified to the core.  This is a potentially 
2062      controversial change, because this is kind of HTTP specific.  However
2063      many protocols should be able to take advantage of this kind of
2064      information.  I expect that headers will need one more layer of
2065      indirection for multi-protocol work, but this is a small step in
2066      the right direction.  [Ryan Bloom]
2067
2068   *) Enable mod_status by default.  This matches what Apache 1.3 does.
2069      [Ed Korthof]
2070
2071   *) Add a ScriptSock directive to the default config file.  This is
2072      only enabled when mod_cgid is used.  
2073      [Taketo Kabe <kabe@sra-tohoku.co.jp>]
2074
2075 Changes with Apache 2.0.15
2076
2077   *) Untangled the buildconf script and eliminated the need for build's
2078      aclocal.m4, generated_lists, build.mk, build2.mk, and a host of other
2079      libtool muck that is now under srclib/apr/build.  [Roy Fielding]
2080
2081   *) Win32: Don't accept more connections than we have worker threads
2082      to handle.
2083      [Bill Stoddard]
2084
2085   *) Fix bug in the Unix threaded.c MPM that allowed child processes
2086      to fork() new child processes. 
2087      [Bill Stoddard]
2088
2089   *) Fix a major security problem with double-reverse lookup checking.  
2090      Previously, a client connecting over IPv4 would not be matched 
2091      properly when the server had an IPv6 listening socket.  PR #7407
2092      [Taketo Kabe <kiabe@sra-tohoku.co.jp>]
2093
2094   *) Change the way the beos MPM handles polling to allow it to stop and
2095      restart.  Problem was the sockets being polled were being reset by
2096      the select call, so once it had accepted a connection it was no
2097      longer listening on the UDP socket we use for shutdown instructions.
2098      APR needs to be altered, patch on it's way. [David Reid]
2099
2100   *) Empty out the brigade shared by ap_getline()/ap_get_client_block()
2101      on error exit from ap_getline().  Some other code got upset because
2102      the wrong data was in the brigade.  [Greg Ames, Jeff Trawick]
2103
2104   *) Handle ap_discard_request_body() being called more than once.
2105      [Greg Ames, Jeff Trawick]
2106
2107   *) Get rid of an inadvertent close of file descriptor 2 in
2108      mod_mime_magic.  [Greg Ames, Jeff Trawick]
2109
2110   *) Add a hook, create_request.  This hook allows modules to modify
2111      a request while it is being created.  This hook is called for all
2112      request_rec's, main request, sub request, and internal redirect.
2113      When this hook is called, the the r->main, r->prev, r->next
2114      pointers have been set, so modules can determine what kind of
2115      request this is.  [Ryan Bloom]
2116
2117   *) Cleanup the build process a bit more.  The Apache configure
2118      script no longer creates its own helper scripts, it just
2119      uses APR's.  
2120      [jean-frederic clere <jfrederic.clere@fujitsu-siemens.com>]
2121
2122   *) Stop the forced downgrade of the connection to HTTP/1.0 for
2123      proxy requests.  [Graham Leggett]
2124
2125   *) Avoid using sscanf to determine the HTTP protocol number in
2126      the common case because sscanf is a performance hog. From
2127      Mike Abbot's Accelerating Apache patch number 6.
2128      [Mike Abbot <mja@trudge.engr.sgi.com>, Bill Stoddard]
2129
2130   *) Fix a security exposure in mod_access.  Previously when IPv6 
2131      listening sockets were used, allow/deny-from-IPv4-address rules 
2132      were not evaluated properly (PR #7407).  Also, add the ability to 
2133      specify IPv6 address strings with optional prefix length on Allow 
2134      and Deny.  [Jeff Trawick]
2135
2136   *) Enhance rotatelogs so that a UTC offset can be specified, and
2137      the logfile name can be formatted using strftime(3).  (Brought
2138      forward from 1.3.)  [Ken Coar]
2139
2140   *) Reimplement the Windows MPM (mpm_winnt.c) to eliminate calling 
2141      DuplicateHandle on an IOCompletionPort (a practice which
2142      MS "discourages"). The new model does not rely on associating
2143      the completion port with the listening sockets, thus the
2144      completion port can be completely managed within the child 
2145      process.  A dedicated thread accepts connections off the network,
2146      then calls PostQueuedCompletionStatus() to wake up worker
2147      threads blocked on the completion port.
2148      [Bill Stoddard]
2149
2150   *) Bring forward the --suexec-umask option which allows the
2151      builder to preset the umask for suexec processes.  [Ken Coar]
2152
2153   *) Add a -V flag to suexec, which causes it to display the
2154      compile-time settings with which it was built.  (Only
2155      usable by root or the AP_HTTPD_USER username.)  [Ken Coar]
2156
2157   *) Mod_include should always unset the content-length if the file is
2158      going to be passed through send_parsed_content.  There is no to
2159      determine if the content will change before actually scanning the
2160      entire content.  It is far safer to just remove the C-L as long
2161      as we are scanning it.  [Ryan Bloom]
2162
2163   *) Make sure Apache sends WWW-Authenticate during a reverse proxy
2164      request and not Proxy-Authenticate.
2165      [Graham Leggett <minfrin@sharp.fm>]
2166
2167 Changes with Apache 2.0.14
2168
2169   *) Fix content-length computation.  We ONLY compute a content-length if
2170      We are not in a 1.1 request and we cannot chunk, and this is a keepalive
2171      or we already have all the data.  [Ryan Bloom]
2172
2173   *) Report unbounded containers in the config file.  Previously, a typo
2174      in the </container> directive could result in the rest of the config
2175      file being silently ignored, with undesired defaults used.
2176      [Jeff Trawick]
2177
2178   *) Make the old_write filter use the ap_f* functions for the buffering.
2179      [Ryan Bloom]
2180
2181   *) Move more code from the http module into the core server.  This
2182      is core code, basically the default handler, the default input
2183      and output filters, and all of the core configuration directives.
2184      All of this code is required in order for the server to work, with or
2185      without HTTP.  The server is closer to working without the HTTP
2186      module, although there is still more to do.  [Ryan Bloom]
2187
2188   *) Fix a number of SGI compile warnings throughout the server.  Fix some
2189      bad parameters to apr_bucket_read().  Fix a bad statement in 
2190      ap_method_in_list().  For the mod_rewrite cache use apr_time_t 
2191      consistently; we were mixing apr_time_t and time_t in invalid ways 
2192      before.  In load_file(), call apr_dso_error() instead of 
2193      apr_strerror() so that we get a more specific string on some platforms.
2194      PR #6980  [Jeff Trawick]
2195
2196   *) Allow modules to query the MPM about it's execution profile.  This
2197      query API can and should be extended in the future, but for now,
2198      max_daemons, and threading or forking is a very good start.
2199      [Jon Travis <jtravis@covalent.net>]
2200
2201   *) Modify mod_include to send blocks of data no larger than 9k.
2202      Without this, mod_include will wait until the whole file is parsed,
2203      or the first tag is found to send any data to the client.
2204      [Paul J. Reder <rederpj@raleigh.ibm.com>]
2205
2206   *) Fix mod_info, so that <Directory> and <Location> directives are
2207      not displayed twice when displaying the current configuration.
2208      [Ryan Morgan <rmorgan@covalent.net>]
2209
2210   *) Add config directives to override DEFAULT_ERROR_MSG and
2211      DEFAULT_TIME_FORMAT.  This was sent in as PR 6193.
2212      [Dan Rench <drench@xnet.com>]
2213
2214   *) Get mod_info building and loading on Win32.  [William Rowe]
2215
2216   *) Begin to move protocol independant functions out of mod_http.  The goal
2217      is to have only functions that are HTTP specific in the http directory.
2218      [Ryan Bloom]
2219
2220 Changes with Apache 2.0.13
2221
2222   *) Don't assume that there will always be multiple calls to the byterange 
2223      filter.  It is possible that we will need to do byteranges with only
2224      one call to the filter.  [Ryan Morgan <rmorgan@covalent.net>]
2225
2226   *) Move the error_bucket definition from the http module to the
2227      core server.  Every protocol will need this ability, not just
2228      HTTP.  [Ryan Bloom]
2229
2230 Changes with Apache 2.0.12
2231
2232   *) Modify mod_file_cache to save pre-formatted strings for 
2233      content-length and last-modified headers for performance. 
2234      [Mike Abbot <mja@trudge.engr.sgi.com>]
2235
2236   *) Namespace protect IOBUFSIZ since it is exposed in the API.
2237      [Jon Travis <jtravis@covalent.net>]
2238
2239   *) Use "Basic" authentication instead of "basic" in ab, as the spec
2240      says we should.  [Andre Breiler <andre.breiler@rd.bbc.co.uk>]
2241
2242   *) Fix a seg fault in mod_userdir.c.  We used to use the pw structure
2243      without ever filling it out.  This fixes PR 7271.
2244      [Taketo Kabe <kabe@sra-tohoku.co.jp> and 
2245       Cliff Woolley <cliffwoolley@yahoo.com>]
2246
2247   *) Add a couple of GCC attribute tags to printf style functions.
2248      [Jon Travis <jtravis@covalent.net>]
2249
2250   *) Add the correct language tag for interoperation with the Taiwanese
2251      versions of MSIE and Netscape. [Clive Lin <clive@CirX.ORG>] PR#7142
2252
2253   *) Migrate the perchild MPM to use the new apr signal child, and 
2254      APR thread functions.  [Ryan Bloom]
2255
2256   *) Close one copy of the CGI's stdout before creating the new process.
2257      The CGI will still have stdout, because we have already dup'ed it.
2258      This keeps Apache from waiting forever to send the results of a CGI
2259      process that has forked a long-lived child process.
2260      [Taketo Kabe <kabe@sra-tohoku.co.jp>]
2261
2262   *) Remove the rest of the pthreads functions from the threaded MPM.
2263      This requires the APR support for a signal thread that was just
2264      added.  [Ryan Bloom]
2265
2266   *) Make mod_dir use a fixup for sending a redirect to the browser.
2267      Before this, we were using a handler, which doesn't make much
2268      sense, because the handler wasn't generating any data, it would
2269      either return a redirect error code, or DECLINED.  This fits the
2270      current hooks better.  [Ryan Morgan <rmorgan@covalent.net>]
2271
2272   *) Make the threaded MPM use APR threads instead of pthreads.
2273      [Ryan Bloom]
2274
2275   *) Get mod_tls to the point where it actually appears to work in all cases.
2276      [Ben Laurie]
2277
2278   *) implement --enable-modules and --enable-mods-shared for "all" and
2279      "most".  [Greg Stein]
2280
2281   *) Move the threaded MPM to use APR locks instead of pthread locks.
2282      [Ryan Bloom]
2283
2284   *) Rename mpmt_pthread to threaded.  This is more in line with the
2285      fact that mpmt_pthread shouldn't be using pthreads directly, and
2286      it is a smaller name that doesn't tie into anything.
2287      [Ryan Bloom]
2288
2289   *) Rename the module structures so that the exported symbol matches
2290      the file name, and it is easier to automate the installation
2291      process (generating LoadModule directives from the module filenames).
2292      [Martin Kraemer]
2293
2294   *) Remove the coalesce filter.  With the ap_f* functions, this filter
2295      is no longer needed. [Ryan Bloom]
2296
2297 Changes with Apache 2.0.11
2298
2299   *) Remove the dexter MPM.  Perchild is the same basic idea, but it has the
2300      added feature of allowing a uid/gid per child process.  If no
2301      uid/gid is specified, then Perchild behaves exactly like dexter.
2302      [Ryan Bloom]
2303
2304   *) Get perchild building again. [Ryan Bloom]
2305
2306   *) Don't disable threads just because we are using the prefork MPM.
2307      If somebody wants to compile without threads, they must now add
2308      --disable-threads to the configure command line.  [Ryan Bloom]
2309
2310   *) Begin to move the calls to update_child_status into common code, so
2311      that each individual MPM does not need to update the scoreboard itself.
2312      [Ryan Bloom]
2313
2314   *) Allow mod_tls to compile under Unix boxes where openssl has been
2315      installed to the system include files.
2316      [Gomez Henri <new-httpd@slib.fr>]
2317
2318   *) Cleanup the mod_tls configure process.  This should remove any need
2319      to hand-edit any files.  We require OpenSSL 0.9.6 or later, but 
2320      configure doesn't check that yet.  [Ryan Bloom]
2321
2322   *) Add a very early prototype of SSL support (in mod_tls.c). It is
2323      vital that you read modules/tls/README before attempting to build
2324      it. [Ben Laurie]
2325
2326   *) Fix a potential seg fault on all platforms.  David Reid fixed this
2327      on BEOS, but the problem could happen anywhere, so we don't want
2328      to #ifdef it. [Cliff Woolley <cliffwoolley@yahoo.com>]
2329  
2330   *) Add new LogFormat directive, %D, to log time it takes to serve a
2331      request in microseconds. [Bill Stoddard]
2332
2333   *) Change AddInputFilter and AddOutputFilter to SetInputFilter and
2334      SetOutputFilter.  This corresponds nicely with the other Set 
2335      directives, which operate on containers while the Add* directives
2336      tend to work directly on extensions.  [Ryan Bloom]
2337
2338   *) Cleanup the header handling a bit.  This uses the apr_brigade_*
2339      functions for the buffering so that we don't need to compute
2340      the length of the headers before we actually create the header
2341      buffer.  [Ryan Bloom]
2342
2343   *) Allow filters to buffer data using the ap_f* functions.  These have
2344      become macros that resolve directly to apr_brigade_*.  
2345      [Ryan Bloom]
2346
2347   *) Get the Unix MPM's to do a graceful restart again.  If we are going
2348      to register a cleanup with ap_cleanup_scoreboard, then we have to
2349      kill the cleanup with the same function,  and that function can't be
2350      static.  [Ryan Bloom]
2351
2352   *) Install all required header files.  Without these, it was not
2353      possible to compile some modules outside of the server.
2354      [Ryan Bloom]
2355
2356   *) Fix the AliasMatch directive in Apache 2.0.  When we brought a patch
2357      forward from 1.3 to 2.0, we missed a single line, which broke regex
2358      aliases.  [Ryan Bloom]
2359
2360   *) We have a poor abstraction in the protocol.  This is a temporary
2361      hack to fix the bug, but it will need to be fixed for real.  If
2362      we find an error while sending out a custom error response, we back
2363      up to the first non-OK request and send the data.  Then, when we send
2364      the EOS from finalize_request_protocol, we go to the last request,
2365      to ensure that we aren't sending an EOS to a request that has already
2366      received one.  Because the data is sent on a different request than
2367      the EOS, the error text never gets sent down the filter stack.  This
2368      fixes the problem by finding the last request, and sending the data
2369      with that request.  [Ryan Bloom]
2370
2371   *) Make the server status page show the correct restart time, and
2372      thus the proper uptime. [Ryan Bloom]
2373
2374   *) Move the CGI creation logic from mod_include to mod_cgi(d).  This
2375      should reduce the amount of duplicate code that is required to
2376      create CGI processes.
2377      [Paul J. Reder <rederpj@raleigh.ibm.com>]
2378
2379   *) ap_new_connection() closes the socket and returns NULL if a socket
2380      call fails.  Usually this is due to a connection which has been 
2381      reset.  [Jeff Trawick]
2382
2383   *) Move the Apache version information out of httpd.h and into release.h.
2384      This is in preparation for the first tag with the new tag and release
2385      system.  [Ryan Bloom]
2386
2387   *) Begin restructuring scoreboard code to enable adding back in
2388      the ability to use IPC other than shared memory.
2389      Get mod_status working on Windows again. [Bill Stoddard]
2390
2391   *) Make mod_status work with 2.0.  This will work for prefork,
2392      mpmt_pthread, and dexter.  [Ryan Bloom]
2393
2394   *) Correct a typo in httpd.conf.
2395      [Kunihiro Tanaka <tanaka@apache.or.jp>] PR#7154 
2396
2397   *) Really fix mod_rewrite map lookups this time. [Tony Finch]
2398
2399   *) Get the correct IP address if ServerName isn't set and we can't
2400      find a fully-qualified domain name at startup.
2401      PR#7170 [Danek Duvall <dduvall@eng.sun.com>]
2402
2403   *) Make mod_cgid work with SuExec.  [Ryan Bloom]
2404
2405   *) Adopt apr user/group name features for mod_rewrite.  Eliminates some
2406      'extra' stat's for user/group since they should never occur, and now
2407      resolves the SCRIPT_USER and SCRIPT_GROUP, including on WinNT NTFS
2408      volumes.  [William Rowe]
2409
2410   *) Adopt apr features to simplify mod_includes.  This changes the
2411      behavior of the USER_NAME variable, unknown uid's are now reported
2412      as USER_NAME="<unknown>" rather than the old user#000 result.
2413      WinNT now resolves USER_NAME on NTFS volumes.  [William Rowe]
2414
2415   *) Adopt apr features for simplifing mod_userdir, and accept the new
2416      Win32/OS2 exceptions without hiccuping.  [William Rowe]
2417
2418   *) Replace configure --with-optim option by using and saving the
2419      environment variable OPTIM instead.  This is needed because configure
2420      options do not support multiple flags separated by spaces.
2421      [Roy Fielding]
2422
2423   *) Fix some byterange handling.  If we get a byte range that looks like
2424      "-999999" where that is past the end of the file, we should return 
2425      a PARTIAL CONTENT status code, and return the whole file as one big
2426      byterange.  This matches the 1.3 handling now.  [Ryan Bloom]
2427
2428   *) Make the error bucket a real meta-data bucket.  This means that the
2429      bucket length is 0, and a read returns NULL data.  If one of these
2430      buckets is passed down after the headers are sent, this data will
2431      just be ignored.  [Greg Stein]
2432
2433   *) The prefork MPM wasn't killing child processes correctly if a restart
2434      signal was received while the process was serving a request.  The child
2435      process would become the equivalent of a second parent process.  If
2436      we break out of the accept loop, then we need to do die after cleaning
2437      up after ourselves.  [Ryan Bloom]
2438
2439   *) Change the Prefork MPM to use SIGWINCH instead of SIGUSR1 for graceful
2440      restarts.  [Ryan Bloom]
2441
2442   *) Modify the apr_stat/lstat/getfileinfo calls within apache to use
2443      the most optimal APR_FINFO_wanted bits.  This spares Win32 from
2444      performing very expensive owner, group and permission lookups
2445      and allows the server to function until these apr_finfo_t fields
2446      are implemented under Win32.  [William Rowe]
2447
2448   *) Support for typedsafe optional functions - that is functions exported by
2449      optional modules, which, therefore, may or may not be present, depending
2450      on configuration. See the experimental modules mod_optional_fn_{ex,im}port
2451      for sample code. [Ben Laurie]
2452
2453   *) filters can now report an HTTP error to the server.  This is done
2454      by sending a brigade where the first bucket is an error_bucket.
2455      This bucket is a simple bucket that stores an HTTP error and
2456      a string.  Currently the string is not used, but it may be needed
2457      to output an error log.  The http_header_filter will find this
2458      bucket, and output the error text, and then return 
2459      AP_FILTER_ERROR, which informs the server that the error web page
2460      has already been sent.  [Ryan Bloom]
2461
2462   *) If we get an error, then we should remove all filters except for
2463      those critical to serving a web page.  This fixes a bug, where
2464      error pages were going through the byterange filter, even though
2465      that made no sense.  [Ryan Bloom]
2466
2467   *) Relax the syntax checking of Host: headers in order to support
2468      iDNS. PR#6635 [Tony Finch]
2469
2470   *) Cleanup the byterange filter to use the apr_brigade_partition
2471      and apr_bucket_copy functions.  This removes a lot of very messy
2472      code, and hopefully makes this filter more stable.
2473      [Ryan Bloom]
2474
2475   *) Remove AddModule and ClearModuleList directives.  Both of these
2476      directives were used to ensure that modules could be enabled
2477      in the correct order.  That requirement is now gone, because
2478      we use hooks to ensure that modules are in the correct order.
2479      [Ryan Bloom]
2480
2481   *) When SuExec is specified, we need to add it to the list of
2482      targets to be built.  If we don't, then any changes to the
2483      configuration won't affect SuExec, unless 'make suexec' is
2484      specifically run.  [Ryan Bloom]
2485
2486   *) Cleaned out open_file from mod_file_cache, as apr now accepts
2487      the APR_XTHREAD argument to open a file for consumption by
2488      parallel threads on win32.  [William Rowe]
2489
2490   *) Correct a bug in determining when we follow symlinks.  The code
2491      expected a stat -1 result, not an apr_status_t positive error.
2492      Also check if the APR_FINFO_USER fields are valid before we
2493      follow the link.  [William Rowe]
2494
2495   *) Move initgroupgs, ap_uname2id and ap_gname2id from util.c to
2496      mpm_common.c.  These functions are only valid on some platforms,
2497      so they should not be in the main-line code. [Ryan Bloom]
2498
2499   *) Remove ap_chdir_file().  This function is not thread-safe,
2500      and nobody is currently using it.  [Ryan Bloom]
2501
2502   *) Do not try to run make depend if there are no .c files in the
2503      current directory, doing so makes `make depend` fail.
2504      [Ryan Bloom]
2505
2506    *) Update highperformance.conf to work with either prefork or
2507       pthreads mpms.  [Greg Ames] 
2508
2509   *) Stop checking to see if this is a pipelined request if we know
2510      for a fact that it isn't.  Basically, if r->connection->keepalive == 0.
2511      This keeps us from making an extra read call when serving a 1.0
2512      request.  [Ryan Bloom and Greg Stein]
2513
2514   *) Fix the handling of variable expansion look-ahead in mod_rewrite,
2515      i.e. syntax like %{LA-U:REMOTE_USER}, and also fix the parsing of
2516      more complicated nested RewriteMap lookups. PR#7087 [Tony Finch]
2517
2518   *) Fix the RFC number mentioned when complaining about a missing
2519      Host: header. PR#7079 [Alexey Toptygin <alexeyt@wam.umd.edu>]
2520
2521   *) Fix an endless loop in ab which occurred when ab was posting
2522      and the server dropped the connection unexpectedly.
2523      [Jeff Trawick]
2524
2525   *) Fix a segfault while handling request bodies in ap_http_filter().  
2526      This problem has been seen with mod_dav usage as well as with 
2527      requests where the body was just being discarded.  [Jeff Trawick]
2528
2529   *) Some adjustment on the handling and automatic setting (via
2530      hints.m4) of various compilation flags (eg: CFLAGS). Also,
2531      add the capability to specify flags (NOTEST_CFLAGS and
2532      NOTEST_LDFLAGS) which are used to compile Apache, but
2533      not used during the configuration process. Useful for
2534      flags like "-Werror". [Jim Jagielski]
2535
2536   *) Stop using environment variables to force debug mode or
2537      no detach.  We now use the -D command line argument to 
2538      specify the correct mode.  -DONE_PROCESS and -DNO_DETACH.
2539      [Greg Stein, Ryan Bloom]
2540
2541   *) Change handlers to use hooks. [Ben Laurie]
2542
2543   *) Stop returning copies of filenames from both apr_file_t and
2544      apr_dir_t.  We pstrdup the filenames that we store in the
2545      actual structures, so we don't need to pstrdup the strings again.
2546      [Ryan Bloom]
2547
2548   *) mod_cgi: Fix some problems where the wrong error value was being
2549      traced.  [Jeff Trawick]
2550
2551   *) EBCDIC: Fix some missing ASCII conversion on some protocol data.
2552      [Jeff Trawick]
2553
2554   *) Add generic hooks. [Ben Laurie]
2555
2556   *) Use a real pool to dup the error log descriptor.  [Ryan Bloom]
2557
2558   *) Fix a segfault caused by mod_ext_filter when the external filter 
2559      program does not exist. [Jeff Trawick]
2560
2561   *) Fix an output truncation error when on an HTTP >= 1.0 request an
2562      object of size between DEFAULT_BUCKET_SIZE and AP_MIN_BYTES_TO_WRITE 
2563      was served through mod_charset_lite (or anything else that would
2564      create a transient bucket in this size range).  ap_bucket_make_heap()
2565      silently failed (fixed), transient_setaside() discovered it, but
2566      ap_save_brigade() ignored it (fixed). [Jeff Trawick]
2567      
2568   *) Ignore \r\n or \n when using PEEK mode for input filters.  The problem
2569      is that some browsers send extra lines at the end of POST requests, and
2570      we don't want to delay sending data back to the user just because the
2571      browser isn't well behaved. [Ryan Bloom]
2572
2573   *) Get SuEXEC working again.  We can't send absolute paths to suExec
2574      because it refuses to execute those programs.  SuEXEC also wasn't
2575      always recognizing configuration changes made using the autoconf
2576      setup.  [Ryan Bloom]
2577
2578   *) Allow the buildconf process to find the config.m4 files in the correct
2579      order.  Basically, we can now name config.m4 files as config\d\d.m4,
2580      and we will sort them correctly when inserting them into the build
2581      process.  [Ryan Bloom]
2582
2583   *) Get mod_cgid to use apr calls for creating the actual CGI process.
2584      This also allows mod_cgid to use ap_os_create_priviledged_process,
2585      thus allowing for SuExec execution from mod_cgid.  Currently, we do
2586      not support everything that standard SuExec supports, but at least
2587      it works minimally now. [Ryan Bloom]
2588
2589   *) Allow SuExec to be configured from the ./configure command line.
2590      [Ryan Bloom]
2591
2592   *) Update some of the docs in README and INSTALL to reflect some of
2593      the changes in Apache 2.0 [Cliff Woolley <cliffwoolley@yahoo.com>]
2594
2595   *) If we get EAGAIN returned from the call to apr_sendfile, then we
2596      need to call sendfile again.  This gets us serving large files
2597      such as apache_2.0a9.tar.gz on FreeBSD again. [Ryan Bloom]
2598
2599   *) Get the support programs building cleanly again.
2600      [Cliff Woolley <cliffwoolley@yahoo.com>]
2601
2602   *) The Apache/Win32 Apache.exe and dll's now live in bin.  The 
2603      current directory logic now backs up over bin/ to determine the
2604      server root from the Apache.exe path.
2605
2606   *) Apache/Win32 now follows the standard conventions of mod_foo.so
2607      loadable modules, dynamic libs are all named libfoo.dll, and the
2608      makefile.win populates the include, lib and libexec directories.
2609
2610   *) Apache is now IPv6-capable.  On systems where APR supports IPv6,
2611      Apache gets IPv6 listening sockets by default.  Additionally, the
2612      Listen, NameVirtualHost, and <VirtualHost> directives support IPv6
2613      numeric address strings (e.g., "Listen [fe80::1]:8080").
2614      [Jeff Trawick]
2615
2616   *) Modify the install directory layout.  Modules are now installed in
2617      modules/.  Shared libraries should be installed in libraries/, but
2618      we don't have any of those on Unix yet.  All install directories
2619      are modifyable at configure time. [Ryan Bloom]
2620
2621   *) Install all header files in the same directory on Unix. [Ryan Bloom]
2622
2623   *) Get the functions in server/linked into the server, regardless of
2624      which modules linked into the server.  This uses the same hack 
2625      for Apache that we use for APR and apr-util to ensure all of the
2626      necessary functions are linked.  As a part of thise, the CHARSET_EBCDIC
2627      was renamed to AP_CHARSET_EBCDIC for namespace protection, and to make
2628      the scripts a bit easier.
2629      [Ryan Bloom]
2630
2631   *) Rework the RFC1413 handling to make it thread-safe, use a timeout
2632      on the query, and remove IPv4 dependencies.  [Jeff Trawick]
2633
2634   *) Get all of the auth modules to the point that they will install and
2635      be loadable into the server.  Our new build/install mechanism expects
2636      that all modules will have a common name format.  The auth modules 
2637      didn't use that format, so we didn't install them properly.
2638      [Ryan Bloom]
2639
2640   *) API routines ap_pgethostbyname() and ap_pduphostent() are no longer
2641      available.  Use apr_getaddrinfo() instead.  [Jeff Trawick]
2642
2643   *) Get "NameVirtualHost *" working in 2.0.  [Ryan Bloom]
2644
2645   *) Return HTTP_RANGE_NOT_SATISFIABLE if the every range requested starts
2646      after the end of the response. [Ryan Bloom]
2647
2648   *) Get byterange requests working with responses that do not have a
2649      content-length.  Because of the way byterange requests work, we have to
2650      have all of the data before we can actually do the byterange, so we
2651      can compute the content-length in the byterange filter.
2652      [Ryan Bloom]
2653
2654   *) Get exe CGI's working again on Windows.
2655      [Allan Edwards]
2656
2657   *) Get mod_cgid and mod_rewrite to work as DSOs by changing the way
2658      they keep track of whether or not their  post config hook has been
2659      called before.  Instead of a static variable (which is replaced when 
2660      the DSO is loaded a second time), use userdata in the process pool.
2661      [Jeff Trawick]
2662
2663 Changes with Apache 2.0a9
2664
2665   *) Win32 now requires perl to complete the final install step for users
2666      to build + install on Win32.  Makefile.win now rewrites @@ServerRoot@
2667      and installs the conf, htdocs and htdocs/manual directories.
2668      [William Rowe]
2669
2670   *) Make mod_include use a hash table to associate directive tags with
2671      functions.  This allows modules to implement their own SSI tags easily.
2672      The idea is simple enough, a module can insert it's own tag and function
2673      combination into a hash table provided by mod_include.  While mod_include
2674      parses an SSI file, when it encounters a tag in the file, it does a
2675      hash lookup to find the function that implements that tag, and passes
2676      all of the relevant data to the function.  That function is then
2677      responsible for processing the tag and handing the remaining data back
2678      to mod_include for further processing.
2679      [Paul J. Reder <rederpj@raleigh.ibm.com>]
2680
2681   *) Get rid of ap_new_apr_connection().  ap_new_connection() now has 
2682      fewer parameters: the local and remote socket addresses were removed
2683      from the parameter list because all required information is available
2684      via the APR socket.  [Jeff Trawick]
2685
2686   *) Distribution directory structure reorganized to reflect a
2687      normal source distribution with external install targets.
2688      [Roy Fielding]
2689
2690   *) The MPMs that need multiple segments of shared memory now create
2691      two apr_shmem_t variables, one for each shared memory allocation.
2692      the problem is that we can't determine how much memory will be required
2693      for shared memory allocations once we try to allocate more than one
2694      variable.  The MM code automatically aligns the shared memory allocations,
2695      so we end up needing to pad the amount of shared memory we want based
2696      on how many variables will be allocated out of the shared memory segment.
2697      It is just easier to create a second apr_shmem_t variable, and two
2698      shmem memory blocks.
2699      [Ryan Bloom]
2700
2701   *) Cleanup the export list a bit.  This creates a single unified list of
2702      functions exported by APR.  The export list is generated at configure
2703      time, and that list is then used to generate the exports.c file.
2704      Because of the way the export list is generated, we only export those
2705      functions that are valid on the platform we are building on.
2706      [Ryan Bloom]
2707
2708   *) Enable logging the cookie with mod_log_config
2709      [Sander van Zoest <sander@covalent.net>]
2710
2711   *) Fix a segfault in mod_info when it reaches the end of the configuration.
2712      [Jeff Trawick]
2713
2714   *) Added lib/aputil/ as a placeholder for utility functions which are not
2715      specific to the Apache HTTP Server (but do not make sense with APR).
2716      The first utility is "apu_dbm": a set of functions to work with DBM
2717      files. This first version can be compiled for SDBM or GDBM databases.
2718      [Greg Stein]
2719
2720   *) Complete re-write of mod_include.  This makes mod_include a filter that
2721      uses buckets directly.  This has now served the FAQ correctly.
2722      [Paul Reder <rederpj@raleigh.ibm.com>]
2723
2724   *) Allow modules to specify the first filter in a sub_request when
2725      making the sub_request.  This keeps modules from having to change the
2726      output_filter immediately after creating the sub-request, and therefore
2727      skip the sub_req_output_filter.  [Ryan Bloom]
2728
2729   *) Update ab to accept URLs with IPv6 literal address strings (in the
2730      format described in RFC 2732), and to build Host header fields in
2731      the same format.  This allows IPv6 literal address strings to be
2732      used with ab.  This support has been tested against Apache 1.3 with 
2733      the KAME patch, but Apache 2.0 does not yet work with this format
2734      of the Host header field.  [Jeff Trawick]
2735
2736   *) Accomodate an out-of-space condition in the piped logs and the
2737      rotatelogs.c code, and no longer churn log processes for this
2738      condition.  [Victor J. Orlikowski]
2739
2740   *) Add support for partial writes with apr_sendfile() to core_output_filter.
2741      [Greg Ames] 
2742
2743 Changes with Apache 2.0a8
2744
2745   *) Add a directive to mod_mime so that filters can be associated with
2746      a given mime-type.
2747      [Ryan Bloom]
2748
2749   *) Get multi-views working again.  We were setting the path_info
2750      field incorrectly if we couldn't find the specified file.
2751      [Ryan Bloom]
2752
2753   *) Fix 304 processing.  The core should never try to send the headers
2754      down the filter stack.  Always, just setup the table in the request
2755      record, and let the header filter convert it to data that is ready
2756      for the network.
2757      [Ryan Bloom]
2758
2759   *) More fixes for the proxy.  There are still bugs in the proxy code,
2760      but this has now proxied www.yahoo.com and www.ntrnet.net (my ISP)
2761      successfully.
2762      [Ryan Bloom]
2763
2764   *) Fix params for apr_getaddrinfo() call in connect proxy handler.
2765      [Chuck Murcko]
2766
2767   *) APR: Add new apr_getopt_long function to handle long options.
2768      [B. W. Fitzpatrick <fitz@red-bean.com>]
2769
2770   *) APR: Change apr_connect() to take apr_sockaddr_t instead of hostname.
2771      Add generic apr_create_socket().  Add apr_getaddrinfo() for doing
2772      hostname resolution/address string parsing and building
2773      apr_sockaddr_t.  Add apr_get_sockaddr() for getting the address
2774      of one of the apr_sockaddr_t structures for a socket.  Change
2775      apr_bind() to take apr_sockaddr_t.  [David Reid and Jeff Trawick]
2776
2777   *) Remove the BUFF from the HTTP proxy.  This is still a bit ugly, but
2778      I have proxied pages with it, cleanup will commence soon.
2779      [Ryan Bloom]
2780
2781   *) Make the proxy work with filters.  This isn't perfect, because we
2782      aren't dealing with the headers properly.  [Ryan Bloom]
2783
2784   *) Do not send a content-length iff the C-L is 0 and this is a head
2785      request.  [Ryan Bloom]
2786
2787   *) Make cgi-bin work as a regular directory when using mod_vhost_alias
2788      with no VirtualScriptAlias directives. PR#6829 [Tony Finch]
2789
2790   *) Remove BUFF from the PROXY connect handling. [Ryan Bloom]
2791
2792   *) Get the default_handler to stop trying to deal with HEAD requests.
2793      The idea is to let the content-length filter compute the C-L before
2794      we try to send the data.  If we can get the C-L correctly, then we
2795      should send it in the HEAD response.
2796      [Ryan Bloom]
2797      
2798   *) The Header filter can now determine if a body should be sent based
2799      on r->header_only.  The general idea of this is that if we delay
2800      deciding to send the body, then we might be able to compute the
2801      content-length correctly, which will help caching proxies to cache
2802      our data better.  Any handler that doesn't want to try to compute
2803      the content-length can just send an EOS bucket without data and
2804      everything will just work.
2805      [Ryan Bloom]
2806
2807   *) Add the referer to the error log if one is available.
2808      [Markus Gyger <mgyger@itr.ch>]
2809
2810   *) Mod_info.c has now been ported to Apache 2.0.  As a part of this
2811      change, the root of the configuration tree has been exposed to modules
2812      as ap_conftree.
2813      [Ryan Morgan <rmorgan@covalent.net>]
2814
2815   *) Get the core_output_filter to use the bucket interface directly.
2816      This keeps us from calling the content-length filter multiple times
2817      for a simple static request.
2818      [Ryan Bloom]
2819
2820   *) We are sending the content-type correctly now.
2821      [Ryan Bloom and Will Rowe]
2822
2823   *) APR on FreeBSD: Fix a bug in apr_sendfile() which caused us to report
2824      a bogus bytes-sent value when the only thing being sent was trailers
2825      and writev() returned an error (or EAGAIN).  [Jeff Trawick]
2826
2827   *) Get SINGLE_LISTEN_UNSERIALIZED_ACCEPT working again.  This uses the
2828      hints file to determine which platforms define 
2829      SINGLE_LISTEN_UNSERIALIZED_ACCEPT.
2830      [Ryan Bloom]
2831
2832   *) APR: add apr_get_home_directory()  [Jeff Trawick]
2833
2834   *) Initial import of 1.3-current mod_proxy. [Chuck Murcko]
2835
2836   *) Not all platforms have INADDR_NONE defined by default.  Apache
2837      used to make this check and define INADDR_NONE if appropriate,
2838      but APR needs the check too, and I suspect other applications will
2839      as well.  APR now defines APR_INADDR_NONE, which is always a valid
2840      value on all platforms.
2841      [Branko Èibej <brane@xbc.nu>]
2842
2843   *) Destroy the pthread mutex in lock_intra_cleanup() for PR#6824.
2844      [Shuichi Kitaguchi <ki@hh.iij4u.or.jp>] 
2845
2846   *) Relax the syntax checking of Host: headers in order to support
2847      iDNS. PR#6635 [Tony Finch]
2848
2849   *) When reading from file buckets we convert to an MMAP if it makes
2850      sense.  This also simplifies the default handler because the
2851      default handler no longer needs to try to create MMAPs.
2852      [Ryan Bloom]
2853
2854   *) BUFF has been removed from the main server.  The BUFF code will remain
2855      in the code until it has been purged from the proxy module as well.
2856      [Ryan Bloom]
2857
2858   *) Byteranges have been completely re-written to be a filter.  This
2859      has been tested, and I believe it is working correctly, but it could
2860      doesn't work for the Adobe Acrobat plug-in.  The output almost matches
2861      the output from 1.3, the only difference being that 1.3 includes
2862      a content-length in the response, and this does not.
2863      [Ryan Bloom]
2864
2865   *) APR read/write functions and bucket read functions now operate
2866      on unsigned integers, instead of signed ones.  It doesn't make
2867      any sense to use signed ints, because we return the error codes,
2868      so if we have an error we should report 0 bytes read or written.
2869      [Ryan Bloom]
2870
2871   *) Always compute the content length, whether it is sent or not.
2872      The reason for this, is that it allows us to correctly report
2873      the bytes_sent when logging the request.  This also simplifies
2874      content-length filter a bit, and fixes the actual byte-reporing
2875      code in mod_log_config.c
2876      [Ryan Bloom]
2877
2878   *) Remove AP_END_OF_BRIGADE definition.  This does not signify what
2879      it says, because it was only used by EOS and FLUSH buckets.  Since
2880      neither of those are required at the end of a brigade, this was
2881      really signifying FLUSH_THE_DATA, but that can be determined better
2882      by checking AP_BUCKET_IS_EOS() or AP_BUCKET_IS_FLUSH.  EOS and FLUSH
2883      buckets now return a length of 0, which is actually the amount of data
2884      read, so they make more sense.
2885      [Ryan Bloom]
2886
2887   *) Allow the core_output_filter to save some data past the end of a
2888      request.  If we get an EOS bucket, we only send the data if it 
2889      makes sense to send it.  This allows us to pipeline request
2890      responses.  As a part of this, we also need to allocate mmap
2891      buckets out of the connection pool, not the request pool.  This
2892      allows the mmap to outlive the request.
2893      [Ryan Bloom]
2894
2895   *) Make blocking and non-blocking bucket reads work correctly for
2896      sockets and pipes.  These are the only bucket types that should
2897      have non-blocking reads, because the other bucket types should
2898      ALWAYS be able to return something immediately.
2899      [Ryan Bloom]
2900
2901   *) In the Apache/Win32 console window, accept Ctrl+C to stop the 
2902      server, but use Ctrl+Break to initiate a graceful restart 
2903      instead of duplicating behavior. [John Sterling]
2904
2905   *) Patch mod_autoindex to set the Last-Modified header based on
2906      the directory's mtime, and add the ETag header.  [William Rowe]
2907
2908   *) Merge the 1.3 patch to add support for logging query string in 
2909      such a way that "%m %U%q %H" is the same as "%r".
2910      [Bill Stoddard]
2911
2912   *) Port three log methods from mod_log_config 1.3 to 2.0: 
2913      CLF compliant '-' byte count, method and protocol.
2914      [Bill Stoddard]
2915
2916   *) Add a new LogFormat directive, %c, that will log connection
2917      status at the end of the response as follows:
2918      'X' - connection aborted before the response completed.
2919      '+' - connection may be kept-alive by the server.
2920      '-' - connection will be closed by the server.
2921      [Bill Stoddard]
2922
2923   *) Expand APR for WinNT to fully accept and return utf-8 encoded
2924      Unicode file names and paths for Win32, and tag the Content-Type 
2925      from mod_autoindex to reflect that charset if the the feature
2926      macro APR_HAS_UNICODE_FS is true.  [William Rowe]
2927
2928   *) Compute the content length (and add appropriate header field) for
2929      the response when no content length is available and we can't use 
2930      chunked encoding.  [Jeff Trawick]
2931
2932   *) Changed ap_discard_request_body() to use REQUEST_CHUNKED_DECHUNK,
2933      so that content input filters get dechunked data when using
2934      the default handler. Also removed REQUEST_CHUNKED_PASS.
2935      [Sascha Schumann]
2936      
2937   *) Add mod_ext_filter as an experimental module.  This module allows
2938      the administrator to use external programs as filters.  Currently,
2939      only filtering of output is supported.  [Jeff Trawick]
2940
2941   *) Most Apache functions work on EBCDIC machines again, as protocol
2942      data is now translated (again).  [Jeff Trawick]
2943
2944   *) Introduce ap_xlate_proto_{to|from}_ascii() to clean up some of
2945      the EBCDIC support.  They are noops on ASCII machines, so this
2946      type of translation doesn't have to be surrounded by #ifdef
2947      CHARSET_EBCDIC.  [Jeff Trawick]
2948
2949   *) Fix mod_include.  tag commands work again, and the server will
2950      send the FAQ again.  This also allows mod_include to set aside
2951      buckets that include partial buckets.
2952      [Ryan Bloom and David Reid]
2953
2954   *) Add suexec support back.  [Manoj Kasichainula]
2955
2956   *) Lingering close now uses the socket directly instead of using
2957      BUFF.  This has been tested, but since all we can tell is that it
2958      doesn't fail, this needs to be really hacked on.
2959      [Ryan Bloom]
2960
2961   *) Allow filters to modify headers and have those headers be sent to
2962      the client.  The idea is that we have an http_header filter that
2963      actually sends the headers to the network.  This removes the need
2964      for the BUFF to send headers.
2965      [Ryan Bloom]
2966
2967   *) Charset translation: mod_charset_lite handles translation of
2968      request bodies.  Get rid of the xlate version of ap_md5_digest()
2969      since we don't compute digests of filtered (e.g., translated) 
2970      response bodies this way anymore.  (Note that we don't do it at
2971      all at the present; somebody needs to write a filter to do so.)
2972      [Jeff Trawick]
2973
2974   *) Input filters and ap_get_brigade() now have a input mode parameter 
2975      (blocking, non-blocking, peek) instead of a length parameter.
2976      [hackathon]
2977
2978   *) Update the mime.types file to the registered media types as
2979      of 2000-10-19. PR#6613 [Carsten Klapp <carsten.klapp@home.net>,
2980      Tony Finch]
2981
2982   *) Namespace protect some macros declared in ap_config.h
2983      [Ryan Bloom]
2984
2985   *) Support HTTP header line folding with input filtering.
2986      [Greg Ames]
2987
2988   *) Mod_include works again.  This should still be re-written, but at
2989      least now we can serve an SHTML page again.
2990      [Ryan Bloom]
2991
2992   *) Begin to remove BUFF from the core.  Currently, we keep a pointer
2993      to both the BUFF and the socket in the conn_rec.  Functions that
2994      want to use the BUFF can, functions that want to use the socket,
2995      can.  They point to the same place.
2996      [Ryan Bloom]
2997
2998   *) apr_psprintf doesn't understand %lld as a format.  Make it %ld.
2999      [Tomas "Ögren" <stric@ing.umu.se>]
3000
3001   *) APR pipes on Unix and Win32 are now cleaned up automatically when the 
3002      associated pool goes away.  (APR pipes on OS/2 were already had this
3003      logic.)  This resolvs a fatal file descriptor leak with CGIs.  
3004      [Jeff Trawick]
3005
3006   *) The final line of the config file was not being read if there was
3007      no \n at the end of it.  This was caused by apr_fgets returning 
3008      APR_EOF even though we had read valid data.  This is solved by
3009      making cfg_getline check the buff that was returned from apr_fgets.
3010      If apr_fgets return APR_EOF, but there was data in the buf, then we
3011      return the buf, otherwise we return NULL.
3012      [Ryan Bloom]
3013
3014   *) Piped logs work again in the 2.0 series.
3015      [Ryan Bloom]
3016
3017   *) Restore functionality broken by the mod_rewrite security fix:
3018      rewrite map lookup keys and default values are now expanded
3019      so that the lookup can depend on the requested URI etc.
3020      PR #6671 [Tony Finch]
3021
3022   *) Tighten up the syntax checking of Host: headers to fix a
3023      security bug in some mass virtual hosting configurations
3024      that can allow a remote attacker to retrieve some files
3025      on the system that should be inaccessible. [Tony Finch]
3026
3027   *) Add a pool bucket type.  This bucket is used for data allocated out
3028      of a pool.  If the pool is cleaned before the bucket is destroyed, then
3029      the data is converted to a heap bucket, allowing it to survive the
3030      death of the pool.
3031      [Ryan Bloom]
3032
3033   *) Add a flush bucket.  This allows modules to signal that the filters
3034      should all flush whatever data they currently have.  There is no way
3035      to actually force them to do this, so if a filter ignores this bucket,
3036      that's life, but at least we can try with this.
3037      [Ryan Bloom]
3038
3039   *) Add an output filter for sub-requests.  This filter just strips the
3040      EOS bucket so that we don't confuse the main request's core output
3041      filter by sending multiple EOS buckets.  This change also makes sub
3042      requests start to send EOS buckets when they are finished.
3043      [Ryan Bloom]
3044
3045   *) Make ap_bucket_(read|destroy|split|setaside) into macros.  Also
3046      makes ap_bucket_destroy a return void, which is okay because it
3047      used to always return APR_SUCCESS, and nobody ever checked its
3048      return value anyway.
3049      [Cliff Woolley <cliffwoolley@yahoo.com>]
3050
3051   *) Remove the index into the bucket-type table from the buckets
3052      structure.  This has now been replaced with a pointer to the
3053      bucket_type.  Also add some macros to test the bucket-type.
3054      [Ryan Bloom]
3055
3056   *) Renamed all MODULE_EXPORT symbols to AP_MODULE_DECLARE and all symbols
3057      for CORE_EXPORT to AP_CORE_DECLARE (namespace protecting the wrapper)
3058      and retitled API_EXPORT as AP_DECLARE and APR_EXPORT as APR_DECLARE.
3059      All _VAR_ flavors changes to _DATA to be absolutely clear.
3060      [William Rowe]
3061
3062   *) Add support for /, //, //servername and //server/sharename 
3063      parsing of <Directory> blocks under Win32 and OS2.
3064      [Tim Costello, William Rowe, Brian Harvard]
3065
3066   *) Remove the function pointers from the ap_bucket type.  They have been
3067      replaced with a global table.  Modules are allowed to register bucket
3068      types and use then use those buckets.
3069      [Ryan Bloom]
3070
3071   *) mod_cgid: In the handler, shut down the Unix socket (only for write) 
3072      once we finish writing the request body to the cgi child process; 
3073      otherwise, the client doesn't hit EOF on stdin.  Small request bodies 
3074      worked without this change (for reasons I don't understand), but large 
3075      ones didn't.  [Jeff Trawick]
3076
3077   *) Remove file bucket specific information from the ap_bucket type.
3078      This has been moved to a file_bucket specific type that hangs off
3079      the data pointer in the ap_bucket type.
3080      [Ryan Bloom]
3081
3082   *) Input filtering now has a third argument.  This is the amount of data
3083      to read from lower filters.  This argument can be -1, 0, or a positive
3084      number.  -1 means give me all the data you have, I'll deal with it and
3085      let you know if I need more.  0 means give me one line and one line
3086      only.  A positive number means I want no more than this much data.
3087
3088      Currently, only 0 and a positive number are implemented.  This allows
3089      us to remove the remaining field from the conn_rec structure, which
3090      has also been done.
3091      [Ryan Bloom] 
3092     
3093   *) Big cleanup of the input filtering.  The goal is that http_filter
3094      understands two conditions, headers and body.  It knows where it is
3095      based on c->remaining.  If c->remaining is 0, then we are in headers,
3096      and http_filter returns a line at a time.  If it is not 0, then we are
3097      in body, and http_filter returns raw data, but only up to c->remaining
3098      bytes.  It can return less, but never more.
3099      [Greg Ames, Ryan Bloom, Jeff Trawick]
3100
3101   *) mod_cgi: Write all of the request body to the child, not just what
3102      the kernel would accept on the first write.  [Jeff Trawick]
3103
3104   *) Back out the change that moved the brigade from the core_output_filters
3105      ctx to the conn_rec.  Since all requests over a given connection
3106      go through the same core_output_filter, the ctx pointer has the
3107      correct lifetime.
3108      [Ryan Bloom]
3109
3110   *) Fix another bug in the send_the_file() read/write loop. A partial
3111      send by apr_send would cause unsent data in the read buffer to
3112      get clobbered. Complete making send_the_file handle partial
3113      writes to the network.
3114      [Bill Stoddard]
3115
3116   *) Fix a couple of type fixes to allow compilation on AIX again
3117      [Victor J. Orlikowski <v.j.orlikowski@gte.net>]
3118
3119   *) Fix bug in send_the_file() which causes offset to be ignored
3120      if there are no headers to send.
3121      [Bill Stoddard]
3122
3123   *) Handle APR_ENOTIMPL returned from apr_sendfile in the core
3124      filter. Useful for supporting Windows 9* with a binary
3125      compiled on Windows NT.
3126      [Bill Stoddard]
3127
3128 Changes with Apache 2.0a7
3129
3130   *) Reimplement core_output_filter to buffer/save bucket brigades
3131      across multiple calls to the core_filter. The brigade will be
3132      sent when either MIN_BYTES_TO_SEND or MAX_IOVEC_TO_WRITE
3133      thresholds are hit or the EOS bucket is received.
3134      [Bill Stoddard]
3135
3136   *) Create experimental filter (buffer_filter) that coalesces bytes 
3137      into one large buffer before invoking the next filter in the
3138      chain. This filter is particularly useful with the current 
3139      implementation of mod_autoindex when it inserted above the
3140      chunk_filter. mod_autoindex generates a lot of brigades that
3141      containing buckets holding just a few bytes each. The
3142      buffer_filter coalesces these buckets into a single large bucket.
3143      [Bill Stoddard]
3144
3145   *) Add apr_sendfile() support into the core_output_filter.
3146      [Bill Stoddard]
3147
3148   *) Add apr_sendv() support into the core_output_filter.
3149      [Bill Stoddard]
3150
3151   *) Fix mod_log_config so that it compiles cleanly with BUFFERED_LOGS
3152      [Mike Abbott <mja@sgi.com>]
3153
3154   *) Remove ap_send_fb.  This is no longer used in Apache, and it doesn't
3155      make much sense, because Apache uses buckets instead of BUFFs now.
3156      [Ryan Bloom]
3157
3158   *) send_the_file now falls back to a read/write loop on platforms that
3159      do not have sendfile.
3160      [Ryan Bloom and Brian Havard]
3161
3162   *) Install apachectl correctly, and substitute the proper values so
3163      that it works again.  [Ryan Bloom]
3164
3165   *) Better(??) handle platforms that lack sendfile().
3166      [Jim Jagielski]
3167
3168   *) APR now has UUID generation/formatting/parsing support.
3169      [Greg Stein]
3170
3171   *) Begin the http_filter.  This is an input filter that understands
3172      the absolute basic amount required to parse an HTTP Request.  The
3173      goal is to be able to split headers from request body before passing
3174      the data back to the other filters.
3175      [Ryan Bloom]
3176
3177   *) Bring forward from 1.3.13 the config directory implementation
3178      [Jim Jagielski]
3179
3180   *) install apxs if it is created
3181      [Ryan Bloom]
3182
3183   *) Added APR_IS_STATUS_condition test macros to eliminate canonical error
3184      conversions.  [William Rowe]
3185
3186   *) Now that we have ap_add_input_filter(), rename ap_add_filter() to 
3187      ap_add_output_filter().  [Jeff Trawick]
3188
3189   *) Multiple build and configuration fixes
3190     Build process:
3191
3192       -add datadir and localstatedir substitutions
3193       -fix layout name
3194       -fix logfilename misspelling
3195       -fix evaluation of installation dir variables and
3196       -replace $foobar by $(foobar) to be usefull in the makefile
3197     
3198     Cross compile:
3199     
3200       -add rules for cross-compiling in rules.mk. Okay, rule to check for
3201        $CC_FOR_BUILD is still missing
3202       -use CHECK_TOOL instead of CHECK_PROG for ranlib
3203       -add missing "AR=@AR@" to severaly Makefile.in's
3204       -cache result for "struct rlimit"
3205       -compile all helper programs with native and cross compiler
3206        and use the native version to generate header file
3207      ["Rüdiger" Kuhlmann <Tadu@gmx.de>]
3208
3209   *) Prepare our autoconf setup for autoconf 2.14a and for cross-
3210      compiling.
3211      ["Rüdiger" Kuhlmann <Tadu@gmx.de>]
3212
3213   *) Fix a bug where a client which only sends \n to delimit header
3214      lines (netcat) gets a strange looking HTTP_NOT_IMPLEMENTED 
3215      message.  Start working on ebcdic co-existance with input 
3216      filtering.
3217      [William Rowe, Greg Ames]
3218
3219   *) If mod_so is enabled in the server always create libexec, even
3220      if there are no modules installed in this directory.  This is a
3221      requirement for APXS to work correctly.
3222      [Ryan Bloom]
3223
3224   *) Connection oriented output filters are now stored in the 
3225      conn_rec instead of the request_rec.  This allows us to add the
3226      output filter in the pre-connection phase instead of the
3227      post_read_request phase, which keeps us from trying to write an
3228      error page before we have a filter to write to the network.
3229      [Ryan Bloom, Jeff Trawick, and Greg Ames]
3230
3231   *) Cleaning up an mmap bucket no longer deletes the mmap.  An
3232      mmap can be used across multiple buckets (default_handler with
3233      byte ranges, mod_file_cache, mod_mmap_static), so cleanup of
3234      the mmap itself can't be associated with the bucket.
3235      [Jeff Trawick]
3236
3237   *) Add .dll caching directive ISAPICacheFile to mod_isapi.
3238      [William Rowe]
3239
3240   *) Radical surgery to improve mod_isapi support under Win32.
3241      Includes a number of newer ServerSupportFunction calls, support
3242      for ReadClient (in order to retrieve POSTs greater than 48KB),
3243      and general bug fixes to more reliably load ISAPI .dll's and
3244      prevent leaking handle resources.  Note: There are still 
3245      discrepancies between IIS's and Apache's ServerVariables, and
3246      async calls are still not supported.  Additional warnings are
3247      logged to facilitate debugging of unsupported ISAPI calls.
3248      [William Rowe]
3249
3250   *) Add input filtering to Apache.  The basic idea for the input
3251      filters is the same as the ideas for output filters.  The biggest
3252      difference is that instead of calling ap_pass_brigade, ap_get_brigade
3253      should be called, and the order of execution for the filter itself is
3254      different.  When writing an output filter, a brigade is passed in,
3255      and filters operate directly on that brigade, when done, they call
3256      ap_pass_brigade.  Input filters are the exact opposite.  Because input
3257      is not a push operation, filters first call ap_get_brigade.  When this
3258      function returns, the input filter will be left with a valid brigade.
3259      The input filter should then operate on the brigade, and return.
3260      [Ryan Bloom]
3261
3262   *) Fix building on BSD/OS using its native make. The build system
3263      falls back to the BSD .include directive on that host platform.
3264      [Sascha Schumann]
3265
3266   *) Expand dbmmanage to allow -d -m -s -p options for Crypt, MD5,
3267      SHA1 and plaintext password encodings.  Make feature tests a
3268      bit more flexible.  [William Rowe]
3269
3270   *) Charset translation: mod_charset_lite handles output content 
3271      translation in a filter.  mod_charset_lite no longer ignores 
3272      subrequests.  A bunch of cruft related to BUFF's support for
3273      translating request and response bodies was removed.  
3274      [Jeff Trawick]
3275
3276   *) Move the addition of the CORE filter to the post_read_request
3277      hook in http_core.c.  This removes the need to add the filter in
3278      multiple places and allows for an SSL module to be added much
3279      simpler. [Ryan Bloom]
3280
3281   *) Fix a security problem that affects certain configurations of
3282      mod_rewrite. If the result of a RewriteRule is a filename that
3283      contains expansion specifiers, especially regexp backreferences
3284      $0..$9 and %0..%9, then it may be possible for an attacker to
3285      access any file on the web server. [Tony Finch]
3286
3287   *) Fix a bug where errors that are detected during early request parsing
3288      don't produce visible HTTP error messages at the browser, because
3289      the core_filter wasn't present.  [Greg Ames]
3290
3291   *) Provide apr_socklen_t as a portability aid. 
3292      [Victor  J. Orlikowski]
3293
3294   *) Overhaul of dbmmanage to allow a groups arg (as in Apache 1.2)
3295      as well as a comment arg to the add, adduser and update cmds.
3296      update allows the user to clear or preserve pw/groups/comment.
3297      Fixed a bug in dbmmanage that prevented the check option from 
3298      parsing a password followed by :group... text.  Corrected the
3299      seed calcualation for Win32 systems, and added -lsdbm support.
3300      [William Rowe]
3301
3302   *) Configured mod_auth_dbm to compile with sdbmlib under Win32.
3303      [William Rowe]
3304
3305   *) Avoid a segfault when parsing .htaccess files.  An 
3306      uninitialized tree pointer was passed to ap_build_config().
3307      [Jeff Trawick]
3308
3309   *) Change the way that inet_addr & inet_network are checked for
3310      in APR's configure process to allow BeOS BONE to correctly
3311      find them. With this change BeOS BONE now builds from source
3312      with no problems.  [David Reid]
3313
3314   *) Fix a bug in apr_create_process() for Unix.  The NULL signifying
3315      the end of the parameters to execve() was stored in the wrong
3316      location, overlaying the storage beyond the newargs[] array and 
3317      also passing uninitialized storage to execve(), which would 
3318      sometimes fail with EFAULT.  [Jeff Trawick]
3319
3320   *) Fix a bug parsing configuration file containers.  With a sequence
3321      like this in the config file
3322
3323        <IfModule mod_kilroy.c>
3324        any stuff
3325        </IfModule>
3326        <IfModule mod_lovejoy.c>
3327        (blank line)
3328        any stuff
3329        </IfModule>
3330
3331      the second container would be terminated at the blank line due to
3332      sediment in the buffer from reading the prior </IfModule> and an 
3333      error message would be generated for the real </IfModule> for the
3334      second container.  Also due to this problem, any two characters 
3335      could be used for "</" in the close of a container.  
3336      [Jeff Trawick]
3337
3338   *) ap_add_filter prototype changed to remove the ctx pointer.  The
3339      pointer still remains in the filter structure, but it can not be
3340      a part of the ap_add_filter prototype.  The reason is that when
3341      the core uses AddFilter to add a filter to the stack it doesn't
3342      know how to allocate the ctx pointer, or even how much memory should
3343      be allocated.  The filters will have to be responsible for allocating
3344      the ctx memory when they need it.
3345      [Ryan Bloom]
3346
3347   *) Add an AddFilter directive.  This directive takes a list of filters
3348      that should be activated for the requested resource.
3349      [Ryan Bloom]
3350
3351   *) apr_snprintf(): Get quad format strings working on OS/390 (and perhaps
3352      some other platforms).  [Jeff Trawick]
3353
3354   *) Modify mod_include to be a filter.  Currently, it has only been tested
3355      on actual files, but it should work for CGI scripts too.
3356      [Ryan Bloom]
3357
3358   *) apr_putc(), apr_puts() for Unix: handle buffered files and interrupted
3359      writes.  apr_flush() for Unix: handle interrupted writes.
3360      [Jeff Trawick]
3361
3362   *) NameVirtualHost can now take "*" as an argument instead of
3363      an IP address. This allows you to create a purely name-based
3364      virtual hosting server that does not have any IP addresses in
3365      the configuration file and which ignores the local address
3366      of any connections. PR #5595, PR #4455 [Tony Finch]
3367
3368   *) Fix some compile warnings in mod_mmap_static.c
3369      [Mike Abbott <mja@sgi.com>]
3370
3371   *) Fix chunking problem with CGI scripts.  The general problem was that
3372      the CGI modules were adding an EOS bucket and then the core added an
3373      EOS bucket.  The chunking filter finalizes the chunked response when it
3374      encounters an EOS bucket.  Because two EOS buckets were sent, we
3375      finalized the response twice.  The fix is to make sure we only send one
3376      EOS, by utilizing a flag in the request_rec.
3377      [Ryan Bloom]
3378
3379   *) apr_put_os_file() now sets up the unget byte appropriately on Unix
3380      and Win32.  Previously, the first read from an apr_file_t set up via
3381      apr_put_os_file() would return a '\0'.  [Jeff Trawick]
3382
3383   *) Mod_cgid now creates a single element bucket brigade, with a pipe
3384      bucket, instead of using BUFF's and ap_r*.
3385      [Ryan Bloom]
3386
3387   *) APRVARS.in no longer overwrites the EXTRA_LIBS variable.
3388      [Mike Abbott <mja@sgi.com>]
3389
3390   *) Remove ap_bopenf from buff code.  This required modifying the file_cache
3391      code to use APR file's directly instead of going through BUFFs.
3392      [Ryan Bloom]
3393
3394   *) Fix compile break on some platforms for mod_mime_magic.c
3395      [John K. Sterling <sterling@covalent.net>]
3396
3397   *) Fix merging of AddDefaultCharset directive.
3398      PR #5872 (1.3) [Jun Kuriyama <kuriyama@imgsrc.co.jp>]
3399
3400   *) Minor revamp of the rlimit sections of code. We now test
3401      explicitly for setrlimit and getrlimit. Also, unixd_set_rlimit()
3402      is now "available" even if the platform doesn't support
3403      the rlimit family (it's just a noop though). [Jim Jagielski]
3404
3405   *) Migrate the pre-selection of which MPM to use for specific
3406      platforms to hints.m4, which contains (or should contain)
3407      all platform specific "hints". [Jim Jagielski]
3408
3409   *) Remove IOLs from Apache.  With filtering, IOLs are no longer necessary
3410      [Ryan Bloom]
3411
3412   *) Add tables with non-string/binary values to APR.
3413      [Ken Coar]
3414
3415   *) Fix some bad calls to ap_log_rerror() in mod_rewrite. 
3416      [Jeff Trawick]
3417
3418   *) Update PCRE to version 3.2.  [Ryan Bloom]
3419
3420   *) Change the way buckets' destroy functions are called so that
3421      they can be more directly used when changing the type of a
3422      bucket in place. [Tony Finch]
3423
3424   *) Add generic support for reference-counting the resources used by
3425      buckets, and alter the HEAP and MMAP buckets to use it. Change
3426      the way buckets are initialised to support changing the type of
3427      buckets in place, and use it when setting aside TRANSIENT buckets.
3428      Change the implementation of TRANSIENT buckets so that it can be
3429      mostly shared with IMMORTAL buckets, which are now implemented.
3430      [Tony Finch]
3431
3432 Changes with Apache 2.0a6
3433
3434   *) Add support to Apache and APR for dsos on OS/390.  [Greg Ames]
3435
3436   *) Add a chunking filter to Apache.  This brings us one step closer
3437      to removing BUFF. [Ryan Bloom]
3438
3439   *) ap_add_filter now adds filters in a LIFO fashion.  The first filter
3440      added to the stack is the last filter to be called.  [Ryan Bloom]
3441
3442   *) Apache 2.0 has been completely documented using Scandoc.  The
3443      docs can be generated by running 'make docs'.  [Ryan Bloom]
3444
3445   *) Add filtered I/O to Apache.  This is based on bucket brigades,
3446      Currently the buckets still use BUFF under the covers, but that
3447      should change quickly.  The only currently written filter is the
3448      core filter which just calls ap_bwrite.  [The Apache Group]
3449
3450   *) APR locks on Unix: Let APR_LOCKALL locks work when APR isn't
3451      built with thread support.  [Jeff Trawick]
3452
3453   *) Abort configuration if --with-layout was specified and there's
3454      no layout definition file.  [Ken Coar]
3455
3456   *) Add support for '--with-port=n' option to configure.  [Ken Coar]
3457
3458   *) Add support for extension methods for the Allow response header
3459      field, and an API routine for accessing r->allowed and the
3460      list of extension methods in a unified manner.  [Ken Coar]
3461
3462   *) mod_cern_meta: fix broken file reading loop in scan_meta_file().
3463      [Rob Simonson <simo@us.ibm.com>]
3464
3465   *) Get xlate builds working again.  The apr renaming in 2.0a5 broke
3466      APACHE_XLATE builds.  [Jeff Trawick]
3467
3468   *) A configuration file parsing problem was fixed.  When the 
3469      configuration file started with an IfModule/IfDefine container, 
3470      only the last statement in the container would be retained.  
3471      [Jeff Trawick]
3472
3473 Changes with Apache 2.0a5
3474
3475   *) Perchild is serving pages after passing them to different child
3476      processes.  There are still a lot of bugs, but this does work.  I
3477      have made requests against the same installation of Apache, and had
3478      different servers use different user IDs to serve the responses.
3479      This change moves to using socketpair instead of an AF_UNIX socket.
3480      [Ryan Bloom]
3481
3482   *) Perchild MPM still doesn't work perfectly, but it is serving pages.
3483      It can't seem to pass between child processes yet, but I think we
3484      are closer now than before.  This moves us back to using Unix
3485      Domain Sockets.  [Ryan Bloom]
3486
3487   *) libapr functions and types renamed with apr_ prefix.
3488      #include "apr_compat.h" for 1.3.x backwards compat
3489      [Perl]
3490
3491   *) Fix problems with APR sockaddr handling on Win32.  It didn't always
3492      return the right information on the local socket address.
3493      [Gregory Nicholls <gnicholls@level8.com>]
3494
3495   *) ap_recv() on Win32: Set bytes-read to 0 on error.  
3496      [Gregory Nicholls <gnicholls@level8.com>]
3497
3498   *) Add an option to not detach from the controlling terminal without
3499      going into single process mode.  This allows for much easier
3500      debugging of the process startup code. [Ryan Bloom]
3501
3502   *) ab: don't use perror() to report the failure of an APR function.
3503      [Jeff Trawick]
3504
3505   *) Make dexter, mpmt_pthread, and perchild MPMs not destroy the
3506      scoreboard on graceful restarts.
3507      [Ryan Bloom]
3508
3509   *) Fix segfault/SIGSEGV when running gzip from mod_mime_magic.c.
3510      An invalid ap_proc_t was passed to ap_create_process().
3511      [Jeff Trawick]
3512
3513   *) Allow modules to register filters.  Those filters are still
3514      never called, but this is a step in the right direction.
3515      [Ryan Bloom and Greg Stein]
3516
3517   *) Register the mod_cgid daemon process for cleanup so that it is
3518      killed at termination if it does not die when the parent gets
3519      SIGTERM.  This change is to fix occasional problems where the
3520      process stays around.  Bugs in similar logic in mod_rewrite and
3521      mod_include were also fixed.  [Jeff Trawick]
3522
3523   *) Fix a bug in the time handling.  Basically, we were imploding a time
3524      in ap_parseHTTPdate, but it had bogus data in the exploded time format.
3525      Namely, tm_usec and tm_gmtoff were not filled out.  ap_implode_time
3526      uses those two fields to adjust the time value.  Because of the HTTP
3527      spec, both of those values can be zero'ed out safely.  This fixes
3528      the bug correctly.  [Ryan Bloom]
3529
3530   *) Fix a couple of place in the Windows code where the wrong error
3531      code was being returned. [Gregory Nicholls <gnicholls@level8.com>]
3532
3533   *) Fix POOL_DEBUG (at least for prefork mpm). [Dean Gaudet]
3534
3535   *) Added the APR_EOL_STR macro for platform dependent differences in 
3536      logfiles and other raw text (such as all APR files).  Fixes logfiles
3537      not terminated with cr/lf sequences in Win32.  [William Rowe]
3538
3539   *) Move all strings functions in APR to src/lib/apr/strings and create
3540      apr_strings.h for the prototypes. [Ryan Bloom]
3541
3542   *) APR lock fixes: when using SysV sems, flock(), or fcntl(), be sure
3543      to repeat the syscall until we stop getting EINTR.  I noticed a
3544      related problem at termination (SIGTERM) on FreeBSD when using
3545      fcntl().  Apache 1.3 had these new loops too.  Also, make the flock() 
3546      implementation work properly with child init.  Previously, ap_lock()
3547      was essentially a no-op because all children were using different
3548      locks and thus nobody ever blocked.  [Jeff Trawick]
3549
3550   *) The htdocs/ tree has been moved out of the CVS source tree into
3551      a separate area for easier development.  This has NO EFFECT on
3552      end-users or Apache installations.  [Ken Coar]
3553
3554   *) Integrate the mod_dav module for WebDAV protocol handling. This
3555      adds the dav and dav_fs modules, the SDBM library, and additional
3556      XML handling utilities. [Greg Stein]
3557
3558   *) Clean out obsolete names (from httpd.h) for the HTTP Status Codes
3559      [Greg Stein]
3560
3561   *) Update the lib/expat-lite/ library (bring forward changes from
3562      the Apache 1.3 repository). [Greg Stein]
3563
3564   *) If sizeof(long long) == sizeof(long), then prefer long in APR
3565      configure.in.  [Dave Hill <ddhill@zk3.dec.com>]
3566
3567   *) Add ap_sendfile for Tru64 Unix.  Also, add an error message for
3568      machines where sendfile is detected, but nobody has written ap_sendfile.
3569      [Dave Hill <ddhill@zk3.dec.com>]
3570
3571   *) Compile fixes in mod_mmap_static.  [Victor J. Orlikowski]
3572
3573   *) ab would start up more connections than needed, then quit when the
3574      desired number were finished. Also fixed a logic error involving
3575      ab keepalives.  [Victor J. Orlikowski]
3576
3577   *) WinNT: Implement non-blocking pipes with timeouts to communicate
3578      with CGIs. Apache 2.0a4 had non-blocking pipes but without 
3579      timeouts (i.e, if a timeout was specified, the pipe reverted to
3580      a full blocking pipe). Now the behaviour is more in line with
3581      Unix non-blocking pipes.
3582      [Bill Stoddard]
3583
3584   *) WinNT: Implement accept socket reuse. Using mod_file_cache to
3585      cache open file handles along with accept socket reuse enables
3586      Apache 2.0 to serve non-keepalive requests for static files at
3587      3x the rate of Apache 1.3.(e.g, Apache 1.3 will serve 400 rps
3588      and Apache 2.0 will serve almost 1200 rps on my system).
3589      [Bill Stoddard]
3590
3591   *) Merge mod_mmap_static function into mod_file_cache. mod_file_cache
3592      supports two config directives, mmapfile (same behavious as
3593      mod_mmap_static) and cachefile. Use the cachefile directive
3594      to cache open file handles. This directive only works on systems
3595      that have implemented the ap_sendfile API. cachefile works today
3596      on Windows NT, but has not been tested on any flavors of Unix.
3597      [Bill Stoddard]
3598
3599   *) Cleanup the configuration.  With the last few changes the
3600      configuration process automatically:
3601          inherits information about how to build from APR.  Allowing
3602          APR to inform Apache that it should or should not use -ldl
3603         
3604          Detects which mod_cgi should be used mod_cgi or mod_cgid,
3605          based on the threading model
3606
3607          Apache calls APR's configure process before finishing it's
3608          configuration processing, allowing for more information flow
3609          between the two.
3610      [Ryan Bloom]
3611          
3612
3613   *) Change Unix and Win32 ap_setsockopt() so that APR_SO_NONBLOCK
3614      with non-zero argument makes the socket non-blocking.  BeOS and
3615      OS/2 already worked this way.  [Jeff Trawick]
3616
3617   *) ap_close() now calls ap_flush() for buffered files, so write
3618      operations work a whole lot better on buffered files.
3619      [Jeff Trawick]
3620
3621   *) Fix error messages issued from MPMs which explain where to change
3622      compiled-in limits (e.g., ThreadsPerChild, MaxClients, StartTreads).
3623      [Greg Ames]
3624
3625   *) ap_create_pipe() now leaves pipes in blocking state.  (This helps 
3626      reduce the number of syscalls on Unix.)  ap_set_pipe_timeout() is
3627      now the way that the blocking state of a pipe is manipulated.
3628      ap_block_pipe() is gone.  [Jeff Trawick]
3629
3630   *) Correct the problem where the only local host name that the IP stack
3631      can discover are 'undotted' private names.  If no fully qualified
3632      domain name can be identified, the default ServerName will be set to
3633      the machine's IP address string. A warning is always provided if the
3634      ServerName not specified, but assumed.  Solves PR6215 [William Rowe]
3635
3636   *) Repair problems with config file processing which caused segfault
3637      at init when virtual hosts were defined and which caused ServerName to
3638      be ignored when there was no valid DNS setup.  [Jeff Trawick]
3639
3640   *) Removed pointless ap_is_aborted macro function. [Roy Fielding]
3641
3642   *) Add ap_sendfile implementation for AIX
3643      [Victor J. Orlikowski]
3644
3645   *) Repair C++ compatibility in ap_config.h, apr_file_io.h, 
3646      apr_network_io.h, and apr_thread_proc.h.  
3647      [Tyler J. Brooks <tylerjbrooks@home.com>, Jeff Trawick]
3648
3649   *) Bring the allocation and pool debugging code back into a working
3650      state.  This will need to be tested as so far it's only been used on
3651      BeOS. [David Reid]
3652
3653   *) Change configuration command setup to be properly typesafe when in
3654      maintainer mode. Note that this requires a compiler that can initialise
3655      unions. [Ben Laurie]
3656
3657   *) Turn on buffering for config file reads.  Part of this was to
3658      repair buffered I/O support in Unix and implement buffered
3659      ap_fgets() for all platforms.  [Brian Havard, Jeff Trawick]
3660
3661   *) Win32: Fix problem where UTC offset was not being set correctly
3662      in the access log. Problem reported on news group by Jerry Baker.
3663      [Bill Stoddard]
3664
3665   *) Fix segfault when reporting this type of syntax error:
3666      "</container> without matching <container> section", where
3667      container is VirtualHost or Directory or whatever.
3668      [Jeff Trawick]
3669
3670   *) Prevent the source code for CGIs from being revealed when using
3671      mod_vhost_alias and the CGI directory is under the document root
3672      and a user makes a request like http://www.example.com//cgi-bin/cgi
3673      as reported in <news:960999105.344321@ernani.logica.co.uk>
3674      [Tony Finch]
3675
3676   *) Add support for the new Beos NetwOrking Environment (BONE)
3677      [David Reid]
3678
3679   *) xlate: ap_xlate_conv_buffer() now tells the caller when the
3680      final input char is incomplete; ap_bwrite_xlate() now handles
3681      incomplete final input chars.  [Jeff Trawick]
3682
3683   *) Yet another update to saferead/halfduplex stuff -- need to ensure
3684      that a bhalfduplex call occurs before logging or else DNS and
3685      such can delay the last packet of the response.  [Dean Gaudet]
3686
3687   *) Some syscall reduction in APR on unix -- don't seek when setting
3688      up an mmap; and don't fcntl() more than once per socket.
3689      [Dean Gaudet]
3690
3691   *) When mod_cgid is started as root, the cgi daemon now switches 
3692      to the configured User/Group (like other httpd processes) 
3693      instead of continuing as root.  [Jeff Trawick]
3694
3695   *) The prefork MPM now uses an APR lock for the accept() mutex.
3696      It has not been getting a lock at all recently.  httpd -V now 
3697      displays APR's selection of the lock mechanism instead of the 
3698      symbols previously respected by prefork.  [Jeff Trawick]
3699
3700   *) Change the mmap() feature test to check only for existence.
3701      The previous check required features not used by Apache.
3702      [Greg Ames]
3703
3704   *) Fix a couple of bugs in mod_cgid:  The cgi arguments were
3705      sometimes mangled.  The len parm to accept() was not 
3706      initialized, leading sometimes to an endless loop of failed
3707      accept() calls on OS/390 and anywhere else that failed the call
3708      if the len was negative.  Use <sys/un.h> for struct sockaddr_un
3709      instead of declaring it ourselves to fix a compilation problem
3710      on Solaris.  [Jeff Trawick]
3711
3712   *) Add Resource limiting code back into Apache 2.0. [Ryan Bloom]
3713
3714   *) Fix zombie process problem with mod_cgi.  [Jeff Trawick]
3715
3716   *) Port mod_mmap_static to 2.0.  Make it go faster.  [Greg Ames]
3717
3718   *) Fix storage overlay when loading dsos.  Symptom: Apache dies at
3719      initialization if ALLOC_DEBUG is defined; no known symptom 
3720      otherwise.  [Jeff Trawick]
3721
3722   *) Fix typo in configure script when checking for mod_so.  bash
3723      doesn't seem to have a problem but /bin/sh on Solaris does.
3724      Symptom: "./configure: test: unknown operator =="
3725      [Jeff Trawick]
3726    
3727   *) Rebind the Win32 NT and 9x services control into the MPM.  
3728      All console, WinNT SCM and Win9x pseudo-service control code is
3729      now wrapped within the WinNT MPM.
3730      [William Rowe]
3731
3732   *) Make a copy of getenv("PATH") before storing for later use.  Some
3733      getenv() implementations use the same storage for successive calls.
3734      CGIs on OS/390 had a bad PATH due to this.  [Jeff Trawick]
3735
3736   *) Server Tokens work in 2.0 again.  This also propogates the change
3737      to allow just the product name in the server string using
3738      PRODUCT_ONLY.
3739      [Ryan Bloom]
3740
3741 Changes with Apache 2.0a4
3742
3743   *) EBCDIC: Rearrange calls to ap_checkconv() so that most handlers
3744      won't need to call it.  [Greg Ames, Jeff Trawick]
3745
3746   *) Move pre_config hook call to between configuration read and config
3747      tree walk.  This allows all modules to implement pre_config hooks
3748      and know that they will be called at an appropriate time.
3749      [Ryan Bloom] 
3750
3751   *) mod_cgi, mod_cgid: Make ScriptLog directive work again.  
3752      [Jeff Trawick]
3753
3754   *) Add pre-config hooks back to all modules.
3755      [Ryan Bloom]
3756
3757   *) Fix a SIGSEGV in ap_md5digest(), which is used when you have
3758      ContentDigest enabled and we can't/don't mmap the file. 
3759      [Jeff Trawick]
3760
3761   *) We now report the correct line number for syntax errors in config
3762      files.  [Ryan Bloom, Greg Stein, Jeff Trawick]
3763
3764   *) Brought mod_auth_digest up to synch with 1.3, fixed ap_time_t-
3765      related bugs, and changed shmem/locking to use apr API. Shared-mem
3766      is currently disabled, however, because of problems with graceful
3767      restarts. [Ronald Tschalär]
3768
3769   *) Fix corruption of IFS variable in --with-module= handling.  
3770      Depending on the user's shell or customization thereof, there 
3771      would be errors generating ap_config_auto.h later in the configure
3772      procedure.  [Jeff Trawick]
3773
3774   *) mod_cgi: Restore logging of stderr from child process when ScriptLog 
3775      isn't used (as in 1.3), except that on Unix it is now logged via 
3776      ap_log_rerror() instead of by the child having STDERR_FILENO refer
3777      to the error log.  [Greg Ames, Jeff Trawick]
3778
3779   *) Add '-D' argument processing for run time configuration defines.
3780      [William Rowe]
3781
3782   *) Organize http_main.c as independent code, such that no code or
3783      global data is exported from it.  WIN32 will dynamically link it
3784      to the server core, so this will prevent mutual dependency.
3785      [William Rowe]
3786
3787   *) Add separate dynamic linkage tags APR_EXPORT(), APR_EXPORT_NONSTD()
3788      and APR_VAR_EXPORT to correctly resolve apr functions and globals.
3789      [William Rowe]
3790
3791   *) Add Win9x service execution and Ctrl+C/Ctrl+Break/Shutdown handlers.
3792      [William Rowe, Jan Just Keijser <KEIJSERJJ@logica.com>]
3793
3794   *) Add mod_charset_lite for configuring character set translation.
3795      [Jeff Trawick]
3796
3797   *) Add '-n' option to htpasswd to make it print its user:pw record
3798      on stdout rather than having to frob a text file.  [Ken Coar]
3799
3800   *) Fix saferead.  Basically, we flush the output buffer if a read on the
3801      input will block.
3802      [Ryan Bloom]
3803  
3804   *) APR: Add ap_xlate_get_sb() so that an app can find out whether or not
3805      a conversion is single-byte only. [Jeff Trawick]
3806
3807   *) BEOS: ap_shutdown should return APR_SUCCESS or errno. Note that
3808      the BeOS 5.0 documentation says that shutdown doesn't work yet.
3809      [Roy Fielding]
3810
3811   *) Fix some minor errors where pid was being manipulated as an int
3812      instead of the portable pid_t.  [Roy Fielding]
3813
3814   *) Fix some error log prints that were printing the pointer to a
3815      structure rather than the pid within the structure.
3816      [Jeff Trawick, Roy Fielding]
3817
3818   *) ab: Fix a command-line processing bug; track bad headers in 
3819      err_response; support reading headers up to 2K. 
3820      [Ask Bjoern Hansen <ask@valueclick.com>]
3821
3822   *) Fix ap_resolve_env() so that it handles new function added in a prior
3823      alpha (see "Added the capability to do ${ENVVAR} constructs in the
3824      config file.") as well as the constructs used by mod_rewrite.
3825      [Paul Reder <rederpj@raleigh.ibm.com>]
3826
3827   *) Apache 2.0 builds and runs on OS/390. [Jeff Trawick, Greg Ames]
3828
3829   *) Change the EBCDIC support in functions for MD5, SHA1, and base 64 to use
3830      APR to perform translation, instead of accessing the hard-coded tables
3831      in 1.3's ebcdic.c. [Jeff Trawick]
3832
3833   *) Fix some bugs (mostly lost 1.3 code) in ab's command-line processing. 
3834      [Jeff Trawick]
3835
3836   *) Add the ability to hook into the config file reading phase.  Basically
3837      if a directive is specified EXEC_ON_READ, then when that directive is
3838      read from the config file, the assocaited function is executed.  This
3839      should only be used for those directives that must muck with HOW the
3840      server INTERPRETS the config.  This should not be used for directives
3841      that re-order or replace items in the config tree.  Those changes should
3842      be made in the pre-config step.
3843      [Ryan Bloom]
3844
3845   *) Add mod_example to the build system.
3846      [Tony Finch]
3847
3848   *) APR: Add ap_xlate_conv_byte() to convert one char between single-
3849      byte character sets. [Jeff Trawick]
3850
3851   *) Pick up various EBCDIC fixes from 1.3 (from Martin
3852      Kraemer and Oliver Reh originally according to the change log).
3853      [Jeff Trawick]
3854
3855   *) Fix a couple of problems in RFC1413 support (controlled by the
3856      IdentityCheck directive).  Apache did not build the request string
3857      properly and more importantly Apache would loop forever if the 
3858      would-be ident server dropped the connection before sending a
3859      properly terminated response. [Jeff Trawick]
3860
3861   *) apxs works in 2.0.
3862      [Ryan Bloom]
3863
3864   *) Reliable piped logs work in 2.0.
3865      [Ryan Bloom]
3866
3867   *) Introduce a hash table implementation into APR to be used for
3868      replacing tables and other random data structures in Apache.
3869      [Tony Finch]
3870
3871   *) Add some more error reporting to htpasswd in the case of problems
3872      generating or accessing the temporary file.  Also, pass in a
3873      buffer if the implementation knows how to use it (i.e., if L_tmpnam
3874      is defined).  [Ken Coar]
3875
3876   *) Configure creates config.nice now containing your configure
3877      options. Syntax: ./config.nice [--more-options]
3878      [Sascha Schumann]
3879
3880   *) Fix various return code problems in APR on Win32.  For most of
3881      these, APR was returning APR_EEXIST instead of GetLastError()/
3882      WSAGetLastError().  [Jeff Trawick]
3883
3884   *) Make piped logs work again in version 2.0
3885      [Ryan Bloom]
3886
3887   *) Add VPATH support to UNIX build system of Apache and APR.
3888      [Sascha Schumann]
3889
3890   *) Fix ap_tokenize_to_argv to respect the const arguments that are
3891      passed to it.
3892      [Ryan Bloom]
3893
3894   *) Fix mm's memcpy/memset macros, pointer arithmetic was broken.
3895      Patch submitted to author.
3896      [Sascha Schumann]
3897
3898   *) Fix mm configuration on Solaris 8 x86 and OS/390.  Don't require
3899      /sbin in PATH on FreeBSD (all submitted to rse previously) 
3900      [Jeff Trawick]
3901
3902   *) Fix building Pthread-based MPMs on OpenBSD
3903      [Sascha Schumann] PR#26
3904
3905   *) Fix ap_readdir() problem on systems where d_name[] field in
3906      struct dirent is declared with only one byte.  (This problem only 
3907      affected multithreaded builds.)  This caused a segfault during
3908      pool cleanup with mod_autoindex on Solaris (Solaris 8 x86, at 
3909      least). [Jeff Trawick]
3910
3911   *) Fix some make-portability problems on at least Tru64, Irix
3912      and UnixWare.
3913      [Sascha Schumann] PR#18, PR#39
3914
3915   *) Add ap_sigwait() to support old-style sigwait() on systems
3916      like OS/390 and UnixWare.
3917      [Sascha Schumann] 
3918
3919   *) Add POSIX-thread flags for more platforms.
3920      [Sascha Schumann]
3921
3922   *) Fix some minor bugs in ap_strerror().  Teach ap_strerror()
3923      (on Unix, at least) to handle resolver errors.  Fix a bug in
3924      the definition of APR_ENOMEM so that ap_strerror() can spit
3925      out the correct error message for it.
3926      [Jeff Trawick]
3927
3928 Changes with Apache 2.0a3
3929
3930   *) mod_so reports ap_os_dso_error() if ap_dso_load() fails
3931      [Doug MacEachern]
3932
3933   *) API: *HOOK* macros now have an AP_ prefix
3934      [Doug MacEachern]
3935
3936   *) Win32: Eliminate redundant calls to initialize winsock.
3937      [Tim Costello <timcostello@ozemail.com.au>]
3938
3939   *) Fix bugs initializing ungetchar for pipes. 
3940      [Chia-liang Kao <clkao@CirX.ORG>]
3941
3942   *) The ab program in the src/support directory is now portable using
3943      APR.
3944      [Ryan Bloom]
3945
3946   *) Support directory is being compiled when the server is built
3947      [Ryan Bloom]
3948
3949   *) The configure option --with-program-name has been added to allow
3950      developers to rename the executable at configure time.  This also
3951      changes the name of the config files to match the executable's name.
3952      [Ryan Bloom]
3953
3954   *) mod_autoindex: Add `IndexOptions +VersionSort', to nicely sort filenames
3955      containing version numbers. [Martin Pool]
3956
3957   *) ap_open(..,APR_OS_DEFAULT,..) uses perms 0666 instead of 0777 on
3958      Unix; access_log and error_log now created with these perms; non-
3959      Unix is unaffected [Jeff Trawick]
3960      
3961   *) Finished move of ap_md5 routines to apr_md5.  Removed ap_md5.h.
3962      Replaced more magic numbers with MD5_DIGESTSIZE.
3963      [William Rowe, Roy Fielding]
3964
3965   *) Win32: Get mod_auth_digest compiling and added to the Windows
3966      build environment. Not tested and I'd be suprised if it 
3967      actually works. [Bill Stoddard]
3968
3969   *) Revamp the Win32 make environment. Makefiles have been removed and
3970      Apache.dsw created to bring together all the pieces. Create new file
3971      os/win32/BaseAddr.ref to define module base addresses (to prevent
3972      dll relocation at start-up).
3973      [William Rowe, Greg Marr, Tim Costello, Bill Stoddard]
3974
3975   *) [EBCDIC] Port Paul Gilmartin's CRLF patch from 1.3.  This replaces most
3976      of the \015, \012, and \015\012 constants with macros.
3977      [Greg Ames]
3978      
3979   *) Add ap_xlate_open() et al for translation of text between different 
3980      character sets.  The initial implementation requires iconv().
3981      [Jeff Trawick]
3982
3983   *) More FAQs and answers from comp.infosystems.www.servers.unix.
3984      [Joshua Slive <slive@finance.commerce.ubc.ca>]
3985
3986   *) CGI output is being timed out now.
3987      [Ryan Bloom]
3988
3989   *) Fix the problem with dieing quietly.  dupfile now takes a pool which
3990      is used by the new apr file.  There is no reason to create a new file
3991      with the same lifetime as the original file.
3992      [Ryan Bloom] 
3993
3994   *) Win32: Attempt to eliminate dll relocation at start-up by specifying
3995      module base addresses. This will help shooting seg faults
3996      in the field. [William Rowe <wrowe@lnd.com>]
3997
3998   *) Update Apache on Windows documentation. Add new document
3999      describing how to compile Apache on Windows.
4000      [William Rowe <wrowe@lnd.com>]
4001
4002   *) ap_set_pipe_timeout(), ap_poll(), and APR_SO_TIMEOUT now take 
4003      microseconds instead of seconds.  Some storage leaks and other
4004      minor bugs in related code were fixed.  [Jeff Trawick]
4005
4006   *) Win32: First cut at getting mod_isapi working under 2.0
4007      [William Rowe <wrowe@lnd.com>]
4008
4009   *) First stab at getting mod_auth_digest working under 2.0
4010      quick change summary:
4011      - moved the random byte generation (ap_generate_random_bytes) into APR
4012      - now uses ap_time_t
4013      - compiles and runs on linux
4014      - tested with amaya
4015      [Brian Martin <bmartin@penguincomputing.com>]
4016
4017   *) Win32: Move the space stripping of physical service names
4018      fix up from Apache 1.3. #include'ing "ap_mpm.h" fixes up an
4019      unresolved symbol. Add dependency checking to the
4020      CreateService call to ensure TCPIP and AFP (winsock) is started
4021      before Apache.
4022      [William Rowe <wrowe@lnd.com>]
4023
4024   *) Win32: Add code to perform latebinding on functions that may
4025      not exist on all levels of Windows where Apache runs. This
4026      is needed to allow Apache to start-up on Win95/98. All calls
4027      to non portable functions should be protected with
4028      ap_oslevel checks to prevent runtime segfaults. 
4029      [William Rowe <wrowe@lnd.com>]
4030
4031   *) Fix fallback default values for SHM_R and SHM_W [Martin Kraemer]
4032
4033   *) Get lingering_close() working again. [Dean Gaudet, Jeff Trawick]
4034
4035   *) Win32: Get non-blocking CGI pipe reads working under Windows NT.
4036      This addresses PR 1623. Still need to address timing out runaway
4037      CGI scripts. [Bill Stoddard]
4038  
4039   *) Win32: Make ap_stat Windows 95/98 friendly
4040      [William Rowe <wrowe@lnd.com>]                                            
4041
4042   *) Win32: Fix a bug in ap_get_oslevel which causes GetVersionEx() to 
4043      always fail. Need to initialise the dwOSVersionInfoSize member of the 
4044      OSVERSIONINFO struct before calling GetVersionEx, so GetVersionEx 
4045      always fails. 
4046
4047      The patch also enhances ap_get_oslevel (and the associated enum) to 
4048      handle selected service packs for NT4, and adds recognition for 
4049      Windows 2000. This is useful, eg. if we can recognise NT4 SP2 then 
4050      we can use ReadFileScatter and WriteFileGather in readwrite.c. 
4051      [Tim Costello <Tim.Costello@BTFinancialgroup.com>]
4052
4053   *) Get mod_rewrite building and running, and mod_status building for Win NT
4054      [Allan Edwards <ake@raleigh.ibm.com>]
4055
4056   *) Patch to port mod_auth_db to the 2.0 api and also to support 
4057      Berlekey DB 3.0. It works for me with both Berkeley DB 3.0.55 and 
4058      2.7.7.  It should work with version 1 as well but I haven't tested it.  
4059      [Brian Martin <bmartin@penguincomputing.com>]
4060
4061   *) Get APR DSO code working under Windows. Includes cross platform
4062      fixes to mod_so.c.
4063      [Tim.Costello@BTFinancialgroup.com]
4064
4065   *) Fix some of the Windows APR time functions.
4066      [William Rowe]
4067
4068   *) FAQ changes related to tidying up historical documents on the web site.
4069      [Joshua Slive <slive@finance.commerce.ubc.ca>]
4070
4071   *) Move Windows DSO code into APR.
4072      [Bill Stoddard]
4073
4074   *) Eliminate apr_win.h and apr_winconfig.h (and the ugly #ifdefs they cause).
4075      Now, apr.h and apr_config.h are generated from apr.hw and apr_config.hw
4076      at build time. At this point, the server will not compile on Windows because
4077      of the recent DSO commits. Fixing those next.
4078      [Bill Rowe & Bill Stoddard]
4079
4080   *) Added error checking for file I/O APR routines.
4081      [Jon Travis <jtravis@covalent.net>]
4082
4083   *) APR: Don't use the values of resolver error codes for the 
4084      corresponding APR error codes.  On Unix and Win32, return the 
4085      proper APR error code after a resolver error. [Jeff Trawick]
4086
4087 Changes with Apache 2.0a2
4088
4089   *) Renamed the executable back to httpd on all platforms other 
4090      than Win32
4091      [Ryan Bloom]
4092
4093   *) Allow BeOS to survive restarts, log properly and a few
4094      small things it had problems with due to the way it setup
4095      users and groups. [David Reid]
4096
4097   *) Get mod_rewrite working with APR locks
4098      [Paul Reder <rederpj@raleigh.ibm.com>]
4099
4100   *) Actually remove the sempahore when the lock cleanup routine
4101      is called on BeOS. [David Reid]
4102
4103   *) Clear hook registrations between reads of the config file.
4104      When DSOs are unloaded and re-loaded the old hook pointers may
4105      no longer be valid. This fix eliminates potential segfaults.
4106      [Allan Edwards <ake@raleigh.ibm.com>]
4107
4108   *) Fix a problem with Sigfunc not being defined or bypassed
4109      if sigaction() wasn't found. [Jim Jagielski]
4110
4111   *) Fix the locking mechanism on BSD variants.  They now use fcntl
4112      locks.  This allows the server to start and serve pages.
4113      [Ryan Bloom]
4114
4115   *) First cut at getting the Win32 installer to work
4116      [William Rowe <wrowe@lnd.com>]
4117
4118   *) Get htpasswd compiling under Windows
4119      [William Rowe <wrowe@lnd.com>]
4120
4121   *) Change the log message for a bind() failure to show the
4122      interface and port number. [Jeff Trawick]
4123
4124   *) Import the documentation from 1.3.12 and bring parts of it
4125      up-to-date with respect to the changes that have occurred
4126      in 2.0.
4127      [Tony Finch]
4128
4129   *) BeOS MPM updated.  CGI bug on BeOS fixed.  IP addresses
4130      now logged correctly on BeOS.
4131      [David Reid]
4132
4133   *) Create one makefile for all Win32 distributions (NT/2000/95/98).
4134      Makefile.win includes the same user interface as the old 
4135      Makefile.nt 
4136      [William Rowe <wrowe@lnd.com>, Jeff Trawick <trawick@us.ibm.com>]
4137
4138   *) Win32 exec now uses COMSPEC environment string for command 
4139      shell path resolution.
4140      [William Rowe <wrowe@lnd.com>] PR#3715
4141
4142   *) Win32: ap_connect() was not returning correct error condition
4143      PR5866
4144      [Allen Prescott <allen@clanprescott.com>]
4145
4146   *) Win32: ap_open() was broken on Win9x because an NT-specific
4147      flag was passed to CreateFile.  ap_puts() added an unnecessary
4148      '\n'.
4149      [Jeff Trawick <trawick@us.ibm.com>]
4150
4151   *) Put in Korean and Norwegian index.html pages (2.0 and 1.3)
4152      which where donated by Lee Kuk Hyun and Lorant Czaran. 'Fixed'
4153      confusing ee/et name and made all extensions language/dialect
4154      rather than country reflecting. Changed example files to
4155      explicit reflect the ISO charset and added a few common 
4156      ones to the example config [dirkx]
4157
4158   *) Extend external module capability.  To use this, you call
4159      configure with --with-module=path/to/mod1,path/to/mod2,etc.
4160      [Ryan Bloom]
4161
4162   *) Backported the various "default charset" fixes from 1.3.12,
4163      including the AddDefaultCharset directive. [Jim Jagielski]
4164
4165   *) Added the capability to do ${ENVVAR} constructs in the
4166      config file. E.g. 'ServerAdmin ${POSTMASTER}'. As commited
4167      it does this on a line by line basis; i.e. if the envvar
4168      expands to something with spaces you have to protect it
4169      by adding quotes around it (Unless of course you expect it
4170      to contains more than one argument. Alternatively you
4171      can compile it on a per token basis; which is what people
4172      usually expect by setting RESOLVE_ENV_PER_TOKEN. But this
4173      hampers fancier hacks.
4174      [Dirk-Willem van Gulik]
4175
4176   *) Changed the 'ErrorDocument' syntax in that it NO longer
4177      supports the asymetric
4178
4179                 ErrorDocument 301 "Some message
4180
4181      Note the opening " quote, without a closing quote. It now
4182      has either the following syntaxes
4183
4184                 ErrorDocument XXX /local/uri
4185                 ErrorDocument XXX http://valid/url
4186                 ErrorDocument XXX "Some Message"
4187
4188      The recognition heuristic is: if it has a space it
4189      is a message. If it has no spaces and starts with a /
4190      or is a valid URL then treat it that way. Otherwise it
4191      is assumed to be a message.
4192
4193      This breaks backward compatibility but makes live a hell
4194      of a lot easier for GUI's and config file parsers.
4195      [Dirk-Willem van Gulik]
4196
4197   *) Changed 'CacheNegotiatedDocs' from its present/not-present
4198      syntax into a 'on' or 'off' syntax. As it currently is the
4199      only non nesting token which uses NO_ARGS and thus is an
4200      absolute pain for any config interface automation. This
4201      breaks backward compatibility. [Dirk-Willem van Gulik]
4202
4203   *) Add ability to add external modules to the build process.  This is
4204      done with --with-module=/path/to/module.  Modules can only be added
4205      as static modules at this point.
4206      [Ryan Bloom]
4207
4208 Changes with Apache 2.0a1
4209
4210   *) Fix FreeBSD 3.3 core dump.
4211      Basically, ap_initialize() needs to get called before 
4212      create_process(), since create_process() passes op_on structure
4213      to semop() to get a lock, but op_on isn't initialized until 
4214      ap_initialize() calls setup_lock().  Here is a slight
4215      rearrangement to main() which calls ap_initialize() earlier...
4216      [Jeff Trawick <trawick@us.ibm.com>]
4217
4218   *) Enable Apache to use sendfile/TransmitFile API
4219      [Bill Stoddard, David Reid, Paul Reder]
4220
4221   *) Re-Implement Win32 APR network I/O APIs and most of the file I/O
4222      APIs.
4223      [Bill Stoddard]
4224
4225   *) Make file I/O and network I/O writev/sendv APIs consistent.
4226      Eliminate use of ap_iovec_t and use Posix struct iovec.
4227      Use seperate variable on ap_writev to set the number of iovecs
4228      passed in and number of bytes written.
4229      [Bill Stoddard]
4230
4231   *) Adapt file iol to use APR functions. Replaced ap_open_file() 
4232      with ap_create_file_iol(). ap_create_file_iol() requires that 
4233      the file be opened prior to the call using ap_open().
4234      [Bill Stoddard]
4235
4236   *) Port mod_include and mod_cgi to 2.0
4237      [Paul Reder, Bill Stoddard]
4238
4239   *) ap_send{,v}, ap_recv, ap_sendfile API clarification --
4240      bytes_read/bytes_written is always valid (never -1).  Plus
4241      some fixes to buff.c to correct problems introduced by the
4242      errno => ap_status_t changes a while back.  Plus a fix to
4243      chunked encoding introduced right at the beginning of 2.0.
4244      [Dean Gaudet]
4245
4246   *) Revamped UNIX build system to use autoconf and libtool.
4247      [Manoj Kasichainula, Sascha Schumann]
4248
4249   *) port mod_rewrite to 2.0. [Paul J. Reder <rederpj@raleigh.ibm.com>]
4250
4251   *) More rigorous checking of Host: headers to fix security problems
4252      with mass name-based virtual hosting (whether using mod_rewrite
4253      or mod_vhost_alias).
4254      [Ben Hyde, Tony Finch]
4255   
4256   *) Add back support for UseCanonicalName in <Directory> containers.
4257      [Manoj Kasichainula]
4258
4259   *) Added APLOG_STARTUP log type.  This allows us to write an error
4260      message without any of the date and time information.  As a part
4261      of this change, I also removed all of the calls to fprintf(stderr
4262      and replaced them with calls to ap_log_error using APLOG_STARTUP
4263      writing to stderr is no longer portable, because we don't direct 
4264      stderr to the error log on all platforms.
4265      [Ryan Bloom] 
4266  
4267   *) Convert error logging functions to take errno as an argument.
4268      This makes our error logs more portable, because some Windows API's 
4269      don't set errno.  This change allows us to still output a valid
4270      message on all of our platforms.
4271      [Ryan Bloom]
4272
4273   *) mod_mime_magic runs in 2.0-dev now.
4274      [Paul Reder <rederpj@raleigh.ibm.com>]
4275
4276   *) sendfile has been added to APR.
4277      [John Zedlewski <zedlwski@Princeton.EDU>]
4278
4279   *) buff.c has been converted to no longer use errno.
4280      [Manoj Kasichainula]
4281
4282   *) mod_speling runs in 2.0-dev now: a bug in readdir_r handling and
4283      interface adaption to APR functions did it. [Martin Kraemer]
4284
4285   *) Support DSOs properly on 32-bit HP-UX 11.0
4286      [Dilip Khandekar <dilip@cup.hp.com>]
4287
4288   *) Updated MM in APR source tree from version 1.0.8 to 1.0.11
4289      [Ralf S. Engelschall]
4290
4291   *) Cleaned APR build environment integration and bootstrap APR 
4292      automatically for developers from src/Configure.
4293      [Ralf S. Engelschall]
4294
4295   *) Fixed building of src/support/htpasswd.c
4296      [Ralf S. Engelschall]
4297
4298   *) When generating the Location: header, mod_speling forgot
4299      to escape the spelling-fixed uri. (Forw-Port from 1.3)
4300      [Martin Kraemer]
4301
4302   *) Moved mod_auth_digest.c from experimental to standard. [Roy Fielding]
4303
4304   *) Change all pools to APR contexts.  This is the first step to
4305      incorporating APR into Apache. [Ryan Bloom]
4306
4307   *) Move "handler not found" warning message to below the check
4308      for a wildcard handler.  [Dirk <dirkm@teleport.com>, Roy Fielding]
4309      PR#2584, PR#2751, PR#3349, PR#3436, PR#3548, PR#4384, PR#4795, PR#4807
4310
4311   *) Support line-continuation feature in config.option file and
4312      allow the loading of multiple option sections at once via
4313      ``--with-option=<section1>,<section2>,...''
4314      [Ralf S. Engelschall]
4315
4316   *) Rebuilt CVS repository with Apache 1.3.9 as basis.  [Roy Fielding]
4317
4318 Changes with Apache MPM
4319
4320   *) Use asynchronous AcceptEx() and a completion port to accept and
4321      dispatch connections to threads in Windows NT/2000. 
4322      [Bill Stoddard]
4323
4324   *) Implement WINNT Win32 MPM from original Win32 code in http_main.c
4325      [Bill Stoddard]  
4326
4327   *) Implement the APACI --with-option facility 
4328      (per default used the config.option file).
4329      [Ralf S. Engelschall]
4330
4331   *) MPM BEOS port.  [David Reid <abb37@dial.pipex.com>]
4332
4333   *) Start to implement module-defined hooks that are a) fast and b) typesafe.
4334      Replace pre_connection module call with a register_hook call and
4335      implement pre_connection as a hook. The intent is that these hooks will
4336      be extended to allow Apache to be multi-protocol, and also to allow the
4337      calling order to be specified on a per-hook/per-module basis.
4338      [Ben Laurie]
4339
4340   *) Implement mpm_* methods as "modules". Each method gets its own
4341      subdir in src/modules (eg: src/modules/prefork). Selection
4342      of method uses Rule MPM_METHOD.  [Jim Jagielski]
4343
4344   *) Port the hybrid server from the apache-apr repository as
4345      mpm_mpmt_pthread.  [Manoj Kasichainula]
4346
4347   *) os/unix/unixd.[ch]: detach, setuid, setgid, stuff which will be common
4348      amongst the unix MPMs.
4349
4350   *) mpm_prefork: throw away all the alarm/timeout crud; and clean up the
4351      signal handling for the new world order.  [Dean Gaudet]
4352
4353   *) Crude ap_thread_mutex abstraction so that we get the pthread stuff out
4354      of alloc.c for now.  [Dean Gaudet]
4355
4356   *) Handle partial large writes correctly.  [Ben Laurie]
4357
4358   *) Eliminate conn_rec's pointer to server. All it knows is the base server
4359      based on IP/port.  [Ben Laurie]
4360
4361   *) Port a bunch of modules to the new module structure.
4362      ["Michael H. Voase" <mvoase@midcoast.com.au>]
4363
4364   *) I/O layering and BUFF revamp.  See docs/buff.txt.  [Dean Gaudet]
4365
4366   *) Basic restructuring to introduce the MPM concept; includes various
4367      changes to the module API... better described by
4368      docs/initial_blurb.txt.  [Dean Gaudet]
4369
4370 Changes with Apache pthreads
4371
4372   *) New buff option added: BO_TIMEOUT. It describes the timeout for
4373      buff operations (generally over a network).
4374      [Dean Gaudet, Ryan Bloom, Manoj Kasichainula]
4375
4376   *) Created http_accept abstraction. Added 4 new functions (not exported):
4377      init_accept(), begin_accepting_requests(), get_request(), 
4378      stop_accepting_requests() [Bill Stoddard]
4379
4380   *) Fix to ap_rprintf call that allows mod_info to work properly.
4381      [James Morris <jmorris@intercode.com.au>]
4382
4383   *) user and ap_auth_type fields were moved from connection_rec to 
4384      request_rec. [Ryan Bloom] 
4385
4386   *) Removed the ap_block_alarms and ap_unblock_alarm calls.  These aren't
4387      needed in a threaded server.
4388
4389   *) Initial pthread implementation from from Dean's apache-nspr code.
4390      [Bill Stoddard, Ryan Bloom]
4391
4392
4393 Changes with Apache 1.3.9
4394
4395   *) Remove bogus error message when a redirect doesn't set Location.
4396      Instead, use an empty string to avoid coredump if the error message
4397      was supposed to include a location.  [Roy Fielding]
4398
4399   *) Don't allow configure to include mod_auth_digest unless it is
4400      explicitly requested, even if the user asked for all modules.
4401      [Roy Fielding]
4402
4403   *) Translate module names to dll names for OS/2 so that they are no more
4404      than 8 characters long and have an extension of "dll" instead of "so".
4405      [Brian Havard]
4406
4407   *) Print out pointer to Rule DEV_RANDOM when truerand lib not found.
4408      Fix test-compile check to check for randbyte instead of trand32.
4409      Use ap_base64encode_binary/decode instead of copy in mod_auth_digest.c
4410      and tweak to make Amaya happier.  [Ronald Tschalär]
4411
4412   *) Ensure that the installed expat include files are world readable,
4413      just like the other header files.  [Martin Kraemer]
4414
4415   *) Fixed generated AddModule adjustments in APACI's `configure' script
4416      in order to allow (new) modules like mod_vhost_alias to be handled
4417      correctly (which was touched by the adjustments for mod_alias).
4418      [Ralf S. Engelschall]
4419
4420   *) For binary builds, add -R flag to apachectl to work around the lack of
4421      an absolute path to the ./libexec directory where the libhttp.ep file
4422      is needed for SHARED_CORE architectures.  [Randy Terbush]
4423
4424   *) WIN32: Create the CGI script process as DETACHED.  This may solve the
4425      problem observed by some Win95/98 users where they get CGI script
4426      output sent to the console.  [Bill Stoddard]
4427
4428   *) Fix (re)naming in the uuencode/decode section. The ap/ap_
4429      routines are now called ap_base64* and are 'plain' (i.e., no 
4430      pool access or anything clever). Inside util.c the routines acting
4431      like pstrdup are called ap_pbase64encode() and ap_pbase64decode().
4432      The oddly named ap_uuencode(), ap_uudecode() are kept around for
4433      now but deprecated.  [dirkx]
4434
4435   *) Clean up the base64 and SHA1 additions and make sure they are
4436      represented in the ApacheCore.def, ApacheCoreOS2.def, and httpd.exp
4437      files.  [Roy Fielding]
4438
4439   *) WIN32: Migrate to InstallShield 5.5 and provide a bit more error
4440      checking.  Allow compiling on VS 6.0.  [Randy Terbush]
4441
4442   *) Fixed assumption of absolute paths in binbuild.sh.  [Tony Finch]
4443
4444   *) Use TestCompile to search for the truerand library (rather than blindly
4445      assuming its existence). If it is not found, complain (but do not
4446      exit - yet).  [Martin Kraemer]
4447
4448   *) We forgot to add the new exported function names to
4449      src/support/httpd.exp.  [Bill Stoddard, Randy Terbush]
4450
4451   *) Add description of -T command-line option to usage().
4452      [Ralf S. Engelschall]
4453
4454   *) For "some" platforms (notably, EBCDIC based ones), libos needs to be
4455      searched only AFTER libap has been searched, because libap needs
4456      some symbols from libos.  [Martin Kraemer]
4457
4458   *) Fix conflict with original mod_digest related to the symbol of the
4459      module dispatch list (which has to be unique for DSO and follow the
4460      usual conventions for the installation procedure).
4461      [Ralf S. Engelschall]
4462
4463   *) Add a dbm-library check for the "usual places" (-ldbm, -lndbm, -ldb)
4464      for other platforms as well.  [Martin Kraemer]
4465
4466   *) Make ap_sha1.c compile for EBCDIC platforms: replace remaining LONG
4467      types by AP_LONG and replace reference to renamed variable 'ubuf'
4468      by 'buffer'.  [Martin Kraemer]
4469
4470 Changes with Apache 1.3.8 [not released]
4471
4472   *) Flush the output buffer immediately after sending an error or redirect
4473      response, since the result may be needed by the client to abort a
4474      long data transfer or restart a series of pipelined requests.
4475      [Tom Vaughan <tvaughan@aventail.com>, Roy Fielding]
4476
4477   *) PORT: Improved compilation and DSO support on Sequent DYNIX/ptx.
4478      [Ian Turner <iant@sequent.com>] PR#4735
4479
4480   *) Local struct mmap in http_core.c conflicted with system structure
4481      name on DYNIX -- changed to mmap_rec.  [Roy Fielding] PR#4735
4482
4483   *) Added updated mod_digest as modules/experimental/mod_auth_digest.
4484      [Ronald Tschalär <ronald@innovation.ch>]
4485
4486   *) Fix a memory leak where the module counts were getting messed
4487      up across restarts.  [David Harris <dharris@drh.net>]
4488
4489   *) CIDR addresses such as a.b.c.d/24 where d != 0 weren't handled
4490      properly in mod_access.
4491      ["Paul J. Reder" <rederpj@raleigh.ibm.com>] PR#4770
4492
4493   *) RewriteLock/RewriteMap didn't work properly with virtual hosts.
4494      [Dmitry Khrustalev <dima@bog.msu.su>] PR#3874
4495
4496   *) PORT: Support for compaq/tandem/com.
4497      [Michael Ottati <michael.ottati@compaq.com>, dirkx]
4498
4499   *) Added SHA1 password encryption support to easy migration from 
4500      Netscape servers. See support/SHA1 for more information.
4501      Caused the separation of ap_md5.c into md5, sha1 and a general
4502      ap_checkpass.c with just a validate_passwd routine. Added a
4503      couple of flags to support/htpasswd. Some reuse of the to64()
4504      function; hence renamed to ap_to64().
4505      [Dirk-Willem van Gulik, Clinton Wong <clintdw@netcom.com>]
4506
4507   *) Change for EBCDIC platforms (TPF and BS2000) to correctly deal
4508      with ASCII/EBCDIC conversions in "ident" query.
4509      [David McCreedy <McCreedy@us.ibm.com>]
4510
4511   *) Get rid of redefinition warning on MAC_OS_X_SERVER platform.
4512      Change "Power Macintosh" to Power* so if uname prints "Power Book"
4513      we're still happy on Rhapsody platforms.  [Wilfredo Sanchez]
4514
4515   *) Fix SIGSEGV on some systems because the Vary fix below included
4516      a call to table_do with a variable argument list that was not
4517      NULL terminated.  Replaced with better implementation. [Roy Fielding]
4518
4519 Changes with Apache 1.3.7 [not released]
4520
4521   *) The "Vary" response header field is now sanitised right before
4522      the header is sent back to the client.  Multiple "Vary" fields
4523      are combined, and duplicate tokens (e.g., "Vary: host, host" or
4524      "Vary: host, negotiate, host, accept-language") are reduced to
4525      single instances.  This is a better solution than the force-no-vary
4526      one (which is still valid for clients that can't cope with Vary
4527      at all).  PR#3118 [Dean Gaudet, Roy Fielding, Ken Coar]
4528
4529   *) Portability changes for BeOS. [David Reid abb37@dial.pipex.com]
4530
4531   *) Link DSO's with "gcc -shared" instead of "ld -Bshareable" at 
4532      least on Linux and FreeBSD for now.  
4533      [Rasmus Lerdorf]
4534
4535   *) Win32: More apache -k restart work. Restarts are now honored
4536      immediately and connections in the listen queue are -not- lost.
4537      This is made possible by the use of the WSADuplicateSocket()
4538      call.  The listeners are opened in the parent, duplicated, then
4539      the duplicates are passed to the child. The original listen sockets 
4540      are not closed by the parent across a restart, thus the listen queue 
4541      is preserved.
4542      [Bill Stoddard <stoddard@raleigh.ibm.com>]
4543
4544   *) Fix handling of case when a client has sent "Expect: 100-continue"
4545      and we are going to respond with an error, but get stuck waiting to
4546      discard the body in the pointless hope of preserving the connection.
4547      [Roy Fielding, Joe Orton <jeo101@york.ac.uk>] PR#4499, PR#3806
4548
4549   *) Fix 'configure' to work correctly with SysV-based versions of
4550      'tr' (consistent with Configure's use as well). [Jim Jagielski]
4551
4552   *) apxs: Add "-S var=val" option which allows for override of CFG_*
4553      built-in values. Add "-e" option which works like -i but doesn't
4554      install the DSO; useful for editing httpd.conf with apxs. Fix
4555      editing code so that multiple invocations of apxs -a will not
4556      create duplicate LoadModule/AddModule entries; apxs can now be
4557      used to re- enable/disable a module.  [Wilfredo Sanchez]
4558
4559   *) Win32: Update the server to use Winsock 2. Specifically, link with
4560      ws2_32.lib rather than wsock32.lib.  This gives us access to 
4561      WSADuplcateSocket() in addition to some other enhanced comm APIs.
4562      Win 95 users may need to update their TCP/IP stack to pick up
4563      Winsock 2. (See http://www.microsoft.com/windows95/downloads/)
4564      [Bill Stoddard stoddard@raleigh.ibm.com]
4565
4566   *) Win32: Redirect CGI script stderr (script debug info) into the 
4567      error.log when CGI scripts fail. This makes Apache on Win32 
4568      behave more like Unix.      
4569      [Bill Stoddard stoddard@raleigh.ibm.com]
4570
4571   *) Fixed `httpd' usage display: -D was missing.
4572      [Ralf S. Engelschall] PR#4614
4573
4574   *) Fix `make r' test procedure in src/regex/: ap_isprint was not found.
4575      [Ralf S. Engelschall] PR#4561, PR#4562
4576
4577   *) OS/2: Fix problem with accept lock semaphores where server would die with
4578      "OS2SEM: Error 105 getting accept lock. Exiting!" 
4579      [Brian Havard] PR#4505
4580
4581   *) Add DSO support for DGUX 4.x using gcc. Tested on x86 platforms.
4582      [Randy Terbush <randy@covalent.net>]
4583  
4584   *) Add the new mass-vhost module (mod_vhost_alias.c) developed and
4585      used by Demon Internet, Ltd. [Tony Finch <fanf@demon.net>]
4586
4587   *) Better GCC detection for DSO flags under Solaris 2 where the `cc' 
4588      command potentially _is_ GCC. [Ralf S. Engelschall]
4589
4590   *) Fix apxs build issues on AIX 
4591      [Rasmus Lerdorf <rasmus@raleigh.ibm.com>]
4592
4593   *) DocumentRoot Checking: Under previous versions, when Apache
4594      first started up, it used to do a stat of each DocumentRoot to
4595      see if it existed and was a directory. If not, then an error
4596      message was printed. THIS HAS BEEN DISABLED. If DocumentRoot
4597      does not exist, you will get error messages in error_log. If
4598      the '-t' command line option is used (to check the configuration)
4599      the check of DocumentRoot IS performed. An additional command
4600      line option, '-T', has been added if you want to avoid the
4601      DocumentRoot check even when checking the configuration.
4602      [Jim Jagielski]
4603
4604   *) Win32: The query switch "apache -S" didn't exit after showing the
4605      vhost settings. That was inconsistent with the other query functions.
4606      [Bill Stoddard - Fixed by Martin on Unix in 1.3.4]
4607
4608   *) Win32: Changed behaviour of apache -k restart. 
4609      Previously, the server would drain all connections in the stack's
4610      listen queue before honoring the restart. On a busy server, this
4611      could take hours.  Now, a restart is honored almost immediately. 
4612      All connections in Apache's queues are handled but connections in 
4613      the stack's listen queue are discarded. Restart triggered by 
4614      MaxRequestPerChild is unchanged.
4615      [Bill Stoddard <stoddard@raleigh.ibm.com>]
4616
4617   *) Win32: Eliminated unnecessary call to wait_for_multiple_objects in
4618      the accept loop. Good for a 5% performance boost. Cleaned up 
4619      parent/child process management code. 
4620      [Bill Stoddard <stoddard@raleigh.ibm.com>]
4621
4622   *) Added ceiling on file size for memory mapped files.
4623      [John Giannandrea <jg@meer.net>] PR#4122
4624
4625   *) Fix ndbm.h include problems with brain-dead glibc >= 2.1 which 
4626      has ndbm.h in a non-standard db1/ subdir. PR#4431, PR#4528
4627      [Henri Gomez <gomez@slib.fr>, Ralf S. Engelschall] 
4628
4629   *) Determine AP_BYTE_ORDER for ap_config_auto.h and already
4630      use this at least for Expat. [Ralf S. Engelschall]
4631
4632   *) Allow .module files to specify libraries with Lib:.
4633      [Ben Laurie]
4634
4635   *) Allow SetEnvIf[NoCase] to test environment variables as well
4636      as header fields and request attributes.  [Ken Coar]
4637
4638   *) Fix mod_autoindex's handling of ScanHTMLTitles when file
4639      content-types are "text/html;parameters".  PR#4524  [Ken Coar]
4640
4641   *) Remove "mxb" support from mod_negotiation -- it was a draft feature
4642      never accepted into any standard, and it opens up certain DoS
4643      attacks.  [Koen Holtman <Koen.Holtman@cern.ch>]
4644
4645   *) TestCompile updated. We can now run programs and output the
4646      results during the Configure process. [ Jim Jagielski]
4647
4648   *) The source is now quad (long long) aware as needed. Specifically,
4649      the Configure process determines the correct size of off_t and
4650      *void. When the OS/platform/compiler supports quads, ap_snprintf()
4651      provides for the 'q' format qualifier (if quads are not available,
4652      'q' is silently "demoted" to long). [Jim Jagielski]
4653
4654   *) When the username or password fed to htpasswd is too long, include the
4655      size limit in the error message.  Also report illegal characters
4656      (currently only ':') in the username.  Add the size restrictions
4657      to the man page.  [Ken Coar]
4658
4659   *) Fixed the configure --without-support option so it doesn't result in
4660      an infinite loop.  [Marc Slemko]
4661
4662   *) Piped error logs could cause a segfault if an error occured
4663      during configuration after a restart.
4664      [Aidan Cully <aidan@panix.com>] PR#4456
4665
4666   *) If a "Location" field was stored in r->err_headers_out rather
4667      than r->headers_out, redirect processing wouldn't find it and
4668      the server would core dump on ap_escape_html(NULL).  Check both
4669      tables and raise HTTP_INTERNAL_SERVER_ERROR with a log message
4670      if Location isn't set.  [Doug MacEachern, Ken Coar]
4671
4672   *) Add RULE_EXPAT, the src/lib/ directory structure, and a modified copy
4673      of the Expat 1.0.2 distribution. [Greg Stein]
4674
4675   *) Replace regexec() calls with calls to a new API stub function
4676      ap_regexec().  This solves problems with DSO modules which use the regex
4677      library. [Jens-Uwe Mager <jum@helios.de>, Ralf S. Engelschall]
4678
4679   *) Add 'Request_Protocol' special keyword to mod_setenvif so that
4680      environment variables can be set according to the protocol version
4681      (e.g., HTTP/0.9 or HTTP/1.1) of the request.  [Ken Coar]
4682
4683   *) Add DSO support for OpenStep (Mach 4.2) platform.
4684      [Ralf S. Engelschall, Rex Dieter <rdieter@math.unl.edu>] PR#3997
4685
4686   *) Fix sed regex for generating ap_config_auto.h in src/Configure.
4687      [Jan Gallo <gallo@pvt.sk>] PR#3690, PR#4373
4688  
4689   *) Switch to /bin/sh5 in APACI on Ultrix and friends to avoid problems with
4690      their brain-dead /bin/sh. [Ralf S. Engelschall] PR#4372
4691
4692   *) Better DSO flags recognition on NetBSD platforms using ELF.
4693      [Todd Vierling <tv@pobox.com>] PR#4310
4694
4695   *) Always log months in english format for %t in mod_log_config.
4696      [Petr Lampa <lampa@fee.vutbr.cz>] PR#4366, 679
4697
4698   *) Support for server-parsed and multiview-determined ReadmeName and
4699      HeaderName files in mod_autoindex. Removed the restriction on
4700      "/"s in ReadmeName and HeaderName directives since the *sub_req*
4701      routines will deal with the access issues. (It's now possible to
4702      have {site|group|project|customer|...} wide readmes and headers.)
4703      [Raymond S Brand <rsbx@rsbx.net>, Ken Coar] PR#1574, 3026, 3529,
4704      3569, 4256
4705
4706   *) When stat() fails, don't assume anything about the contents of
4707      the struct stat.  [Ed Korthof <ed@bitmechanic.com>]
4708
4709   *) It's OK for a semop to return EINTR, just loop around and try
4710      again.  [Dean Gaudet]
4711
4712   *) Fix configuration engine re-entrant hangups, which solve a
4713      handful of problems seen with mod_perl <Perl> configuration sections
4714      [Salvador Ortiz Garcia <sog@msg.com.mx>]
4715
4716   *) Mac OS and Mac OS X Server now use the appropriate custom layout
4717      by default when building with APACI; allow for platform-specific
4718      variable defaults in configure. [Wilfredo Sanchez]
4719
4720   *) Do setgid() before initgroups() in http_main; some platforms
4721      zap the grouplist when setgid() is called.  This was fixed in
4722      suexec earlier, but the main httpd code missed the change.
4723      [Rob Saccoccio <robs@InfiniteTechnology.com>]  PR#2579
4724
4725   *) Add recognition of .tgz as a gzipped tarchive.
4726      [Bertrand de Singly <bertrand.de-singly@polytechnique.fr>]  PR#2364
4727
4728   *) mod_include's fsize/flastmod should allow only relative paths, just
4729      like "include file".  [Jaroslav Benkovsky <benkovsk@pha.pvt.cz>]
4730
4731   *) OS/2: Add support for building loadable modules using DLLs.
4732      [Brian Havard]
4733
4734   *) Add iconsdir, htdocsdir, and cgidir to config.layout.
4735      [Wilfredo Sanchez]
4736
4737   *) Fix minor but annoying bug with the test for Configuration.tmpl
4738      being newer than Configuration so that it is less likely to fail
4739      when using APACI and shadow sources. [Wilfredo Sanchez]
4740
4741   *) PORT: Add initial support for Mac OS (versions 10.0 and
4742      greater). Use Mac OS X Server layout for now. Clean up dyld code
4743      in unix/os.c, and don't install the dyld error handlers, which
4744      are no longer needed in Mac OS. [Wilfredo Sanchez]
4745
4746   *) Rename Rhapsody layout to "Mac OS X Server". Change install
4747      locations to appropriate ones for user-built (as opposed to
4748      system) installs. [Wilfredo Sanchez]
4749
4750   *) Modify mod_autoindex's handling of AddDescription so that the
4751      behaviour matches the documentation.  [Ken Coar] PR#1898, 3072.
4752
4753   *) Add functionality to the install-bindist.sh script created by
4754      binbuild.sh to use tar when copying distribution files to the
4755      serverroot. This allows upgrading an existing installation
4756      without nesting the new distribution in the old.
4757
4758      install-bindist.sh now detects the local perl5 path to install
4759      apxs and dbmmanage with proper path to perl interpreter.
4760
4761      Add an install-binsupport target which copies the source files
4762      for apxs and dbmmanage to bindist to allow these scripts to
4763      be properly installed relative to the destination serverroot.
4764      [Randy Terbush, Covalent Technologies, randy@covalent.net]
4765
4766   *) Fix intermittent SEGV in ap_proxy_cache_error() in
4767      src/modules/proxy_util.c where a NULL filepointer and
4768      temporary filename were closed and unlinked.
4769      [Graham Leggett <minfrin@sharp.fm>,
4770      Tim Costello <tjcostel@socs.uts.edu.au>] PR#3178
4771
4772   *) Fix inconsistent error messages reported by mod_proxy.
4773      [Graham Leggett <minfrin@sharp.fm>]
4774
4775   *) OS/2: Fix terminating CGIs that aren't compiled by EMX GCC when a 
4776      connection is aborted.  [Brian Havard]
4777
4778   *) Force the LANG envariable to the known state of "C" so that we
4779      have assurance about how string manipulators (e.g., tr) will
4780      function.  [Ken Coar]  PR#1630
4781
4782   *) Add a directive to allow customising of the tracking cookie name.
4783      [Ken Coar]  PR#2921, 4303
4784
4785   *) Add "force-no-vary" envariable to allow servers to work around
4786      clients that choke on "Vary" fields in the response header.
4787      [Ken Coar, Dmitry Khrustalev <dima@zippy.machaon.ru>]  PR#4118
4788
4789   *) Fixed a bug in mod_dir that causes a child process will infinitely
4790      recurse when it attemps to handle a request for a directory wnd the
4791      value of the DirectoryIndex directive is a single dot. Also likely
4792      to happen for anyother values of DirectoryIndex that will map back
4793      to the same directory. The handler now only considers regular files
4794      as being index candidates. No PR#s found.
4795      [Raymond S Brand <rsbx@rsbx.net>]
4796
4797   *) Ease configuration debugging by making TestCompile fall back to
4798      using "make" if the $MAKE variable is unset [Martin Kraemer]
4799
4800   *) Fixed the ServerSignature directive to work as documented.
4801      [Raymond S Brand <rsbx@rsbx.net>] PR#4248
4802
4803   *) Add "opt" (SysV-style) layout to config.layout. [Raymond S Brand
4804      <rsbx@rsbx.net>]
4805
4806   *) Add APACI --without-execstrip option which can be used to disable the
4807      stripping of executables on installation.  This is very important for DSO
4808      and debugging situations. [Ralf S. Engelschall]
4809
4810   *) Add support for OS/2 (case insenstive filesystem, .exe suffix, etc)
4811      to APACI files and related scripts. 
4812      [Yitzchak Scott-Thoennes <sthoenna@efn.org>, Ralf S. Engelschall] PR#4269
4813
4814   *) Add support for standalone mode in TPF
4815      [Joe Moenich <moenich@us.ibm.com>]
4816
4817   *) Fix number of bytes copied by read_connection() in src/support/ab.c
4818      [Jim Cox <jc@superlink.net>] PR#4271
4819
4820   *) Fix special RewriteCond "-s" pattern matching.
4821      [Bob Finch <bob@nas.com>]
4822
4823   *) Fix value quoting in src/Configure script for ap_config_auto.h 
4824      [Paul Sutton <paul@awe.com>]
4825
4826   *) Make sure RewriteLock can be used only in the global context, (i.e.
4827      outside of any <VirtualHost> sections) because it's a global facility of
4828      the rewrite engine. [Ralf S. Engelschall]
4829
4830   *) Fix the ownership delegation for proxy directory under `make install'.
4831      [Ralf S. Engelschall]
4832
4833   *) APACI would not correctly build suexec. [Maria Verina
4834      <mariav@icgeb.trieste.it>] PR#4260
4835
4836   *) mod_mime_magic passed only the first 4k of a file to
4837      uncompress/gzip, but those tools sometimes do not produce
4838      any output unless a sufficient portion of the compressed
4839      file is input.  Change to pass the entire file -- but
4840      only read 4k of output.
4841      [Marcin Cieslak <saper@system.pl>] PR#4097
4842
4843   *) "IndexOptions None" generated extra spaces at the end of each
4844      line.  [inkling@firstnethou.com] PR#3770
4845
4846   *) The "100 Continue" response wasn't being sent after internal
4847      redirects. [Jose KAHAN <kahan@w3.org>] PR#3910, 3806, 3575
4848
4849   *) When padding the name with spaces for display, mod_autoindex would
4850      count &, <, and > in their escaped width, messing up the display.
4851      [Dean Gaudet] PR#4075, 3758
4852
4853   *) PORT: fixed a compilation problem on NEXT.
4854      [Jacques Distler <distler@golem.ph.utexas.edu>] PR#4130
4855
4856   *) r->request_time wasn't being set properly in certain error conditions.
4857      [Dean Gaudet] PR#4156
4858
4859   *) PORT: deal with UTS compiler error in http_protocol.c
4860      [Dave Dykstra <dwd@bell-labs.com>] PR#4189
4861
4862   *) Add ap_vrprintf() function.  [John Tobey <jtobey@banta-im.com>] PR#4246
4863
4864   *) Fix the mod_mime hash table to work properly with locales other
4865      than C.  [Dean Gaudet] PR#3427
4866
4867   *) Fix a memory leak which is exacerbated by certain configurations.
4868      [Dean Gaudet] PR#4225
4869
4870   *) Prevent clobbering saved IFS values in APACI. [Jim Jagielski]
4871
4872   *) Fix buffer overflows in ap_uuencode and ap_uudecode pointed out
4873      by "Peter 'Luna' Altberg <peter@altberg.nu>" and PR#3422
4874      [Peter 'Luna' Altberg <peter@altberg.nu>, Ronald Tschalär]
4875
4876   *) Make {Set,Unset,Pass}Env per-directory instead of per-server.
4877      [Ben Laurie]
4878
4879   *) Correct an apparent typo: on the Windows and MPE platforms, the
4880      htpasswd utility was limiting passwords to only 8 characters.
4881      [Ken Coar]
4882
4883   *) EBCDIC platforms: David submitted patches for two bugs in the
4884      MD5 digest port for EBCDIC machines:
4885      a) the htdigest utility overwrote the old contents of the digest file
4886      b) the Content-MD5 header value (ContentDigest directive) was wrong
4887      when the returned file was not converted from EBCDIC, but was a
4888      binary (e.g., image file) in the first place.
4889      [David McCreedy <mccreedy@us.ibm.com>]
4890
4891   *) support/htpasswd now permits the password to be specified on the
4892      command line with the '-b' switch.  This is useful when passwords
4893      need to be maintained by scripts -- particularly in the Win32
4894      environment.  [Ken Coar]
4895
4896   *) Win32: Win32 multiple services patch. Added capability to install and
4897      run multiple copies of apache as individual services.
4898
4899      Example 1:
4900      apache -n apache1 -i -f c:/httpd.conf
4901         Installs apache as service 'apache1' and associates c:/httpd.conf
4902         with that service.
4903      net start apache1
4904         Starts apache1 service.
4905      net stop apache1
4906         Stops apache1 service
4907
4908      Example 2:
4909      apache -n apache2 -i
4910         Installs apache as service 'apache2'. httpd.conf is located under
4911         the default server root (/apache/conf/httpd.conf).
4912      net start apache2
4913         Starts apache2 service.
4914
4915      Example 3:
4916      apache -n apache3 -i -d c:/program files/apache
4917         Install apache as service 'apache3' and sets server root to
4918         c:/program files/apache.
4919
4920      Example 4:
4921      apache -n apache2 -k restart
4922         Restart apache2 service 
4923
4924      [Keith Wannamaker, Ken Parzygnat, Bill Stoddard]
4925
4926   *) Correct the signed/unsigned character handling for the MD5 routines;
4927      mismatches were causing compilation problems with gcc -pedantic and
4928      in the TPF cross-compilation.  [Ken Coar]
4929
4930   *) OS/2: Rework CGI handling to use spawn*() instead of fork/exec, achieving
4931      a roughly 5 fold speed up. [Brian Havard]
4932
4933   *) proxy ftp: instead of using the hardwired string "text/plain" as
4934      a fallback type for files served by the ftp proxy, use the
4935      ap_default_type() function to determine the configured type.
4936      This allows for special configurations like
4937         <Directory proxy:ftp://some.host>
4938         DefaultType gargle/blurb
4939         </Directory>
4940      Additionally, add the Content-Encoding: header to FTP proxy replies
4941      when the encoding is defined (by the AddEncoding directive).
4942      Because it was missing, it was almost impossible to browse compressed
4943      files using the FTP proxy (works now perfectly in Communicator).
4944      The ftp proxy now also returns the Date: and Server: header lines (if not
4945      much else... This code is "somewhat" broken) like normal requests do.
4946      [Martin Kraemer]
4947
4948   *) Be more smart in APACI's configure script when determining the UID/GID
4949      for User/Group directives and use the determined UID/GID to initialize
4950      the permissions on the proxycachedir.
4951      [Dirk-Willem van Gulik, Ralf S. Engelschall]
4952
4953   *) Changed the forking-prior-to-cleanup in the proxy module to first
4954      check wether it actually needs to collect garbage. This reduces 
4955      the number of fork()s from one/request to just the odd one an hour.
4956      [Dirk-Willem van Gulik]
4957
4958   *) Added proxy, auth and header support to src/support/ab.c. Added a
4959      README file to src/support/
4960      [Dirk-Willem van Gulik]
4961
4962   *) Don't hard-code the path to AWK in --shadow bootstrapping Makefile.
4963      [Ralf S. Engelschall] PR#4050
4964
4965   *) Add support for DSO module compilation on BSD/OS 3.x.
4966      [Randy Terbush, Covalent Technologies]
4967
4968   *) Fix sed-substitutions in `make install': path elements like `httpd/conf'
4969      (for instance from an APACI configure --sysconfdir=/etc/httpd/conf
4970      option) were substituted with $(TARGET).conf, etc. Same for other strings
4971      with dots where the dot wasn't matched as plain text. 
4972      [Ralf S. Engelschall]
4973
4974   *) PORT: Add support for FreeBSD 4.x [Ralf S. Engelschall]
4975
4976   *) Fix verbose output of APACI configure (option -v) 
4977      [Martin Kraemer, Ralf S. Engelschall]
4978
4979 Changes with Apache 1.3.6
4980
4981   *) Removed new PassAllEnv code due to DSO problems. [Lars Eilebrecht]
4982
4983 Changes with Apache 1.3.5 [not released]
4984
4985   *) M_INVALID needed a value within the scope of METHODS so that unknown
4986      methods can be access controlled.  [Roy Fielding] PR#3821
4987
4988   *) Added PassAllEnv; makes server's entire environment available
4989      to CGIs and SSIs executed within directive's scope.  [Ken Coar]
4990
4991   *) ap_uuencode() always added two trailing '='s and encoding of
4992      8 bit characters on a machine with signed char may produced
4993      incorrect results. Additionally ap_uuencode() should now
4994      work correctly on EBCDIC platforms.
4995      [Ronald Tschalär <ronald@innovation.ch>] PR#3411
4996
4997   *) WIN32: Binary installer now runs the configuration DLL before
4998      the reboot prompt (which is only given if MSVCRT.DLL system
4999      DLL is new or updated). This should avoid the configuration
5000      directory being empty after installation. [Paul Sutton]
5001      PR#3767, 3800, 3827, 3850, 3900, 3953, 3988
5002
5003   *) WIN32: Binary installer now creates Start menu options to start
5004      and stop Apache as a console application and to uninstall
5005      the Apache service on NT. [Paul Sutton] PR#3741
5006
5007   *) WIN32: Apache.exe now contains an icon. [Paul Sutton]
5008
5009   *) PORT: Switch back to using fcntl() locking on Linux -- instabilities
5010      have been reported with flock() locking (probably related to kernel
5011      version).  [Dean Gaudet] PR#2723, 3531
5012
5013   *) Using APACI, the main config file (usually httpd.conf) was
5014      not being adjusted as $(TARGET).conf. [Wilfredo Sanchez
5015      <wsanchez@apple.com>]
5016
5017   *) PORT: AIX does not require the SHARED_CODE "hack"
5018      [Ryan Bloom <rbb@raleigh.ibm.com>]
5019
5020   *) Set-Cookie headers were being doubled up for some CGIs by the O(n^2)
5021      avoidance code added in 1.3.3.
5022      [Dean Gaudet, Jeff Lewis <lewis@stanford.edu>] PR#3872
5023
5024   *) ap_isxdigit was somehow neglected when adding the ap_isfoo() macros
5025      for 8-bit safeness.  [Dean Gaudet]
5026
5027   *) PORT: Use -fPIC instead of -fpic on Solaris and SunOS for compiling DSOs
5028      because SPARCs have a small machine-specific maximum size for the Global
5029      Offset Table which is often exceeded when compiling one of the larger
5030      third-party modules with Apache. [Peter Urban <Peter.Urban@epfl.ch>] PR#3977
5031
5032   *) Move the directive `ExtendedStatus' in httpd.conf-dist-win _after_ the
5033      DSO/DLL section because it's a directive from mod_status and isn't
5034      available before the DLL of mod_status is loaded.
5035      [Martin POESCHL <mpoeschl@gmx.net>] PR#3936
5036
5037   *) SECURITY: Fix a bug in the calculation of the buffer size for the line 
5038      continuation facility in Apache's configuration files which could 
5039      lead to a buffer overflow situation.
5040      [Thomas Devanneaux <Thomas.Devanneaux@enst.fr>] PR#3617
5041
5042   *) Make documentation and error messages of APACI's --activate-module=FILE 
5043      option more clear. [Jan Wolter <janc@wwnet.net>] PR#3995
5044
5045   *) Fix the gcc version check (for enabling the `inline' facility) to 
5046      really support all future gcc versions >= 2.7 until we know more.
5047      [John Tobey <jtobey@banta-im.com>] PR#3983
5048
5049   *) Let APACI's configure script correctly complain for unknown --enable-XXX
5050      and --disable-XXX options. [Ralf S. Engelschall] PR#3958
5051
5052   *) Link the shared core bootstrap program (``Rule SHARED_CORE=yes'') also
5053      against libap.a and use its ap_snprintf() instead of sprintf() to avoid
5054      possible buffer overflows. [Ralf S. Engelschall]
5055
5056   *) Remove no longer used non-API function ap_single_module_init().
5057      [Ralf S. Engelschall]
5058
5059   *) Add Apple's Mac OS X Server Layout "Rhapsody" to config.layout.
5060      [Wilfredo Sanchez]
5061
5062   *) Add cgidir, htdocsdir, iconsdir variables to Makefile.tmpl in order
5063      to make platform installations easier.  [Wilfredo Sanchez]
5064
5065   *) In configure, do not append the target name to the directory path if
5066      the path already contains "apache".  [Ralf S. Engelschall]
5067
5068   *) SIGPIPE is now ignored by the server core.  The request write routines
5069      (ap_rputc, ap_rputs, ap_rvputs, ap_rwrite, ap_rprintf, ap_rflush) now
5070      correctly check for output errors and mark the connection as aborted.
5071      Replaced many direct (unchecked) calls to ap_b* routines with the
5072      analogous ap_r* calls.  [Roy Fielding]
5073
5074   *) Enhanced mod_rewrite's mapfile handling: The in-core cache for text and
5075      DBM format mapfiles now uses a 4-way hash table with LRU functionality.
5076      Furthermore map lookups for non-existent keys are now cached as well.
5077      Additionally "txt" maps are now parsed with simple string functions
5078      instead of using ap_pregcomp(). As a side effect a bug that prevented
5079      the usage of keys containing the "," character was fixed.
5080      The changes drastically improve the performance when large rewrite maps
5081      are in use.
5082      [Michael van Elst <mlelstv@serpens.swb.de>, Lars Eilebrecht] PR#3160
5083
5084   *) Added ap_sub_req_method_uri() for doing a subrequest with a method
5085      other than GET, and const'd the definition of method in request_rec.
5086      [Greg Stein]
5087
5088   *) Use proper pid_t type for saving PIDs in alloc.c.  [John Bley]
5089
5090   *) Replaced use of WIN32 define with HAVE_DRIVE_LETTERS to indicate
5091      when the OS allows a DOS drive letter within pathnames.  [Brian Havard]
5092
5093   *) Add %V to mod_log_config, this logs the hostname according to the
5094      UseCanonicalName setting (this is the pre-1.3.4 behaviour of
5095      %v).  Useful for mass vhosting.  [Tony Finch <dot@dotat.at>]
5096
5097   *) Add support for \n and \t to mod_log_config, can be used to produce
5098      more reliable logs with multiline entries.  [Tony Finch <dot@dotat.at>]
5099
5100   *) Fixed a few compiler nits.  [John Bley <jbb6@acpub.duke.edu>]
5101
5102   *) Added informative error messages for failed munmap() and fseek() calls
5103      in http_core.c. [John Bley, Roy Fielding]
5104
5105   *) Added some informative error messages for some failed malloc()
5106      calls. [John Bley <jbb6@acpub.duke.edu>, Jim Jagielski]
5107
5108   *) OS/2 ap_os_canonical_filename()'s behaviour is improved: ap_assert()
5109      is removed. This allows <Directory proxy:*> directives to work and
5110      prevents invalid requests from killing the process.
5111      [Brian Havard <brianh@kheldar.apana.org.au>]
5112
5113   *) Reorganised FAQ document.
5114      [Joshua Slive <slive@finance.commerce.ubc.ca>] PR#2497
5115
5116   *) src/support/: The ApacheBench benchmark program was overhauled by
5117      David N. Welton: you can now have it generate an HTML TABLE, presumably
5118      for integration into other HTML sources. David updated the ab man page
5119      as well and added some missing descriptions. Thanks!
5120      [David N. Welton <davidw@prosa.it>]
5121
5122   *) Win32: The filename validity checker now allows filenames containing
5123      characters in the range 0x80 to 0xff (for example accented characters).
5124      [Paul Sutton] PR#3890
5125
5126   *) Added conditional logging based upon environment variables to
5127      mod_log_config.  mod_log_referer and mod_log_agent
5128      are now deprecated.  [Ken Coar]
5129
5130   *) Allow apache acting as a proxy server to relay the real
5131      reason of a failure to a client rather than the "internal
5132      server error" it does currently. The general exposure mechanism
5133      can be triggered by any module by setting the "verbose-error-to"
5134      note to "*"; this allows more than just proxy errors to be exposed.
5135      [Cliff Skolnick, Roy Fielding, Martin Kraemer] Related to PR#3455, 4086
5136
5137   *) Moved man pages for ab and apachectrl to section 8.
5138      [Wilfredo Sanchez, Roy Fielding]
5139
5140   *) Added -S option to install.sh so that options can be passed to
5141      strip on some platforms. [Ralf S. Engelschall, Wilfredo Sanchez]
5142
5143   *) Tweak modules Makefile generated by Configure so that it handles
5144      the test case of no modules being selected. [chaz@reliant.com]
5145
5146   *) Added a <LimitExcept method ...> sectioning directive that allows
5147      the user to assign authentication control to any HTTP method that
5148      is *not* given in the argument list; i.e., the logical negation
5149      of the <Limit> directive.  This is particularly useful for controlling
5150      access on methods unknown to the Apache core, but perhaps known by
5151      some module or CGI script. [Roy Fielding, Tony Finch]
5152
5153   *) Prevent apachectl from complaining if the PIDFILE exists but
5154      does not contain a process id, as might occur if the server is
5155      being rapidly restarted. [Wilfredo Sanchez]
5156
5157   *) Win32: Add global symbols missing from ApacheCore.def. [Carl Olsen]
5158
5159   *) Entity tag comparisons for If-Match and If-None-Match were not being
5160      performed correctly -- weak tags might cause false positives.  Also,
5161      strong comparison wasn't properly enforced in all cases.
5162      [Roy Fielding, Ken Coar, Dean Gaudet] PR#2065, 3657
5163
5164   *) OS/2: Supply OS/2 error code instead of errno on semaphore errors.
5165      [Brian Havard]
5166
5167   *) Work around a bug in Lynx regarding its sending "Negotiate: trans"
5168      even though it doesn't understand TCN.  [Koen Holtman, Roy Fielding]
5169
5170   *) Added ap_size_list_item(), ap_get_list_item(), and ap_find_list_item()
5171      to util.c for parsing an HTTP header field value to extract the next
5172      list item, taking into account the possible presence of nested comments,
5173      quoted-pairs, and quoted-strings. ap_get_list_item() also removes
5174      insignificant whitespace and lowercases non-quoted tokens.
5175      [Roy Fielding] PR#2065
5176
5177   *) proxy: The various calls to ap_proxyerror() can return HTTP/1.1 status
5178      code different from 500. This allows the proxy to, e.g., return
5179      "403 Forbidden" for ProxyBlock'ed URL's. [Martin Kraemer] Related to PR#3455
5180
5181   *) Fix ordering of language variants for the case where the traditional
5182      negotiation algorithm is being used with multiple language variants
5183      and no Accept-Language. [James Treacy <treacy@debian.org>] PR#3299, 3688
5184
5185   *) Do not round the TCN quality calculation to 5 decimal places,
5186      unlike RFC 2296, because the calculation might need 12 decimal places
5187      to get the right result.  [Roy Fielding]
5188
5189   *) Remove unused code to disable transparent negotiation when
5190      negotiating on encoding only, as we now handle encoding too
5191      (though this is nonstandard for TCN), remove charset=ISO-8859-1
5192      fiddle from the fiddle-averse RVSA comparison, and fix bugs in
5193      some debugging statements within mod_negotiation. [Koen Holtman]
5194
5195   *) Fixed a rare memory corruption possibility in mod_dir if the index
5196      file is negotiable and no acceptable variant can be found.
5197      [Dean Gaudet, Roy Fielding, Martin Kraemer]
5198
5199   *) Win32: Add new config directive, ScriptInterpreterSource, to enable
5200      searching the Win32 registry for script interpreters.
5201      [Bill Stoddard]
5202
5203   *) Win32: The compiled-in default filename for the error log is now
5204      error.log, which matches the default in the distributed httpd.conf.
5205      [Paul Sutton]
5206
5207   *) Win32: Any error messages from -i or -u command line options are now
5208      displayed on the console output rather than sent to the error log.
5209      Also the "Running Apache..." message is not output unless Apache is
5210      going to serve requests. [Paul Sutton]
5211
5212   *) Rework the MD5 authentication scheme to use FreeBSD's algorithm,
5213      and use a private significator ('$apr1$') to mark passwords as
5214      being smashed with our own algorithm.  Also abstract the password
5215      checking into a new ap_validate_password() routine.  [Ken Coar]
5216
5217   *) Win32: The filename validity checker now allows "COM" but refuses 
5218      access to "COM1" through "COM4". This allows filenames such
5219      as "com.name" to be served. [Paul Sutton] PR#3769.
5220
5221   *) BS2000: Adapt to the new ufork() system call interface which will
5222      make subtasking easier on the OSD/POSIX mainframe environment.
5223      [Martin Kraemer]
5224
5225   *) Add a compatibility define for escape_uri() -> ap_escape_uri() to
5226      ap_compat.h. [David White <david@persimmon.com>] PR#3725
5227
5228   *) Make NDBM file suffix determination for mod_rewrite more accurate, i.e.
5229      use `.db' instead of `.pag' not only for FreeBSD, but also when
5230      the NDBM library looks like Berkeley-DB based.
5231      [Ralf S. Engelschall] PR#3773
5232
5233   *) Add ability to handle DES or MD5 authentication passwords.
5234      [Ryan Bloom <rbb@Raleigh.IBM.Com>]
5235
5236   *) Fix O(n^2) memory consumption in mod_speling.  [Dean Gaudet]
5237
5238   *) SECURITY: Avoid some buffer overflow problems when escaping
5239      quoted strings.  (This overflow was on the heap and we believe
5240      impossible to exploit.)  [Rick Perry <perry@ece.vill.edu>]
5241
5242   *) Let src/Configure be aware of CFLAGS options starting with plus
5243      signs as it's the case for the HP/UX compiler.
5244      [Doug Yatcilla <yatcilda@umdnj.edu>] PR#3681
5245
5246   *) Remove the hard-wire of TAR=tar (we now check for gtar and gnutar first)
5247      and check to see if the tar we wind up with supports '-h'.
5248      [Jim Jagielski] PR#3671
5249
5250   *) A consistent and conservative style for all shell scripts has been
5251      implemented. Basically, all shell string tests use the traditional
5252      hack of 'if [ "x$var" != "x" ]' or 'if [ "x$var" = "xstring" ]'
5253      to protect against bare null variable strings (ie: wrapping both
5254      sides with double quotes and prepending 'x'). 'x' was chosen
5255      because it's more universal and hopefully easier for old shell
5256      prgrammers, as well as being easier to search for in 'vi' (/x\$) :)
5257      [Jim Jagielski]
5258
5259   *) The status module now prints out both the main server generation as
5260      well as the generation of each process. Also, the vhost info is
5261      printed with '?notable'. [Jim Jagielski]
5262
5263   *) Move src/main/md5c.c to src/ap/ap_md5c.c; it's httpd-neutral
5264      and this makes its functions available to things in src/support.
5265      [Ken Coar]
5266
5267 Changes with Apache 1.3.4
5268
5269   *) Renamed macros status_drops_connection to ap_status_drops_connection
5270      and vestigial scan_script_header to ap_scan_script_header_err,
5271      mostly for aesthetic reasons. [Roy Fielding]
5272
5273   *) The query switch "httpd -S" didn't exit after showing the
5274      vhost settings. That was inconsistent with the other query functions.
5275      [Martin Kraemer]
5276
5277   *) Moved the MODULE_MAGIC_COOKIE from before the versions and
5278      filename to the end of the STANDARD_MODULE_STUFF.  Its
5279      presence at the beginning prevented reporting of the filename
5280      for modules compiled before 1 January 1999.  [Ken Coar]
5281
5282   *) SECURITY: ap_os_is_filename_valid() has been added to Win32
5283      to detect and prevent access to special DOS device file names.
5284      [Paul Sutton, Ken Parzygnat]
5285      
5286   *) WIN32: Created new makefiles Makefile_win32.txt (normal build)
5287      and Makefile_win32_debug.txt (debug build) that work on Win95.
5288      Run each of the following from the src directory:
5289         nmake /f Makefile_win32.txt           # compiles normal build
5290         nmake /f Makefile_win32.txt install   # compiles and installs
5291         nmake /f Makefile_win32.txt clean     # removes compiled junk
5292         nmake /f Makefile_win32_debug.txt     # compiles debug build
5293         nmake /f Makefile_win32_debug.txt install
5294         nmake /f Makefile_win32_debug.txt clean
5295      [Roy Fielding]
5296
5297   *) Added binbuild.sh and findprg.sh helpers to make it easier for us
5298      to build binary distributions. [Lars Eilebrecht]
5299
5300   *) IndexOptions SuppressColumnSorting only turned off making
5301      the column headers anchors; you could still change the display
5302      order by manually adding a '?N=A' or similar query string to the
5303      URL.  Now SuppressColumnSorting locks in the sort order so
5304      it can't be overridden this way.  [Ken Coar]
5305
5306   *) Added IndexOrderDefault directive to supply a default sort order
5307      for FancyIndexed directory listings.  [Ken Coar] PR#1699
5308
5309   *) Change the ap_assert macro to a variant that works on all platforms.
5310      [Richard Prinz <richard.prinz@cso.net>] PR#2575
5311
5312   *) Make sure under ELF-based NetBSD (now) and OpenBSD (future) we don't
5313      search for an underscore on dlsym() (as it's already the case
5314      for FreeBSD 3.0). [Todd Vierling <tv@pobox.com>] PR#2462
5315   
5316   *) Small fix for mod_env.html: The module was documented as to be _not_
5317      compiled into Apache per default, although it _IS_ compiled into 
5318      Apache per default. [Sim Harbert <sim@mindspring.com>] PR#3572
5319
5320   *) Instead of fixing a bug in the generation procedure for config.status (a
5321      backslash was missing) we remove the bug together with it's complete
5322      context because the special cases of the past can now no longer occur
5323      because of the recent magic for the --with-layout default.
5324      [Ralf S. Engelschall] PR#3590
5325  
5326   *) Make top-level Makefile aware of a parallel build procedures (make -j) by
5327      making sure the src/support/ tools are _forced_ to be build last (they
5328      depend on other libraries).
5329      [Markus Theissinger <markus.theissinger@gmx.de>]
5330
5331   *) Fix installation procedure: Now that os-inline.c is actually used (a
5332      recently fixed bug prevented this) we need to also install os-include.c
5333      in addition to os.h into the PREFIX/include/ location or building of
5334      module DSOs with APXS fails. [Ralf S. Engelschall] PR#3527
5335
5336   *) Added MODULE_MAGIC_COOKIE as the first field in a module structure to
5337      allow us to distinguish between a garbled DSO (or even a file which isn't
5338      an Apache module DSO at all) and a DSO which doesn't match the current
5339      Apache API. [Ralf S. Engelschall] PR#3152
5340  
5341   *) Two minor enhancements to mod_rewrite: First RewriteRule now also
5342      supports the ``nocase|NC'' flag (as RewriteCond already does for ages) to
5343      match case insensitive (this especially avoids nasty patterns like
5344      `[tT][eE][sS][tT]'). Second two additional internal map functions
5345      `escape' and `unescape' were added which can be used to escape/unescape
5346      to/from hex-encodings in URLs parts (this is especially useful in
5347      combination with map lookups). 
5348      [Magnus Bodin, Ian Kallen, Ralf S. Engelschall]
5349
5350   *) Renamed the macro escape_uri() to ap_escape_uri() which was
5351      forgotten (because it was a macro) in the symbol renaming process.
5352      [Ralf S. Engelschall]
5353
5354   *) Fix some inconsistencies related to the scopes of directives. The only
5355      user visible change is that the directives `UseCanonicalName' and
5356      `ContentDigest' now use the (more correct) `Options' scope instead of
5357      (less correct) `AuthConfig' scope.  [Ralf S. Engelschall]
5358
5359   *) Using DSO, the Server token was being mangled. Specifically, the
5360      module's token was being added first before the Apache token. This
5361      has been fixed. [Jim Jagielski]
5362
5363   *) Major overhaul of mod_negotiation.c, part 2.
5364      - properly handle "identity" within Accept-Encoding.
5365      - allow encoded variants in RVSA negotiation and let them appear in
5366        the Alternates field using the non-standard "encoding" tag-list.
5367      - fixed both negotiation algorithms so that an explicitly accepted
5368        encoding is preferred over no encoding if "identity" is not
5369        included within Accept-Encoding.
5370      - added ap_array_pstrcat() to alloc.c for efficient concatenation
5371        of large substring sequences.
5372      - replaced O(n^2) memory hogs in mod_negotiation with ap_array_pstrcat.
5373      [Roy Fielding]
5374
5375   *) Major overhaul of mod_negotiation.c, part 1.
5376      - cleanups to mod_negotiation comments and code structure
5377      - made compliant with HTTP/1.1 proposed standard (rfc2068) and added
5378        support for everything in the upcoming HTTP/1.1
5379        revision (draft-ietf-http-v11-spec-rev-06.txt).
5380          - language tag matching also handles tags with more than 2
5381            levels like x-y-z
5382          - empty Accept, Accept-Language, Accept-Charset headers are
5383            processed correctly; previously an empty header would make all
5384            values acceptable instead of unacceptable.
5385          - allowed for q values in Accept-Encoding
5386      - added support for transparent content negotiation (rfc2295 and
5387        rfc2296) (though we do not implement all features in these drafts,
5388        e.g. no feature negotiation).  Removed old experimental version.
5389      - implemented 'structured entity tags' for better cache correctness
5390        (structured entity tags ensure that caches which can deal with Vary
5391        will (eventually) be updated if the set of variants on the server
5392        is changed)
5393          - this involved adding a vlist_validator element to request_rec
5394          - this involved adding the ap_make_etag() function to the global API
5395      - modified guessing of charsets used by Apache negotiation algorithm 
5396        to guess 'no charset' if the variant is not a text/* type
5397      - added code to sort multiviews variants into a canonical order so that
5398        negotiation results are consistent across backup/restores and mirrors
5399      - removed possibility of a type map file resolving to another type map
5400        file as its best variant
5401      [Koen Holtman, Roy Fielding, Lars Eilebrecht] PR#3451, 3299, 1987
5402
5403   *) RFC2396 allows the syntax http://host:/path (with no port number)
5404      but the proxy disallowed it (ap_proxy_canon_netloc()).
5405      [David Kristol <dmk@bell-labs.com>] PR#3530
5406
5407   *) When modules update/modify the file name in the configfile_t structure,
5408      syntax errors will report the updated name, not the original one.
5409      [Fabien Coelho <coelho@cri.ensmp.fr>] PR#3573
5410
5411   *) Correct some filename case assumptions from WIN32 to
5412      CASE_BLIND_FILESYSTEM.  [Brian Havard <brianh@kheldar.apana.org.au>]
5413
5414   *) For %v log ServerName regardless of the UseCanonicalName
5415      setting (similarly for %p).  [Dean Gaudet]
5416
5417   *) Configure was initializing the variables $OSDIR, $INCDIR and $SHELL
5418      rather late (too late for some invocations of TestCompile).
5419      This improves the make environment available to TestCompile and
5420      the *.module scripts. [Martin Kraemer]
5421
5422   *) The hashbang emulation code in ap_execve.c would interpret
5423      #!/hashbang/scripts correctly, but failed to fall back to a
5424      standard shell for scripts which did NOT start with #!
5425      Now SHELL_PATH is started in these cases. [Martin Kraemer]
5426
5427   *) PORT: Added the Cyberguard V2 port [Richard Stagg <stagg@lentil.org>]
5428      PR#3336
5429
5430   *) Update APXS manual page: some -q option arguments were missing
5431      and another was incorrect. [Mark Anderson <mda@discerning.com>] PR#3553
5432
5433   *) Cleanup the command line options: `-?' was documented to show
5434      the usage list but does it with an error because `?' is not a valid
5435      command. OTOH a lot of users expect `-h' to print such a usage list and
5436      instead are annoyed for ages by our huge unreadable list of directives.
5437      So we now changed the command line options this way:
5438      1. `-L' => `-R' 
5439         Intent: we need `-L' to be free, and `-R' for the DSO run-time path is
5440         very similar to the popular linker option.
5441      2. `-h' => `-L'
5442         Intent: while -l gives the small list of modules, -L now gives the
5443         large list of directives implemented by these modules.  This is also
5444         consistent with -v (short version info) and -V (large version info).
5445      3. `-?' => `-h' 
5446         Intent: it's now the expected option ;-)
5447      The manual page was adjusted accordingly. 
5448      [Ralf S. Engelschall] PR#2714
5449
5450   *) Fixed problem of fclose() on an unopened file in suexec if LOG_EXEC
5451      wasn't defined.  [Rick Franchuk <rickf@transpect.net>]
5452
5453   *) Removed recently introduced bugs and disfigurements in APACI:
5454      o fixed argument line processing: using $args was broken: It was not
5455        initialized and using args="$args $apc_option" and even args="$args
5456        \"$apc_option\"" fails in the second processing round for any arguments
5457        containing whitespaces. The only correct way is to use the construct
5458        "$@" (but not possible here) or iterate _both_ times over the implicit
5459        argument line (no argument to for-loop) which is what we now use.
5460      o make --with-layout=Apache the default without creating
5461        redundancy (copying the --with-layout block in the argument parsing
5462        loop).  We achieve this by using the "$@" construct together with the
5463        `set' command to prepend --with-layout=Apache to the command line in
5464        case --with-layout is not used.
5465      o fixed auto-suffix handling now that config.layout exists.
5466        Paths which are auto-suffixed are marked with a trailing plus sign in
5467        config.layout and every path now can be marked this way (not only the
5468        four paths for which we do it currently).  Additionally the suffix is
5469        no longer a static one. Instead it's now `/<target>' where <target> is
5470        the argument of the --target option or per default `httpd'.
5471      o allow also tabs (and only spaces) where we match whitespaces
5472      o various fixes and cleanups related to used shell coding style
5473      o made Jim happy by replacing `Written by' with `Initially written by' ;-)
5474      o trimmed output of --help to fit into 80 columns
5475      [Ralf S. Engelschall]
5476
5477   *) Added two new core API functions, ap_single_module_configure() and
5478      ap_single_module_init(), which are now used by mod_so to configure a module
5479      after loading. [Ralf S. Engelschall]
5480
5481   *) PORT: Add defines for USE_FLOCK_SERIALIZED_ACCEPT and
5482      SINGLE_LISTEN_UNSERIALIZED_ACCEPT to NetBSD/OpenBSD section
5483      of ap_config.h to allow serialized accept for multiport listens.
5484      [Roy Fielding, Curt Sampson] PR#3120
5485
5486   *) PORT: Fixed a misplaced #endif for NetBSD/OpenBSD section
5487      of ap_config.h that would skip several defines if DEFAULT_GROUP
5488      was overridden. [Roy Fielding]
5489
5490   *) PORT: The I86 version of DGUX has support for strncasecmp and 
5491      strcasecmp, so allow it in ap_config.h. [Amiel Lee Yee] PR#3247
5492
5493   *) Fix ordering of definitions in ap_config.h so that ap_inline is
5494      defined before it might be used. [Victor Khimenko]
5495
5496   *) PORT: Add Dynamic Shared Object (DSO) support for BSDI (v4.0).
5497      [Tom Serkowski <tks@bsdi.com>] PR#3453
5498
5499   *) Make generation of src/Configuration.apaci more robust: It failed to
5500      differenciate between modules when one module name was a postfix of
5501      another (e.g. cgi vs. fastcgi). We now check for mod_XXX, libXXX and even
5502      just XXX (think about totally non-standard names like "apache_ssl", too).
5503      [Ralf S. Engelschall] PR#3380
5504
5505   *) In src/Configure remove the SERVER_SUBVERSION support (already deprecated
5506      since 1.3b7) and make whitespace handling more robust (it failed horrible
5507      when whitespaces were present in the arguments of -D options).
5508      [Ralf S. Engelschall] PR#3240
5509
5510   *) Add APACI --shadow=DIR variant (in addition to --shadow). This now first
5511      creates an external package shadow tree in DIR before the local build
5512      shadow tree is generated under DIR. This way one can have the extracted
5513      Apache distribution tree read-only on NFS or CDROM and still build Apache
5514      from these sources. An automatically triggered VPATH-like mechanism is
5515      provided through the TOP variable, too.
5516      [Ralf S. Engelschall, Wilfredo Sanchez <wsanchez@apple.com>]
5517
5518   *) Fix negotiation so that a Vary response header is correctly 
5519      generated when, for a particular dimension, variants only vary
5520      in having or not having a value for that dimension. [Paul Sutton]
5521
5522   *) Fix negotiation so that we prefer an encoded variant over an
5523      unencoded variant if the user-agent explicitly says it can
5524      accept that encoding. Previously we always preferred the unencoded
5525      variant.
5526      [Paul Ausbeck <paula@alumni.cse.ucsc.edu>, Paul Sutton] PR#3447
5527  
5528   *) Fix APXS tool: query variables LIBS_SHLIB and TARGET were not recognized
5529      and the usage page was inconsistent with the functionality and manpage.
5530      [Ralf S. Engelschall]
5531
5532   *) Allow special options -Wc,xxx and -Wl,xxx on APXS compile/link command.
5533      They can occur multiple times and their arguments (`xxx') are passed AS
5534      IS to the compiler/linker command.  [Ralf S. Engelschall]
5535
5536   *) Fixed possible (but harmless in practice) bug in the DBM lookup
5537      procedure of mod_rewrite: very long keys were truncated.
5538      [Ralf S. Engelschall]
5539
5540   *) Added a generic --with-layout=[FILE:]ID option. ID here is a layout
5541      identifier, currently "Apache" and "GNU" are pre-defined in the file
5542      config.layout.  Custom layouts are possible by using FILE:ID as the
5543      argument where the layout ID is taken from FILE.
5544
5545      The config.layout file consists of <Layout ID>..</Layout> sections
5546      where inside those sections "path_variable: path_value" pairs can be
5547      specified. These lines are converted to path_variable='path_value'.
5548
5549   *) Add a DefaultLanguage directive so that files missing a language
5550      extension (e.g., .fr, .de) can be labelled as being some other
5551      default language. DefaultLanguage can appear in <Directory> and 
5552      <Files> containers as well as .htaccess files.  [Paul Sutton]
5553      PR#1180
5554
5555   *) Fix TARGET configuration when configuring and installing using
5556      APACI configure. TARGET now defines the basename of the configuration
5557      file, startup script, manual page, etc. log_error_core() now reports
5558      the server binary name given by argv[0]. TARGET can now also be defined
5559      with --target=TARGET parameter passed to APACI configure.
5560      [Ralf Engelschall, Randy Terbush]
5561
5562   *) mod_include.c:handle_perl() now properly tests for OPT_INCNOEXEC
5563      rather than OPT_INCLUDES [Rainer Schoepf <schoepf@uni-mainz.de>]
5564
5565   *) ap_md5_binary() was using sprintf() rather than a table lookup
5566      to convert binary bytes to hex digits.
5567      [Ronald Tschalär <ronald@innovation.ch>] PR#3409
5568
5569   *) Fix SEGV in TCN negotiation if no variants are acceptable.
5570      [Martin Plechsmid <plechsmi@karlin.mff.cuni.cz>] PR#1987
5571
5572   *) API: ap_exists_config_define() function is now "public" [Doug MacEachern]
5573
5574   *) Fix documentation of `Action' directive: It can activate a CGI script
5575      when either a handler or a MIME content type is triggered by the request.
5576      [Andrew Pimlott <pimlott@math.harvard.edu>] PR#3340
5577
5578   *) Document the `add' command of `dbmmanage' in `dbmmanage.1' manpage.
5579      [David MacKenzie <djm@uu.net>] PR#3394
5580
5581   *) Ignore a "ErrorDocument 401" directive with a full URL and write a
5582      notice to the error log. It is not possible to send a 401 response
5583      and a redirect at the same time.  [Lars Eilebrecht]
5584
5585   *) Fallback to native compilers for IRIX-32 platform. It seems that
5586      a gcc 2.8.1 compiled apache is logging client addresses with all
5587      bits set (255.255.255.255). This is the second such problem caused
5588      by gcc 2.8.1 compiler. The first being broken semaphore locking.
5589      [Randy Terbush]
5590
5591   *) Updated mime.types to reflect current Internet media types
5592      and include a URL to the registry.
5593      [Manoj Kasichainula, Roy Fielding] PR#2380, 2286, 2246
5594
5595   *) SECURITY: Do a more complete check in mod_include to avoid 
5596      an infinite loop of recursive SSI includes.  [Marc Slemko] PR#3323
5597
5598   *) Add APACI --suexec-docroot and --suexec-logfile options which can be
5599      used to set the document root directory (DOC_ROOT) and the suexec
5600      logfile (LOG_EXEC), respectively. Additionally the --layout option
5601      was changed to show more information about the suEXEC setup.
5602      [Lars Eilebrecht] PR#3316, 3357, 3361
5603
5604   *) Added the last two WebDAV status codes of 424 (Failed Dependency)
5605      and 507 (Insufficient Storage) for use by third-party modules.
5606      [Roy Fielding]
5607
5608   *) Enabled all of the WebDAV method names for use by third-party
5609      modules, Limit, and Script directives.  That includes PATCH,
5610      PROPFIND, PROPPATCH, MKCOL, COPY, MOVE, LOCK, and UNLOCK.
5611      Improved mod_actions.c so that it can use any of the methods
5612      defined in httpd.h.  Added ap_method_number_of(method) for
5613      getting the internal method number.  [Roy Fielding]
5614
5615   *) PORT: Add a port to the TPF OS. [Joe Moenich <moenich@us.ibm.com> and
5616      others at IBM]
5617
5618   *) Fix problems with handling of UNC names (e.g., \\host\path)
5619      on Win32.  [Ken Parzygnat <kparz@us.ibm.com>]
5620
5621   *) Rework os_canonical_*() on Win32 so it's simpler, more
5622      robust, and works.  [Ken Parzygnat <kparz@us.ibm.com>]
5623      PR#2555, 2915, 3064, 3232
5624
5625   *) Work around incomplete implementation of strftime on Win32.
5626      [Manoj Kasichainula, Ken Parzygnat <kparz@us.ibm.com>]
5627
5628   *) Move a typedef to fix compile problems on Linux with 1.x kernels.
5629      [Manoj Kasichainula] PR#3177
5630
5631   *) PORT: Add a port to the Concurrent PowerMAX OS. [Tom Horsley
5632      <Tom.Horsley@mail.ccur.com>]
5633
5634   *) WIN32: Log more explicit error messages if spawning an interpreted 
5635      script failed, including the command line used to attempt to execute 
5636      the interpreter and the Win32 error code returned.  [Marc Slemko]
5637
5638   *) Disable sending of error-notes on a 500 (Internal Server Error) response
5639      since it often includes file path info.  Enable sending of error-notes
5640      on a 501 (Method Not Implemented).  [Roy Fielding] PR#3173
5641
5642   *) http_config.c would respond with 501 (Method Not Implemented) if a
5643      content type handler was specified but could not be found, which
5644      should have been a 500 response.  Likewise, mod_proxy.c would responsd
5645      with a 501 if the URI scheme is unrecognized instead of the correct
5646      response of 403 (Forbidden).  [Roy Fielding]
5647
5648   *) SECURITY: Eliminate DoS attack when a bad URI path contains what
5649      looks like a printf format escape.  [Marc Slemko, Studenten Net Twente]
5650
5651   *) Fix in mod_autoindex: for files where the last modified time stamp was
5652      unavailable, an empty string was printed which was 2 bytes short.
5653      The size and description columns were therefore not aligned correctly.
5654      [Martin Kraemer] (no PR#)
5655
5656   *) Update BS2000 OS code to work with recent versions. Starting with
5657      release A17, the child fork() must be replaced by a _rfork().
5658      (BS2000 only) [Martin Kraemer]
5659
5660   *) Add the actual server_rec structure of the specific Vhost to the
5661      scoreboard file and avoid a string copy (as well as allow some
5662      further future enhancements). [Harrie Hazewinkel
5663      <harrie.hazewinkel@jrc.it>]
5664
5665   *) Add APACI --permute-module=foo:bar option which can be used to
5666      on-the-fly/batch permute the order of two modules (mod_foo and mod_bar)
5667      in the Configuration[.apaci] file. Two special and important variants are
5668      supported for the option argument: first BEGIN:foo which permutes module
5669      mod_foo with the begin of the module list, i.e. it `moves' the module to
5670      the begin of the list (gives it lowest priority).  And second foo:END
5671      which permutes mod_foo with the end of the module list, i.e. it `moves'
5672      the module to the end of the list (gives it highest priority). 
5673      [Ralf S. Engelschall]
5674
5675   *) Fix problem with 'apache -k shutdown' and startup event
5676      synchronisation (Win32).  [Ken Parzygnat <kparz@raleigh.ibm.com>]
5677      PR#3255
5678
5679   *) The config parser wasn't correctly noticing a missing '>'
5680      on container start lines (e.g., it wouldn't spot
5681      "<Directory /" as a syntax error).  [Ryan Bloom <rbbloom@us.ibm.com>]
5682      PR#3279
5683
5684   *) Add a 'RemoveHandler' directive which will selectively remove
5685      all handler associations for the specified file extensions.
5686      [Ryan Bloom <rbbloom@us.ibm.com>] PR#1799.
5687
5688   *) Properly handle & allow "nul" and ".*/null" in AccessConfig and
5689      ResourceConfig directives on Win32.  Also add a note to the effect
5690      of 'useless User directive ignored on Win32' to the errorlog if
5691      a User directive is encountered on Win32.
5692      [Ken Parzygnat <kparz@raleigh.ibm.com>] PR#2078, 2303.
5693
5694   *) Fix multiple whitespace handling in imagemaps for mod_imap which was
5695      broken since Apache 1.3.1 where we took out compressing of multiple
5696      spaces in ap_cfg_getline().
5697      [Ivan Richwalski <ivan@seppuku.net>] PR#3249
5698
5699   *) Fix Berkeley-DB/2.x support in mod_auth_db: The data structures were not
5700      initialized correctly and the db_open() call used an invalid mode
5701      parameter. [Ron Klatchko <ron@ckm.ucsf.edu>] PR#3171
5702
5703   *) PORT: DSO support for UnixWare 7
5704      [Ralf S. Engelschall, Ron Record <rr@sco.com>]
5705
5706   *) Merge the contents of the {srm,access}.conf-dist* files into the
5707      httpd.conf-dist* files.  The srm and access files now contain
5708      only comments, and httpd.conf has all the combined contents in
5709      a rational order.  [Ken Coar]
5710
5711   *) PORT: DSO/ELF support for FreeBSD 3.0.
5712      [Ralf S. Engelschall, Dirk Froemberg <ibex@physik.TU-Berlin.DE>]
5713   
5714   *) Add a "default-handler" handler that calls the default_hander()
5715      function which is normally called for static content.  This allows
5716      you to override a specific handler.  [Marc Slemko]
5717
5718   *) Further simplify checking for absolute paths by replacing an
5719      hard-coded syntax check with a call to a routine we already created to
5720      do this.  [Ken Parzygnat <kparz@raleigh.ibm.com>] PR#2976, 3074
5721
5722   *) Log an error if we encounter a malformed "require" directive 
5723      in mod_auth if we know that we know that no other module can
5724      deal with it.  [Marc Slemko]
5725
5726   *) Remove ap_private_extern method of hiding conflicting symbols
5727      on the NEXT platform because it is not correct for all versions,
5728      and the versions for which it is correct are unknown.
5729      [Wilfredo Sanchez <wsanchez@apple.com>]
5730
5731   *) Fix inheritance of IndexOptions NameWidth and remove unintended
5732      restriction on +NameWidth, +IconHeight, and +IconWidth.  [Ken Coar]
5733
5734   *) Fix per-directory config merging for cases in which a 500 error
5735      is encountered in an .htaccess file somewhere down the tree.
5736      [Ken Coar]  PR#2409
5737
5738   *) Minor performance improvement to ap_escape_html(). [Roy Fielding]
5739
5740   *) Fixed a segmentation violation in mod_proxy when a response is
5741      non-cachable.  [Roy Fielding, traced by Doug Bloebaum]. PR#2950, 3056
5742
5743 Changes with Apache 1.3.3
5744
5745   *) Added a complete implementation of the Expect header field as
5746      specified in rev-05 of HTTP/1.1.  Disabled the 100 Continue
5747      response when we already know the final status, which is mighty
5748      useful for PUT responses that result in 302 or 401. [Roy Fielding]
5749
5750   *) Remove extra trailing whitespace from the getline results as part
5751      of the protocol processing, which is extra nice because it works
5752      between continuation lines, is almost no cost in the normal case
5753      of no extra whitespace, and saves memory. [Roy Fielding]
5754
5755   *) Added new HTTP status codes and default response bodies from the
5756      revised HTTP/1.1 (307, 416, 417), WebDAV (102, 207, 422, 423), and 
5757      HTTP Extension Framework (510) specifications.  Did not add the
5758      WebDAV 424 and 425 codes because they are bogus.  We don't use any
5759      of these codes yet, but they are now available to 3rd-party modules.
5760      [Roy Fielding]
5761
5762   *) Fix a possible race condition between timed-out requests and the
5763      ap_bhalfduplex select that might result in an infinite loop on
5764      platforms that do not validate the descriptor. [Roy Fielding]
5765
5766   *) WIN32: Add "-k shutdown" and "-k restart" options to signal a
5767      running Apache server [Paul Sutton]
5768
5769   *) Fix mod_autoindex bug where directories got a size of "0k" instead
5770      of "-".  [Martin Plechsmid <plechsmi@karlin.mff.cuni.cz>, Marc Slemko]
5771      PR#3130
5772
5773   *) PORT: DRS 6000 machine. [Paul Debleecker <pdebleecker@jetair.be>]
5774
5775   *) Add the server signature text (from the core ServerSignature directive)
5776      to the list of envariables available to scripts, SSI, and the like.
5777      [Ken Coar]
5778
5779   *) PORT: Fix sys/resource.h handling for SCO 3.x platform.
5780      [M. Laak <maert@proinv.ee>] PR#3108
5781  
5782   *) Fallback from sysconf-based to plain HZ-based `ticks per second'
5783      calculation in mod_status for all systems which don't have POSIX
5784      sysconf() (like UTS 2.1) and not only for the NEXT platform.
5785      [Dave Dykstra <dwd@bell-labs.com>] PR#3055
5786
5787   *) Fix `require ...' directive parsing in mod_auth, mod_auth_dbm and
5788      mod_auth_db by using ap_getword_white() (which uses ap_isspace()) 
5789      instead of ap_getword(..., ' ') (which parses only according to spaces 
5790      but not tabs).  [James Morris <jmorris@intercode.com.au>, 
5791      Ralf S. Engelschall] PR#3105
5792
5793   *) Fix the SERVER_NAME variable under sub-request situations (where
5794      `UseCanonicalName off' is used) like CGI's called from SSI pages or
5795      RewriteCond variables by adopting r->hostname to sub-requests.
5796      [James Grinter <jrg@blodwen.demon.co.uk>] PR#3111
5797
5798   *) Fix stderr redirection under syslog-based error logging situation.
5799      [Youichirou Koga <y-koga@jp.FreeBSD.org>] PR#3095
5800
5801   *) Document `ErrorLog syslog:facility' variant of error logging.
5802      [Youichirou Koga <y-koga@jp.FreeBSD.org>] PR#3096
5803
5804   *) Fix http://localhost/ hints in top-level INSTALL document.
5805      [Rob Jenson <robjen@spotch.com>, Ralf S. Engelschall] PR#3088
5806
5807   *) Quote paths in default configuration files.  [Wilfredo Sanchez]
5808
5809   *) PORT: Remove extra HAVE_SYS_RESOURCE_H define for RHAPSODY since
5810      it is now taken care of properly by the header file tests.
5811      [Wilfredo Sanchez <wsanchez@apple.com>]
5812
5813   *) Fix problem with scripts and filehandle inheritance on Win32.
5814      [Ken Parzygnat <kparz@raleigh.ibm.com>]  PR#2884, 2910
5815
5816   *) Win32 name canonicalisation could end up using the server's
5817      working directory to fill in some blanks.  [Ken Parzygnat
5818      <kparz@raleigh.ibm.com>] PR#3001
5819
5820   *) Correct invalid assumption by ap_sub_req_lookup_file() that all
5821      absolute paths begin with "/" -- because they don't on Win32.
5822      [Ken Parzygnat <kparz@raleigh.ibm.com>] PR#2976, 3074
5823
5824   *) Add [REDIRECT_]VARIANTS environment variable to mod_speling
5825      so that ErrorDocument 300 processors can reformat the list
5826      if desired.  [Ken Coar] PR#2859
5827
5828   *) Add +/- incremental prefixes to IndexOptions keywords, and
5829      enable merging of multiple IndexOptions directives.  [Ken Coar]
5830
5831   *) PORT: Allow GuessOS to recognize Unixware 7.0.1 [Steve Cameron
5832      <steve.cameron@compaq.com>]
5833
5834   *) Reconstructed the loop through multiple htaccess file names so
5835      that missing files are not confused with unreadable files.
5836      [Roy Fielding]
5837
5838   *) The ap_pfopen and ap_pfdopen routines were failing to protect the
5839      errno on an error, which leads to one error being mistaken for
5840      another when reading non-existent .htaccess files.
5841      [Jim Jagielski]
5842
5843   *) OS/2: The new header tests get things right, need to update
5844      ap_config.h.  [Brian Havard]
5845
5846   *) The Perl %ENV hash will now be setup by default when using the
5847      mod_include `perl' command [Doug MacEachern]
5848
5849   *) PORT: Add Pyramid DC/OSx support to configuration mechanism.
5850      [Earle Ake <akee@wpdiss1.wpafb.af.mil>]
5851
5852   *) PORT: Fix sys/resource.h handling for Amdahl's UTS 2.1
5853      [Dave Dykstra <dwd@bell-labs.com>] PR#3054
5854
5855   *) Correct comment in mod_log_config.c about its internals.
5856      [Elf Sternberg <elf@halcyon.com>]
5857
5858   *) Avoid possible line overflow in Configure: Use an awkfile to
5859      handle the creation of modules.c [Jim Jagielski]
5860
5861 Changes with Apache 1.3.2
5862
5863   *) Fix bug in ap_remove_module(), which caused problems for dso's 
5864      who were the top_module.  [Doug MacEachern]
5865
5866   *) Add support for Berkeley-DB/2.x (in addition to Berkeley-DB/1.x) to
5867      mod_auth_db to both be friendly to users who wants to use this version
5868      and to avoid problems under platforms where only version 2.x is present.
5869      [Dan Jacobowitz <drow@false.org>, Ralf S. Engelschall]
5870
5871   *) When using ap_log_rerror(), make the error message available to the
5872      *ERROR_NOTES envariables by default.  [Ken Coar]
5873
5874   *) BS2000 platform only: get rid of the nasty BS2000AuthFile.
5875      You now must define a BS2000Account name for the server User.
5876      This has fewer security implications than the old approach.
5877      [Martin Kraemer]
5878
5879   *) Fix SHARED_CORE feature for HPUX platform: We now use extension `.sl'
5880      instead of `.so' and `SHLIB_PATH' instead of `LD_LIBRARY_PATH' on this
5881      platform to make the braindead HPUX linker happy. Notice, for the module
5882      DSOs we don't have to use this, because these are loaded manually (and
5883      not via HPUX' dld). [Ralf S. Engelschall] PR#2905, PR#2968
5884
5885   *) Remove 64 thread limit on Win32.
5886      [Bill Stoddard <stoddard@raleigh.ibm.com>]
5887
5888   *) Remove redundant substitutions in top-level Makefile.tmpl.
5889      [Ralf S. Engelschall]
5890
5891   *) Fix APACI's `Group' configuration adjustment - especially for Linux
5892      platforms where `nogroup' exists in /etc/group. [Ralf S. Engelschall]
5893  
5894   *) Make PrintPath work generically instead of having one version
5895      strictly for OS/2. [Jim Jagielski, Brian Havard]
5896
5897   *) Fix the recently introduced C header file checking: We now use the C
5898      pre-processor pass only (and no longer the complete compiler pass) to
5899      determine whether a C header file exists or not. Because only this way
5900      we're safe against inter-header dependencies (which caused horrible
5901      portability problems). The only drawback is that we now have a CPP
5902      configuration variable which has to be determined first (we do a similar
5903      approach as GNU Autoconf does here). When all fails the user still has
5904      the possibility to override it manually via APACI or src/Configuration.
5905      As a fallback for the header check itself we can directly check the
5906      existance of the file under /usr/include, too.
5907      [Ralf S. Engelschall] PR#2777
5908
5909   *) PORT: Added RHAPSODY (Mac OS X Server) support. MAP_TMPFILE defined
5910      as an alternate mechanism for mmap'd shared memory for RHAPSODY.
5911      ap_private_extern defined to hide symbols that conflict with loaded
5912      dynamic libraries on the NEXT and RHAPSODY platforms.
5913      [Wilfredo Sanchez <wsanchez@apple.com>]
5914
5915   *) Delete PID file on clean shutdowns.
5916      [Charles Randall <crandall@matchlogic.com>] PR#2947
5917
5918   *) Fix mod_auth_*.html documents: NSCA -> NCSA
5919      [Youichirou Koga <y-koga@jp.FreeBSD.org>] PR#2991
5920
5921   *) Fix INSTALL document: www.gnu.ai.mit.edu -> www.gnu.org
5922      [Karl Berry <karl@gnu.org>] PR#2994
5923
5924   *) Fix dbmmanage.1 manual page.
5925      [Youichirou Koga <y-koga@jp.FreeBSD.org>] PR#2992
5926      
5927   *) Fix possible buffer overflow situation in suexec.c.
5928      [Jeff Stewart <jws@purdue.edu>] PR#2790
5929
5930   *) Add some more LIBS for the SCO5 platform which are needed for the already
5931      used -lprot. It's actually a bug in SCO5, of course.
5932      [Ronald Record <rr@sco.com>] PR#2533
5933
5934   *) Fix documentation of ProxyPass/ProxyPassReverse according to the
5935      trailing slash problem. [Jon Drukman <jsd@gamespot.com>] PR#2933
5936   
5937   *) Remove `-msym' option from LDFLAGS_SHLIB for the Digital UNIX (OSF/1)
5938      platform, because it's only supported under version 4.0 and higher. But
5939      because our GuessOS is still unaware of Digital UNIX versions and the
5940      -msym is just to optimize the DSO statup time a little bit it's safe and
5941      best when we leave it out now.  [Ralf S. Engelschall] PR#2969
5942
5943   *) Fix the ap_log_error_old(), ap_log_unixerr() and ap_log_printf()
5944      functions: First all three functions no longer fail on strings containing
5945      "%" chars and second ap_log_printf() no longer does a double-formatting
5946      (instead it directly passes through the message to be formatted to the
5947      real internal formatting function). [Ralf S. Engelschall] PR#2941
5948
5949   *) Allow "Include" directives anywhere in the server config
5950      files (but not .htaccess files).  [Ken Coar] PR#2727
5951
5952   *) The proxy was refusing to serve CONNECT requests except to
5953      port 443 (https://) and 563 (snews://). The new AllowCONNECT
5954      directive allows the configuration of the ports to which a
5955      CONNECT is allowed.  [Sameer Parekh, Martin Kraemer]
5956
5957   *) mod_expires will now act on content that is not sent from a file
5958      on disk.  Previously it would never add an Expires: header to
5959      any response that did not come from a file on disk; the only
5960      case where it still doesn't (and can't) add one for that type of 
5961      content is if you are using a modification date based setting.  
5962      [Marc Slemko, Paul Phillips <paulp@go2net.com>]
5963
5964   *) Problems encountered during .htaccess parsing or CGI execution
5965      that lead to a "500 Server Error" condition now provide explanatory
5966      text (in the *ERROR_NOTES envariable) to ErrorDocument 500 scripts.
5967      [Ken Coar] PR#1291
5968
5969   *) Add NameWidth keyword to IndexOptions directive so that the
5970      width of the filename column is customisable.  [Ken Coar, Dean Gaudet]
5971      PR#1949, 2324.
5972
5973   *) Recognize lowercase _and_ uppercase `uname' results under
5974      SCO OpenServer. [David Coelho <drc@ppt.com>]
5975
5976   *) As duplicate "HTTP/1.0 200 OK" lines within the header seem to be
5977      a common problem of (mis-administrated?) IIS servers, make the apache
5978      proxy immune to these errors (and ignore the duplicates, but log
5979      the fact to error_log). [Martin Kraemer], after the proposal in PR#2914 
5980      
5981   *) The <IfModule and <IfDefine block starting directives now only
5982      allow exactly one argument. Previously, the optional negation
5983      character '!' could be separated by whitespace without a syntax
5984      error being reported, albeit defeating the IfModule functionality
5985      (enclosed directives would ALWAYS be executed). By using the
5986      stricter syntax, these hard-to-track errors can be avoided.
5987      [Martin Kraemer]
5988
5989   *) Simplify handling of IndexOptions in mod_autoindex -- and BTW
5990      cause the standalone FancyIndexing directive to logically OR
5991      into any existing IndexOptions settings rather than wiping
5992      them out.  [Ken Coar]
5993
5994   *) Changes in ftp proxy: make URL parsing simpler by using the
5995      parsed_uri stuff.
5996      + Add display of the "current directory" in cases where it's
5997      different from the supplied path (e.g., ftp://user@host/ lives
5998      in /home/user, not in /, therefore clicking on "../" in the
5999      starting directory might send us to /home/).
6000      + When ftp login fails, (esp. when a user name was part of the
6001      URL already), we now return [401 Unauthorized ] to allow the
6002      browser to pop up an authorization dialog. This makes passwords
6003      slightly less visible (they don't appear in the regular log files)
6004      and implements a functionality that other www proxy servers
6005      already offered.
6006      [Martin Kraemer]
6007
6008   *) Triggered by the recent "Via:" header changes, the proxy module would
6009      dump core for replies with invalid headers (e.g., duplicate
6010      "HTTP/1.0 200 OK" lines). These errors are now logged and the
6011      core dump is avoided. Also, broken replies are not cached.
6012      [Martin Kraemer] PR#2914
6013
6014   *) new `GprofDir' directive when compiled with -DGPROF, where gprof can
6015      plop gmon.out profile data for each child [Doug MacEachern]
6016    
6017   *) Use the construct ``"$@"'' instead of ``$*'' in the generated
6018      config.status script to be immune against arguments with whitespaces.
6019      [Yves Arrouye <yves@apple.com>] PR#2866
6020
6021   *) Replace the inlined information grabbing stuff for the configuration
6022      adjustment feature (no --without-confadjust) with calls to a new helper
6023      script `buildinfo.sh' which is both more flexible and already proofed to
6024      be more robust against platform differences. This mainly fixes the
6025      recently occured ``sed: command garbled: ...'' problems.
6026      [Ralf S. Engelschall] PR#2776, PR#2848
6027
6028   *) Make ab.c again pass ``gcc -Wall -Wshadow -Wpointer-arith -Wcast-align
6029      -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Winline''
6030      without complains after we recently added the POST feature.
6031      [Ralf S. Engelschall]
6032
6033   *) Renamed is_HTTP_xxx() macros to ap_is_HTTP_xxx() name. They are used inside
6034      modules as API functions and we forgot them at the big symbol renaming.
6035      [Ralf S. Engelschall]
6036
6037   *) Remove bad reference to non-existing SERVER_VERSION in mod_rewrite.html
6038      [Youichirou Koga <y-koga@jp.FreeBSD.ORG>] PR#2895
6039
6040   *) Dynamically size the filename column of mod_autoindex output.
6041      [Dean Gaudet]
6042
6043   *) Add the ability to do POST requests to the ab benchmarking tool.
6044      [Kurt Sussman <kls@best.com>] PR#2871
6045
6046   *) Bump up MAX_ENV_FLAGS in mod_rewrite.h from the too conservatice limit of
6047      5 to 10 because there are some users out there who always have 5 to 8
6048      variables in one RewriteRule and had to patch mod_rewrite.h for every
6049      release. So 15 should be now more than enough, even for them. (I never
6050      needed more than 4 in my RewriteRules ;-)
6051      [Ralf S. Engelschall]
6052
6053   *) Make the proxy generate and understand Via: headers
6054      [Martin Kraemer]
6055
6056   *) Change the proxy to use tables instead of array_headers for
6057      the header lines. [Martin Kraemer]
6058
6059   *) Make sure the config.status file is not overridden when just
6060      ``configure --help'' is used. [Ralf S. Engelschall] PR#2844
6061
6062   *) Split MODULE_MAGIC_NUMBER into _MAJOR/_MINOR numbers. This should
6063      provide a way to trace API changes that add functionality but do
6064      not create a compatibility issue for precompiled modules, etc.
6065      See include/ap_mmn.h for more details.  [Randy Terbush]
6066
6067   *) Fix suexec installation under `make install root=xxx' situation.
6068      [Ralf S. Engelschall]
6069
6070   *) Extend the output of the -V switch to include the paths of all
6071      compiled-in configuration files, if they were overridden at
6072      compile time, for least astonishment of the user.
6073      [Martin Kraemer]
6074
6075   *) When READing a request in ExtendedStatus mode, the "old"
6076      vhost, request and client information is not displayed.
6077      [Jim Jagielski]
6078
6079   *) STATUS is no longer available. Full status information now
6080      run-time configurable using the ExtendedStatus directive.
6081      [Jim Jagielski]
6082
6083   *) SECURITY: Eliminate O(n^2) space DoS attacks (and other O(n^2)
6084      cpu time attacks) in header parsing.  Add ap_overlap_tables(),
6085      a function which can be used to perform bulk update operations
6086      on tables in a more efficient manner.  [Dean Gaudet]
6087
6088   *) SECURITY: Added compile-time and configurable limits for
6089      various aspects of reading a client request to avoid some simple
6090      denial of service attacks, including limits on maximum request-line
6091      size (LimitRequestLine), number of header fields (LimitRequestFields),
6092      and size of any one header field (LimitRequestFieldsize).  Also added
6093      a configurable directive LimitRequestBody for limiting the size of the
6094      request message body.  [Roy Fielding]
6095
6096   *) Make status module aware of DNS and logging states, even if
6097      STATUS not defined.  [Jim Jagielski]
6098
6099   *) Fix a problem with the new OS/2 mutexes.  [Brian Havard]
6100
6101   *) Enhance mod_speling so that CheckSpelling can be used in
6102      <Directory> containers and .htaccess files.  [Ken Coar]
6103
6104   *) API: new ap_custom_response() function for hooking into the
6105      ErrorDocument mechanism at runtime [Doug MacEachern]
6106
6107   *) API: new ap_uuencode() function [Doug MacEachern]
6108
6109   *) API: scan_script_header_err_core() now "public" and renamed
6110      ap_scan_script_header_err_core() [Doug MacEachern]
6111
6112   *) The 'status' module will now show the process pid's and their
6113      state even without full STATUS accounting. [Jim Jagielski]
6114
6115   *) Restore the client IP address to the error log messages, this
6116      was lost during the transition from 1.2 to 1.3.  Add a new
6117      function ap_log_rerror() which takes a request_rec * and
6118      formats it appropriately.  [Dean Gaudet] PR#2661
6119
6120   *) Cure ap_cfg_getline() of its nasty habit of compressing internal
6121      whitespace in input lines -- including within quoted strings.
6122      [Ken Coar]
6123      but leading and trailing whitespace should continue to be
6124      stripped [Martin Kraemer]
6125
6126   *) Cleanup of the PrintPath/PrintPathOS2 helper functions. Avoid
6127      the ugly use of an env. variable and use command-line args for
6128      alternate $PATH. Make more like advanced 'type's as well.
6129      [Jim Jagielski]
6130
6131   *) The IRIXN32 Rule was being ignored. Configure now correctly adds
6132      -n32 only if IRIXN32 says to. [Jim Jagielski, Alain St-Denis
6133      <alain.st-denis@ec.gc.ca>] PR#2736
6134
6135   *) Clean up a warning in mod_proxy. [Ralf S. Engelschall]
6136
6137   *) Renamed __EMX__ (internal define of the gcc port under OS/2) to OS2
6138      following the same idea as "MSVC vs WIN32". Additionally the src/os/emx/
6139      directory was renamed to src/os/os2/ for consistency.
6140      [Brian Havard, Ralf S. Engelschall]
6141
6142   *) Add new Rule SHARED_CHAIN which can be used to enable linking of DSO
6143      files (here modules) against other DSO files (here shared libraries).
6144      This is done by determining a subset of LIBS which can be safely used for
6145      linking the DSOs, i.e. PIC libs and shared libs.  Currently the rule is
6146      disabled for all platforms to avoid problems with this (experimental)
6147      rule. But we provide it now for those people how ran into problems and
6148      want to came out by forcing linking against DSOs.
6149      [Ralf S. Engelschall] PR#2587
6150
6151   *) Fix suEXEC start message: Has to be of `notice' level to really get
6152      printed together with the standard startup message because the `notice'
6153      level is handled special inside ap_log_error() for startup messages.
6154      [Ralf S. Engelschall] PR#2761 PR#2761 PR#2765
6155
6156   *) Add correct `model' MIME types from RFC2077 to mime.types file.
6157      [Ralf S. Engelschall] PR#2732
6158
6159   *) Fixed examples in mod_rewrite.html document. 
6160      [Youichirou Koga <y-koga@jp.FreeBSD.org>, Ralf S. Engelschall] PR#2756
6161
6162   *) Allow ap_read_request errors to propagate through the normal request
6163      handling loop so that the connection can be properly closed with
6164      lingering_close, thus avoiding a potential TCP reset that would
6165      cause the client to miss the HTTP error response.  [Roy Fielding]
6166
6167   *) One more portability fix for APACI shadow tree support: Swap order of awk
6168      and sed in top-level configure script to avoid sed fails on some
6169      platforms (for instance SunOS 4.1.3 and NCR SysV) because of the
6170      non-newline-termined output of Awk. [Ralf S. Engelschall] PR#2729
6171
6172   *) PORT: NEC EWS4800 support.
6173      [MATSUURA Takanori <t-matsuu@protein.osaka-u.ac.jp>]
6174
6175   *) Fix a segfault in the proxy on OS/2.  [Brian Havard]
6176
6177   *) Fix Win32 part of ap_spawn_child() by providing a reasonable child_info
6178      structure instead of just NULL. This fixes at least the RewriteMap
6179      programs under Win32. [Marco De Michele <mdemichele@tin.it>] PR#2483
6180
6181   *) Add workaround to top-level `configure' script for brain dead 
6182      `echo' commands which interpet escape sequences per default.
6183      [Ralf S. Engelschall] PR#2654
6184
6185   *) Make sure that the path to the Perl interpreter is correctly
6186      adjusted under `make install' also for the printenv CGI script.
6187      [Ralf S. Engelschall] PR#2595
6188  
6189   *) Update the mod_rewrite.html document to correctly reflect the situation
6190      of the `proxy' (`[P]') feature. [Ralf S. Engelschall] PR#2679
6191
6192   *) Fix `install-includes' sub-target of `install' target in top-level
6193      Makefile.tmpl: The umask+cp approach didn't work as expected (especially
6194      for users which extracted the distribution under 'umask 077'), so replace
6195      it by an explicit cp+chmod approach.
6196      [Richard Lloyd, Curt Sampson, Ralf S. Engelschall] PR#2656 PR#2626
6197  
6198   *) Fix `distclean' and `clean' targets in src/Makefile.tmpl to have same
6199      behavior and to cleanup correctly even under enabled SHARED_CORE rule.
6200      [Ralf S. Engelschall]
6201
6202   *) Use a more straight forward and thus less problematic Sed command in
6203      src/helper/mkdir.sh script.  [Ralf S. Engelschall]
6204
6205   *) Make sure the `configure' scripts doesn't fail when trying to guess the
6206      domainname of the machine and there are multiple `domainname' and
6207      `search' entries in /etc/resolv.conf.
6208      [Ralf S. Engelschall] PR#2710
6209
6210   *) Add note about the SHARED_CORE requirement on some platforms also to the
6211      INSTALL file because a lot of users don't read htdocs/manual/dso.html
6212      first. [Ralf S. Engelschall] PR#2701
6213
6214   *) Fix document "hyperlink" for dso.html in src/Configuration.tmpl
6215      [Knut A.Syed <Knut.Syed@nhh.no>] PR#2674
6216
6217   *) Modify mod_rewrite to update the Vary response field if the URL rewriting
6218      engine does any manipulations or decisions based upon request fields. 
6219      [Ken Coar] PR#1644
6220
6221   *) Document the special APACI behavior for installation paths where
6222      ``/apache'' is appended to paths under some (well defined, of course)
6223      situations to prevent pollution of system locations with Apache files.
6224      [Ralf S. Engelschall] PR#2660
6225
6226   *) Fixed problem with buffered response message not being sent for
6227      the read_request error conditions of URI-too-long (414) and
6228      malformed header fields (400).  [Roy Fielding] PR#2646
6229
6230   *) Add support for the Max-Forwards: header line required by RFC2068 for
6231      the TRACE method. This allows apache to TRACE along a chain of proxies
6232      up to a predetermined depth. [Martin Kraemer]
6233
6234   *) Fix SHARED_CORE rule: The CFLAGS_SHLIB variable is no longer doubled
6235      (compilers complained) and the .so.V.R.P filename extension was adjusted
6236      to correctly reflect the 1.3.2 version.
6237      [Ralf S. Engelschall] PR#2644
6238
6239   *) SECURITY: Plug "..." and other canonicalization holes under OS/2.
6240      [Brian Havard]
6241   
6242   *) PORT: implement serialized accepts for OS/2.  [Brian Havard]
6243
6244   *) mod_include had problems with the fsize and flastmod directives
6245      under WIN32.  Fix also avoids the minor security hole of using
6246      ".." paths for fsize and flastmod.
6247      [Manoj Kasichainula <manojk@raleigh.ibm.com>] PR#2355
6248
6249   *) Fixed some Makefile dependency problems.  [Dean Gaudet]
6250
6251 Changes with Apache 1.3.1
6252
6253   *) Disable the incorrect entry for application/msword in the 
6254      mod_mime_magic "magic" file because it also matches other Office
6255      documents.  [Ralf S. Engelschall] PR#2608
6256
6257   *) Fix broken RANLIB handling in src/Configure (the entry from
6258      src/Configuration.tmpl was ignored) and additionally force RANLIB to
6259      /bin/true under HP/UX where ranlib exists but is deprecated.
6260      [Ralf S. Engelschall] PR#2627
6261      
6262   *) 'apachectl status' failed on some systems.
6263      [Steve VanDevender <stevev@darkwing.uoregon.edu>, Lars Eilebrecht] PR#2613
6264
6265   *) Add new flags for ap_unparse_uri_components() to make it generate
6266      the scheme://sitepart string only, or to omit the query string.
6267      [Martin Kraemer]
6268
6269   *) WIN32: Canonicalize ServerRoot before checking to see if it
6270      is a valid directory.  The failure to do this caused certain
6271      ServerRoot settings (eg. "ServerRoot /apache") to be improperly
6272      rejected.  [Marc Slemko]
6273
6274   *) Global renaming of C header files to both get rid of conflicts with third
6275      party packages and to again reach consistency:
6276        1. conf.h      -> ap_config.h
6277        2. conf_auto.h -> ap_config_auto.h \ these are now merged
6278        3. ap_config.h -> ap_config_auto.h / in the config process
6279        4. compat.h    -> ap_compat.h
6280        5. apctype.h   -> ap_ctype.h
6281      Backward compatibility files for conf.h and compat.h were created.
6282
6283   *) mod_mmap_static will no longer take action on requests unless at 
6284      least one "mmapfile" directive is present in the configuration. 
6285      This experimental module has to do some black magic to operate 
6286      inside the current API and thus creates side-effects for other 
6287      modules under some circumstances.
6288      [Ralf S. Engelschall]
6289  
6290   *) Add conservative ticks around more egrep arguments in top-level configure
6291      to avoid problems under brain-dead platforms like Digital UNIX (OSF1).
6292      [Ralf S. Engelschall] PR#2596
6293
6294   *) mod_rewrite created RewriteLock files under the UID of the parent
6295      process, thus the child processes had no write access to the files.
6296      Now a chown() is done on the file to the uid of the children,
6297      if applicable.  [Lars Eilebrecht, Ralf S. Engelschall] PR#2341
6298
6299   *) Autogenerate some HAVE_XXXXX_H defines in conf_auto.h (determined via
6300      TestCompile) instead of defining them manually in conf.h based on less
6301      accurate platform definitions.  This way we no longer have to fiddle with
6302      OS-type and/or OS-version identifiers to discover whether a system header
6303      file exists or not.  Instead we now directly check for the existence of
6304      those esoteric ones. 
6305      [Ralf S. Engelschall] PR#2093, PR#2361, PR#2377, PR#2434,
6306                            PR#2524, PR#2525, PR#2533, PR#2569
6307
6308   *) mod_setenvif (BrowserMatch* and friends) will now match a missing
6309      field with "^$".  [Ken Coar]
6310
6311   *) Set the RTLD_GLOBAL dlopen mode parameter to allow dynamically loaded
6312      modules to load their own modules dynamically.  This improves mod_perl
6313      and mod_php3 when these modules are loaded dynamically into Apache.
6314      [Rasmus Lerdorf]
6315
6316   *) Cache a proxied request in the event that the client cancels the
6317      transfer, provided that the configured percentage of the file has
6318      already been transfered. It works for HTTP transfers only.  The 
6319      new configuration directive is called CacheForceCompletion. 
6320      [Glen Parker <glenebob@nwlink.com>] PR#2277
6321
6322   *) Add the "<!DOCTYPE HTML" magic cookie used by modern documents (and
6323      required by HTML 3.2 and later) to mod_mime_magic's conf/magic.
6324      [Anna Shergold <anna@inext.co.uk>]
6325
6326   *) Fix yet another signal-based race condition involving nested timers.
6327      Signals suck.  [Dean Gaudet]
6328
6329   *) suexec's error messages have been clarified a little bit.  [Ken Coar]
6330
6331   *) Clean up some, but perhaps not all, 8-bit character set problems
6332      with config file parsing, and URL parsing.  We now define
6333      ap_isdigit(), ap_isupper(), ... which cast to an (unsigned char).
6334      This should work on most modern unixes.
6335      [Dean Gaudet] PR#800, 2282, 2553  (and others)
6336
6337   *) The "handler not found" error was issued in cases where the handler
6338      really did exist, but was just declining to serve the request.
6339      [John Van Essen <jve@gamers.org>] PR#2529
6340
6341   *) Add Dynamic Shared Object (DSO) support for SCO5 (OpenServer 5.0.x).
6342      [Ronald Record <rr@sco.com>] PR#2533
6343
6344   *) The APACI libexecdir was not extended with an "apache/" subdir
6345      if the installation prefix didn't already contain "apache", but
6346      it should be because the DSO files are Apache-specific.  Now
6347      libexecdir is treated the same way sysconfdir, datadir, localstatedir
6348      and includedir are already treated.
6349      [Charles Levert <charles@comm.polymtl.ca>] PR#2551
6350
6351   *) The <Limit> parsing routine was incorrectly treating methods as
6352      case-insensitive.  [Ken Coar]
6353
6354   *) The ap_bprintf() code neglected to test if there was an error on
6355      the connection.  ap_bflush() misdiagnosed a failure as a success.
6356      [Dean Gaudet]
6357
6358   *) add support for #perl arg interpolation in mod_include
6359      [Doug MacEachern]
6360
6361   *) API: Name changes of table_elts to ap_table_elts, is_table_empty
6362      to ap_is_table_empty and bgetflag to ap_bgetflag. [Ben Laurie]
6363
6364   *) PORT: Add UnixWare 7 support
6365      [Vadim Kostoglodoff <vadim@olly.ru>] PR#2463
6366
6367   *) Fix the Guess-DSO-flags-from-Perl stuff in src/Configure: "perl" was
6368      used instead of "$PERL" which contains the correctly determined Perl
6369      interpreter (important for instance on systems where "perl" and "perl5"
6370      exists, like BSDI or FreeBSD, etc).
6371      [Ralf S. Engelschall] PR#2505
6372
6373   *) Move the initial suEXEC-related startup message from plain
6374      fprintf()/stderr to a delayed ap_log_error()-based one to avoid problems
6375      when Apache is started from inetd (instead of standalone). Under this
6376      situation startup messages on stderr lead to problems (the line is sent
6377      to the client in front of the requested document).
6378      [Ralf S. Engelschall] PR#871, PR#1318
6379
6380   *) Add a flag so ap_fnmatch() can be used for case-blind pattern matching.
6381      [Ken Coar, Dean Gaudet]
6382
6383   *) WIN32: Don't collapse multiple slashes in PATH_INFO.
6384      [Ben Laurie, Bill Stoddard <wgstodda@us.ibm.com>] PR#2274
6385
6386   *) WIN32 SECURITY: Eliminate trailing "."s in path components. These are
6387      ignored by the Windows filesystem, and so can be used to bypass security.
6388      [Ben Laurie, Alexei Kosut].
6389
6390   *) We now attempt to dump core when we get SIGILL. [Jim Jagielski]
6391
6392   *) PORT: remove broken test for MAP_FILE in http_main.c.
6393      [Wilfredo Sanchez <wsanchez@apple.com>]
6394
6395   *) PORT: Change support/apachectl to use "kill -0 $pid" to test if the
6396      httpd is running.  This should be more portable than figuring out
6397      which of three dozen different versions of "ps" are installed.
6398      [a cast of dozens]
6399
6400   *) WIN32: If we can't figure out how to execute a file in a script
6401      directory, bail out of the request with an error message.  [W G Stoddard]
6402
6403   *) WIN32 SECURITY: Eliminate directories consisting of three or more dots;
6404      these are treated by Win32 as if they are ".." but are not detected by
6405      other machinery within Apache. This is something of a kludge but
6406      eliminates a security hole. [Manoj Kasichainula, Ben Laurie]
6407
6408   *) Move ap_escape_quotes() from src/ap to src/main/util.c; it uses
6409      pools and thus pollutes libap (until the pool stuff is moved there).
6410      [Ken Coar]
6411
6412   *) IndexIgnore should be case-blind on Win32 (and any other case-aware
6413      but case-insensitive platforms).  New #define for this added to conf.h
6414      (CASE_BLIND_FILESYSTEM).  [Ken Coar] PR#2455
6415
6416   *) Enable DSO support for OpenBSD in general, not only for 2.x, because it
6417      also works for OpenBSD 1.x. [Ralf S. Engelschall]
6418
6419   *) PORT: Fix compilation problem on ARM Linux.
6420      [Sam Kington <sam@illuminated.co.uk>] PR#2443
6421
6422   *) Let APACI's configure script determine some configuration parameters
6423      (Group, Port, ServerAdmin, ServerName) via some intelligent tests to
6424      remove some of the classical hurdles for new users when setting up
6425      Apache. This is done per default because it is useful for the average
6426      user. Package authors can use the --without-confadjust option to disable
6427      these configuration adjustments.
6428      [Ralf S. Engelschall]
6429
6430   *) Added an EXTRA_DEPS configuration parameter which can be used
6431      to add an extra Makefile dependency for the httpd target, for instance
6432      to external third-party libraries, etc.
6433      [Ralf S. Engelschall]
6434
6435   *) Add <IfDefine>..</IfDefine> sections to the core module (with same spirit
6436      as <IfModule>..</IfModule> sections) which can be used to skip or process
6437      contained commands dependend of ``-D PARAMETER'' options on the command
6438      line. This can be used to achieve logical conditions like <IfDefine
6439      ReverseProxy> instead of physically ones (e.g. <IfModule mod_proxy.c>)
6440      and thus especially can be used for conditionally loading DSO-based
6441      modules via LoadModule, etc. [Ralf S. Engelschall]
6442
6443   *) PORT: clean up a warning in mod_status for OS/2.  [Brian Havard]
6444
6445   *) Make table elements const. This may prevent obscure errors. [Ben Laurie]
6446
6447   *) Fix parsing of FTP `SIZE' responses in proxy module: The newline was not
6448      truncated which forced following HTTP headers to be data in the HTTP
6449      reponse. [Ralf S. Engelschall, Charles Fu <ccwf@bacchus.com>] 
6450      PR#2412, 2367
6451
6452   *) Portability fix for APACI shadow tree support: Swap order of awk and sed
6453      in top-level configure script to avoid sed fails on some platforms (for
6454      instance SunOS 4.1.3 and NCR SysV) because of the non-newline-termined
6455      output of Awk. [Bill Houle <bhoule@sandiegoca.ncr.com>] PR#2435
6456
6457   *) Improve performance of directory listings (mod_autoindex) by comparing
6458      integer keys (last-modified and size) as integers rather than converting
6459      them to strings first.  Also use a set of explicit byte tests rather
6460      than strcmp() to check for parent directory-ness of an entry.  Oh, and
6461      make sure the parent directory (if displayed) is *always* listed first
6462      regardless of the sort key.  Overall performance winnage should be good
6463      in CPU time, instruction cache, and memory usage, particularly for large
6464      directories.  [Ken Coar]
6465
6466   *) Add a tiny but useful goody to APACI's configure script: The generation
6467      of a config.status script (as GNU Autoconf does) which remembers the used
6468      configure command and hence can be used to restore the configuration by
6469      just re-running this script or for remembering the configuration between
6470      releases.
6471      [Ralf S. Engelschall]
6472
6473   *) Add httpd -t (test) option for running configuration syntax tests only.
6474      If something is broken it complains and exits with a return code
6475      non-equal to 0. This can be used manually by the user to check the Apache
6476      configuration after editing and is also automatically used by apachectl
6477      on (graceful) restart command to make sure Apache doesn't die on restarts
6478      because of a configuration which is now broken since the last (re)start.
6479      This way `apachectl restart' can be used inside cronjobs without having
6480      to expect Apache to be falling down. Additionally the httpd -t can be run
6481      via `apachectl configtest'.
6482      [Ralf S. Engelschall] PR#2393
6483   
6484   *) Minor display fix for "install" target of top-level Makefile:
6485      the displayed installation command was incorrect although the
6486      executed command was correct. Now they are in sync.
6487      [Ralf S. Engelschall] PR#2402
6488
6489   *) Correct initialization of variable `allowed_globals' in http_main.c
6490      [Justin Bradford <justin@ukans.edu>] PR#2400
6491
6492   *) Apache would incorrectly downcase the entire Content-Type passed from
6493      CGIs.  This affected server-push scripts and such which use
6494      multipart/x-mixed-replace;boundary=ThisRandomString.
6495      [Dean Gaudet] PR#2394
6496
6497   *) PORT: QNX update to properly guess 32-bit systems.
6498      [Sean Boudreau <seanb@qnx.com>] PR#2390
6499
6500   *) Make sure the DSO emulation code for HPUX finds the proprietary shl_xxx()
6501      functions which are in libdld under HPUX 9/10.
6502      [Ralf S. Engelschall] PR#2378
6503
6504   *) Make sure the "install" target of the top-level Makefile doesn't break
6505      because of a return code of 1 from an "if" (for instance under braindead
6506      Ultrix the result code of an "if" construct is 1 if the "then" clause
6507      didn't match). [Ralf S. Engelschall]
6508
6509   *) Add an additional "dummy" target to the "$(LIB)" target in generated
6510      modules/xxx/Makefile's to avoid problems with SVR4 Make under "full-DSO"
6511      situation (no libxxx.a built, only mod_xxx.so's) where LIB and OBJS are
6512      empty. [Ralf S. Engelschall, Dean Gaudet, Martin Kraemer]
6513
6514   *) Replace two bad sprintf() calls with ap_snprintf() variants in
6515      mod_rewrite. [Ralf S. Engelschall]
6516
6517   *) Fix missing usage description for MetaFiles directive.
6518      [David MacKenzie <djm@va.pubnix.com>] PR#2384
6519
6520   *) mod_log_config wouldn't let vhosts use log formats defined in the
6521      main server.  [Christof Damian <damian@mediaconsult.com>] PR#2090
6522
6523   *) mod_usertrack was corrupting the client hostname.  As part of the
6524      fix, the cookie values were slightly extended to include the
6525      fully qualified hostname of the client.
6526      [Dean Gaudet] PR#2190, 2229, 2366
6527
6528   *) Fix a typo in pool debugging code.  [Alvaro Martinez Echevarria]
6529
6530   *) mod_unique_id did not work on alpha linux (in general on any
6531      architecture that has 64-bit time_t).
6532      [Alvaro Martinez Echevarria]
6533
6534   *) PORT: Make SCO 5 (and probably 3) compile again. [Ben Laurie]
6535
6536   *) PORT: NCR MPRAS systems have the same bug with SIGHUP restart that
6537      Solaris systems experience.  So define WORKAROUND_SOLARIS_BUG.
6538      [Klaus Weber <kweber@chephren.germany.ncr.com>] PR#1973
6539
6540   *) Change "Options None" to "Options FollowSymLinks" in the 
6541      <Directory /> section of the default access.conf-dist
6542      (and -win even though it doesn't matter there).  This has better
6543      performance, and more intuitive semantics.  [Dean Gaudet]
6544
6545   *) PORT: Updated support for UTS 2.1.2.
6546      [Dave Dykstra <dwd@bell-labs.com>] PR#2320
6547
6548   *) Fix symbol export list (src/support/httpd.exp) after recent
6549      API changes in the child spawning area.
6550      [Jens-Uwe Mager <jum@helios.de>]
6551
6552   *) Workaround for configure script and old `test' commands which do not
6553      support the -x flag (for instance under platforms like Ultrix). This is
6554      solved by another helper script findprg.sh which searches for Perl and
6555      Awk like PrintPath but _via different names_.
6556      [Ralf S. Engelschall]
6557
6558   *) Remove the system() call from htpasswd.c, which eliminates a system
6559      dependancy.  ["M.D.Parker" <mdpc@netcom.com>] PR#2332
6560
6561   *) PORT: Fix compilation failures on NEXTSTEP.
6562      [Rex Dieter <rdieter@math.unl.edu>] PR#2293, 2316
6563
6564   *) PORT: F_NDELAY is a typo, should have been FNDELAY.  There's also
6565      O_NDELAY on various systems.  [Dave Dykstra <dwd@bell-labs.com>] PR#2313
6566
6567   *) PORT: helpers/GuessOS updates for various versions for NCR SVR4.
6568      [juerg schreiner <j.schreiner@zh.ch>,
6569      Bill Houle <Bill.Houle@SanDiegoCA.NCR.COM>] PR#2310
6570
6571   *) Fix recently introduced Win32 child spawning code in mod_rewrite.c which
6572      was broken because of invalid ap_pstrcat() -> strcat() transformation.
6573      [Ralf S. Engelschall]
6574
6575   *) Proxy Cache Fixes: account for directory sizes, fork off garbage collection
6576      to continue in background, use predefined types (off_t, size_t, time_t),
6577      log the current cache usage percentage at LogLevel debug
6578      [Martin Kraemer, based on discussion between Dean Gaudet & Dirk vanGulik]
6579
6580 Changes with Apache 1.3.0
6581
6582   *) Using a type map file as a custom error document was not possible.
6583      [Lars Eilebrecht] PR#1031
6584
6585   *) Avoid problems with braindead Awks by additionally searching for gawk 
6586      and nawk in APACI's configure script.
6587      [Dave Dykstra <dwd@bell-labs.com>, Ralf S. Engelschall] PR#2319
6588
6589   *) Rename md5.h to ap_md5.h to avoid conflicts with native MD5 on
6590      some systems. [Randy Terbush]
6591
6592   *) Change usage of perror()+fprintf(stderr,...) in mod_rewrite to
6593      more proper ap_log_error() variants.
6594      [Ralf S. Engelschall]
6595
6596   *) Make sure the argument for the --add-module option to APACI's configure
6597      script is of type [path/to/]mod_xxx.c because all calculations inside
6598      configure and src/Configure depend on this.
6599      [Ralf S. Engelschall] PR#2307
6600
6601   *) Changes usage of perror/fprintf to stderr to more proper ap_log_error
6602      in mod_mime, mod_log_referer, mod_log_agent, and mod_log_config.
6603      [Brian Behlendorf]
6604
6605   *) Various OS/2 cleanups ["Brian Havard" <brianh@kheldar.apana.org.au>]
6606
6607   *) PORT: QNX needed a #include <sys/mman.h>; and now it uses flock
6608      serialized accept to handle multiple sockets.
6609      [Rob Saccoccio <robs@InfiniteTechnology.com>] PR#2295, 2296
6610  
6611   *) Have NT properly set the directory for CGI scripts 
6612      (& other spawned children)
6613      [W G Stoddard <wgstodda@us.ibm.com>]
6614
6615   *) Propagate environment to CGI scripts correctly in Win32.
6616      [W G Stoddard <wgstodda@us.ibm.com>] PR#2294
6617
6618   *) Some symbol renaming:
6619      ap_spawn_child_err became ap_spawn_child
6620      ap_spawn_child_err_buff became ap_bspawn_child
6621      spawn_child was obsoleted and moved to compat.h
6622      [Brian Behlendorf]
6623
6624   *) Upgrade the child spawning code in mod_rewrite for the RewriteMap
6625      programs: ap_spawn_child_err() is used and the Win32 case now uses
6626      CreateProcess() instead of a low-level execl() (which caused problems in
6627      the past under Win32).
6628      [Ralf S. Engelschall]
6629
6630   *) A few cosmetics and trivial enhancements to APXS to make the
6631      generated Makefile more user friendly. [Ralf S. Engelschall]
6632
6633   *) Proxy Fix: The proxy special failure routine ap_proxyerror()
6634      was updated to use the normal apache error processing, thereby allowing
6635      proxy errors to be treated by ErrorDocument's as well. For this
6636      purpose, a new module-to-core communication variable "error-notes"
6637      was introduced; the proxy (and possibly other modules) communicates
6638      its error text using this variable. Its content is copied to a new
6639      cgi-env-var REDIRECT_ERROR_NOTES for use by ErrorDocuments.
6640      The old proxy special error routine ap_proxy_log_uerror()
6641      was replaced by regular ap_log_error() calls, many messages were made
6642      more informative. 
6643      [Martin Kraemer] PR#494, 1259
6644
6645   *) SECURITY: A possible buffer overflow in the ftp proxy was fixed.
6646      [Martin Kraemer]
6647
6648   *) Transform the configure message "You need root privileges for suEXEC"
6649      from a fatal error into a (more friendly) warning because the building
6650      ("make") of Apache we can allow, of course. Root privileges are needed
6651      only for the installation step ("make install"). So make sure the
6652      user is aware of this fact but let him proceed as long as he can.
6653      [Ralf S. Engelschall] PR#2288
6654   
6655   *) Renamed three more functions to common ap_ prefix which we missed at the
6656      Big Symbol Renaming because they're #defines and not real C functions:
6657      is_default_port(), default_port(), http_method().
6658      [Ralf S. Engelschall]
6659
6660   *) A zero-length name after a $ in an SSI document should cause
6661      just the $ to be in the expansion.  This was broken during the
6662      security fixes in 1.2.5.  [Dean Gaudet] PR#1921, 2249
6663
6664   *) Call ap_destroy_sub_req() in ap_add_cgi_vars() to reclaim some
6665      memory.  [Rob Saccoccio <robs@InfiniteTechnology.com>] PR#2252
6666
6667   *) Fix src/support/httpd.exp (DSO export file which is currently only
6668      used under AIX) because of recent changes to function names.
6669      [Ralf S. Engelschall]
6670
6671 Changes with Apache 1.3b7
6672
6673   *) Make sure a MIME-type can be forced via a RewriteRule even when no
6674      substitution takes place, for instance via the following rule:
6675      ``RewriteRule ^myscript$ - [T=application/x-httpd-cgi]'' This was often
6676      requested by users in the past to force a single script without a .cgi
6677      extension and outside any cgi-bin dirs to be executed as a CGI program.
6678      [Ralf S. Engelschall] PR#2254
6679
6680   *) A fix for protocol issues surrounding 400, 408, and
6681      414 responses. [Ed Korthof]
6682
6683   *) Ignore MaxRequestsPerChild on WIN32. [Brian Behlendorf]
6684
6685   *) Fix discrepancy in proxy_ftp.c which was causing failures when 
6686      trying to connect to certain ftpd's, such as anonftpd.  
6687      [Rick Ohnemus <rick@ecompcon.com>]
6688
6689   *) Make mod_rewrite use ap_open_piped_log() for RewriteLog directive's
6690      logfile instead of fiddling around itself with child spawning stuff.
6691      [Ralf S. Engelschall]
6692
6693   *) Made RefererIgnore case-insensitive.
6694
6695   *) Mod_log_agent, mod_log_referer now use ap_open_piped_log for piped logs.
6696      [Brian Behlendorf]
6697
6698   *) Replace use of spawn_child with ap_spawn_child_err_buff, to make everything
6699      "safe" under Win32.  In: mod_include.c, mod_mime_magic.c
6700      [Brian Behlendorf]
6701
6702   *) Improve RFC1413 support. [Bob Beck <beck@bofh.ucs.ualberta.ca>]
6703
6704   *) Fix support script `dbmmanage': It was unable to handle some sort
6705      of passwords, especially passwords with "0" chars.
6706      [Ralf S. Engelschall] PR#2242
6707
6708   *) WIN32: Clicking on "Last Modified" in a fancy index caused a crash. Fixed.
6709      [Ben Laurie] PR#2238
6710
6711   *) WIN32: CGIs could cause a hang (because of a deadlock in the standard C
6712      library), so CGI handling has been changed to use Win32 native handles
6713      instead of C file descriptors.
6714      [Ben Laurie and Bill Stoddard <wgstodda@us.ibm.com>] PR#1129, 1607
6715
6716   *) The proxy cache would store an incorrect content-length in the cached
6717      file copy after a cache update. That resulted in repeated fetching
6718      of the original copy instead of using the cached copy.
6719      [Ernst Kloppenburg <kloppen@isr.uni-stuttgart.de>] PR#2094
6720
6721   *) The Makefiles assumed that DSO files are build via $(LD). This
6722      is broken for two reasons: First we never defined at least LD=ld
6723      somewhere to make sure this works (it was silently assumed that most Make
6724      provide a built-in LD definition - ARGL!) and second using the generic LD
6725      variable is not the truth. Instead a special variable named LD_SHLIB is
6726      reasonable because although "ld" is usually the default, the command for
6727      building DSO files can be "libtool" or even "cc" on some systems.
6728      [Ralf S. Engelschall]
6729
6730   *) Replace the AddVersionPlatform directive with ServerTokens which
6731      provides for more control over the format of the Server:
6732      header line. SERVER_SUBVERSION is no longer supported;
6733      all module should use the ap_add_version_component()
6734      API function instead. [Jim Jagielski]
6735
6736   *) Support for the NCR MP/RAS 3.0
6737      [John Withers <withers@semi.kcsc.mwr.irs.gov>]
6738
6739   *) The LDFLAGS_SHLIB_EXPORT variable of src/Configuration[.tmpl] was
6740      not retrieved in src/Configure and thus was not useable.
6741      [Ralf S. Engelschall]
6742  
6743   *) Various Makefile consistency cleanups:
6744      - make OSDIR also automatically be relative to src/ like INCDIR
6745      - SUBDIRS is now generated in src/Makefile only and not in
6746        Makefile.config because it is a local define for this location.
6747      - remove BROKEN_BPRINTF_FLAGS because is it no longer used inside
6748        any Makefile but make sure that at least the "-K inline" is kept in
6749        CFLAGS for SCO 5.
6750      - update the "depend" targets in Makefile.tmpl files to use $(OSDIR), too.
6751      - updated the dependencies theirself
6752      - removed not existing SHLIB variable from "clean" targets
6753      - replaced SHLIB_OBJS/SHLIBS_OBJ consistently with OBJS_PIC because OBJS
6754        already exists and OBJS_PIC are also just plain objects and have not
6755        directly to do with "shared" things. The only difference is that they
6756        contain PIC. So OBJS_PIC is the more canonical name.
6757      - Updated the Makefile-dependency lines for OBJS_PIC
6758      - Removed the Makefile-dependency line in Configure to avoid double
6759        definitions
6760      - replaced ugly xx-so.o/xx.so-o hack with a clean and consistent usage
6761        of xxx.lo as GNU libtool does with its PIC objects
6762      - reduce local complexity in modules Makefile.tmpl by moving the last
6763        existing target "depend" to the generation section in Configure, too.
6764      - removed the historical $(SPACER) which was used in the past together
6765        with BROKEN_BPRINTF_FLAGS to avoid zig-zags in the build process. This
6766        is no longer needed.
6767      - force the build and run of the gen_xxx programs under main/ as the
6768        first step before building the objects because it looks cleaner
6769      [Ralf S. Engelschall]
6770
6771   *) WIN32: Make Win32 work again after the /dev/null DoS fix.
6772      [Ben Laurie]
6773
6774   *) WIN32: Check for buffer overflows in ap_os_canonical_filename.
6775      [Ben Laurie]
6776
6777   *) WIN32: Don't force ISAPI headers to finish with \n.
6778      [Jim Patterson <Jim.Patterson@Cognos.COM>, Ben Laurie] PR#2060
6779
6780   *) When opening "configuration" files (like httpd.conf, htaccess
6781      and htpasswd), Apache will not allow them to be non-/dev/null
6782      device files. This closes a DoS hole. At the same time,
6783      we use ap_pfopen to open these files to handle timeouts.
6784      [Jim Jagielski, Martin Kraemer]
6785
6786   *) Apache will now log the reason its httpd children exit if they exit
6787      due to an unexpected signal.  (It requires a new porting define,
6788      SYS_SIGLIST, which if defined should point to a list of text
6789      descriptions of the signals available.  See PORTING.)  [Dean Gaudet]
6790
6791   *) WIN32: chdir() doesn't make sense in a multithreaded environment 
6792      like WIN32.  Before, Win32 CGI's could have had sporadic failures 
6793      if a chdir call from one thread was made between another chdir call 
6794      and a spawn in another thread.  So, for now don't chdir for CGI scripts 
6795      in WIN32.  The current CGI "spec" is unclear as to whether it's 
6796      necessary.  Long-term fix is to either serialize the chdir/spawn combo 
6797      or use WIN32 native calls to spawn a process.  This temp fix was 
6798      necessary to remove this as a showstopper for 1.3's release. 
6799      [Brian Behlendorf]
6800
6801   *) Cleanup the suEXEC support in APACI and make it more safe:
6802      1. Add big fat hint in INSTALL about risks and to read the
6803         htdocs/manual/suexec.html document before using the suexec-related
6804         configure options.
6805      2. Make sure the user has at least provided one --suexec-xxxx option
6806         (specifies suEXEC parameters) in addition to --enable-suexec option.
6807         If only --enable-suexec is given APACI stops with a hint to INSTALL
6808         and htdocs/manual/suexec.html documents.
6809      3. Provide two additional --suexec-xxxx options to make the suEXEC
6810         configuration complete (especially for package maintainers who else
6811         had to patch the source tree) by providing ways to configure minimal
6812         UID/GID and safe PATH, too.
6813      [Ralf S. Engelschall]
6814
6815   *) Cleanup of the `configure --shadow' process:
6816      - make sure the configure script creates its temporary files in the
6817        shadow tree to avoid conflicts with parallel configure runs
6818      - removed unnecessary option "-r" from "rm" call for Makefiles
6819      - make sure the configure scripts creates the shadow-wrapper Makefile
6820        only when no shadow trees already exists
6821      - make sure "make distclean" removes the shadow-wrapper Makefile but only
6822        when no more shadow trees exists
6823      - overhauled mkshadow.sh script: now its more IFS-safe and approx. twice
6824        as fast (in the past it needed 70sec, now it runs just 38sec)
6825      - make sure CVS does not complain about the created files
6826        Makefille.<gnutriple> and directories src.<gnutriple>
6827      [Ralf S. Engelschall]
6828
6829   *) Added the ap_add_version_component() API routine and the
6830      AddVersionPlatform core directive.  The first allows modules to
6831      declare themselves in the Server response header field value,
6832      augmenting the SERVER_SUBVERSION define in the Configuration file
6833      with run-time settings (more useful in a loadable-module environment).
6834      AddVersionPlatform inserts a comment such as "(UNIX)" or "(Win32)"
6835      into the server version string.  [Ken Coar] PR#2056
6836
6837   *) Minor stability tweaks to avoid core dumps in ap_snprintf.
6838      [Martin Kraemer]
6839
6840   *) Emit the "Accept-Range" header for the default handler.
6841      [Brian Behlendorf] PR#1464
6842
6843   *) Add a note to httpd.conf-dist that apache will on some systems fail
6844      to start when the Group # is set to a negative or large positive value.
6845      [Martin Kraemer]
6846
6847   *) Make sure the module execution order is correct even when some modules
6848      are loaded under runtime (`LoadModule') via the DSO mechanism:
6849      1. The list of loaded modules is now a dynamically allocated one
6850         and not the original statically list from modules.c
6851      2. The loaded modules are now correctly setup by LoadModule for
6852         later use by the AddModule command.
6853      3. When the DSO mechanism for modules is used APACI's `install'
6854         target now enables all created `LoadModule' lines per default because
6855         this is both already expected by the user _and_ needed to avoid
6856         confusion with the next point and reduces the Makefile.tmpl complexity
6857      4. When the DSO mechanism for modules is used, APACI's `install'
6858         target now additionally makes sure the module list is reconstructed
6859         via a complete `ClearModuleList+AddModule...' entry.
6860      5. The support tool `apxs' now also makes sure an AddModule command
6861         is added in addition to the LoadModule command.
6862      6. The modules.c generation was extended to now contain two
6863         comments to make sure no one is confused by the confusing terminology
6864         of loading/linking (we use load=link+load & link=activate instead of
6865         the obvious load=activate & link=link :-( )
6866      This way now there is no longer a difference under execution time between
6867      statically and dynamically linked modules.
6868      [Ralf S. Engelschall]
6869
6870   *) Fix the generated mod_xxx.c from "apxs -g -f xxx" after the
6871      Big Symbol Renaming. [Ralf S. Engelschall]
6872
6873   *) Add a comment to mod_example.c showing the format of a FLAG command
6874      handler.  [Ken Coar]
6875
6876   *) Standardized the time format in mod_status to match that of other 
6877      places in the code (e.g. DATE_GMT).  PR#1551
6878
6879   *) Fix handling of %Z in timefmt strings for those platforms with no time
6880      zone information in their tm struct. [Paul Eggert <eggert@twinsun.com>]
6881      PR#754
6882
6883   *) Makes mod_rewrite, mod_log_config, mod_status and the ServerSignature 
6884      feature compatible with 'UseCanonicalName off' by changing  
6885      r->server->server_hostname to ap_get_server_name().  And I changed some 
6886      functions which use r->server->port to use ap_get_server_port() instead, 
6887      because if there's no Port directive in the config r->server->port is 0.
6888      [Lars Eilebrecht]
6889
6890   *) get/set_module_config are trivial enough to be better off inline.  Worth
6891      1.5% performance boost. [Dean Gaudet]
6892
6893   *) Fix off-by-one error in ap_proxy_date_canon() in proxy_util.c
6894      when ensuring 'x' is at least 30-chars big. [Jim Jagielski,
6895      Brian Behlendorf]
6896
6897   *) [BS2000 security] BS2000 needs an extra authentication to initialize
6898      the task environment to the unprivileged User id. Otherwise CGI scripts
6899      would have a way to gain super user access. [Martin Kraemer]
6900
6901   *) Fix debug log messages for BS2000/OSD: instead of logging the whole
6902      absolute path, only log base name of logging source as is done
6903      in unix. [Martin Kraemer]
6904
6905   *) Ronald Tschalaer's Accept-Encoding patch - preserve the "x-" in
6906      the encoding type from the Accept-Encoding header (if it's there)
6907      and use it in the response, as that's probably what it'll be expecting.
6908      [Ronald.Tschalaer@psi.ch]
6909
6910   *) Fix to mod_alias: translate_alias_redir is dealing with
6911      a URI, not a filename, so the check for drive letters for win32 
6912      and emx is not necessary. [Dean Gaudet]
6913
6914   *) WIN32: Allow .cmd as an executable extension.
6915      [Kari Likovuori <Kari.Likovuori@mol.fi>] PR#2146
6916
6917   *) Make Apache header files, and some variables, C++ friendly.
6918      [Michael Anderson's <mka@redes.int.com.mx>]
6919
6920   *) Child processes can now "signal" (by exiting with a status
6921      of APEXIT_CHILDFATAL) the parent process to abort and
6922      shutdown the server if the error in the child process was
6923      fatal enough. [Jim Jagielski]
6924
6925   *) mod_autoindex's find_itme() was sensitive to MIME type case.
6926      [Jim Jagielski] PR#2112
6927
6928   *) Make sure the referer_log and agent_log entries in the default httpd.conf
6929      file are also adjusted for the actual relative installation paths.
6930      [Ralf S. Engelschall] PR#2175
6931
6932   *) WIN32: Extensive overhaul of the way UNCs are handled. [Ben Laurie]
6933
6934   *) WIN32: Make roots of filesystems (e.g. c:/) work. [Ben Laurie]
6935      PR#1558
6936
6937   *) PORT: Various porting changes to support AIX 3.2, 4.1.5, 4.2 and 4.3.
6938      Additionally the checks for finding the vendor DSO library were moved
6939      from mod_so.c to Configure because first it needs $PLAT etc. and second
6940      mod_so already uses an abstraction layer and does not fiddle with the
6941      vendor functions itself.
6942      [Jens-Uwe Mager, Ralf S. Engelschall]
6943
6944   *) PORT: Some optimization defines for NetBSD
6945      [Jaromir Dolecek <dolecek@ics.muni.cz>] PR#2165
6946
6947   *) PORT: Dynamic Shared Object (DSO) support for NetBSD.
6948      [Jaromir Dolecek <dolecek@ics.muni.cz>, Ralf S. Engelschall] PR#2158
6949
6950   *) Add Dynamic Shared Object (DSO) support for AIX (at least 4.2 but older
6951      AIX variants should work fine, too. Even AIX 3.x should work). This is
6952      accomplished by using the free DSO emulation code from Jens-Uwe Mager
6953      which we put into a os/unix/os-dso-aix.c file.
6954      [Ralf S. Engelschall]
6955   
6956   *) PORT: Fix compiler warnings under AIX >= 4.2 where the manual pages imply
6957      that we should use NET_SIZE_T == int but the include files force size_t.
6958      [Ralf S. Engelschall]
6959
6960   *) Fix two bugs in select() handling in http_main.c.
6961      [Roy Fielding]
6962
6963   *) Suppress "error(0)" messages for ap_log_error() when the APLOG_NOERRNO
6964      is unset (as it is in situations like timeouts) where it is unclear
6965      whether errno is set or not.  [Martin Kraemer]
6966
6967   *) Just having APACI's localstatedir is too general and not enough for most
6968      of the systems. 1.3b6 again required manual APACI patches by package
6969      maintainers from RedHat and FreeBSD because for their filesystem layout a
6970      little bit more flexibility in configuring the paths is needed. Hence we
6971      provide three additional configure options (--runtimedir, --logfiledir,
6972      --proxycachedir) which now can be used for more granular adjustments if
6973      --localstatedir is not enough to fit the particular needs. As a nice
6974      side-effect this reduces some subdir fiddling in configure+Makefile.tmpl.
6975      [Ralf S. Engelschall]
6976
6977   *) Make the install root for "make install" in APACI's Makefile overrideable
6978      by package authors.  This way we are even more friendly to package
6979      maintainers (especially Debian and RedHat) who build for the real prefix
6980      via "configure --prefix=/<real>" but use a different local prefix via
6981      "make root=/tmp/apache install" for rolling the package without bristling
6982      the target location on their system. 
6983      [Ralf S. Engelschall]
6984
6985   *) Workaround sed limitations in APACI's configure script by now
6986      substituting in chunks of 50 commands (because for instance HPUX's vendor
6987      sed has a limit of max. 98 commands)
6988      [Ralf S. Engelschall] PR#2136
6989
6990   *) Adding SOCKS5 support and fixing existing SOCKS4 support.
6991      [Ralf S. Engelschall] PR#2140
6992
6993   *) Manually fix some symbols which were not renamed to prefix ap_ in the BIG
6994      RENAMING process because they are defined as pre-processor macros instead
6995      of real functions: bputc, bgetc, piped_log_write_fd, piped_log_read_fd
6996      [Ralf S. Engelschall]
6997
6998   *) Workaround braindead AWK's when generating ap_config.h: The split() and
6999      substr() functions cannot be nested under vendor AWK from Solaris 2.6.
7000      [Ralf S. Engelschall] PR#2139
7001
7002   *) Various bugfixes and cleanups for the APACI configure script:
7003      o fix IFS handling for _nested_ situation
7004      o fix Perl interpreter search: take first one found instead of last one
7005      o fix DSO consistency check
7006      o print error messages to stderr instead of stdout
7007      o add install-quiet for --shadow situation to Makefile stub
7008      o reduce complexity by avoiding sed-hacks for rule and module list loops
7009      [Ralf S. Engelschall]
7010
7011   *) Fix DEBUG_CGI situation in mod_cgi.c [David MacKenzie] PR#2114
7012
7013   *) Make sure the input field separator (IFS) shell variable is explicitly
7014      initialized correctly before _every_ `for' loop and also restored after
7015      the loops. [Ralf S. Engelschall]
7016
7017   *) Make sure that "make install" doesn't overwrite the `mime.types' and
7018      `magic' files from an existing Apache installation. Because people often
7019      customize these for own MIME and content types.
7020      [Ralf S. Engelschall]
7021
7022   *) PORT: Dynamic Shared Object (DSO) support for OpenBSD 2.x
7023      [Peter Galbavy, Ralf S. Engelschall] PR#2109
7024
7025   *) Fix the path to the ScoreBoardFile in the install-config target, too.
7026      [Ralf S. Engelschall] PR#2105
7027
7028   *) Let "configure" clear out the users parameters (provided as shell
7029      variables) to avoid side-effects in "src/Configure" when the user
7030      exported them (which is not needed, but some users do it). 
7031      [Ralf S. Engelschall] PR#2101
7032
7033   *) Provide backward compatibility from some old src/Configuration.tmpl
7034      parameter names to the canonical Autoconf-style shell variable names. For
7035      instance CFLAGS vs. EXTRA_CFLAGS. The EXTRA_xxx variants are accepted now
7036      but a hint message is displayed. [Ralf S. Engelschall]
7037   
7038   *) Make sure that "make install" doesn't overwrite the DocumentRoot and
7039      CGI scripts from an existing Apache installation. 
7040      [Ralf S. Engelschall, Jim Jagielski] PR#2084
7041
7042   *) Make `configure --compat' more "compatible" by first 
7043      let the libexecdir default to EPREFIX/libexec instead of EPREFIX/bin and
7044      second by making sure the "avoid-bristling-suffix" /apache is not
7045      appended to sysconfdir, datadir, localstatedir and includedir when
7046      --compat is used. [Ralf S. Engelschall, Lars Eilebrecht]
7047
7048   *) NeXT required strdup() in support/logresolve.c
7049      [Francisco Tomei <fatomei@sandburg.unm.edu>] PR#2082
7050
7051   *) AIX required sys/select.h in support/ab.c
7052      [Jens Schleusener <Jens.Schleusener@dlr.de>] PR#2081
7053
7054   *) Fix the path to the MimeMagicFile in the install-config target, too.
7055      [Ralf S. Engelschall] PR#2089
7056
7057   *) PORT: Added HP-UX 11 patches [Jeff Earickson <jaearick@colby.edu>]
7058
7059   *) If you start apache with the -S command line option it will dump
7060      out the parsed vhost settings.  This is useful for folks trying
7061      to figure out what is wrong with their vhost configuration.
7062      (Other dumps may be added in the future.) [Dean Gaudet]
7063
7064   *) Add %pA, %pI, and %pp codes to ap_vformatter (and hence ap_bprintf,
7065      ap_snprintf, and ap_psprintf).  See include/ap.h for docs.
7066      [Dean Gaudet]
7067
7068   *) Because /usr/local/apache is the default prefix the ``configure
7069      --compat'' option no longer has to set prefix, again. This way the
7070      --compat option honors a leading --prefix option. [Lars Eilebrecht]
7071
7072   *) PORT: Cast the first argument of dlopen() in ap_os_dso_load()
7073      to `char *' under OSF1 and FreeBSD 2.x where it is defined this way
7074      to avoid "discard const" warnings. [Ralf S. Engelschall]
7075
7076   *) If a specific handler is set for a file yet the request still
7077      ends up being handled by the default handler, log an error
7078      message before handling it.  This catches things such as trying 
7079      to use SSIs without mod_include enabled.  [Marc Slemko]
7080
7081   *) Fix error logging for the startup case where ap_log_error() still uses
7082      stderr as the target. Now the default log level is honored here, too.
7083      [Ralf S. Engelschall]
7084     
7085   *) PORT: Make sure some AWK's don't fail in src/Configure with "string too
7086      long" errors when generating the MODULES entry for src/Makefile
7087      [Ben Hyde, Ralf S. Engelschall]
7088
7089   *) Make sure src/Configure doesn't complain about the old directory
7090      /usr/local/etc/httpd/ when APACI is used.  [Lars Eilebrecht]
7091    
7092 Changes with Apache 1.3b6
7093
7094   *) PORT: Clean up warnings on Ultrix and HPUX.  [Ben Hyde]
7095  
7096   *) Adding DSO support for the HP/UX platform by emulating the dlopen-style
7097      interface via the similar but proprietary HP/UX shl_xxx-style system
7098      calls. [Ralf S. Engelschall]
7099
7100   *) PORT: Updated UnixWare 2.0.x and 2.1.x entries for DSO support and made
7101      APACI Makefile.tmpl "install" target more robust for sensible UnixWare
7102      Make. [Ralf S. Engelschall]
7103
7104   *) ++++ THE BIG SYMBOL RENAMING ++++
7105      To avoid symbol clashes with third-party code compiled into the server,
7106      we globally applied the prefix "ap_" to the following classes of
7107      functions:
7108         - Apache provided general functions (e.g., ap_cpystrn)
7109         - Public API functions (e.g., palloc, bgets)
7110         - Private functions which we can't make static (because of
7111           cross-object usage) but should be (e.g., new_connection)
7112      For backward source compatibility a new header file named compat.h was
7113      created which provides defines for the old symbol names and can be used
7114      by third-party module authors.
7115      [The Apache Group]
7116
7117   *) Added dynamic shared object (DSO) support for SVR4-derivates: The
7118      problem under SVR4 is that there is no command flag to force the linker
7119      to export the global symbols of the httpd executable therewith they are
7120      available to the DSO's. Instead of problematic hacks like creating a
7121      dummy.so file (containing dummy references to all global symbols) the
7122      httpd binary is linked against, we use a clean trick stolen from Perl 5:
7123      Placing the Apache core code itself into a DSO library named libhttpd.so.
7124      This way the global symbols _HAVE_ to be exported and thus are available
7125      to any manually loaded DSO's under runtime. To reduce the impact to the
7126      user to null we go even further and create a stub httpd executable which
7127      automatically keeps track of the DSO library loading itself and thus
7128      hides the complete mechanism from the user. Although the generation of
7129      this DSO library is automatically triggered for platforms which
7130      essentially need it (mostly all SVR4-derivates) it can be also enabled
7131      manually via the Rule SHARED_CORE. This can be interesting in the future
7132      where we perhaps exploit this libhttpd.so mechanism for providing nifty
7133      features like graceful upgrades, or whatever. 
7134      [Ralf S. Engelschall, Martin Kraemer]
7135
7136   *) Build the libraries before building the rest of the tools. [Ben Hyde]
7137
7138   *) Add "distclean" target to src/-Makefiles to provide "make distclean" also
7139      inside the src subtree (i.e. for non-APACI users). Following GNU Makefile
7140      conventions while "clean" removes only stuff created by "all" targets,
7141      "distclean" additionally removes the stuff from the configuration
7142      process. This way "make distclean" (hence the name) provides a fresh
7143      source tree as it was for distribution.
7144      [Ralf S. Engelschall]
7145
7146   *) Allow top-level (APACI) Makefile to break on build errors
7147      the same way the src/ subtree Makefiles breaks on them by replacing the
7148      initial APACI sed-subdir-display-kludge with a more clean
7149      variable-passing-solution: variable SDP can optionally hold the subdir
7150      prefix which is consistently used for displaying the subdir movement.
7151      This way even the top-level Makefile can stop correctly on errors as the
7152      user expects. [Ralf S. Engelschall]
7153
7154   *) Fixed ordering of argument checks for RewriteBase directive.
7155      [Todd Eigenschink <eigenstr@mixi.net>] PR#2045
7156
7157   *) Change Win32 IS_MODULE to SHARED_MODULE to match Unix' method of
7158      indicating that a module is being compiled for dynamic loading. Also
7159      remove #define IS_MODULE from modules and add SHARED_MODULE define
7160      to the mak/dsp files. [Alexei Kosut]
7161
7162   *) Reduce logging level of "normal" warning messages to APLOG_INFO,
7163      since we are now logging APLOG_WARNING by default. [Roy Fielding]
7164
7165   *) PORT: OS/2 tweak to deal with multiple .exe targets. [Brian Havard]
7166  
7167   *) Add documentation file and src/Configuration.tmpl entry for the
7168      experimental mod_mmap_static module. Because although it is and marked as
7169      an experimental one it is distributed and thus should be documented and
7170      prepared for configuration the same way as all others modules. 
7171      [Ralf S. Engelschall]
7172
7173   *) Add query (-q) option to apxs support tool to be able to manually query
7174      specific settings from apxs. This is needed for instance when you
7175      manually want to access Apache's header files and you need to assemble
7176      the -I option.  Now you can do -I`apxs -q INCLUDEDIR`.
7177      [Ralf S. Engelschall]
7178
7179   *) Now src/Configure uses a fallback strategy for the shared object support
7180      on platforms where no explicit information is available: If a Perl
7181      installation exists we ask it about its shared object support and if it's
7182      the dlopen-style one we shamelessly guess the compiler and linker flags
7183      for creating shared objects from Perls knowledge. Of course, the user is
7184      warning about what we are doing and informed that he should send us
7185      the guessed flags when they work. [Ralf S. Engelschall]
7186
7187   *) Provide APACI --without-support option to be able to disable the build
7188      and installation of the support tools from the src/support/ area.
7189      Although its useful to have these installed per default we should provide
7190      a way to compile and install without them for backward-compatibility.
7191      [Ralf S. Engelschall]
7192
7193   *) Add of the new APache eXtenSion (apxs) support tool for building and
7194      installing modules into an _already installed_ Apache package through the
7195      dynamic shared object (DSO) mechanism [mod_so.c]. The trick here is that
7196      this approach actually doesn't need the Apache source tree.  The
7197      (APACI-installed) server package is enough, because this now includes the
7198      Apache C header files (PREFIX/include) and the new APXS tool
7199      (SBINDIR/apxs).  The intend is to provide a handy tool for third-party
7200      module authors to build their Apache modules _OUTSIDE_ the Apache source
7201      tree while avoiding them to fiddle around with the totally platform
7202      dependend way of compiling DSO files. The tool supports all ranges of
7203      modules, from trivial ones (single mod_foo.c) to complex ones (like PHP3
7204      which has a mod_php3.c plus a pre-built libmodphp3-so.a) and even can
7205      on-the-fly generate a minimalistic Makefile and sample module for the
7206      first step to provide both a quick success event and to demonstrate the
7207      APXS mechanism to module authors. [Ralf S. Engelschall]
7208
7209   *) Fix core dumps in use of CONNECT in proxy.  
7210      [Rainer.Scherg@rexroth.de] PR#1326, #1573, #1942
7211
7212   *) Modify the log directives in httpd.conf-dist files to use CustomLog
7213      so that users have examples of how CustomLog can be used.
7214      [Lars Eilebrecht]
7215
7216   *) Add the new Apache Autoconf-style Interface (APACI) for the top-level of
7217      the Apache distribution tree.  Until Apache 1.3 there was no real
7218      out-of-the-box batch-capable build and installation procedure for the
7219      complete Apache package. This is now provided by a top-level "configure"
7220      script and a corresponding top-level "Makefile.tmpl" file.  The goal is
7221      to provide a GNU Autoconf-style frontend which is capable to both drive
7222      the old src/Configure stuff in batch and additionally installs the
7223      package with a GNU-conforming directory layout. Any options from the old
7224      configuration scheme are available plus a lot of new options for flexibly
7225      customizing Apache. [Ralf S. Engelschall]
7226
7227   *) The floating point ap_snprintf code wasn't threadsafe.
7228      Had to remove the HAVE_CVT macro in order to do threadsafe
7229      calling of the ?cvt() floating point routines.  [Dean Gaudet]
7230
7231   *) PORT: Add the SCO_SV port. [Jim Jagielski] PR#1962
7232
7233   *) PORT: IRIX needs the -n32 flag iff using the 'cc' compiler
7234      [Jim Jagielski] PR#1901
7235
7236   *) BUG: Configure was using TCC and CC inconsistently. Make sure
7237      Configure knows which CC we are using. [Jim Jagielski]
7238
7239   *) "Options +Includes" wasn't correctly merged if "+IncludesNoExec"
7240      was defined in a parent directory. [Lars Eilebrecht]
7241
7242   *) API: ap_snprintf() code mutated into ap_vformatter(), which is
7243      a generic printf-style routine that can call arbitrary output
7244      routines.  Use this to replace http_bprintf.c.  Add new routines
7245      psprintf(), pvsprintf() which allocate the exact amount of memory
7246      required for a string from a pool.  Use psprintf() to clean up
7247      various bits of code which used ap_snprintf()/pstrdup().
7248      [Dean Gaudet]
7249
7250   *) PORT: HAVE_SNPRINTF doesn't do anything any longer.  This is because
7251      ap_snprintf() has different semantics and formatting codes than
7252      snprintf().  [Dean Gaudet]
7253
7254   *) SIGXCPU and SIGXFSZ are now reset to SIG_DFL at boot-time.  This
7255      is necessary on at least Solaris where the /etc/rc?.d scripts
7256      are run with these signals ignored, and "SIG_IGN" settings are
7257      maintained across exec().
7258      [Rein Tollevik <reint@sys.sol.no>] PR#2009
7259
7260   *) Fix the check for symbolic links in ``RewriteCond ... -l'': stat() was
7261      used instead of lstat() and thus this flag didn't work as expected.
7262      [Rein Tollevik <reint@sys.sol.no>] PR#2010
7263
7264   *) Fix the proxy pass-through feature of mod_rewrite for the case of
7265      existing QUERY_STRING now that mod_proxy was recently changed because of
7266      the new URL parsing stuff. [Ralf S. Engelschall]
7267
7268   *) A few changes to scoreboard definitions which helps gcc generate
7269      better code.  [Dean Gaudet]
7270
7271   *) ANSI C doesn't guarantee that "int foo : 2" in a structure will
7272      be a signed bitfield.  So mark a few bitfields as signed to
7273      ensure correct code.  [Dean Gaudet]
7274
7275   *) The default for HostnameLookups was changed to Off, but there
7276      was a problem and it wasn't taking effect. [Dean Gaudet]
7277
7278   *) PORT: Clean up undefined signals on some platforms (SCO, BeOS).
7279      [Dean Gaudet]
7280
7281   *) After a SIGHUP the listening sockets in the parent weren't
7282      properly marked for closure on fork().
7283      [Jürgen Keil <jk@tools.de>] PR#2000
7284  
7285   *) Allow %2F in two situations: 1) it is in the query part of the URI,
7286      therefore not exposed to %2F -> '/' translations and 2) the request
7287      is a proxy request, so we're not dealing with a local resource anyway.
7288      Without this, the proxy would fail to work for any URL's with
7289      %2f in them (occurs quite often in
7290      http://.../cgi-bin/...?http%3A%2F%2F... references) [Martin Kraemer]
7291
7292   *) Protect against FD_SETSIZE mismatches.  [Dean Gaudet]
7293
7294   *) Make the shared object compilation command more portable by avoiding
7295      the direct combination of `-c' & `-o' which is not honored by some
7296      compilers like UnixWare's cc. [Ralf S. Engelschall]
7297
7298   *) WIN32: the proxy was creating filenames missing the last four
7299      characters.  While this normally doesn't stop anything from 
7300      working, it can result in extra collisions.  
7301      [Tim Costello <tjcostel@socs.uts.edu.au>] PR#1890
7302
7303   *) Now mod_proxy uses the response string (in addition to the response status
7304      code) from the already used FTP SIZE command to setup the Content-Length
7305      header if available. [Ralf S. Engelschall] PR#1183
7306
7307   *) Reanimated the (still undocumented) proxy receive buffer size directive:
7308      Renamed from ReceiveBufferSize to ProxyReceiveBufferSize because the old
7309      name was really too generic, added documentation for this directive to
7310      the mod_proxy.html and corrected the hyperlink to it in the
7311      new_features_1.3.html document.  [Ralf S. Engelschall] PR#1348
7312
7313   *) Fix a bug in the src/helpers/fp2rp script and make it a little bit
7314      faster [Martin Kraemer]
7315   
7316   *) Make Configure die when you give it an unknown command switch.
7317      [Ben Hyde]
7318
7319   *) Add five new and fresh manpages for the support programs: dbmmanage.1,
7320      suexec.8, htdigest.1, rotatelogs.8 and logresolve.8.  Now all up-to-date
7321      and per default compiled support programs have manual pages - just to
7322      document our stuff a little bit more and to be able to do really
7323      Unix-like installations ;-) [Ralf S. Engelschall]
7324
7325   *) Major cleanups to the Configure script to make it and its generated
7326      Makefiles again readable and maintainable: add SRCDIR option, removed
7327      INCLUDES_DEPTH[0-2] kludge, cleanup of TARGET option, cleanup of
7328      generated sections, consequently added Makefile headers with inheritance
7329      information, added subdir movement messages for easier following where
7330      the build process currently stays (more verbose then standard Make, less
7331      verbose than GNU make), same style to comments in the Configure script,
7332      added Apache license header, fixed a few bugs, etc. [Ralf S. Engelschall]
7333      
7334   *) Add the new ApacheBench program "ab" to src/support/: This is derived
7335      from the ZeusBench benchmarking program and can be used to determine the
7336      response performance of an Apache installation. This version is
7337      officially licensed with Zeus Technology, Ltd. See the license agreement
7338      statements in <199803171224.NAA24547@en1.engelschall.com> in apache-core.
7339      [Ralf S. Engelschall]
7340
7341   *) API: Various core functions that are definately not part of the API
7342      have been made static, and a few have been marked API_EXPORT.  Still
7343      more have been marked CORE_EXPORT and are not intended for general
7344      use by modules.  [Doug MacEachern, Dean Gaudet]
7345
7346   *) mod_proxy was not clearing the Proxy-Connection header from
7347      requests; now it does.  This did not violate any spec, however 
7348      causes poor interactions when you are talking to remote proxies.  
7349      [Marc Slemko] PR#1741
7350
7351   *) Various cleanups to the command line interface and manual pages.
7352      [Ralf S. Engelschall]
7353
7354   *) cfg_getline() was not properly handling lines that did not end
7355      with a line termination character.  [Marc Slemko] PR#1869, 1909
7356
7357   *) Performance tweak to mod_log_config.  [Dmitry Khrustalev]
7358
7359   *) Clean up some undocumented behavior of mod_setenvif related to
7360      "merging" two SetEnvIf directives when they match the same header
7361      and regex.  Document that mod_setenvif will perform comparisons in
7362      the order they appear in the config file.  Optimize mod_setenvif by
7363      doing more work at config time rather than at runtime.
7364      [Dean Gaudet]
7365
7366   *) src/include/ap_config.h now wraps it's #define's with #ifndef/#endif's
7367      to allow for modules to overrule them and to reduce redefinition
7368      warnings [Jim Jagielski]
7369
7370   *) [PORT] For A/UX change the OS-#define for -DAUX to -DAUX3.
7371      [Jim Jagielski]
7372
7373   *) Making the hard-coded cross-module function call mime_find_ct() (from
7374      mod_proxy to mod_mime) obsolete by making sure the API hook for MIME type
7375      checking is really called even for proxy requests except for URLs with
7376      HTTP schemes (because there we can optimize by not running the type
7377      checking hooks due to the fact that the proxy gets the MIME Content-type
7378      from the remote host later). This change cleans up mod_mime by removing
7379      the ugly export kludge, makes the one-liner file mod_mime.h obsolete, and
7380      especially unbundles mod_proxy and mod_mime. This way they both now can
7381      be compiled as shared objects and are no longer tied together. 
7382      [Ralf S. Engelschall]
7383
7384   *) util.c cleanup and speedup. [Dean Gaudet]
7385
7386   *) API: Clarification, pstrndup() will always copy n bytes of the source
7387      and NUL terminate at the (n+1)st byte.  [Dean Gaudet]
7388
7389   *) Mark module command_rec and handler_rec structures const so that they
7390      end up in the read-only data section (and are friendlier to systems
7391      that don't do optimistic memory allocation on fork()). [Dean Gaudet]
7392
7393   *) Add check to the "Port" directive to make sure the specified 
7394      port is in the appropriate range.  [Ben Hyde]
7395
7396   *) Performance improvements to invoke_handler().
7397      [Dmitry Khrustalev <dima@bog.msu.su>]
7398
7399   *) Added support for building shared objects even for library-style modules
7400      (which are built from more than one object file). This now provides the
7401      ability to build mod_proxy as a shared object module. Additionally
7402      modules like mod_example are now also supported for shared object
7403      building because the generated Makefiles now no longer assume there is at
7404      least one statically linked module. [Ralf S. Engelschall]
7405
7406   *) API: Clarify usage of content_type, handler, content_encoding,
7407      content_language and content_languages fields in request_rec.  They
7408      must always be lowercased; and the strings pointed to shouldn't
7409      be modified (you must copy them to modify them).  Fix a few bugs
7410      related to this.  [Dean Gaudet]
7411
7412   *) API: Clarification: except for RAW_ARGS, all command handlers can
7413      treat the char * parameters as permanent, and modifiable.  There
7414      is no need to pstrdup() them.  Clean up some needless pstrdup().
7415      [Dean Gaudet]
7416
7417   *) Now mod_so keeps track of which module shared objects with which names
7418      are loaded and thus avoids multiple loading and unloading and irritating
7419      error_log messages. [Ralf S. Engelschall]
7420
7421   *) Prior to the existence of mod_setenv it was necessary to tweak the TZ
7422      environment variable in the apache core.  But that tweaking interferes
7423      with mod_setenv.  So don't tweak if the user has specified an explicit
7424      TZ variable.  [Jay Soffian <jay@cimedia.com>] PR#1888
7425
7426   *) rputs() did not calculate r->sent_bodyct properly.
7427      [Siegmund Stirnweiss <siegst@kat.ina.de>] PR#1900
7428
7429   *) The CGI spec says that REMOTE_HOST should be set to the remote hosts's
7430      name, or left unset if this value is unavailable.  Apache was setting
7431      it to the IP address when unavailable.
7432      [Tony Finch <fanf@demon.net>] PR#1925
7433
7434   *) Various improvements to the configuration and build support for compiling
7435      modules as shared objects. Especially Solaris 2.x, SunOS 4.1, IRIX and
7436      OSF1 support with GCC and vendor compilers was added.  This way shared
7437      object support is now provided out-of-the-box for FreeBSD, Linux,
7438      Solaris, SunOS, IRIX and OSF1. In short: On all major platforms!
7439      [Ralf S. Engelschall]
7440
7441   *) Minor cleanup in http_main -- split QNX and OS2 specific "mmap"
7442      scoreboard code into separate #defines -- USE_POSIX_SCOREBOARD
7443      and USE_OS2_SCOREBOARD.  [Dean Gaudet]
7444
7445   *) Fix one more special locking problem for RewriteMap programs in
7446      mod_rewrite: According to the documentation of flock(), "Locks are on
7447      files, not file descriptors.  That is, file descriptors duplicated
7448      through dup(2) or fork(2) do not result in multiple instances of a lock,
7449      but rather multiple references to a single lock. If a process holding a
7450      lock on a file forks and the child explicitly unlocks the file, the
7451      parent will lose its lock.". To overcome this we have to make sure the
7452      RewriteLock file is opened _AFTER_ the childs were spawned which is now
7453      the case by opening it in the child_init instead of the module_init API
7454      hook. [Ralf S. Engelschall] PR#1029
7455
7456   *) Change to Location and LocationMatch semantics.  LocationMatch no
7457      longer lets a single slash match multiple adjacent slashes in the
7458      URL.  This change is for consistency with RewriteRule and
7459      AliasMatch.  Multiple slashes have meaning in URLs that they do
7460      not have in (some) filesystems.  Location on the other hand can
7461      be considered a shorthand for a more complicated regex, and it
7462      does match multiple slashes with a single slash -- which is
7463      also consistent with the Alias directive.
7464      [Dean Gaudet] related PR#1440
7465
7466   *) Fix bug with mod_mime_magic causing certain files, including files
7467      of length 0, to result in no response from the server.
7468      [Dean Gaudet]
7469
7470   *) The Configure script now generates src/include/ap_config.h which
7471      contains the set of defines used when Apache is compiled on a platform.
7472      This file can then be included by external modules before including
7473      any Apache header files in case they are being built separately from
7474      Apache.  Along with this change, a couple of minor changes were
7475      made to make Apache's #defines coexist peacefully with any autoconf
7476      defines an external module might have. [Rasmus Lerdorf]
7477
7478   *) Fix mod_rewrite for the ugly API case where <VirtualHost> sections exist
7479      but without any RewriteXXXXX directives. Here mod_rewrite is given no
7480      chance by the API to initialize its per-server configuration and thus
7481      receives the wrong one from the main server. This is now avoided by
7482      remembering the server together with the config structure while
7483      configuring and later assuming there is no config when we see a
7484      difference between the remembered server and the one calling us. 
7485      [Ralf S. Engelschall] PR#1790
7486
7487   *) Fixed the DBM RewriteMap support for mod_rewrite: First the support now
7488      is automatically disabled under configure time when the dbm_xxx functions
7489      are not available. Second, two heavy source code errors in the DBM
7490      support code were fixed.  This makes DBM RewriteMap's usable again after
7491      a long time of brokenness. [Ralf S. Engelschall] PR#1696
7492
7493   *) Now all configuration files support Unix-style line-continuation via 
7494      the trailing backslash ("\") character. This enables us to write down
7495      complex or just very long directives in a more readable way.  The
7496      backslash character has to be really the last character before the
7497      newline and it has not been prefixed by another (escaping) backslash.
7498      [Ralf S. Engelschall]
7499
7500   *) When using ProxyPass the ?querystring was not passed correctly.
7501      [Joel Truher <truher@wired.com>]
7502
7503   *) To deal with modules being compiled and [dynamically] linked
7504      at a different time from the core, the SERVER_VERSION and
7505      SERVER_BUILT symbols have been abstracted through the new
7506      API routines apapi_get_server_version() and apapi_get_server_built().
7507      [Ken Coar]  PR#1448
7508
7509   *) WIN32: Preserve trailing slash in canonical path (and hence
7510      in PATH_INFO). [Paul Sutton, Ben Laurie]
7511
7512   *) PORT: USE_PTHREAD_SERIALIZED_ACCEPT has proven unreliable
7513      depending on the rev of Solaris and what mixture of modules
7514      are in use.  So it has been disabled, and Solaris is back to
7515      using USE_FCNTL_SERIALIZED_ACCEPT.  Users may experiment with
7516      USE_PTHREAD_SERIALIZED_ACCEPT at their own risk, it may speed
7517      up static content only servers.  Or it may fail unpredictably.
7518      [Dean Gaudet] PR#1779, 1854, 1904
7519
7520   *) mod_test_util_uri.c created which tests the logic in util_uri.c.
7521      [Dean Gaudet]
7522
7523   *) API: Rewrite of absoluteURI handling, and in particular how
7524      absoluteURIs match vhosts.  Unless a request is a proxy request, a
7525      "http://host" url is treated as if a similar "Host:" header had been
7526      supplied.  This change was made to support future HTTP/1.x protocols
7527      which may require clients to send absoluteURIs for all requests.
7528
7529      In order to achieve this change subtle changes were made to the API.  In a
7530      request_rec, r->hostlen has been removed.  r->unparsed_uri now exists so
7531      that the unmodified uri can be retrieved easily.  r->proxyreq is not set
7532      by the core, modules must set it during the post_read_request or
7533      translate_names phase.
7534
7535      Plus changes to the virtualhost test suite for absoluteURI testing.
7536
7537      This fixes several bugs with the proxy proxying requests to vhosts
7538      managed by the same httpd.
7539      [Dean Gaudet]
7540
7541   *) API: Cleanup of code in http_vhost.c, and remove vhost matching
7542      code from mod_rewrite.  The vhost matching is now performed by a
7543      globally available function matches_request_vhost().  [Dean Gaudet]
7544
7545   *) Reduce memory usage, and speed up ServerAlias support.  As a
7546      side-effect users can list multiple ServerAlias directives
7547      and they're all considered.
7548      [Chia-liang Kao <clkao@cirx.org>] PR#1531
7549
7550   *) The "poly" directive in image maps did not include the borders of the
7551      polygon, whereas the "rect" directive does.  Fix this inconsistency.
7552      [Konstantin Morshnev <moko@design.ru>] PR#1771
7553
7554   *) Make \\ behave as expected.  [Ronald.Tschalaer@psi.ch]
7555
7556   *) Add the `%a' construct to LogFormat and CustomLog to log the client IP
7557      address. [Todd Eigenschink <eigenstr@mixi.net>] PR#1885
7558
7559   *) API: A new source module main/util_uri.c; It contains a routine
7560      parse_uri_components() and friends which breaks a URI into its component
7561      parts.  These parts are stored in a uri_components structure called
7562      parsed_uri within each request_rec, and are available to all modules.
7563      Additionally, an unparse routine is supplied which re-assembles the URI
7564      components back to an URI, optionally hiding the username:password@ part
7565      from ftp proxy requests, and other useful routines.  Within the structure,
7566      you find on a ready-for-use basis:
7567         scheme;     /* scheme ("http"/"ftp"/...) */
7568         hostinfo;   /* combined [user[:password]@]host[:port] */
7569         user;       /* user name, as in http://user:passwd@host:port/ */
7570         password;   /* password, as in http://user:passwd@host:port/ */
7571         hostname;   /* hostname from URI (or from Host: header) */
7572         port_str;   /* port string (integer representation is in "port") */
7573         path;       /* the request path (or "/" if only scheme://host was given) */
7574         query;      /* Everything after a '?' in the path, if present */
7575         fragment;   /* Trailing "#fragment" string, if present */
7576      This is meant to serve as the platform for *BIG* savings in
7577      code complexity for the proxy module (and maybe the vhost logic).
7578      [Martin Kraemer]
7579
7580   *) Make all possible meta-construct expansions ($N, %N, %{NAME} and
7581      ${map:key}) available for all location where a string is created in
7582      mod_rewrite rewriting rulesets: 1st arg of RewriteCond, 2nd arg of
7583      RewriteRule and for the [E=NAME:STRING] flag of RewriteRule. This way the
7584      possible expansions are consequently usable at all string creation
7585      locations. [Ralf S. Engelschall]
7586
7587   *) Fix initialization of RewriteLogLevel (default now is 0 as documented 
7588      and not 1) and the per-virtual-server merging of directives. Now all
7589      directives except `RewriteEngine' and `RewriteOption' are either
7590      completely overridden (default) or completely inherited (when
7591      `RewriteOptions inherit') is used. [Ralf S. Engelschall] PR#1325
7592
7593   *) Fix `RewriteMap' program lookup in situations where such maps are
7594      defined but disabled (`RewriteEngine off') in per-server context. 
7595      [Ralf S. Engelschall] PR#1431
7596
7597   *) Fix bug introduced in 1.3b4-dev, config with no Port setting would cause
7598      server to bind to port 0 rather than 80.  [Dean Gaudet]
7599
7600   *) Fix long-standing problem with RewriteMap _programs_ under Unix derivates
7601      (like SunOS and FreeBSD) which don't accept the locking of pipes
7602      directly.  A new directive RewriteLock is introduced which can be used to
7603      setup a separate locking file which then is used for synchronization.
7604      [Ralf S. Engelschall] PR#1029
7605
7606   *) WIN32: The server root is obtained from the registry key
7607      HKLM\SOFTWARE\Apache Group\Apache\<version> (version is currently
7608      "1.3 beta"), unless overridden by the -d command line flag. The
7609      value is stored by running "apache -i -d serverroot". [Paul Sutton]
7610
7611   *) Merged os/win32/mod_dll.c into modules/standard/mod_so.c to support
7612      dynamic loading on Win32 and Unix via the same module. [Paul Sutton]
7613
7614   *) Now mod_rewrite no longer makes problematic assumptions on the characters
7615      a username can contain when trying to expand it via /etc/passwd. 
7616      [Ralf S. Engelschall]
7617
7618   *) The mod_setenvif BrowserMatch backwards compatibility command did not
7619      work properly with spaces in the regex.  [Ronald Tschalaer] PR#1825
7620
7621   *) Add new RewriteMap types: First, `rnd' which is equivalent to the `txt'
7622      type but with a special post-processing for the looked-up value: It
7623      parses it into alternatives according to `|' chars and then only one
7624      particular alternative is chosen randomly (this is an essential
7625      functionality needed for balancing between backend-servers when using
7626      Apache as a Reverse Proxy.  The looked up value here is a list of
7627      servers). Second, `int' with the built-in maps named `tolower' and
7628      `toupper' which can be used to map URL parts to a fixed case (this is an
7629      essential feature to fix the case of server names when doing mass
7630      virtual-hosting with the help of mod_rewrite instead of using
7631      <VirtualHost> sections). [Ralf S. Engelschall, parts based on code from
7632      Jay Soffian <jay@cimedia.com>] PR#1631
7633
7634   *) Add a new directive to mod_proxy similar to ProxyPass: `ProxyPassReverse'.
7635      This directive lets Apache adjust the URL in Location-headers on HTTP
7636      redirect responses sent by the remote server. This way the virtually
7637      mapped area is no longer left on redirects and thus by-passed which is
7638      especially essential when running Apache as a reverse proxy.  
7639      [Ralf S. Engelschall]
7640
7641   *) Hide Proxy-Authorization from CGI/SSI/etc just like Authorization is
7642      hidden. [Alvaro Martinez Echevarria]
7643
7644   *) Apache will, when started with the -X (single process) debugging flag,
7645      honor the SIGINT or SIGQUIT signals again now. This capability got lost
7646      a while ago during OS/2 signal handling changes.
7647
7648   *) [PORT] Work around the fact that NeXT runs on more than the
7649      m68k chips in mod_status [Scott Anguish and Timothy Luoma
7650      <luomat@peak.org>]
7651
7652   *) [PORT] Recognize FreeBSD versions so we can use the OS regex as well
7653      as handling unsigned-chars for FreeBSD v3 and v2 [Andrey Chernov
7654      <ache@nagual.pp.ru> and Jim] PR#1450
7655
7656   *) Use SA_RESETHAND or SA_ONESHOT when installing the coredump handlers.
7657      In particular the handlers could trigger themselves into an infinite
7658      loop if RLimitMem was used with a small amount of memory -- too small
7659      for the signal stack frame to be set up.  [Dean Gaudet]
7660
7661   *) Fix problems with absoluteURIs introduced during 1.3b4.  [Dean Gaudet,
7662      Alvaro Martinez Echevarria <alvaro@lander.es>]
7663
7664   *) Fix multiple UserDir problem introduced during 1.3b4-dev.
7665      [Dean Gaudet] PR#1850
7666
7667   *) ap_cpystrn() had an off-by-1 error.
7668      [Charles Fu <ccwf@klab.caltech.edu>] PR#1847
7669
7670   *) API: As Ken suggested the check_cmd_context() function and related
7671      defines are non-static now so modules can use 'em.  [Martin Kraemer]
7672
7673   *) mod_info would occasionally produce an unpaired <tt> in its
7674      output. Fixed. [Martin Kraemer]
7675
7676   *) By default AIX binds a process (and it's children) to a single
7677      processor.  httpd children now unbind themselves from that cpu
7678      and re-bind to one selected at random via bindprocessor()
7679      [Doug MacEachern]
7680
7681   *) Linux 2.0 and above implement RLIMIT_AS, RLIMIT_DATA has almost no
7682      effect.  Work around it by using RLIMIT_AS for the RLimitMEM
7683      directive.  [Enrik Berkhan <enrik@inka.de>] PR#1816
7684
7685   *) mod_mime_magic error message should indicate the filename when
7686      reads fail.  ["M.D.Parker" <mdpc@netcom.com>] PR#1827
7687
7688   *) Previously Apache would permit </Files> to end <FilesMatch> (and
7689      similary for Location and Directory), now this is diagnosed as an
7690      error.  Improve error messages for mismatched sections (<Files>,
7691      <FilesMatch>, <Directory>, <DirectoryMatch>, ...).
7692      [Dean Gaudet, Martin Kraemer]
7693
7694   *) <Files> is not permitted within <Location> (because of the
7695      semantic ordering).  [Dean Gaudet] PR#379
7696
7697   *) <Files> with wildcards was broken by the change in wildcard
7698      semantics (* does not match /).  To fix this, <Files> now
7699      apply only to the basename of the request filename.  This
7700      fixes some other inconsistencies in <Files> semantics
7701      (such as <Files a*b> not working).  [Dean Gaudet] PR#1817
7702
7703   *) Removed bogus "dist.tar" target from Makefile.tmpl and make sure
7704      backup files are removed on "clean" target [Ralf S. Engelschall]
7705
7706   *) PORT: Add -lm to LIBS for HPUX.  [Dean Gaudet] PR#1639
7707
7708   *) Various errors from select() and accept() in child_main() would
7709      result in an infinite loop.  It seems these two tickle kernel
7710      or library bugs occasionally, and result in log spammage and
7711      a generally bad scene.  Now the child exits immediately,
7712      which seems to be a good workaround.
7713      [Dean Gaudet] PR#1747, 1107, 588, 1787, 987, 588
7714
7715   *) Cleaned up some race conditions in unix child_main during
7716      initialization. [Dean Gaudet]
7717
7718   *) SECURITY: "UserDir /abspath" without a * in the path would allow
7719      remote users to access "/~.." and bypass access restrictions
7720      (but note /~../.. was handled properly).
7721      [Lauri Jesmin <jesmin@ut.ee>] PR#1701
7722
7723   *) API: os_is_path_absolute() now takes a const char * instead of a char *.
7724      [Dean Gaudet]
7725
7726 Changes with Apache 1.3b5
7727
7728   *) Source file dependencies in Makefile.tmpl files throughout the
7729      source tree were updated to accurately reflect reality.
7730      [Dean Gaudet]
7731
7732   *) Preserve the content encoding given by the AddEncoding directive
7733      when the client doesn't otherwise specify an encoding.
7734      [Ronald Tschalaer <Ronald.Tschalaer@psi.ch>]
7735
7736   *) Sort out problems with canonical filename handling happening too late.
7737      [Dean Gaudet, Ben Laurie]
7738
7739 Changes with Apache 1.3b4
7740
7741   *) The module structure was modified to include a *dynamic_load_handle
7742      in the STANDARD_MODULE_STUFF portion, and the MODULE_MAGIC_NUMBER
7743      has been bumped accordingly.  [Paul Sutton]
7744
7745   *) All BrowserMatch directives mentioned in
7746      htdocs/manual/known_client_problems.html are in the default
7747      configuration files.  [Lars Eilebrecht]
7748
7749   *) MiNT port update. [Jan Paul Schmidt]
7750
7751   *) HTTP/1.1 requires x-gzip and gzip encodings be treated
7752      equivalent, similarly for x-compress and compress.  Apache
7753      now ignores a leading x- when comparing encodings.  It also
7754      preserves the encoding the client requests (for example if
7755      it requests x-gzip, then Apache will respond with x-gzip
7756      in the Content-Encoding header).
7757      [Ronald Tschalaer <Ronald.Tschalaer@psi.ch>] PR#1772
7758
7759   *) Fix a memory leak on keep-alive connections.  [Igor Tatarinov]
7760
7761   *) Added mod_so module to support dynamic loading of modules on Unix
7762      (like mod_dld for Win32). This replaces mod_dld.c. Use SharedModule
7763      instead of AddModule in Configuration to build shared modules
7764      [Sameer Parekh, Paul Sutton]
7765
7766   *) Minor cleanups to r->finfo handling in some modules.
7767      [Dean Gaudet]
7768
7769   *) Abstract read()/write() to ap_read()/ap_write().
7770      Makes it easier to add other types of IO code such as SFIO.
7771      [Randy Terbush]
7772
7773   *) API: Generalize default_port manipulations to make support of
7774      different protocols easier. [Ben Laurie, Randy Terbush]
7775
7776   *) There are many cases where users do not want Apache to form
7777      self-referential urls using the "canonical" ServerName and Port.
7778      The new UseCanonicalName directive (default on), if set to off
7779      will cause Apache to use the client-supplied hostname and port.
7780      API: Part of this change required a change to the construct_url()
7781      prototype; and the addition of get_server_name() and
7782      get_server_port().
7783      [Michael Douglass <mikedoug@texas.net>, Dean Gaudet]
7784      PR#315, 459, 485, 1433
7785
7786   *) Yet another rearrangement of the source tree.. now all the common
7787      header files are in the src/include directory.  The -Imain -Iap
7788      references in Makefiles have been changed to the simpler -Iinclude
7789      instead.  In addition to simplifying the build a little bit, this
7790      also makes it clear when a module is referencing something in a
7791      other than kosher manner (e.g., the proxy including mod_mime.h).
7792      Module-private header files (the proxy, mod_mime, the regex library,
7793      and mod_rewrite) have not been moved to src/include; nor have
7794      the OS-abstraction files.  [Ken Coar]
7795
7796   *) Fix a bug where r->hostname didn't have the :port stripped
7797      from it.  [Dean Gaudet]
7798
7799   *) Tweaked the headers_out table size, and the subprocess_env
7800      table size guess in rename_original_environment().  Added
7801      MAKE_TABLE_PROFILE which can help discover make_table()
7802      calls that use too small an initial guess, see alloc.c.
7803      [Dean Gaudet]
7804
7805   *) Options and AllowOverride weren't properly merging in the main
7806      server setting inside vhosts (only an issue when you have no
7807      <Directory> or other section containing an Options that affects
7808      a request).  Options +foo or -foo in the main_server wouldn't
7809      affect the main_server's lookup defaults.  [Dean Gaudet]
7810
7811   *) Variable 'cwd' was being used pointlessly before being set.
7812      [Ken Coar] PR#1738
7813
7814   *) r->allowed handling cleaned up in the standard modules.
7815      [Dean Gaudet]
7816
7817   *) Some case-sensitivity issues cleaned up to be consistent with
7818      RFC2068.  [Dean Gaudet]
7819
7820   *) SIGURG doesn't exist everywhere.
7821      [Mark Andrew Heinrich <heinrich@tinderbox.Stanford.EDU>]
7822
7823   *) mod_unique_id was erroneously generating a second unique id when
7824      an internal redirect occured.  Such redirects occur, for example,
7825      when processing a DirectoryIndex match.  [Dean Gaudet]
7826
7827   *) API: table_add, table_merge, and table_set include implicit pstrdup()
7828      of the key and value.  But in many cases this is not required
7829      because the key/value is a constant, or the value has been built
7830      by pstrcat() or other similar means.  New routines table_addn,
7831      table_mergen, and table_setn have been added to the API, these
7832      routines do not pstrdup() their arguments.  The core code and
7833      standard modules were changed to take advantage of these routines.
7834      The resulting server is up to 20% faster in some situations.
7835
7836      Note that it is easy to get code subtly wrong if you pass a key/value
7837      which is in a pool other than the pool of the table.  The only
7838      safe thing to do is to pass key/values which are in the pool of
7839      the table, or in one of the ancestors of the pool of the table.
7840      i.e. if the table is part of a subrequest, a value from the main
7841      request's pool is OK since the subrequest pool is a sub_pool of the
7842      main request's pool (and therefore has a lifespan at most as long as
7843      the main pool).  There is debugging code which can detect improper
7844      usage, enabled by defining POOL_DEBUG.  See alloc.c for more details.
7845      [Dmitry Khrustalev <dima@bog.msu.su>, Dean Gaudet]
7846
7847   *) More mod_mime_magic cleanup:  fewer syscalls; should handle "files"
7848      which don't exist on disk more gracefully; handles vhosts properly.
7849      Update documentation to reflect the code -- if there's no
7850      MimeMagicFile directive then the module is not enabled.
7851      [Dean Gaudet]
7852
7853   *) PORT: Some older *nix dialects cannot automatically start scripts
7854      which begin with a #! interpreter line (the shell starts the scripts
7855      appropriately on these platforms). Apache now supports starting of
7856      "hashbang-scripts" when the NEED_HASHBANG_EMUL define is set.
7857      [Martin Kraemer, with code from peter@zeus.dialix.oz.au (Peter Wemm)
7858      taken from tcsh]
7859
7860   *) API: "typedef array_header table" removed from alloc.h, folks should
7861      have been writing to use table as if it were an opaque type, but even
7862      some standard modules got this wrong.  By changing the definition
7863      to "typedef struct table table" module authors will receive compile
7864      time warnings that they're doing the wrong thing.  This change
7865      facilitates future changes with more sophisticated table
7866      structures.  Specifically, module authors should be using table_elts()
7867      to get access to an array_header * for the table. [Dean Gaudet]
7868
7869   *) API: Renamed new_connection() to avoid namespace collision with LDAP
7870      library routines.  [Ken Coar, Rasmus Lerdorf]
7871
7872   *) WIN32: mod_speling is now available on the Win32 platform.
7873      [Marc Slemko]
7874
7875   *) For clarity the following compile time definition was changed:
7876
7877         SAFE_UNSERIALIZED_ACCEPT  ->   SINGLE_LISTEN_UNSERIALIZED_ACCEPT
7878
7879      Also, for example, HAVE_MMAP would mean to use mmap() scoreboards
7880      and not be a general notice that the OS has mmap(). Now the
7881      HAVE_MMAP/SHMGET #defines strictly are informational that the
7882      OS has that method of shared memory; the type to use for
7883      the scoreboard is a seperate #define (USE_MMAP_SCOREBOARD
7884      and USE_SHMGET_SCOREBOARD). This allows outside modules to
7885      determine if shared memory is available and allows Apache
7886      to determine the best method to use for the scoreboard.
7887      [Jim Jagielski]
7888
7889   *) PORT: UnixWare 2.1.2 SMP appears to require USE_FCNTL_SERIALIZED_ACCEPT,
7890      as do various earlier versions.  It should be safe on all versions.
7891      Unixware 1.x appears to have the same SIGHUP bug as solaris does with
7892      the slack code.  A few other cleanups for Unixware.
7893      [Tom Hughes <thh@cyberscience.com>] PR#1082, PR#1282, PR#1499, PR#1553
7894
7895   *) PORT: A/UX can handle single-listen accepts without mutex
7896      locking, so we add SINGLE_LISTEN_UNSERIALIZED_ACCEPT. [Jim Jagielski]
7897
7898   *) When die() happens we need to eat any request body if one exists.
7899      Otherwise we can't continue with a keepalive session.  This shows up
7900      as a POST problem with MSIE 4.0, typically against pages which are
7901      authenticated.  [Roy Fielding] PR#1399
7902
7903   *) If you define SECURITY_HOLE_PASS_AUTHORIZATION then the Authorization
7904      header will be passed to CGIs.  This is generally a security hole, so
7905      it's not a default.  [Marc Slemko] PR#549
7906
7907   *) Fix Y2K problem with date printing in suexec log.
7908      [Paul Eggert <eggert@twinsun.com>] PR#1343
7909
7910   *) WIN32 deserves a pid file.  [Ben Hyde]
7911
7912   *) suexec errors now include the errno/description.  [Marc Slemko] PR#1543
7913
7914   *) PORT: OSF/1 now uses USE_FLOCK_SERIALIZED_ACCEPT to solve PR#467.
7915      The choice of flock vs. fcntl was made based on timings which showed that
7916      even on non-NFS, non-exported filesystems fcntl() was an order of
7917      magnitude slower.  It also uses SINGLE_LISTEN_UNSERIALIZED_ACCEPT so
7918      that single socket users will see no difference. [Dean Gaudet] PR#467
7919
7920   *) "File does not exist" error message was erroneously including the
7921      errno.  [Marc Slemko]
7922
7923   *) Improve the warning message generated when a client drops the
7924      connection (hits stop button, etc.) during a send.  [Roy Fielding]
7925
7926   *) Defining GPROF will disable profiling in the parent and enable it
7927      in the children.  If you're profiling under Linux this is pretty much
7928      necessary because SIGPROF is lost across a fork(). [Dean Gaudet]
7929
7930   *) htdigest and htpasswd needed slight tweaks to work on OS/2 and WIN32.
7931      [Brian Havard]
7932
7933   *) The NeXT cc (which is gcc hacked up) doesn't appear to support some
7934      gcc functionality.  Work around it.
7935      [Keith Severson <keith@sssd.navy.mil>] PR#1613
7936
7937   *) Some linkers complain when .o files contain no functions.
7938      [Keith Severson <keith@sssd.navy.mil>] PR#1614
7939
7940   *) Some const declarations in mod_imap.c that were added for debugging
7941      purposes caused some compilers heartburn without adding any
7942      significant value, so they've been removed.  [Ken Coar]
7943
7944   *) The src/main/*.h header files have had #ifndef wrappers added to
7945      insulate them against duplicate calls if they get included through
7946      multiple paths (e.g., in .c files as well as other .h files).
7947      [Ken Coar]
7948
7949   *) The libap routines now have a header file for their prototypes,
7950      src/ap/ap.h, to ease their use in non-httpd applications.  [Ken Coar]
7951
7952   *) mod_autoindex with a plaintext header file would emit the <PRE>
7953      start-tag before the HTML preamble, rather than after the preamble
7954      but before the header file contents.  [John Van Essen <jve@gamers.org>]
7955      PR#1667
7956
7957   *) SECURITY: Fix a possible buffer overflow in logresolve.  This is
7958      only an issue on systems without a MAXDNAME define or where
7959      the resolver returns domain names longer than MAXDNAME.  [Marc Slemko]
7960
7961   *) SECURITY: Eliminate possible buffer overflow in cfg_getline, which
7962      is used to read various types of files such as htaccess and
7963      htpasswd files.  [Marc Slemko]
7964
7965   *) SECURITY: Ensure that the buffer returned by ht_time is always
7966      properly null terminated.  [Marc Slemko]
7967
7968   *) The "Connection" header could be sent back with multiple "close"
7969      tokens.  Not an error, but a waste.
7970      [Ronald.Tschalaer@psi.ch] PR#1683
7971
7972   *) mod_rewrite's RewriteLog should behave like mod_log_config, it
7973      shouldn't force hostname lookups.  [Dean Gaudet] PR#1684
7974
7975   *) "basic" auth needs a case-insensitive comparison.
7976      [Ronald.Tschalaer@psi.ch] PR#1666
7977
7978   *) For maximum portability, the environment passed to CGIs should
7979      only contain variables whose names match the regex
7980      /[a-zA-Z][a-zA-Z0-9_]*/.  This is now enforced by stamping
7981      underscores over any character outside the regex.  This
7982      affects HTTP_* variables, in a way that should be backward
7983      compatible for all the standard headers; and affects variables
7984      set with SetEnv/BrowserMatch and similar directives.
7985      [Dean Gaudet]
7986
7987   *) mod_speling returned incorrect HREF's when an ambigous match
7988      was found. Noticed by <robinton@amtrash.comlink.de> (Soeren Ziehe)
7989      [robinton@amtrash.comlink.de (Soeren Ziehe), Martin Kraemer]
7990
7991   *) PORT: Apache now compiles & runs on an EBCDIC mainframe
7992      (the Siemens BS2000/OSD family) in the POSIX subsystem
7993      [Martin Kraemer]
7994
7995   *) PORT: Fix problem killing children when terminating.  Allow ^C
7996      to shut down the server.  [Brian Havard]
7997
7998   *) pstrdup() is implicit in calls to table_* functions, so there's
7999      no need to do it before calling.  Clean up a few cases.
8000      [Marc Slemko, Dean Gaudet]
8001
8002   *) new -C and -c command line arguments
8003      usage:
8004      -C "directive" : process directive before reading config files
8005      -c "directive" : process directive after reading config files
8006      example:
8007      httpd -C "PerlModule Apache::httpd_conf"
8008      [Doug MacEachern, Martin Kraemer]
8009
8010   *) WIN32: Fix the execution of CGIs that are scripts and called 
8011      with path info that does not have an '=' in.
8012      (eg. http://server/cgi-bin/printenv?foobar)  
8013      [Marc Slemko] PR#1591
8014
8015   *) WIN32: Fix a call to os_canonical_filename so it doesn't try to 
8016      mess with fake filenames.  This fixes proxy caching on 
8017      win32. PR#1265
8018
8019   *) SECURITY: General mod_include cleanup, including fixing several
8020      possible buffer overflows and a possible infinite loop.
8021      [Dean Gaudet, Marc Slemko]
8022
8023   *) SECURITY: Numerous changes to mod_imap in a general cleanup
8024      including fixing a possible buffer overflow.  [Dean Gaudet]
8025
8026   *) WIN32: overhaul of multithreading code. Shutdowns are now graceful
8027      (connections are not dropped). Code can handle graceful restarts
8028      (but there is as yet no way to signal this to Apache). Various
8029      other cleanups. [Paul Sutton]
8030
8031   *) The aplog_error changes specific to 1.3 introduced a buffer
8032      overrun in the (now legacy) log_printf function.  Fixed.
8033      [Dean Gaudet]
8034
8035   *) mod_digest didn't properly deal with proxy authentication.  It
8036      also lacked a case-insensitive comparision of the "Digest"
8037      token.  [Ronald Tschalaer <Ronald.Tschalaer@psi.ch>] PR#1599
8038
8039   *) A few cleanups in mod_status for efficiency.  [Dean Gaudet]
8040
8041   *) A few cleanups in mod_info to make it thread-safe, and remove an
8042      off-by-5 bug that could hammer \0 on the stack. [Dean Gaudet]
8043
8044   *) no2slash() was O(n^2) in the length of the input.  Make it O(n).
8045      [Dean Gaudet]
8046
8047   *) API: migration from strncpy() to our "enhanced" version called
8048      ap_cpystrn() for performance and functionality reasons.
8049      Located in libap.a.  [Jim Jagielski]
8050
8051   *) table_set() and table_unset() did not deal correctly with
8052      multiple occurrences of the same key.
8053      [Stephen Scheck <sscheck@infonex.net>, Ben Laurie] PR#1604
8054
8055   *) The AuthName must now be enclosed in quotes if it is to contain
8056      spaces.  [Ken Coar] PR#1195
8057
8058   *) API: new function: ap_escape_quotes(). [Ken Coar] PR#1195
8059
8060   *) WIN32: Work around optimiser bug that killed ISAPI in release
8061      versions. [Ben Laurie] PR#1533
8062
8063   *) PORT: Update the MPE port [Mark Bixby, Jim Jagielski]
8064
8065   *) Interim (slow) fix for p->sub_pool critical sections in
8066      alloc.c (affects win32 only).  [Ben Hyde]
8067
8068   *) non-WIN32 was missing destroy_mutex definition.  [Ben Hyde]
8069
8070   *) send_fd_length() did not calculate total_bytes_sent properly.
8071      [Ben Reser <breser@regnow.com>] PR#1366
8072
8073   *) The bputc() macro was not properly integrated with the chunking
8074      code; in many cases modules using bputc() could cause completely
8075      bogus chunked output.  (Typically this will show up as problems
8076      with Internet Explorer 4.0 reading a page, but other browsers
8077      having no problem.) [Dean Gaudet]
8078
8079   *) Create LARGE_WRITE_THRESHOLD define which determines how many
8080      bytes have to be supplied to bwrite() before it will consider
8081      doing a writev() to assemble multiple buffers in one system
8082      call.  This is critical for modules such as mod_include,
8083      mod_autoindex, mod_php3 which all use bputc()/bputs() of smaller
8084      strings in some cases.  The result would be extra effort
8085      setting up writev(), and in many cases extra effort building
8086      chunks.  The default is 31, it can be overriden at compile
8087      time. [Dean Gaudet]
8088
8089   *) Move the gid switching code into the child so that log files
8090      and pid files are opened with the root gid.
8091      [Gregory A Lundberg <lundberg@vr.net>]
8092
8093   *) WIN32: Check for binaries by looking for the executable header
8094      instead of counting control characters.
8095      [Jim Patterson <Jim.Patterson@Cognos.COM>] PR#1340
8096
8097   *) ap_snprintf() moved from main/util_snprintf.c to ap/ap_snprintf.c
8098      so the functionality is available to applications other than the
8099      server itself (like the src/support tools).  [Ken Coar]
8100
8101   *) ap_slack() moved out of main/util.c into ap/ap_slack.c as part of
8102      the libap consolidation work.  [Ken Coar]
8103
8104   *) ap_snprintf() with a len of 0 behaved like sprintf().  This is not
8105      useful, and isn't what the standards require.  Now it returns 0
8106      and writes nothing.  [Dean Gaudet]
8107
8108   *) When an error occurs in fcntl() locking suggest the user look up
8109      the docs for LockFile.  [Dean Gaudet]
8110
8111   *) Eliminate some dead code from writev_it_all().
8112      [Igor Tatarinov <tatarino@prairie.NoDak.edu>]
8113
8114   *) mod_autoindex had an fread() without checking the result code.
8115      It also wouldn't handle "AddIconByType (TXT,/icons/text.gif text/*"
8116      (note the missing closing paren) properly.  [Dean Gaudet]
8117
8118   *) It appears the "257th byte" bug (see
8119      htdocs/manual/misc/known_client_problems.html#257th-byte) can happen
8120      at the 256th byte as well.  Fixed.  [Dean Gaudet]
8121
8122   *) PORT: Fix mod_mime_magic under OS/2, no support for block devices.
8123      [Brian Havard]
8124
8125   *) Fix memory corruption caused by allocating auth usernames in the
8126      wrong pool.  [Dean Gaudet] PR#1500
8127
8128   *) Fix an off-by-1, and an unterminated string error in
8129      mod_mime_magic.  [Dean Gaudet]
8130
8131   *) Fix a potential SEGV problem in mod_negotiation when dealing
8132      with type-maps.  [Dean Gaudet]
8133
8134   *) Better glibc support under Linux.  [Dean Gaudet] PR#1542
8135
8136   *) "RedirectMatch gone /" would cause a SIGSEGV. [Dean Gaudet] PR#1319
8137
8138   *) WIN32: avoid overflows during file canonicalisations.
8139      [malcolm@mgdev.demon.co.uk] PR#1378
8140
8141   *) WIN32: set_file_slot() didn't detect absolute paths. [Ben Laurie]
8142      PR#1511, 1508
8143
8144   *) WIN32: mod_status display header didn't match fields. [Ben Laurie]
8145
8146   *) The pthread_mutex_* functions return an error code, and don't
8147      set errno.  [Igor Tatarinov <tatarino@prairie.NoDak.edu>]
8148
8149   *) WIN32: Allow spaces to prefix the interpreter in #! lines.
8150      [Ben Laurie] PR#1101
8151
8152   *) WIN32: Cure file leak in CGIs. [Peter Tillemans <pti@net4all.be>] PR#1523
8153
8154   *) proxy_ftp: the directory listings generated by the proxy ftp module
8155      now have a title in which the path components are clickable and allow
8156      quick navigation to the clicked-on directory on the currently listed
8157      ftp server. This also fixes a bug where the ".." directory links would
8158      sometimes refer to the wrong directory.  [Martin Kraemer]
8159
8160   *) WIN32: Allocate the correct amount of memory for the scoreboard.
8161      [Ben Hyde] PR#1387
8162
8163   *) WIN32: Only lowercase the part of the path that is real. [Ben Laurie]
8164      PR#1505
8165
8166   *) Fix problems with timeouts in inetd mode and -X mode.  [Dean Gaudet]
8167
8168   *) Fix the spurious "(0)unknown error: mmap_handler: mmap failed"
8169      error messages. [Ben Hyde]
8170
8171 Changes with Apache 1.3b3
8172
8173   *) WIN32: Work around brain-damaged spawn calls that can't deal
8174      with spaces and slashes.  [Ben Laurie]
8175
8176   *) WIN32: Fix the code so CGIs can use socket calls on Windows.  
8177      The problem was that certain undocumented environment variables
8178      needed for sockets to work under Win32 were not being passed.
8179      [Frank Faubert <frank@sane.com>]
8180
8181   *) Add a "-V" command line flag to the httpd binary.  This 
8182      flag shows some of the defines that Apache was compiled with.
8183      It is useful for debugging purposes.  [Martin Kraemer]
8184
8185   *) Start separating the ap_*() routines into their own library, so they
8186      can be used by items in src/support among other things.  
8187      [Ken Coar] PR#512, 905, 1252, 1308 
8188
8189   *) Give a more informative error when no AuthType is set.
8190      [Lars Eilebrecht]
8191
8192   *) Remove strtoul() use from mod_proxy because it isn't available
8193      on all platforms.   [Marc Slemko] PR#1214
8194
8195   *) WIN32: Some Win32 systems terminated all responses after 16 kB. 
8196      This turns out to be a bug in Winsock - select() doesn't always 
8197      return the correct status.  [Ben Laurie]
8198
8199   *) Directives owned by http_core can now use the new check_cmd_context()
8200      routine to ensure that they're not being used within a container
8201      (e.g., <Directory>) where they're invalid.  [Martin Kraemer]
8202
8203   *) PORT: Recent changes made it necessary to add explicit prototype
8204      for fgetc() and fgets() on SunOS 4.x.  [Martin Kraemer, Ben Hyde]
8205
8206   *) It was necessary to distinguish between resources which are
8207      allocated in the parent, for cleanup in the parent, and resources
8208      which are allocated in each child, for cleanup in each child.
8209      A new pool was created which is passed to the module child_init
8210      and child_exit functions; modules are free to register per-child
8211      cleanups there.  This fixes a bug with reliable piped logs.
8212      [Dean Gaudet]
8213
8214   *) mod_autoindex wasn't displaying the ReadmeName file at the bottom
8215      unless it was also doing FancyIndexes, but it displayed the
8216      HeaderName file at the top under all circumstances.  It now shows
8217      the ReadmeName file for simple indices, too, as it should.  
8218      [Ken Coar] PR#1373
8219
8220   *) http_core was mmap()ing even in cases where it wasn't going to
8221      read the file.  [Ben Hyde <bhyde@gensym.com>]
8222
8223   *) Complete rewrite ;-) of mod_rewrite's URL rewriting engine:
8224      Now the rewriting engine (the heart of mod_rewrite) is organized more
8225      straight-forward, first time well documented and reduced to the really
8226      essential parts. All redundant cases were stripped off and processing now
8227      is the same for both per-server and per-directory context with only a
8228      minimum difference (the prefix stripping in per-dir context). As a
8229      side-effect some subtle restrictions and two recently discovered problems
8230      are gone: Wrong escaping of QUERY_STRING on redirects in per-directory
8231      context and restrictions on the substitution URL on redirects.
8232      Additionally some minor source cleanups were done. 
8233      [Ralf S. Engelschall] 
8234
8235   *) Lars Eilebrecht wrote a whole new set of Apache Vhost Internals
8236      documentation, examples, explanations and caveats. They live in a new
8237      subdirectory htdocs/manual/vhost/. [Lars Eilebrecht <sfx@unix-ag.org>]
8238
8239   *) If ap_slack fails to allocate above the low slack line it's a good
8240      indication that further problems will occur; it's a better indication
8241      than many external libraries give us when we actually run out of
8242      descriptors.  So report it to the user once per restart.
8243      [Dean Gaudet] PR#1181
8244
8245   *) Change mod_include and mod_autoindex to use Y2K-safe date formats
8246      by default.  [Ken Coar]
8247
8248   *) Add a "SuppressColumnSorting" option to the IndexOptions list,
8249      which will keep the column heading from being links for sorting
8250      the display.  [Ken Coar, suggested by Brian Tiemann <btman@pacific.net>]
8251      PR #1261
8252
8253   *) PORT: Update the LynxOS port.  [Marius Groeger <mag@sysgo.de>]
8254
8255   *) Fix logic error when issuing a mmap() failed message
8256      with a non-zero MMAP_THRESHOLD.
8257      [David Chambers <davidc@flosun.salk.edu>] PR#1294
8258
8259   *) Preserve handler value on ProxyPass'ed requests by not
8260      calling find_types on a proxy'd request; fixes problems
8261      where some ProxyPass'ed URLs weren't actually passed
8262      to the proxy.
8263      [Lars Eilebrecht] PR#870
8264
8265   *) Fix a byte ordering problem in mod_access which prevented
8266      the old-style syntax (i.e. "a.b.c." to match a class C)
8267      from working properly. [Dean Gaudet] PR#1248, 1328, 1384
8268
8269   *) Fix problem with USE_FLOCK_SERIALIZED_ACCEPT not working
8270      properly. Each child needs to open the lockfile instead
8271      of using the passed file-descriptor from the parent. 
8272      [Jim Jagielski] PR#1056
8273
8274   *) Fix the error logging in mod_cgi; the recent error log changes
8275      introduced a bug that prevented it from working correctly.
8276      [M.D.Parker] PR#1352
8277
8278   *) Default to USE_FCNTL_SERIALIZED_ACCEPT on HPUX to properly 
8279      handle multiple Listen directives.  [Marc Slemko] PR#872
8280
8281   *) Inherit a bugfix to fnmatch.c from FreeBSD sources.
8282      ["[KOI8-R] áÎÄÒÅÊ þÅÒÎÏ×" <ache@nagual.pp.ru>] PR#1311
8283
8284   *) When a configuration parse complained about a bad directive,
8285      the logger would use whatever (unrelated) value was in errno.
8286      errno is now forced to EINVAL first in this case.  [Ken Coar]
8287
8288   *) A sed command in the Configure script pushed the edge of POSIXness,
8289      breaking on some systems.  [Bhaba R.Misra <system@vt.edu>] PR#1368
8290
8291   *) Solaris >= 2.5 was totally broken due to a mess up using pthread
8292      mutexes.  [Roy Fielding, Dean Gaudet]
8293
8294   *) OS/2 Port updated; it should be possible to build OS/2 from the same
8295      sources as Unix now.  [Brian Havard <brianh@kheldar.apana.org.au>]
8296
8297   *) Fix a year formatting bug in mod_usertrack.
8298      [Paul Eggert <eggert@twinsun.com>] PR#1342
8299
8300   *) A mild SIGTERM/SIGALRM race condition was eliminated.
8301      [Dean Gaudet] PR#1211
8302
8303   *) Warn user that default path has changed if /usr/local/etc/httpd
8304      is found on the system.  [Lars Eilebrecht]
8305
8306   *) Various mod_mime_magic bug fixes and cleanups: Uncompression
8307      should work, it should work on WIN32, and a few resource
8308      leaks and abort conditions are fixed.
8309      [Dean Gaudet] PR#1205
8310
8311   *) PORT: On AIX 1.x files can't be named '@', fix the proxy cache
8312      to use '%' instead of '@' in its encodings.
8313      [David Schuler <schuld@btv.ibm.com>] PR#1317
8314
8315   *) Improve the warning message generated when the "server is busy".
8316      [Dean Gaudet] PR#1293
8317
8318   *) PORT: All ports which don't otherwise define DEF_WANTHSREGEX will
8319      get Spencer regex by default.  This is to avoid having to
8320      discover bugs in operating system libraries.  [Dean Gaudet]
8321
8322   *) PORT: "Fix" PR#467 by generating warnings on systems which we have
8323      not been able to get working USE_*_SERIALIZED_ACCEPT settings for.
8324      Document this a bit more in src/PORTING.  [Dean Gaudet] PR#467
8325
8326   *) Ensure that one copy of config warnings makes it to the
8327      error_log.  [Dean Gaudet]
8328
8329   *) Invent new structure and associated methods to handle config file
8330      reading. Add "custom" hook to use config file cfg_getline() on
8331      something which is not a FILE*  [Martin Kraemer]
8332
8333   *) Make single-exe Windows install. [Ben Laurie and Eric Esselink]
8334
8335   *) WIN32: Make CGI work under Win95. [Ben Laurie and Paul Sutton]
8336
8337   *) WIN32: Make index.html and friends work under Win95. [Ben Laurie]
8338
8339   *) PORT: Solaris 2.4 needs Spencer regex, the system regex is broken.
8340      [John Line <jml4@cam.ac.uk>] PR#1321
8341
8342   *) Default pathname has been changed everywhere to /usr/local/apache
8343      [Sameer <sameer@c2.net>]
8344
8345   *) PORT: AIX now uses USE_FCNTL_SERIALIZED_ACCEPT.
8346      [David Bronder <David-Bronder@uiowa.edu>] PR#849
8347
8348   *) PORT: i386 AIX does not have memmove.
8349      [David Schuler <schuld@btv.ibm.com>] PR#1267
8350
8351   *) PORT: HPUX now defaults to using Spencer regex.
8352      [Philippe Vanhaesendonck <pvanhaes@be.oracle.com>,
8353      Omar Del Rio <al112263@academ01.lag.itesm.mx>] PR#482, 1246
8354
8355   *) PORT: Some versions of NetBSD don't automatically define
8356      __NetBSD__.  Workaround by defining NETBSD.
8357      [Chris Craft <ccraft@cncc.cc.co.us>] PR#977
8358
8359   *) PORT: UnixWare 2.x requires -lgen for syslog.
8360      [Hans Snijder <hs@meganet.nl>] PR#1249
8361
8362   *) PORT: ULTRIX appears to not have syslog.
8363      [Lars Eilebrecht <Lars.Eilebrecht@unix-ag.org>]
8364
8365   *) PORT: Basic Gemini port (treat it like unixware212).
8366      ["Pavel Yakovlev (Paul McHacker)" <hac@tomcat.olly.ru>]
8367
8368   *) PORT: All SVR4 systems now use NET_SIZE_T = size_t, and
8369      use USE_SHMGET_SCOREBOARD.
8370      [Martin Kraemer]
8371
8372   *) Various improvements in detecting config file errors (missing closing
8373      directives for <Directory>, <Files> etc. blocks, prohibiting global
8374      server settings in <VirtualHost> blocks, flagging unhandled multiple
8375      arguments to <Directory>, <Files> etc.)
8376      [Martin Kraemer]
8377
8378   *) Add support to suexec wrapper program for mod_unique_id's UNIQUE_ID
8379      variable to provide this one to suexec'd CGIs, too.
8380      [M.D.Parker <mdpc@netcom.com>] PR#1284
8381
8382   *) New support tool: src/support/split-logfile, a sample Perl script which
8383      splits up a combined access log into separate files based on the
8384      name of the virtual host (listed first in the log records by "%v").
8385      [Ken Coar]
8386
8387 Changes with Apache 1.3b2 (there is no 1.3b1)
8388
8389   *) TestCompile was not passing $LIBS [Dean Gaudet]
8390
8391   *) Makefile.tmpl was not using $CFLAGS in the link phase. 
8392      [Martin Kraemer]
8393
8394   *) Add debugging code to alloc.c.  Defining ALLOC_DEBUG provides a
8395      rudimentary memory debugger which can be used on live servers with
8396      low impact -- it sets all allocated and freed memory bytes to 0xa5.
8397      Defining ALLOC_USE_MALLOC will cause the alloc code to use malloc()
8398      and free() for each object.  This is far more expensive and should
8399      only be used for testing with tools such as Electric Fence and
8400      Purify.  See main/alloc.c for more details.  [Dean Gaudet]
8401
8402   *) Configure uses a sh trap and didn't set its exitcode properly.
8403      [Dean Gaudet] PR#1159
8404
8405   *) Yet another vhost revamp.  Add the NameVirtualHost directive which
8406      explicitly lists the ip:port pairs that are to be used for name-vhosts.
8407      From a given ip:port, regardless what the Host: header is, you can
8408      only reach the vhosts defined on that ip:port.  The precedence of
8409      vhosts was reversed to match other precedences in the config --
8410      the earlier vhosts override the later vhosts.  All vhost matching was
8411      moved into http_vhost.[ch].  [Dean Gaudet]
8412
8413   *) ap_inline can be used to force inlining.  GNUC __attribute__() can
8414      be used for whatever reason is appropriate (i.e. format() warnings
8415      for printf style functions).  Both are enabled only with
8416      gcc >= 2.7.x (so that we have fewer support issues with older
8417      versions).  [Dean Gaudet]
8418
8419   *) Fix support for Proxy Authentication (we were testing the response
8420      status too early). [Marc Slemko]
8421
8422   *) CoreDumpDirectory directive directs where the core file is
8423      written when a SIGSEGV, SIGBUS, SIGABORT or SIGABRT are
8424      received.  [Marc Slemko, Dean Gaudet]
8425
8426   *) PORT: Support for Atari MINT.
8427      [Jan Paul Schmidt <Jan.P.Schmidt@mni.fh-giessen.de>]
8428
8429   *) When booting, apache will now detach itself from stdin, stdout,
8430      and stderr.  stderr will not be detached until after the config
8431      files have been read so you will be able to see initial error
8432      messages.  After that all errors are logged in the error_log.
8433      This makes it more convenient to start apache via rsh, ssh,
8434      or crontabs.  [Dean Gaudet] PR#523
8435
8436   *) mod_proxy was sending HTTP/1.1 responses to ftp requests by mistake.
8437      Also removed the auto-generated link to www.apache.org that was the
8438      source of so many misdirected bug reports.  [Roy Fielding, Marc Slemko]
8439
8440   *) send_fb would not detect aborted connections in some situations.
8441      [Dean Gaudet]
8442
8443   *) mod_include would use uninitialized data when parsing certain
8444      expressions involving && and ||. [Brian Slesinsky] PR#1139
8445
8446   *) mod_imap should only handle GET methods.  [Jay Bloodworth]
8447
8448   *) suexec.c wouldn't build without -DLOG_EXEC. [Jason A. Dour]
8449
8450   *) mod_autoindex improperly counted &escapes; as more than one
8451      character in the description.  It also improperly truncated
8452      descriptions that were exactly the maximum length.
8453      [Martin Kraemer]
8454
8455   *) RedirectMatch was not properly escaping the result (PR#1155).  Also
8456      "RedirectMatch /advertiser/(.*) $1" is now permitted.
8457      [Dean Gaudet]
8458
8459   *) mod_include now uses symbolic names to check for request success
8460      and return HTTP errors, and correctly handles all types of
8461      redirections (previously it only did temporary redirect correctly).
8462      [Ken Coar, Roy Fielding]
8463
8464   *) mod_userdir was modifying r->finfo in cases where it wasn't setting
8465      r->filename.  Since those two are meant to be in sync with each other
8466      this is a bug.  ["Paul B. Henson" <henson@intranet.csupomona.edu>]
8467
8468   *) PORT: Support Unisys SVR4, whose uname returns mostly useless data.
8469      ["Kaufman, Steven E" <Steven.Kaufman@unisys.com>]
8470
8471   *) Inetd mode (which is buggy) uses timeouts without having setup the
8472      jmpbuffer. [Dean Gaudet] PR#1064
8473
8474   *) Work around problem under Linux where a child will start looping
8475      reporting a select error over and over.
8476      [Rick Franchuk <rickf@transpect.net>] PR#1107, 987, 588
8477
8478   *) Fixed error in proxy_util.c when looping through multiple host IP
8479      addresses. [Lars Eilebrecht] PR#974
8480
8481   *) If BUFFERED_LOGS is defined then mod_log_config will do atomic
8482      buffered writes -- that is, it will buffer up to PIPE_BUF (i.e. 4k)
8483      bytes before writing, but it will never split a log entry across a
8484      buffer boundary.  [Dean Gaudet]
8485
8486   *) API: the short_score record has been split into two pieces, one which
8487      the parent writes on, and one which the child writes on.  As part of
8488      this change the get_scoreboard_info() function was removed, and
8489      scoreboard_image was exported.  This change fixes a race condition
8490      in file based scoreboard systems, and speeds up changes involving the
8491      scoreboard in earlier 1.3 development.  [Dean Gaudet]
8492
8493   *) API: New register_other_child() API (see http_main.h) which allows
8494      modules to register children with the parent for maintenance.  It
8495      is disabled by defining NO_OTHER_CHILD.  [Dean Gaudet]
8496
8497   *) API: New piped_log API (see http_log.h) which implements piped logs,
8498      and will use register_other_child to implement reliable piped logs
8499      when it is available.  The reliable piped logs part can be disabled
8500      by defining NO_RELIABLE_PIPED_LOGS.  At the moment reliable piped
8501      logs is only available on Unix. [Dean Gaudet]
8502
8503   *) API: set_last_modified() broken into set_last_modified(), set_etag(), and
8504      meets_conditions().  This allows conditional HTTP selection to be
8505      handled separately from the storing of the header fields, and provides
8506      the ability for CGIs to set their own ETags for conditional checking.
8507      [Ken Coar, Roy Fielding]  PR#895
8508
8509   *) Changes to mod_log_config to allow naming of format strings.
8510      Format nicknames are defined with "LogFormat fmt nickname", and can
8511      be used with "LogFormat nickname" and "CustomLog logtarget nickname".
8512      [Ken Coar]
8513
8514   *) New module, "mod_speling", which can help find files even when 
8515      the URL is slightly misspelled. [Martin Kraemer, Alexei Kosut]
8516
8517   *) API: New function child_terminate() triggers the child process to
8518      exit, while allowing the child finish what it needs to for the
8519      current request first.  
8520      [Doug MacEachern, Alexei Kosut]
8521
8522   *) Windows now defaults to using full status reports with mod_status.
8523      [Alexei Kosut] PR #1094
8524
8525   *) *Really* disable all mod_rewrite operations if the engine is off.
8526      Some things (like RewriteMaps) were checked/performed even if they
8527      weren't supposed to be.  [Ken Coar] PR #991
8528
8529   *) Implement a new timer scheme which eliminates the need to call alarm() all
8530      the time.  Instead a counter in the scoreboard for each child is used to
8531      show when the child has made forward progress.  The parent samples this
8532      counter every scoreboard maintenance cycle, and issues SIGALRM if no
8533      progress has been made in the timeout period.  This reduces the static
8534      request best-case syscall count to 22 from 29.  This scheme is only
8535      used by systems with memory-based scoreboards.  [Dean Gaudet]
8536
8537   *) The proxy now properly handles CONNECT requests which are sent
8538      to proxy servers when using ProxyRemote.  [Marc Slemko] PR#1024
8539
8540   *) A script called apachectl has been added to the support 
8541      directory.  This script allows you to do things such as 
8542      "apachectl start" and "apachectl restart" from the command
8543      line.  [Marc Slemko]
8544
8545   *) Modules and core routines are now put into libraries, which
8546      simplifies the link line tremendously (among other advantages).
8547      [Paul Sutton]
8548
8549   *) Some of the MD5 names defined in Apache have been renamed to have
8550      an `ap_' prefix to avoid conflicts with routines supplied by
8551      external libraries.  [Ken Coar]
8552
8553   *) Removal of mod_auth_msql.c from the distribution. There are many
8554      other options for databases today. Rather than offer one option,
8555      offer none at this time. mod_auth_msql and other SQL database
8556      authentication modules can be found at the Apache Module Registry.
8557      http://modules.apache.org/ It would be nice to offer a generic
8558      mod_auth_sql option in the near future.
8559
8560   *) PORT: BeOS support added [Alexei Kosut]
8561
8562   *) Configure no longer accepts the -make option, since it creates
8563      Makefile on the fly based on Makefile.tmpl and Configuration.
8564
8565   *) Apache now gracefully shuts down when it receives a SIGTERM, instead
8566      of forcibly killing off all its processes and exiting without
8567      cleaning up. [Alexei Kosut]
8568
8569   *) API: A new field in the request_rec, r->mtime, has been added to
8570      avoid gratuitous parsing of date strings.  It is intended to hold
8571      the last-modified date of the resource (if applicable).  An
8572      update_mtime() routine has also been added to advance it if
8573      appropriate.  [Roy Fielding, Ken Coar]
8574
8575   *) SECURITY: If a htaccess file can not be read due to bad permissions,
8576      deny access to the directory with a HTTP_FORBIDDEN.  The previous
8577      behavior was to ignore the htaccess file if it could not be read.
8578      This change may make some setups with unreadable htaccess files
8579      stop working.  [Marc Slemko] PR#817
8580
8581   *) Add aplog_error() providing a mechanism to define levels of
8582      verbosity to the server error logging. This addition also provides
8583      the ability to log errors using syslogd. Error logging is configurable
8584      on a per-server basis using the LogLevel directive. Conversion
8585      of log_*() in progress. [Randy Terbush]
8586
8587   *) Further enhance aplog_error() to not log filename, line number, and
8588      errno information when it isn't applicable. [Ken Coar, Dean Gaudet]
8589
8590   *) WIN32: Canonicalise filenames under Win32. Short filenames are
8591      converted to long ones. Backslashes are converted to forward
8592      slashes. Case is converted to lower. Parts of URLs that do not
8593      correspond to files are left completely alone. [Ben Laurie]
8594
8595   *) PORT: 2 new OSs added to the list of ports:
8596       Encore's UMAX V: Arieh Markel <amarkel@encore.com>
8597       Acorn RISCiX: Stephen Borrill <sborrill@xemplar.co.uk>
8598
8599   *) Add the server version (SERVER_VERSION macro) to the "server
8600      configured and running" entry in the error_log.  Also build an
8601      object file at link-time that contains the current time
8602      (SERVER_BUILT global const char[]), and include that in the
8603      message.  [Ken Coar]
8604
8605   *) Set r->headers_out when sending responses from the proxy.
8606      This fixes things such as the logging of headers sent from
8607      the proxy.  [Marc Slemko] PR#659
8608
8609   *) support/httpd_monitor is no longer distributed because the 
8610      scoreboard should not be file based if at all possible. Use
8611      mod_status to see current server snapshot.
8612
8613   *) (set_file_slot): New function, allowing auth directives to be
8614      independent of the server root, so the server documents can be
8615      moved to a different directory or machine more easily.
8616      [David J. MacKenzie]
8617
8618   *) If no TransferLog is given explicitly, decline
8619      to log.  This supports coexistence with other logging modules,
8620      such as the custom one that UUNET uses. [David J. MacKenzie]
8621
8622   *) Check for titles in server-parsed HTML files.
8623      Ignore leading newlines and returns in titles.  The old behavior
8624      of replacing a newline after <title> with a space causes the
8625      title to be misaligned in the listing. [David J. MacKenzie]
8626
8627   *) Change mod_cern_meta to be configurable on a per-directory basis.
8628      [David J. MacKenzie]
8629
8630   *) Add 'Include' directive to allow inclusion of configuration
8631      files within configuration files. [Randy Terbush]
8632
8633   *) Proxy errors on connect() are logged to the error_log (nothing
8634      new); now they include the IP address and port that failed
8635      (*that's* new).   [Ken Coar, Marc Slemko] PR#352
8636
8637   *) Various architectures now define USE_MMAP_FILES which causes
8638      the server to use mmap() for static files.  There are two
8639      compile-time tunables MMAP_THRESHOLD (minimum number of bytes
8640      required to use mmap(), default is 0), and MMAP_SEGMENT_SIZE (maximum
8641      number of bytes written in one cycle from a single mmap()d object,
8642      default 32768).  [Dean Gaudet]
8643
8644   *) API: Added post_read_request API phase which is run right after reading
8645      the request from a client, or right after an internal redirect.  It is
8646      useful for modules setting environment variables that depend only on
8647      the headers/contents of the request.  It does not run during subrequests
8648      because subrequests inherit pretty much everything from the main
8649      request. [Dean Gaudet]
8650
8651   *) Added mod_unique_id which is used to generate a unique identifier for
8652      each hit, available in the environment variable UNIQUE_ID.
8653      [Dean Gaudet]
8654
8655   *) init_modules is now called after the error logs have been opened.  This
8656      allows modules to emit information messages into the error logs.
8657      [Dean Gaudet]
8658
8659   *) Fixed proxy-pass-through feature of mod_rewrite; Added error logging
8660      information for case where proxy module is not available. [Marc Slemko]
8661
8662   *) PORT: Apache has need for mutexes to serialize its children around
8663      accept.  In prior versions either fcntl file locking or flock file
8664      locking were used.  The method is chosen by the definition of
8665      USE_xxx_SERIALIZED_ACCEPT in conf.h.  xxx is FCNTL for fcntl(),
8666      and FLOCK for flock().  New options have been added:
8667         - SYSVSEM to use System V style semaphores
8668         - PTHREAD to use POSIX threads (appears to work on Solaris only)
8669         - USLOCK to use IRIX uslock
8670      Based on timing various techniques, the following changes were made
8671      to the defaults:
8672         - Linux 2.x uses flock instead of fcntl
8673         - Solaris 2.x uses pthreads
8674         - IRIX uses SysV semaphores -- however multiprocessor IRIX boxes
8675           work far faster if you -DUSE_USLOCK_SERIALIZED_ACCEPT
8676      [Dean Gaudet, Pierre-Yves Kerembellec <Pierre-Yves.Kerembellec@vtcom.fr>,
8677      Martijn Koster <m.koster@pobox.com>]
8678
8679   *) PORT: The semantics of accept/select make it very desirable to use
8680      mutexes to serialize accept when multiple Listens are in use.  But
8681      in the case where only a single socket is open it is sometimes
8682      redundant to serialize accept().  Not all unixes do a good job with
8683      potentially dozens of children blocked on accept() on the same
8684      socket.  It's now possible to define SINGLE_LISTEN_UNSERIALIZED_ACCEPT and
8685      the server will avoid serialization when listening on only one socket,
8686      and use serialization when listening on multiple sockets.
8687      [Dean Gaudet] PR#467
8688
8689   *) Configure changes: TestLib replaced by TestCompile, which has
8690      some additional capability (such as doing a sanity check of
8691      the compiler and flags selected); the version of Solaris is now
8692      available via the #define value of SOLARIS2; IRIX n32bit libs
8693      now supported and selectable by new Configuration Rule: IRIXN32;
8694      We no longer default to -O2 optimization.  [Jim Jagielski]
8695
8696   *) Updated Configure: Configuration now uses AddModule to specify
8697      module source or binary file location, relative to src directory.
8698      Modules can be dropped into modules/extra, or in their own 
8699      directory, and modules can come with a Makefile or Configure can 
8700      create one.  Modules can add compiler or library information to 
8701      generated Makefiles. [Paul Sutton]
8702
8703   *) Source core re-organisation: distributed modules are now in 
8704      modules/standard. All other source code is in main. OS-specific
8705      code is in os/{unix,emx,win32} directories. [Paul Sutton]
8706
8707   *) mod_browser has been removed, since it's replaced by mod_setenvif.
8708      [Ken Coar]
8709
8710   *) Fix another long-standing bug in sub_req_lookup_file where it would
8711      happily skip past access checks on subdirectories looked up with
8712      relative paths.  (It's used by mod_dir, mod_negotiation,
8713      and mod_include.) [Dean Gaudet]
8714
8715   *) directory_walk optimization to reduce an O(N*M) loop to O(N+M) where
8716      N is the number of <Directory> sections, and M is the number of
8717      components in the filename of an object.
8718
8719      To achieve this optimization the following config changes were made:
8720         - Wildcards (* and ?, not the regex forms) in <Directory>s,
8721           <Files>s, and <Location>s now treat a slash as a special
8722           character.  For example "/home/*/public_html" previously would
8723           match "/home/a/andrew/public_html", now it only matches things
8724           like "/home/bob/public_html".  This mimics /bin/sh behaviour.
8725         - It's possible now to use [] wildcarding in <Directory>, <Files>
8726           or <Location>.
8727         - Regex <Directory>s are applied after all non-regex <Directory>s.
8728
8729     [Dean Gaudet]
8730
8731   *) Fix a bug introduced in 1.3a1 directory_walk regarding .htaccess files
8732      and corrupted paths.  [Dean Gaudet]
8733
8734   *) Enhanced and cleaned up the URL rewriting engine of mod_rewrite:
8735      First the grouped parts of RewriteRule pattern matches (parenthesis!) can
8736      be accessed now via backreferences $1..$9 in RewriteConds test-against
8737      strings in addition to RewriteRules subst string. Second the grouped
8738      parts of RewriteCond pattern matches (parenthesis!) can be accessed now
8739      via backreferences %1..%9 both in following RewriteCond test-against
8740      strings and RewriteRules subst string. This provides maximum flexibility
8741      through the use of backreferences.
8742      Additionally the rewriting engine was cleaned up by putting common
8743      code to the new expand_backrefs_inbuffer() function. 
8744      [Ralf S. Engelschall]
8745
8746   *) When merging the main server's <Directory> and <Location> sections into
8747      a vhost, put the main server's first and the vhost's second.  Otherwise
8748      the vhost can't override the main server.  [Dean Gaudet] PR#717
8749
8750   *) The <Directory> code would merge and re-merge the same section after
8751      a match was found, possibly causing problems with some modules.
8752      [Dean Gaudet]
8753
8754   *) ip-based vhosts are stored and queried using a hashing function, which
8755      has been shown to improve performance on servers with many ip-vhosts.
8756      Some other changes had to be made to accommodate this:
8757         - the * address for vhosts now behaves like _default_
8758         - the matching process now is:
8759             - match an ip-vhost directly via hash (possibly matches main
8760               server)
8761             - if that fails, just pretend it matched the main server
8762             - if so far only the main server has been matched, perform
8763               name-based lookups (ServerName, ServerAlias, ServerPath)
8764               *only on name-based vhosts*
8765             - if they fail, look for _default_ vhosts
8766      [Dean Gaudet, Dave Hankins <dhankins@sugarat.net>]
8767
8768   *) dbmmanage overhaul:
8769      - merge dbmmanage and dbmmanage.new functionality, remove dbmmanage.new 
8770      - tie() to AnyDBM_File which will use one of DB_File, NDBM_File or
8771        GDBM_File (-ldb, -lndbm, -lgdbm) (trying each in that order)
8772      - provide better seed for rand
8773      - prompt for password as per getpass(3) (turn off echo, read from
8774        /dev/tty, etc.)
8775      - use "newstyle" crypt based on $Config{osname} ($^O)
8776      - will not add a user if already in database, use new `update' command
8777        instead
8778      - added `check' command to check a users' password
8779      - added `import' command to convert existing password text-files or 
8780        dbm files exported with `view'
8781      - more descriptive usage, general cleanup, 'use strict' clean, etc.
8782      [Doug MacEachern]
8783
8784   *) Added psocket() which is a pool form of socket(), various places within
8785      the proxy weren't properly blocking alarms while registering the cleanup
8786      for its sockets.  bclose() now uses pclose() and pclosesocket().  There
8787      was a bug where the client socket was being close()d twice due a still
8788      registered cleanup.  [Dean Gaudet]
8789
8790   *) A few cleanups were made to reduce time(), getpid(), and signal() calls.
8791      [Dean Gaudet]
8792
8793   *) PORT: AIX >= 4.2 requires -lm due to libc changes.
8794      [Jason Venner <jason@idiom.com>] PR#667
8795
8796   *) Enable ``=""'' for RewriteCond directives to match against
8797      the empty string. This is the preferred way instead of ``^$''.
8798      [Ralf S. Engelschall]
8799
8800   *) Fixed an infinite loop in mod_imap for references above the server root
8801      [Dean Gaudet] PR#748
8802
8803   *) mod_proxy now has a ReceiveBufferSize directive, similar to
8804      SendBufferSize, so that the TCP window can be set appropriately
8805      for LFNs. [Phillip A. Prindeville]
8806
8807   *) mod_browser has been replaced by the more general mod_setenvif
8808      (courtesy of Paul Sutton).  BrowserMatch* directives are still
8809      available, but are now joined by SetEnvIf*, UnSetEnvIf*, and
8810      UnSetEnvIfZero directives.  [Ken Coar]
8811
8812   *) "HostnameLookups double" forces double-reverse DNS to succeed in
8813      order for remote_host to be set (for logging, or for the env var
8814      REMOTE_HOST).  The old define MAXIMUM_DNS has been deprecated.
8815      [Dean Gaudet]
8816
8817   *) mod_access overhaul:
8818      - Now understands network/netmask syntax (i.e.  10.1.0.0/255.255.0.0)
8819        and cidr syntax (i.e. 10.1.0.0/16).  PR#762
8820      - Critical path was sped up by pre-computing a few things at config time.
8821      - The undocumented syntax "allow user-agents" was removed,
8822        the replacement is "allow from env=foobar" combined with mod_browser.
8823      - When used with hostnames it now forces a double-reverse lookup
8824        no matter what the directory settings are.  This double-reverse
8825        doesn't affect any of the other routines that use the remote
8826        hostname.  In particular it's still passed to CGIs and the log
8827        without the double-reverse check.  Related PR#860.
8828      [Dean Gaudet]
8829
8830   *) When a large bwrite() occurs (larger than the internal buffer size),
8831      while there is already something in the buffer, apache will combine
8832      the large write and the buffer into a single writev().  (This is
8833      in anticipation of using mmap() for reading files.)
8834      [Dean Gaudet]
8835
8836   *) In obscure cases where a partial socket write occurred while chunking,
8837      Apache would omit the chunk header/footer on the next block.  Cleaned
8838      up other bugs/inconsistencies in error conditions in buff.c.  Fixed
8839      a bug where a long pause in DNS lookups could cause the last packet
8840      of a response to be unduly delayed.  [Roy Fielding, Dean Gaudet]
8841
8842   *) API: Added child_exit function to module structure.  This is called
8843      once per "heavy-weight process" just before a server child exit()'s 
8844      e.g. when max_requests_per_child is reached, etc.
8845      [Doug MacEachern, Dean Gaudet]
8846
8847   *) mod_include cleanup showed that handle_else was being used to handle
8848      endif.  It didn't cause problems, but it was cleaned up too.
8849      [Howard Fear]
8850
8851   *) mod_cern_meta would attempt to find meta files for the directory itself
8852      in some cases, but not in others.  It now avoids it in all cases.
8853      [Dean Gaudet]
8854
8855   *) mod_mime_magic would core dump if there was a decompression error.
8856      [Martin Kraemer <Martin.Kraemer@mch.sni.de>] PR#904
8857
8858   *) PORT: some variants of DGUX require -lsocket -lnsl
8859      [Alexander L Jones <alex@systems-options.co.uk>] PR#732
8860
8861   *) mod_autoindex now allows sorting of FancyIndexed directory listings
8862      by the various fields (name, size, et cetera), either in ascending
8863      or descending order.  Just click on the column header.  [Ken Coar]
8864
8865   *) PORT: Various tweaks to eliminate pointer-int casting warnings on 64-bit
8866      CPUs like the Alpha.  Apache still stores ints in pointers, but that's
8867      the relatively safe direction.  [Dean Gaudet] PR#344
8868
8869   *) PORT: QNX mmap() support for faster/more reliable scoreboard handling.
8870      [Igor N Kovalenko <infoh@mail.wplus.net>] PR#683
8871
8872   *) child_main avoids an unneeded call to select() when there is only one
8873      listening socket.  [Dean Gaudet]
8874
8875   *) In the event that the server is starved for idle servers it will
8876      spawn 1, then 2, then 4, ..., then 32 servers each second,
8877      doubling each second.  It'll also give a warning in the errorlog
8878      since the most common reason for this is a poor StartServers
8879      setting.  The define MAX_SPAWN_RATE can be used to raise/lower
8880      the maximum.  [Dean Gaudet]
8881
8882   *) Apache now provides an effectively unbuffered connection for
8883      CGI scripts.  This means that data will be sent to the client
8884      as soon as the CGI pauses or stops output; previously, Apache would
8885      buffer the output up to a fixed buffer size before sending, which
8886      could result in the user viewing an empty page until the CGI finished
8887      or output a complete buffer.  It is no longer necessary to use an
8888      "nph-" CGI to get unbuffered output.  Given that most CGIs are written
8889      in a language that by default does buffering (e.g. perl) this
8890      shouldn't have a detrimental effect on performance.
8891
8892      "nph-" CGIs, which formerly provided a direct socket to the client
8893      without any server post-processing, were not fully compatible with
8894      HTTP/1.1 or SSL support.  As such they would have had to implement
8895      the transport details, such as encryption or chunking, in order
8896      to work properly in certain situations.  Now, the only difference
8897      between nph and non-nph scripts is "non-parsed headers".
8898      [Dean Gaudet, Sameer Parekh, Roy Fielding]
8899
8900   *) If a BUFF is switched from buffered to unbuffered reading the first
8901      bread() will return whatever remained in the buffer prior to the
8902      switch. [Dean Gaudet]
8903
8904 Changes with Apache 1.3a1
8905
8906   *) Added another Configure helper script: TestLib. It determines
8907      if a specified library exists.  [Jim Jagielski]
8908
8909   *) PORT: Allow for use of n32bit libraries under IRIX 6.x
8910      [derived from patch from Jeff Hayes <jhayes@aw.sgi.com>]
8911      PR#721
8912
8913   *) PORT: Some architectures use size_t for various lengths in network
8914      functions such as accept(), and getsockname().  The definition
8915      NET_SIZE_T is used to control this. [Dean Gaudet]
8916
8917   *) PORT: Linux: Attempt to detect glibc based systems and include crypt.h
8918      and -lcrypt.  Test for various db libraries (dbm, ndbm, db) when
8919      mod_auth_dbm or mod_auth_db are included.  [Dean Gaudet]
8920
8921   *) PORT: QNX doesn't have initgroups() which support/suexec.c uses.
8922      [Igor N Kovalenko <infoh@mail.wplus.net>]
8923
8924   *) "force-response-1.0" now only applies to requests which are HTTP/1.0 to
8925      begin with.  "nokeepalive" now works for HTTP/1.1 clients.  Added
8926      "downgrade-1.0" which causes Apache to pretend it received a 1.0.
8927      [Dean Gaudet] related PR#875
8928
8929   *) API: Correct child_init() slot declaration from int to void, to
8930      match the init() declaration.  Update mod_example to use the new
8931      hook.  [Ken Coar]
8932
8933   *) added transport handle slot (t_handle) to the BUFF structure
8934      [Doug MacEachern]
8935
8936   *) get_client_block() returns wrong length if policy is
8937      REQUEST_CHUNKED_DECHUNK.
8938      [Kenichi Hori <ken@d2.bs1.fc.nec.co.jp>] PR#815
8939
8940   *) Support the image map format of FrontPage.  For example:
8941         rect /url.hrm 10 20 30 40
8942      ["Chris O'Byrne" <obyrne@iol.ie>] PR#807
8943
8944   *) PORT: -lresolv and -lsocks were in the wrong order for Solaris.
8945      ["Darren O'Shaughnessy" <darren@aaii.oz.au>] PR#846
8946
8947   *) AddModuleInfo directive for mod_info which allows you to annotate
8948      the output of mod_info.  ["Lou D. Langholtz" <ldl@usi.utah.edu>]
8949
8950   *) Added NoProxy directive to avoid using ProxyRemote for selected
8951      addresses.  Added ProxyDomain directive to cause unqualified
8952      names to be qualified by redirection.
8953      [Martin Kraemer <Martin.Kraemer@mch.sni.de>]
8954
8955   *) Support Proxy Authentication, and don't pass the Proxy-Authorize
8956      header to the remote host in the proxy. [Sameer Parekh and
8957      Wallace]
8958
8959   *) Upgraded mod_rewrite from 3.0.6+ to latest officially available version
8960      3.0.9. This upgrade includes: fixed deadlooping on rewriting to same
8961      URLs, fixed rewritelog(), fixed forced response code handling on
8962      redirects from within .htaccess files, disabled pipe locking under
8963      braindead SunOS 4.1.x, allow env variables to be set even on rules with
8964      no substitution, bugfixed situations where HostnameLookups is off, made
8965      mod_rewrite more thread-safe for NT port and fixed problem when creating
8966      an empty query string via "xxx?".
8967          This update also removes the copyright of Ralf S. Engelschall,
8968      i.e. now mod_rewrite no longer has a shared copyright. Instead is is
8969      exclusively copyrighted by the Apache Group now. This happened because
8970      the author now has gifted mod_rewrite exclusively to the Apache Group and 
8971      no longer maintains an external version.
8972      [Ralf S. Engelschall]
8973
8974   *) API: Added child_init function to module structure.  This is called
8975      once per "heavy-weight process" before any requests are handled.
8976      See http_config.h for more details.  [Dean Gaudet]
8977
8978   *) Anonymous_LogEmail was logging on each subrequest.
8979      [Dean Gaudet] PR#421, 868
8980
8981   *) API: Added is_initial_req() which tests if the request being
8982      processed is the initial request, or a subrequest.
8983      [Doug MacEachern]
8984
8985   *) Extended SSI (mod_include) now handles additional relops for
8986      string comparisons (<, >, <=, and >=).  [Bruno Wolff III] PR#41
8987
8988   *) Configure fixed to correctly propagate user-selected options and
8989      settings (such as CC and OPTIM) to Makefiles other than
8990      src/Makefile (notably support/Makefile).  [Ken Coar] PR#666, #834
8991
8992   *) IndexOptions SuppressHTMLPreamble now causes the actual HTML of
8993      directory indices to start with the contents of the HeaderName file
8994      if there is one.  If there isn't one, the behaviour is unchanged.
8995      [Ken Coar, Roy Fielding, Andrey A. Chernov]
8996
8997   *) WIN32: Modules can now be dynamically loaded DLLs using the
8998      LoadModule/LoadFile directives. Note that module DLLs must be
8999      compiled with the multithreaded DLL version of the runtime library.
9000      [Alexei Kosut and Ben Laurie]
9001
9002   *) Automatic indexing removed from mod_dir and placed into mod_autoindex.
9003      This allows the admin to completely remove automatic indexing
9004      from the server, while still supporting the basic functions of
9005      trailing-slash redirects and DirectoryIndex files.  Note that if
9006      you're carrying over an old Configuration file and you use directory
9007      indexing then you'll want to add:
9008
9009      Module autoindex_module    mod_autoindex.o
9010
9011      before mod_dir in your Configuration.  [Dean Gaudet]
9012
9013   *) popendir/pclosedir created to properly protect directory scanning.
9014      [Dean Gaudet] PR#525
9015
9016   *) AliasMatch, ScriptAliasMatch and RedirectMatch directives added,
9017      giving regex support to mod_alias. <DirectoryMatch>, <LocationMatch>
9018      and <FilesMatch> sections added to succeed <DirectoryMatch ~>, etc...
9019      [Alexei Kosut]
9020
9021   *) The AccessFileName directive can now take more than one filename.
9022      ["Lou D. Langholtz" <ldl@usi.utah.edu>]
9023
9024   *) The new mod_mime_magic can be used to "magically" determine the type
9025      of a file if the extension is unknown.  Based on the unix file(1)
9026      command.  [Ian Kluft <ikluft@cisco.com>]
9027
9028   *) We now determine and display the time spent processing a
9029      request if desired.  [Jim Jagielski]
9030
9031   *) mod_status: PID field of "dead" child slots no longer displays
9032      main httpd process's PID.  [Jim Jagielski]
9033
9034   *) Makefile.nt added - to build all the bits from the command line:
9035         nmake -f Makefile.nt
9036          Doesn't yet work properly. [Ben Laurie]
9037
9038   *) Default text of 404 error is now "Not Found" rather than the
9039      potentially misleading "File Not Found".  [Ken Coar]
9040
9041   *) CONFIG: "HostnameLookups" now defaults to off because it is far better
9042      for the net if we require people that actually need this data to
9043      enable it.  [Linus Torvalds]
9044
9045   *) directory_walk() is an expensive function, keep a little more state to
9046      avoid needless string counting.  Add two new functions make_dirstr_parent
9047      and make_dirstr_prefix which replace all existing uses of make_dirstr.
9048      The new functions are a little less general than make_dirstr, but
9049      work more efficiently (less memory, less string counting).
9050      [Dean Gaudet]
9051
9052   *) EXTRA_LFLAGS was changed to EXTRA_LDFLAGS (and LFLAGS was changed
9053      to LDFLAGS) to avoid complications with lex rules in make files.
9054      [Dean Gaudet] PR#372
9055
9056   *) run_method optimized to avoid needless scanning over NULLs in the
9057      module list.  [Dean Gaudet]
9058
9059   *) Revamp of (unix) scoreboard management code such that it avoids
9060      unnecessary traversals of the scoreboard on each hit.  This is
9061      particularly important for high volume sites with a large
9062      HARD_SERVER_LIMIT.  Some of the previous operations were O(n^2),
9063      and are now O(n).  See also SCOREBOARD_MAINTENANCE_INTERVAL in
9064      httpd.h. [Dean Gaudet]
9065
9066   *) In configurations using multiple Listen statements it was possible for
9067      busy sockets to starve other sockets of service.  [Dean Gaudet]
9068
9069   *) Added hook so standalone_main can be replaced at compile time
9070      (define STANDALONE_MAIN)
9071      [Doug MacEachern]
9072
9073   *) Lowest-level read/write functions in buff.c will be replaced with
9074      the SFIO library calls sfread/sfwrite if B_SFIO is defined at
9075      compile time.  The default sfio discipline will behave as apache
9076      would without sfio compiled in.
9077      [Doug MacEachern]
9078
9079   *) Enhance UserDir directive (mod_userdir) to accept a list of
9080      usernames for the 'disable' keyword, and add 'enable user...' to
9081      selectively *en*able userdirs if they're globally disabled.
9082      [Ken Coar]
9083
9084   *) If NETSCAPE_DBM_COMPAT is defined in EXTRA_CFLAGS then Apache
9085      will work with Netscape dbm files.  (dbmmanage will probably not
9086      work however.) [Alexander Spohr <aspohr@netmatic.com>] PR#444
9087
9088   *) Add a ListenBacklog directive to control the backlog parameter
9089      passed to listen().  Also change the default to 511 from 512.
9090      [Marc Slemko]
9091
9092   *) API: A new handler response DONE which informs apache that the
9093      request has been handled and it can finish off quickly, similar to
9094      how it handles errors. [Rob Hartill]
9095
9096   *) Turn off chunked encoding after sending terminating chunk/footer
9097      so that we can't do it twice by accident. [Roy Fielding]
9098
9099   *) mod_expire also issues Cache-Control: max-age headers.
9100      [Rob Hartill]
9101
9102   *) API: Added kill_only_once option for free_proc_chain so that it won't
9103      aggressively try to kill off specific children.  For fastcgi.
9104      [Stanley Gambarin <gambarin@OpenMarket.com>]
9105
9106   *) mod_auth deals with extra ':' delimited fields.  [Marc Slemko]
9107
9108   *) Added IconHeight and IconWidth to mod_dir's IndexOptions directive.
9109      When used together, these cause mod_dir to emit HEIGHT and WIDTH
9110      attributes in the FancyIndexing IMG tags.  [Ken Coar]
9111
9112   *) PORT: Sequent and SONY NEWS-OS support added.  [Jim Jagielski]
9113
9114   *) PORT: Added Windows NT support
9115      [Ben Laurie and Ambarish Malpani <ambarish@valicert.com>]
9116
9117 Changes with Apache 1.2.6
9118
9119   *) mod_include when using XBitHack Full would send ETags in addition to
9120      sending Last-Modifieds.  This is incorrect HTTP/1.1 behaviour.
9121      [Dean Gaudet] PR#1133
9122
9123   *) SECURITY: When a client connects to a particular port/addr, and
9124      gives a Host: header ensure that the virtual host requested can
9125      actually be reached via that port/addr.  [Ed Korthof <ed@organic.com>]
9126
9127   *) Support virtual hosts with wildcard port and/or multiple ports
9128      properly.  [Ed Korthof <ed@organic.com>]
9129
9130   *) Fixed some case-sensitivity issues according to RFC2068.
9131      [Dean Gaudet]
9132
9133   *) Set r->allowed properly in mod_asis.c, mod_dir.c, mod_info.c,
9134      and mod_include.c.  [Dean Gaudet]
9135
9136   *) Variable 'cwd' was being used pointlessly before being set.
9137      [Ken Coar] PR#1738
9138
9139   *) SIGURG doesn't exist on all platforms.
9140      [Mark Andrew Heinrich <heinrich@tinderbox.Stanford.EDU>]
9141
9142   *) When an error occurs during a POST, or other operation with a
9143      request body, the body has to be read from the net before allowing
9144      a keepalive session to continue.  [Roy Fielding] PR#1399
9145
9146   *) When an error occurs in fcntl() locking suggest the user look up
9147      the docs for LockFile.  [Dean Gaudet]
9148
9149   *) table_set() and table_unset() did not deal correctly with
9150      multiple occurrences of the same key. [Stephen Scheck
9151      <sscheck@infonex.net>, Ben Laurie] PR#1604
9152
9153   *) send_fd_length() did not calculate total_bytes_sent properly in error
9154      cases.  [Ben Reser <breser@regnow.com>] PR#1366
9155
9156   *) r->connection->user was allocated in the wrong pool causing corruption
9157      in some cases when used with mod_cern_meta.  [Dean Gaudet] PR#1500
9158
9159   *) mod_proxy was sending HTTP/1.1 responses to ftp requests by mistake.
9160      Also removed the auto-generated link to www.apache.org that was the
9161      source of so many misdirected bug reports.  [Roy Fielding, Marc Slemko]
9162
9163   *) Multiple "close" tokens may have been set in the "Connection"
9164      header, not an error, but a waste.
9165      [Ronald.Tschalaer@psi.ch] PR#1683
9166
9167   *) "basic" and "digest" auth tokens should be tested case-insensitive.
9168      [Ronald.Tschalaer@psi.ch] PR#1599, PR#1666
9169
9170   *) It appears the "257th byte" bug (see
9171      htdocs/manual/misc/known_client_problems.html#257th-byte) can happen
9172      at the 256th byte as well.  Fixed.  [Dean Gaudet]
9173
9174   *) mod_rewrite would not handle %3f properly in some situations.
9175      [Ralf Engelschall]
9176
9177   *) Apache could generate improperly chunked HTTP/1.1 responses when
9178      the bputc() or rputc() functions were used by modules (such as
9179      mod_include).  [Dean Gaudet]
9180
9181   *) #ifdef wrap a few #defines in httpd.h to make life easier on
9182      some ports.  [Ralf Engelschall]
9183
9184   *) Fix MPE compilation error in mod_usertrack.c.  [Mark Bixby]
9185
9186   *) Quote CC='$(CC)' to improve recurse make calls.  [Martin Kraemer]
9187
9188   *) Avoid B_ERROR redeclaration on sysvr4 systems.  [Martin Kraemer]
9189
9190 Changes with Apache 1.2.5
9191
9192   *) SECURITY: Fix a possible buffer overflow in logresolve.  This is
9193      only an issue on systems without a MAXDNAME define or where 
9194      the resolver returns domain names longer than MAXDNAME.  [Marc Slemko]
9195
9196   *) Fix an improper length in an ap_snprintf call in proxy_date_canon().
9197      [Marc Slemko]
9198
9199   *) Fix core dump in the ftp proxy when reading incorrectly formatted
9200      directory listings.  [Marc Slemko]
9201
9202   *) SECURITY: Fix possible minor buffer overflow in the proxy cache.
9203      [Marc Slemko]
9204
9205   *) SECURITY: Eliminate possible buffer overflow in cfg_getline, which
9206      is used to read various types of files such as htaccess and 
9207      htpasswd files.  [Marc Slemko]
9208
9209   *) SECURITY: Ensure that the buffer returned by ht_time is always
9210      properly null terminated.  [Marc Slemko]
9211
9212   *) SECURITY: General mod_include cleanup, including fixing several
9213      possible buffer overflows and a possible infinite loop.  This cleanup
9214      was done against 1.3 code and then backported to 1.2, the result
9215      is a large difference (due to indentation cleanup in 1.3 code).
9216      Users interested in seeing a smaller set of relevant differences
9217      should consider comparing against src/modules/standard/mod_include.c
9218      from the 1.3b3 release.  Non-indentation changes to mod_include
9219      between 1.2 and 1.3 were minimal.  [Dean Gaudet, Marc Slemko]
9220
9221   *) SECURITY: Numerous changes to mod_imap in a general cleanup
9222      including fixing a possible buffer overflow.  This cleanup also
9223      was done with 1.3 code as a basis, see the the previous note
9224      about mod_include.  [Dean Gaudet]
9225
9226   *) SECURITY: If a htaccess file can not be read due to bad 
9227      permissions, deny access to the directory with a HTTP_FORBIDDEN.  
9228      The previous behavior was to ignore the htaccess file if it could not
9229      be read.  This change may make some setups with unreadable
9230      htaccess files stop working.  PR#817  [Marc Slemko]
9231
9232   *) SECURITY: no2slash() was O(n^2) in the length of the input.  
9233      Make it O(n).  This inefficiency could be used to mount a denial 
9234      of service attack against the Apache server.  Thanks to 
9235      Michal Zalewski <lcamtuf@boss.staszic.waw.pl> for reporting
9236      this.  [Dean Gaudet]
9237
9238   *) mod_include used uninitialized data for some uses of && and ||.
9239      [Brian Slesinsky <bslesins@wired.com>] PR#1139
9240
9241   *) mod_imap should decline all non-GET methods.
9242      [Jay Bloodworth <jay@pathways.sde.state.sc.us>]
9243
9244   *) suexec.c wouldn't build without -DLOG_EXEC. [Jason A. Dour]
9245
9246   *) mod_userdir was modifying r->finfo in cases where it wasn't setting
9247      r->filename.  Since those two are meant to be in sync with each other
9248      this is a bug.  ["Paul B. Henson" <henson@intranet.csupomona.edu>]
9249
9250   *) mod_include did not properly handle all possible redirects from sub-
9251      requests.  [Ken Coar]
9252
9253   *) Inetd mode (which is buggy) uses timeouts without having setup the
9254      jmpbuffer. [Dean Gaudet] PR#1064
9255
9256   *) Work around problem under Linux where a child will start looping
9257      reporting a select error over and over.
9258      [Rick Franchuk <rickf@transpect.net>] PR#1107
9259
9260 Changes with Apache 1.2.4
9261
9262   *) The ProxyRemote change in 1.2.3 introduced a bug resulting in the proxy
9263      always making requests with the full-URI instead of just the URI path.
9264      [Marc Slemko, Roy Fielding]
9265
9266   *) Add -lm for AIX versions >= 4.2 to allow Apache to link properly
9267      on this platform.  [Marc Slemko]
9268
9269 Changes with Apache 1.2.3
9270
9271   *) The request to a remote proxy was mangled if it was generated as the
9272      result of a ProxyPass directive. URL schemes other than http:// were not
9273      supported when ProxyRemote was used. PR#260, PR#656, PR#699, PR#713,
9274      PR#812 [Lars Eilebrecht]
9275
9276   *) Fixed proxy-pass-through feature of mod_rewrite; Added error logging
9277      information for case where proxy module is not available. [Marc Slemko]
9278
9279   *) Force proxy to always respond as HTTP/1.0, which it was failing to
9280      do for errors and cached responses.  [Roy Fielding]
9281
9282   *) PORT: Improved support for ConvexOS 11.  [Jeff Venters]
9283
9284 Changes with Apache 1.2.2 [not released]
9285
9286   *) Fixed another long-standing bug in sub_req_lookup_file where it would
9287      happily skip past access checks on subdirectories looked up with relative
9288      paths.  (It's used by mod_dir, mod_negotiation, and mod_include.)
9289      [Dean Gaudet]
9290
9291   *) Add lockfile name to error message printed out when
9292      USE_FLOCK_SERIALIZED_ACCEPT is defined.
9293      [Marc Slemko]
9294
9295   *) Enhanced the chunking and error handling inside the buffer functions.
9296      [Dean Gaudet, Roy Fielding]
9297
9298   *) When merging the main server's <Directory> and <Location> sections into
9299      a vhost, put the main server's first and the vhost's second.  Otherwise
9300      the vhost can't override the main server.  [Dean Gaudet] PR#717
9301
9302   *) The <Directory> code would merge and re-merge the same section after
9303      a match was found, possibly causing problems with some modules.
9304      [Dean Gaudet]
9305
9306   *) Fixed an infinite loop in mod_imap for references above the server root.
9307      [Dean Gaudet] PR#748
9308
9309   *) mod_include cleanup showed that handle_else was being used to handle
9310      endif.  It didn't cause problems, but it was cleaned up too.
9311      [Howard Fear]
9312
9313   *) Last official synchronization of mod_rewrite with author version (because
9314      mod_rewrite is now directly developed by the author at the Apache Group):
9315      o added diff between mod_rewrite 3.0.6+ and 3.0.9
9316        minus WIN32/NT stuff, but plus copyright removement.
9317        In detail:
9318        - workaround for detecting infinite rewriting loops
9319        - fixed setting of env vars when "-" is used as subst string
9320        - fixed forced response code on redirects (PR#777)
9321        - fixed cases where r->args is ""
9322        - kludge to disable locking on pipes under braindead SunOS
9323        - fix for rewritelog in cases where remote hostname is unknown
9324        - fixed totally damaged request_rec walk-back loop
9325      o remove static from local data and add static to global ones.
9326      o replaced ugly proxy finding stuff by simple
9327        find_linked_module("mod_proxy") call.
9328      o added missing negation char on rewritelog()
9329      o fixed a few comment typos
9330      [Ralf S. Engelschall]
9331
9332   *) Anonymous_LogEmail was logging on each subrequest.
9333      [Dean Gaudet] PR#421, PR#868
9334
9335   *) "force-response-1.0" now only applies to requests which are HTTP/1.0 to
9336      begin with.  "nokeepalive" now works for HTTP/1.1 clients.  Added
9337      "downgrade-1.0" which causes Apache to pretend it received a 1.0.
9338      Additionally mod_browser now triggers during translate_name to workaround
9339      a deficiency in the header_parse phase.
9340      [Dean Gaudet] PR#875
9341
9342   *) get_client_block() returns wrong length if policy is 
9343      REQUEST_CHUNKED_DECHUNK.
9344      [Kenichi Hori <ken@d2.bs1.fc.nec.co.jp>] PR#815
9345
9346   *) Properly treat <files> container like other containers in mod_info.
9347      [Marc Slemko] PR#848
9348
9349   *) The proxy didn't treat the "Host:" keyword of the host header as case-
9350      insensitive.  The proxy would corrupt the first line of a response from
9351      an HTTP/0.9 server.  [Kenichi Hori <ken@d2.bs1.fc.nec.co.jp>] PR#813,814
9352
9353   *) mod_include would log some bogus values occasionally.
9354      [Skip Montanaro <skip@calendar.com>, Marc Slemko] PR#797
9355
9356   *) PORT: The slack fd changes in 1.2.1 introduced a problem with SIGHUP
9357      under Solaris 2.x (up through 2.5.1).  It has been fixed.
9358      [Dean Gaudet] PR#832
9359
9360   *) API: In HTTP/1.1, whether or not a request message contains a body
9361      is independent of the request method and based solely on the presence
9362      of a Content-Length or Transfer-Encoding.  Therefore, our default
9363      handlers need to be prepared to read a body even if they don't know
9364      what to do with it; otherwise, the body would be mistaken for the
9365      next request on a persistent connection.  discard_request_body()
9366      has been added to take care of that.  [Roy Fielding] PR#378
9367
9368   *) API: Symbol APACHE_RELEASE provides a numeric form of the Apache
9369      release version number, such that it always increases along the
9370      same lines as our source code branching.  [Roy Fielding]
9371
9372   *) Minor oversight on multiple variants fixed.  [Paul Sutton] PR#94
9373
9374 Changes with Apache 1.2.1
9375
9376   *) SECURITY: Don't serve file system objects unless they are plain files,
9377      symlinks, or directories.  This prevents local users from using pipes
9378      or named sockets to invoke programs for an extremely crude form of
9379      CGI.  [Dean Gaudet]
9380
9381   *) SECURITY: HeaderName and ReadmeName were settable in .htaccess and
9382      could contain "../" allowing a local user to "publish" any file on
9383      the system.  No slashes are allowed now.  [Dean Gaudet]
9384
9385   *) SECURITY: It was possible to violate the symlink Options using mod_dir
9386      (headers, readmes, titles), mod_negotiation (type maps), or
9387      mod_cern_meta (meta files).  [Dean Gaudet]
9388
9389   *) SECURITY: Apache will refuse to run as "User root" unless
9390      BIG_SECURITY_HOLE is defined at compile time.  [Dean Gaudet]
9391
9392   *) CONFIG: If a symlink pointed to a directory then it would be disallowed
9393      if it contained a .htaccess disallowing symlinks.  This is contrary
9394      to the rule that symlink permissions are tested with the symlink
9395      options of the parent directory.  [Dean Gaudet] PR#353
9396
9397   *) CONFIG: The LockFile directive can be used to place the serializing
9398      lockfile in any location.  It previously defaulted to /usr/tmp/htlock.
9399      [Somehow it took four of us: Randy Terbush, Jim Jagielski, Dean Gaudet,
9400      Marc Slemko]
9401
9402   *) Request processing now retains state of whether or not the request
9403      body has been read, so that internal redirects and subrequests will
9404      not try to read it twice (and block). [Roy Fielding]
9405
9406   *) Add a placeholder in modules/Makefile to avoid errors with certain
9407      makes. [Marc Slemko]
9408
9409   *) QUERY_STRING was unescaped in mod_include, it shouldn't be.
9410      [Dean Gaudet] PR#644
9411
9412   *) mod_include was not properly changing the current directory.
9413      [Marc Slemko] PR#742
9414
9415   *) Attempt to work around problems with third party libraries that do not
9416      handle high numbered descriptors (examples include bind, and
9417      solaris libc).  On all systems apache attempts to keep all permanent
9418      descriptors above 15 (called the low slack line).  Solaris users
9419      can also benefit from adding -DHIGH_SLACK_LINE=256 to EXTRA_CFLAGS
9420      which keeps all non-FILE * descriptors above 255.  On all systems
9421      this should make supporting large numbers of vhosts with many open
9422      log files more feasible.  If this causes trouble please report it,
9423      you can disable this workaround by adding -DNO_SLACK to EXTRA_CFLAGS.
9424      [Dean Gaudet] various PRs
9425
9426   *) Related to the last entry, network sockets are now opened before
9427      log files are opened.  The only known case where this can cause
9428      problems is under Solaris with many virtualhosts and many Listen
9429      directives.  But using -DHIGH_SLACK_LINE=256 described above will
9430      work around this problem.  [Dean Gaudet]
9431
9432   *) USE_FLOCK_SERIALIZED_ACCEPT is now default for FreeBSD, A/UX, and
9433      SunOS 4.
9434
9435   *) Improved unix error response logging.  [Marc Slemko]
9436
9437   *) Update mod_rewrite from 3.0.5 to 3.0.6.  New ruleflag
9438      QSA=query_string_append.  Also fixed a nasty bug in per-dir context:
9439      when a URL http://... was used in conjunction with a special
9440      redirect flag, e.g. R=permanent, the permanent status was lost.
9441      [Ronald Tschalaer <Ronald.Tschalaer@psi.ch>, Ralf S. Engelschall]
9442
9443   *) If an object has multiple variants that are otherwise equal Apache
9444      would prefer the last listed variant rather than the first.
9445      [Paul Sutton] PR#94
9446
9447   *) "make clean" at the top level now removes *.o.  [Dean Gaudet] PR#752
9448
9449   *) mod_status dumps core in inetd mode.  [Marc Slemko and Roy Fielding]
9450      PR#566
9451
9452   *) pregsub had an off-by-1 in its error checking code. [Alexei Kosut]
9453
9454   *) PORT: fix rlim_t problems with AIX 4.2. [Marc Slemko] PR#333
9455
9456   *) PORT: Update UnixWare support for 2.1.2.
9457      [Lawrence Rosenman <ler@lerctr.org>] PR#511
9458
9459   *) PORT: NonStop-UX [Joachim Schmitz <schmitz_joachim@tandem.com>] PR#327
9460
9461   *) PORT: Update ConvexOS support for 11.5.
9462      [David DeSimone <fox@convex.com>] PR#399
9463
9464   *) PORT: Support for DEC cc compiler under ULTRIX.
9465      ["P. Alejandro Lopez-Valencia" <alejolo@ideam.gov.co>] PR#388
9466
9467   *) PORT: Support for Maxion/OS SVR4.2 Real Time Unix. [no name given] PR#383
9468
9469   *) PORT: Workaround for AIX 3.x compiler bug in http_bprintf.c.  
9470      [Marc Slemko] PR#725
9471
9472   *) PORT: fix problem compiling http_bprintf.c with gcc under SCO
9473      [Marc Slemko] PR#695
9474
9475 Changes with Apache 1.2
9476
9477 Changes with Apache 1.2b11
9478
9479   *) Fixed open timestamp fd in proxy_cache.c [Chuck Murcko]
9480
9481   *) Added undocumented perl SSI mechanism for -DUSE_PERL_SSI and mod_perl.
9482      [Doug MacEachern, Rob Hartill]
9483
9484   *) Proxy needs to use hard_timeout instead of soft_timeout when it is
9485      reading from one buffer and writing to another, at least until it has
9486      a custom timeout handler.  [Roy Fielding and Petr Lampa]
9487
9488   *) Fixed problem on IRIX with servers hanging in IdentityCheck,
9489      apparently due to a mismatch between sigaction and setjmp.
9490      [Roy Fielding] PR#502
9491
9492   *) Log correct status code if we timeout before receiving a request (408)
9493      or if we received a request-line that was too long to process (414).
9494      [Ed Korthof and Roy Fielding] PR#601
9495
9496   *) Virtual hosts with the same ServerName, but on different ports, were
9497      not being selected properly.  [Ed Korthof]
9498
9499   *) Added code to return the requested IP address from proxy_host2addr()
9500      if gethostbyaddr() fails due to reverse DNS lookup problems. Original
9501      change submitted by Jozsef Hollosi <hollosi@sbcm.com>.
9502      [Chuck Murcko] PR#614
9503
9504   *) If multiple requests on a single connection are used to retrieve
9505      data from different virtual hosts, the virtual host list would be
9506      scanned starting with the most recently used VH instead of the first,
9507      causing most virtual hosts to be ignored.
9508      [Paul Sutton and Martin Mares] PR#610
9509
9510   *) The OS/2 handling of process group was broken by a porting patch for
9511      MPE, so restored prior code for OS/2.  [Roy Fielding and Garey Smiley]
9512
9513   *) Inherit virtual server port from main server if none (or "*") is
9514      given for VirtualHost.  [Dean Gaudet] PR#576
9515
9516   *) If the lookup for a DirectoryIndex name with content negotiation
9517      has found matching variants, but none are acceptable, return the
9518      negotiation result if there are no more DirectoryIndex names to lookup.
9519      [Petr Lampa and Roy Fielding]
9520
9521   *) If a soft_timeout occurs after keepalive is set, then the main child
9522      loop would try to read another request even though the connection
9523      has been aborted.  [Roy Fielding]
9524
9525   *) Configure changes: Allow for whitespace at the start of a
9526      Module declaration. Also, be more understanding about the
9527      CC=/OPTIM= format in Configuration. Finally, fix compiler
9528      flags if using HP-UX's cc compiler. [Jim Jagielski]
9529
9530   *) Subrequests and internal redirects now inherit the_request from the
9531      original request-line. [Roy Fielding]
9532
9533   *) Test for error conditions before creating output header fields, since
9534      we don't want the error message to include those fields.  Likewise,
9535      reset the content_language(s) and content_encoding of the response
9536      before generating or redirecting to an error message, since the new
9537      message will have its own Content-* definitions. [Dean Gaudet]
9538
9539   *) Restored the semantics of headers_out (headers sent only with 200..299
9540      and 304 responses) and err_headers_out (headers sent with all responses).
9541      Avoid the overhead of copying tables if err_headers_out is empty
9542      (the usual case).  [Roy Fielding]
9543
9544   *) Fixed a couple places where a check for the default Content-Type was
9545      not properly checking both the value configured by the DefaultType
9546      directive and the DEFAULT_TYPE symbol in httpd.h.  Changed the value
9547      of DEFAULT_TYPE to match the documented default (text/plain).
9548      [Dean Gaudet] PR#506
9549
9550   *) Escape the HTML-sensitive characters in the Request-URI that is
9551      output for each child by mod_status. [Dean Gaudet and Ken Coar] PR#501
9552
9553   *) Properly initialize the flock structures used by the mutex locking
9554      around accept() when USE_FCNTL_SERIALIZED_ACCEPT is defined.
9555      [Marc Slemko]
9556
9557   *) The method for determining PATH_INFO has been restored to the pre-1.2b
9558      (and NCSA httpd) definition wherein it was the extra path info beyond
9559      the CGI script filename.  The environment variable FILEPATH_INFO has
9560      been removed, and instead we supply the original REQUEST_URI to any
9561      script that wants to be Apache-specific and needs the real URI path.
9562      This solves a problem with existing scripts that use extra path info
9563      in the ScriptAlias directive to pass options to the CGI script.
9564      [Roy Fielding]
9565
9566   *) The _default_ change in 1.2b10 will change the behaviour on configs
9567      that use multiple Listen statements for listening on multiple ports.
9568      But that change is necessary to make _default_ consistent with other
9569      forms of <VirtualHost>.  It requires such configs to be modified
9570      to use <VirtualHost _default_:*>.  The documentation has been
9571      updated.  [Dean Gaudet] PR#530
9572
9573   *) If an ErrorDocument CGI script is used to respond to an error
9574      generated by another CGI script which has already read the message
9575      body of the request, the server would block trying to read the
9576      message body again.  [Rob Hartill]
9577
9578   *) signal() replacement conflicted with a define on QNX (and potentially
9579      other platforms). Fixed. [Ben Laurie] PR#512
9580
9581 Changes with Apache 1.2b10
9582
9583   *) Allow HTTPD_ROOT, SERVER_CONFIG_FILE, DEFAULT_PATH, and SHELL_PATH
9584      to be configured via -D in Configuration.  [Dean Gaudet] PR#449
9585
9586   *) <VirtualHost _default_:portnum> didn't work properly.  [Dean Gaudet]
9587
9588   *) Added prototype for mktemp() for SUNOS4 [Marc Slemko]
9589
9590   *) In mod_proxy.c, check return values for proxy_host2addr() when reading
9591      config, in case the hostent struct returned is trash.
9592      [Chuck Murcko] PR #491
9593
9594   *) Fixed the fix in 1.2b9 for parsing URL query info into args for CGI
9595      scripts.  [Dean Gaudet, Roy Fielding, Marc Slemko]
9596
9597 Changes with Apache 1.2b9  [never announced]
9598
9599   *) Reset the MODULE_MAGIC_NUMBER to account for the unsigned port
9600      changes and in anticipation of 1.2 final release.  [Roy Fielding]
9601
9602   *) Fix problem with scripts not receiving a SIGPIPE when client drops
9603      the connection (e.g., when user presses Stop).  Apache will now stop
9604      trying to send a message body immediately after an error from write.
9605      [Roy Fielding and Nathan Kurz] PR#335
9606
9607   *) Rearrange Configuration.tmpl so that mod_rewrite has higher priority
9608      than mod_alias, and mod_alias has higher priority than mod_proxy;
9609      rearranged other modules to enhance understanding of their purpose
9610      and relative order (and maybe even reduce some overhead).
9611      [Roy Fielding and Sameer Parekh]
9612
9613   *) Fix graceful restart.  Eliminate many signal-related race
9614      conditions in both forms of restart, and in SIGTERM.  See
9615      htdocs/manual/stopping.html for details on stopping and
9616      restarting the parent.  [Dean Gaudet]
9617
9618   *) Fix memory leaks in mod_rewrite, mod_browser, mod_include.  Tune
9619      memory allocator to avoid a behaviour that required extra blocks to
9620      be allocated.  [Dean Gaudet]
9621
9622   *) Allow suexec to access files relative to current directory but not
9623      above.  (Excluding leading / or any .. directory.)  [Ken Coar]
9624      PR#269, 319, 395
9625
9626   *) Fix suexec segfault when group doesn't exist. [Gregory Neil Shapiro]
9627      PR#367, 368, 354, 453
9628
9629   *) Fix the above fix: if suexec is enabled, avoid destroying r->url
9630      while obtaining the /~user and save the username in a separate data
9631      area so that it won't be overwritten by the call to getgrgid(), and
9632      fix some misuse of the pool string allocation functions.  Also fixes
9633      a general problem with parsing URL query info into args for CGI scripts.
9634      [Roy Fielding] PR#339, 367, 354, 453
9635
9636   *) Fix IRIX warning about bzero undefined. [Marc Slemko]
9637
9638   *) Fix problem with <Directory proxy:...>. [Martin Kraemer] PR#271
9639
9640   *) Corrected spelling of "authoritative".  AuthDBAuthoratative became
9641      AuthDBAuthoritative. [Marc Slemko] PR#420
9642
9643   *) MaxClients should be at least 1. [Lars Eilebrecht] PR#375
9644
9645   *) The default handler now logs invalid methods or URIs (i.e. PUT on an
9646      object that can't be PUT, or FOOBAR for some method FOOBAR that
9647      apache doesn't know about at all).  Log 404s that occur in mod_include.
9648      [Paul Sutton, John Van Essen]
9649
9650   *) If a soft timeout (or lingerout) occurs while trying to flush a
9651      buffer or write inside buff.c or fread'ing from a CGI's output,
9652      then the timeout would be ignored. [Roy Fielding] PR#373
9653
9654   *) Work around a bug in Netscape Navigator versions 2.x, 3.x and 4.0b2's
9655      parsing of headers.  If the terminating empty-line CRLF occurs starting
9656      at the 256th or 257th byte of output, then Navigator will think a normal
9657      image is invalid.  We are guessing that this is because their initial
9658      read of a new request uses a 256 byte buffer. We check the bytes written
9659      so far and, if we are about to tickle the bug, we instead insert a
9660      padding header of eminent bogosity. [Roy Fielding and Dean Gaudet] PR#232
9661
9662   *) Fixed SIGSEGV problem when a DirectoryIndex file is also the source
9663      of an external redirection.  [Roy Fielding and Paul Sutton]
9664
9665   *) Configure would create a broken Makefile if the configuration file
9666      contained a commented-out Rule.  [Roy Fielding]
9667
9668   *) Promote per_dir_config and subprocess_env from the subrequest to the
9669      main request in mod_negotiation.  In particular this fixes a bug
9670      where <Files> sections wouldn't properly apply to negotiated content.
9671      [Dean Gaudet]
9672
9673   *) Fix a potential deadlock in mod_cgi script_err handling.
9674      [Ralf S. Engelschall]
9675
9676   *) rotatelogs zero-pads the logfile names to improve alphabetic sorting.
9677      [Mitchell Blank Jr]
9678
9679   *) Updated mod_rewrite to 3.0.4: Fixes HTTP redirects from within
9680      .htaccess files because the RewriteBase was not replaced correctly.
9681      Updated mod_rewrite to 3.0.5: Fixes problem with rewriting inside
9682      <Directory> sections missing a trailing /.  [Ralf S. Engelschall]
9683
9684   *) Clean up Linux settings in conf.h by detecting 2.x versus 1.x.  For
9685      1.x the settings are those of pre-1.2b8.  For 2.x we include
9686      USE_SHMGET_SCOREBOARD (scoreboard in shared memory rather than file) and
9687      HAVE_SYS_RESOURCE_H (enable the RLimit commands).
9688      [Dean Gaudet] PR#336, PR#340
9689
9690   *) Redirect did not preserve ?query_strings when present in the client's
9691      request.  [Dean Gaudet]
9692
9693   *) Configure was finding non-modules on EXTRA_LIBS. [Frank Cringle] PR#380
9694
9695   *) Use /bin/sh5 on ULTRIX.  [P. Alejandro Lopez-Valencia] PR#369
9696
9697   *) Add UnixWare compile/install instructions.  [Chuck Murcko]
9698
9699   *) Add mod_example (illustration of API techniques).  [Ken Coar]
9700
9701   *) Add macro for memmove to conf.h for SUNOS4. [Marc Slemko]
9702
9703   *) Improve handling of directories when filenames have spaces in them.
9704      [Chuck Murcko]
9705
9706   *) For hosts with multiple IP addresses, try all additional addresses if
9707      necessary to get a connect. Fail only if hostent address list is
9708      exhausted. [Chuck Murcko]
9709
9710   *) More signed/unsigned port fixes.  [Dean Gaudet]
9711
9712   *) HARD_SERVER_LIMIT can be defined in the Configuration file now.
9713      [Dean Gaudet]
9714
9715 Changes with Apache 1.2b8
9716
9717   *) suexec.c doesn't close the log file, allowing CGIs to continue writing
9718      to it.  [Marc Slemko]
9719
9720   *) The addition of <Location> and <File> directives made the
9721      sub_req_lookup_simple() function bogus, so we now handle
9722      the special cases directly.  [Dean Gaudet]
9723
9724   *) We now try to log where the server is dumping core when a fatal
9725      signal is received.  [Ken Coar]
9726
9727   *) Improved lingering_close by adding a special timeout, removing the
9728      spurious log messages, removing the nonblocking settings (they
9729      are not needed with the better timeout), and adding commentary
9730      about the NO_LINGCLOSE and USE_SO_LINGER issues.  NO_LINGCLOSE is
9731      now the default for SunOS4, UnixWare, NeXT, and IRIX.  [Roy Fielding]
9732
9733   *) Send error messages about setsockopt failures to the server error
9734      log instead of stderr.  [Roy Fielding]
9735
9736   *) Fix loopholes in proxy cache expiry vis a vis alarms. [Brian Moore]
9737
9738   *) Stopgap solution for CGI 3-second delay with server-side includes: if
9739      processing a subrequest, allocate memory from r->main->pool instead
9740      of r->pool so that we can avoid waiting for free_proc_chain to cleanup
9741      in the middle of an SSI request.  [Dean Gaudet] PR #122
9742
9743   *) Fixed status of response when POST is received for a nonexistent URL
9744      (was sending 405, now 404) and when any method is sent with a
9745      full-URI that doesn't match the server and the server is not acting
9746      as a proxy (was sending 501, now 403).  [Roy Fielding]
9747
9748   *) Host port changed to unsigned short. [Ken Coar] PR #276
9749
9750   *) Fix typo in command definition of AuthAuthoritative. [Ken Coar] PR #246
9751
9752   *) Defined USE_SHMGET_SCOREBOARD for shared memory on Linux.  [Dean Gaudet]
9753
9754   *) Report extra info from errno with many errors that cause httpd to exit.
9755      spawn_child, popenf, and pclosef now have valid errno returns in the
9756      event of an error.  Correct problems where errno was stomped on
9757      before being reported.  [Dean Gaudet]
9758
9759   *) In the proxy, if the cache filesystem was full, garbage_coll() was
9760      never called, and thus the filesystem would remain full indefinitely.
9761      We now also remove incomplete cache files left if the origin server
9762      didn't send a Content-Length header and either the client has aborted
9763      transfer or bwrite() to client has failed. [Petr Lampa]
9764
9765   *) Fixed the handling of module and script-added header fields.
9766      Improved the interface for sending header fields and reduced
9767      the duplication of code between sending okay responses and errors.
9768      We now always send both headers_out and err_headers_out, and
9769      ensure that the server-reserved fields are not being overridden,
9770      while not overriding those that are not reserved.  [Roy Fielding]
9771
9772   *) Moved transparent content negotiation fields to err_headers_out
9773      to reflect above changes.  [Petr Lampa]
9774
9775   *) Fixed the determination of whether or not we should make the
9776      connection persistent for all of the cases where some other part
9777      of the server has already indicated that we should not.  Also
9778      improved the ordering of the test so that chunked encoding will
9779      be set whenever it is desired instead of only when KeepAlive
9780      is enabled. Added persistent connection capability for most error
9781      responses (those that do not indicate a bad input stream) when
9782      accessed by an HTTP/1.1 client. [Roy Fielding]
9783
9784   *) Added missing timeouts for sending header fields, error responses,
9785      and the last chunk of chunked encoding, each of which could have
9786      resulted in a process being stuck in write forever.  Using soft_timeout
9787      requires that the sender check for an aborted connection rather than
9788      continuing after an EINTR.  Timeouts that used to be initiated before
9789      send_http_header (and never killed) are now initiated only within or
9790      around the routines that actually do the sending, and not allowed to
9791      propagate above the caller.  [Roy Fielding]
9792
9793   *) mod_auth_anon required an @ or a . in the email address, not both.
9794      [Dirk vanGulik]
9795
9796   *) per_dir_defaults weren't set correctly until directory_walk for
9797      name-based vhosts.  This fixes an obscure bug with the wrong config
9798      info being used for vhosts that share the same ip as the server.
9799      [Dean Gaudet]
9800
9801   *) Improved generation of modules/Makefile to be more generic for
9802      new module directories. [Ken Coar, Chuck Murcko, Roy Fielding]
9803
9804   *) Generate makefile dependency for Configuration based on the actual
9805      name given when running the Configure process.  [Dean Gaudet]
9806
9807   *) Fixed problem with vhost error log not being set prior to
9808      initializing virtual hosts. [Dean Gaudet]
9809
9810   *) Fixed infinite loop when a trailing slash is included after a type map
9811      file URL (extra path info). [Petr Lampa]
9812
9813   *) Fixed server status updating of per-connection counters. [Roy Fielding]
9814
9815   *) Add documentation for DNS issues (reliability and security), and try
9816      to explain the virtual host matching process.  [Dean Gaudet]
9817
9818   *) Try to continue gracefully by disabling the vhost if a DNS lookup
9819      fails while parsing the configuration file.  [Dean Gaudet]
9820
9821   *) Improved calls to setsockopt.  [Roy Fielding]
9822
9823   *) Negotiation changes: Don't output empty content-type in variant list;
9824      Output charset in variant list; Return sooner from handle_multi() if
9825      no variants found; Add handling of '*' wildcard in Accept-Charset.
9826      [Petr Lampa and Paul Sutton]
9827
9828   *) Fixed overlaying of request/sub-request notes and headers in
9829      mod_negotiation.  [Dean Gaudet]
9830
9831   *) If two variants' charset quality are equal and one is the default
9832      charset (iso-8859-1), then prefer the variant that was specifically
9833      listed in Accept-Charset instead of the default.  [Petr Lampa]
9834
9835   *) Memory allocation problem in push_array() -- it would corrupt memory
9836      when nalloc==0.  [Kai Risku <krisku@tf.hut.fi> and Roy Fielding]
9837
9838   *) invoke_handler() doesn't handle mime arguments in content-type
9839      [Petr Lampa] PR#160
9840
9841   *) Reduced IdentityCheck timeout to 30 seconds, as per RFC 1413 minimum.
9842      [Ken Coar]
9843
9844   *) Fixed problem with ErrorDocument not working for virtual hosts
9845      due to one of the performance changes in 1.2b7. [Dean Gaudet]
9846
9847   *) Log an error message if we get a request header that is too long,
9848      since it may indicate a buffer overflow attack. [Marc Slemko]
9849
9850   *) Made is_url() allow "[-.+a-zA-Z0-9]+:" as a valid scheme and
9851      not reject URLs without a double-slash, as per RFC2068 section 3.2.
9852      [Ken Coar] PR #146, #187
9853
9854   *) Added table entry placeholder for new header_parser callback
9855      in all of the distributed modules. [Ken Coar] PR #191
9856
9857   *) Allow for cgi files without the .EXE extension on them under OS/2.
9858      [Garey Smiley] PR #59
9859
9860   *) Fixed error message when resource is not found and URL contains
9861      path info. [Petr Lampa and Dean Gaudet] PR #40
9862
9863   *) Fixed user and server confusion over what should be a virtual host
9864      and what is the main server, resulting in access to something
9865      other than the name defined in the virtualhost directive (but
9866      with the same IP address) failing. [Dean Gaudet]
9867
9868   *) Updated mod_rewrite to version 3.0.2, which: fixes compile error on
9869      AIX; improves the redirection stuff to enable the users to generally
9870      redirect to http, https, gopher and ftp; added TIME variable for
9871      RewriteCond which expands to YYYYMMDDHHMMSS strings and added the
9872      special patterns >STRING, <STRING and =STRING to RewriteCond, which
9873      can be used in conjunction with %{TIME} or other variables to create
9874      time-dependent rewriting rules. [Ralf S. Engelschall]
9875
9876   *) bpushfd() no longer notes cleanups for the file descriptors it is handed.
9877      Module authors may need to adjust their code for proper cleanup to take
9878      place (that is, call note_cleanups_for_fd()). This change fixes problems
9879      with file descriptors being erroneously closed when the proxy module was
9880      in use. [Ben Laurie]
9881
9882   *) Fix bug in suexec reintroduced by changes in 1.2b7 which allows
9883      initgroups() to hose the group information needed for later
9884      comparisons. [Randy Terbush]
9885
9886   *) Remove unnecessary call to va_end() in create_argv() which
9887      caused a SEGV on some systems.
9888
9889   *) Use proper MAXHOSTNAMELEN symbol for limiting length of server name.
9890      [Dean Gaudet]
9891
9892   *) Clear memory allocated for listeners. [Randy Terbush]
9893
9894   *) Improved handling of IP address as a virtualhost address and
9895      introduced "_default_" as a synonym for the default vhost config.
9896      [Dean Gaudet] PR #212
9897
9898 Changes with Apache 1.2b7
9899
9900   *) Port to  UXP/DS(V20) [Toshiaki Nomura <nom@yk.fujitsu.co.jp>]
9901
9902   *) unset Content-Length if chunked (RFC-2068) [Petr Lampa]
9903
9904   *) mod_negotiation fixes [Petr Lampa] PR#157, PR#158, PR#159
9905      - replace protocol response numbers with symbols
9906      - save variant-list into main request notes
9907      - free allocated memory from subrequests
9908      - merge notes, headers_out and err_headers_out
9909
9910   *) changed status check mask in proxy_http.c from "HTTP/#.# ### *" to
9911      "HTTP/#.# ###*" to be more lenient about what we accept.
9912      [Chuck Murcko]
9913
9914   *) more proxy FTP bug fixes:
9915      - Changed send_dir() to remove user/passwd from displayed URL.
9916      - Changed login error messages to be more descriptive.
9917      - remove setting of SO_DEBUG socket option
9918      - Make ftp_getrc() more lenient about multiline responses,
9919        specifically, 230 responses which don't have continuation 230-
9920        on each line). These seem to be all NT FTP servers, and while
9921        perhaps questionable, they appear to be legal by RFC 959.
9922      - Add missing kill_timeout() after transfer to user completes.
9923      [Chuck Murcko]
9924
9925   *) Fixed problem where a busy server could hang when restarting
9926      after being sent a SIGHUP due to child processes not exiting.
9927      [Marc Slemko]
9928
9929   *) Modify mod_include escaping so a '\' only signifies an escaped
9930      character if the next character is one that needs
9931      escaping.  [Ben Laurie]
9932
9933   *) Eliminated possible infinite loop in mod_imap when relative URLs are
9934      used with a 'base' directive that does not have a '/' in it.
9935      [Marc Slemko, reported by Onno Witvliet <onno@tc.hsa.nl>]
9936
9937   *) Reduced the default timeout from 1200 seconds to 300, and the
9938      one in the sample configfile from 400 to 300.  [Marc Slemko]
9939
9940   *) Stop vbprintf from crashing if given a NULL string pointer;
9941      print (null) instead.  [Ken Coar]
9942
9943   *) Don't disable Nagle algorithm if system doesn't have TCP_NODELAY.
9944      [Marc Slemko and Roy Fielding]
9945
9946   *) Fixed problem with mod_cgi-generated internal redirects trying to
9947      read the request message-body twice. [Archie Cobbs and Roy Fielding]
9948
9949   *) Reduced timeout on lingering close, removed possibility of a blocked
9950      read causing the child to hang, and stopped logging of errors if
9951      the socket is not connected (reset by client).  [Roy Fielding]
9952
9953   *) Rearranged main child loop to remove duplication of code in
9954      select/accept and keep-alive requests, fixed several bugs regarding
9955      checking scoreboard_image for exit indication and failure to
9956      account for all success conditions and trap all error conditions,
9957      prevented multiple flushes before closing the socket; close the entire
9958      socket buffer instead of just one descriptor, prevent logging of
9959      EPROTO and ECONNABORTED on platforms where supported, and generally
9960      improved readability.  [Roy Fielding]
9961
9962   *) Extensive performance improvements. Cleaned up inefficient use of
9963      auto initializers, multiple is_matchexp calls on a static string,
9964      and excessive merging of response_code_strings. [Dean Gaudet]
9965
9966   *) Added double-buffering to mod_include to improve performance on
9967      server-side includes. [Marc Slemko]
9968
9969   *) Several fixes for suexec wrapper. [Randy Terbush]
9970      - Make wrapper work for files on NFS filesystem.
9971      - Fix portability problem of MAXPATHLEN.
9972      - Fix array overrun problem in clean_env().
9973      - Fix allocation of PATH environment variable
9974
9975   *) Removed extraneous blank line is description of mod_status chars.
9976      [Kurt Kohler]
9977
9978   *) Logging of errors from the call_exec routine simply went nowhere,
9979      since the logfile fd has been closed, so now we send them to stderr.
9980      [Harald T. Alvestrand]
9981
9982   *) Fixed core dump when DocumentRoot is a CGI.
9983      [Ben Laurie, reported by geddis@tesserae.com]
9984
9985   *) Fixed potential file descriptor leak in mod_asis; updated it and
9986      http_core to use pfopen/pfclose instead of fopen/fclose.
9987      [Randy Terbush and Roy Fielding]
9988
9989   *) Fixed handling of unsigned ints in ap_snprintf() on some chips such
9990      as the DEC Alpha which is 64-bit but uses 32-bit ints.
9991      [Dean Gaudet and Ken Coar]
9992
9993   *) Return a 302 response code to the client when sending a redirect
9994      due to a missing trailing '/' on a directory instead of a 301; now
9995      it is cacheable. [Markus Gyger]
9996
9997   *) Fix condition where, if a bad directive occurs in .htaccess, and
9998      sub_request() goes first to this directory, then log_reason() will
9999      SIGSEGV because it doesn't have initialized r->per_dir_config.
10000      [PR#162 from Petr Lampa, fix by Marc Slemko and Dean Gaudet]
10001
10002   *) Fix handling of lang_index in is_variant_better().  This was
10003      causing problems which resulted in the server sending the
10004      wrong language document in some cases. [Petr Lampa]
10005
10006   *) Remove free() from clean_env() in suexec wrapper. This was nuking
10007      the clean environment on some systems.
10008
10009   *) Tweak byteserving code (e.g. serving PDF files) to work around
10010      bugs in Netscape Navigator and Microsoft Internet Explorer.
10011      Emit Content-Length header when sending multipart/byteranges.
10012      [Alexei Kosut]
10013
10014   *) Port to HI-UX/WE2. [Nick Maclaren]
10015
10016   *) Port to HP MPE operating system for HP 3000 machines
10017      [Mark Bixby <markb@cccd.edu>]
10018
10019   *) Fixed bug which caused a segmentation fault if only one argument
10020      given to RLimit* directives. [Ed Korthof]
10021
10022   *) Continue persistent connection after 204 or 304 response. [Dean Gaudet]
10023
10024   *) Improved buffered output to the client by delaying the flush decision
10025      until the BUFF code is actually about to read the next request.
10026      This fixes a problem introduced in 1.2b5 with clients that send
10027      an extra CRLF after a POST request. Also improved chunked output
10028      performance by combining writes using writev() and removing as
10029      many bflush() calls as possible.  NOTE: Platforms without writev()
10030      must add -DNO_WRITEV to the compiler CFLAGS, either in Configuration
10031      or Configure, unless we have already done so.  [Dean Gaudet]
10032
10033   *) Fixed mod_rewrite bug which truncated the rewritten URL [Marc Slemko]
10034
10035   *) Fixed mod_info output corruption bug introduced by buffer overflow
10036      fixes. [Dean Gaudet]
10037
10038   *) Fixed http_protocol to correctly output all HTTP/1.1 headers, including
10039      for the special case of a 304 response.  [Paul Sutton]
10040
10041   *) Improved handling of TRACE method by bypassing normal method handling
10042      and header parsing routines; fixed Allow response to always allow TRACE.
10043      [Dean Gaudet]
10044
10045   *) Fixed compiler warnings in the regex library. [Dean Gaudet]
10046
10047   *) Cleaned-up some of the generated HTML. [Ken Coar]
10048
10049 Changes with Apache 1.2b6
10050
10051   *) Allow whitespace in imagemap mapfile coordinates. [Marc Slemko]
10052
10053   *) Fix typo introduced in fix for potential infinite loop around
10054      accept() in child_main(). This change caused the rev to 1.2b6.
10055      1.2b5 was never a public beta.
10056
10057 Changes with Apache 1.2b5
10058
10059   *) Change KeepAlive semantics (On|Off instead of a number), add
10060      MaxKeepAliveRequests directive. [Alexei Kosut]
10061
10062   *) Various NeXT compilation patches, as well as a change in
10063      regex/regcomp.c since that file also used a NEXT define.
10064      [Andreas Koenig]
10065
10066   *) Allow * to terminate the end of a directory match in mod_dir.
10067      Allows /~* to match for both /~joe and /~joe/. [David Bronder]
10068
10069   *) Don't call can_exec() if suexec_enabled. Calling this requires
10070      scripts executed by the suexec wrapper to be world executable, which
10071      defeats one of the advantages of running the wrapper. [Randy Terbush]
10072
10073   *) Portability Fix: IRIX complained with 'make clean' about *pure* (removed)
10074      [Jim Jagielski]
10075
10076   *) Migration from sprintf() to snprintf() to avoid buffer
10077      overflows. [Marc Slemko]
10078
10079   *) Provide portable snprintf() implementation (ap_snprintf)
10080      as well as *cvt family. [Jim Jagielski]
10081
10082   *) Portability Fix: NeXT lacks unistd.h so we wrap it's inclusion
10083      [Jim Jagielski]
10084
10085   *) Remove mod_fastcgi.c from the distribution. This module appears
10086      to be maintained more through the Open Market channels and should
10087      continue to be easily available at http://www.fastcgi.com/
10088
10089   *) Fixed bug in modules/Makefile that wouldn't allow building in more
10090      than one subdirectory (or cleaning, either). [Jeremy Laidman]
10091
10092   *) mod_info assumed that the config files were relative to ServerRoot.
10093      [Ken the Rodent]
10094
10095   *) CGI scripts called as an error document resulting from failed
10096      CGI execution would hang waiting for POST'ed data. [Rob Hartill]
10097
10098   *) Log reason when mod_dir returns access HTTP_FORBIDDEN
10099      [Ken the Rodent]
10100
10101   *) Properly check errno to prevent display of a directory index
10102      when server receives a long enough URL to confuse stat().
10103      [Marc Slemko]
10104
10105   *) Several security enhancements to suexec wrapper. It is _highly_
10106      recommended that previously installed versions of the wrapper
10107      be replaced with this version.  [Randy Terbush, Jason Dour]
10108
10109         - ~user execution now properly restricted to ~user's home
10110           directory and below.
10111         - execution restricted to UID/GID > 100
10112         - restrict passed environment to known variables
10113         - call setgid() before initgroups() (portability fix)
10114         - remove use of setenv() (portability fix)
10115
10116   *) Add HTTP/1.0 response forcing. [Ben Laurie]
10117
10118   *) Add access control via environment variables. [Ben Laurie]
10119
10120   *) Add rflush() function. [Alexei Kosut]
10121
10122   *) remove duplicate pcalloc() call in new_connection().
10123
10124   *) Fix incorrect comparison which could allow number of children =
10125      MaxClients + 1 if less than HARD_SERVER_LIMIT. Also fix potential
10126      problem if StartServers > HARD_SERVER_LIMIT. [Ed Korthof]
10127
10128   *) Updated support for OSes (MachTen, ULTRIX, Paragon, ISC, OpenBSD
10129      AIX PS/2, CONVEXOS. [Jim Jagielski]
10130
10131   *) Replace instances of inet_ntoa() with inet_addr() for ProxyBlock.
10132      It's more portable. [Martin Kraemer]
10133
10134   *) Replace references to make in Makefile.tmpl with $(MAKE).
10135      [Chuck Murcko]
10136
10137   *) Add ProxyBlock directive w/IP address caching. Add IP address
10138      caching to NoCache directive as well. ProxyBlock works with all
10139      handlers; NoCache now also works with FTP for anonymous logins.
10140      Still more code cleanup. [Chuck Murcko]
10141
10142   *) Add "header parse" API hook [Ben Laurie]
10143
10144   *) Fix byte ordering problems for REMOTE_PORT [Chuck Murcko]
10145
10146   *) suEXEC wrapper was freeing memory that had not been malloc'ed.
10147
10148   *) Correctly allow access and auth directives in <Files> sections in
10149      server config files. [Alexei Kosut]
10150
10151   *) Fix bug with ServerPath that could cause certain files to be not
10152      found by the server. [Alexei Kosut]
10153
10154   *) Fix handling of ErrorDocument so that it doesn't remove a trailing
10155      double-quote from text and so that it properly checks for unsupported
10156      status codes using the new index_of_response interface. [Roy Fielding]
10157
10158   *) Multiple fixes to the lingering_close code in order to avoid being
10159      interrupted by a stray timeout, to avoid lingering on a connection
10160      that has already been aborted or never really existed, to ensure that
10161      we stop lingering as soon as any error condition is received, and to
10162      prevent being stuck indefinitely if the read blocks.  Also improves
10163      reporting of error conditions.  [Marc Slemko and Roy Fielding]
10164
10165   *) Fixed initialization of parameter structure for sigaction.
10166      [mgyger@itr.ch, Adrian Filipi-Martin]
10167
10168   *) Fixed reinitializing the parameters before each call to accept and
10169      select, and removed potential for infinite loop in accept.
10170      [Roy Fielding, after useful PR from adrian@virginia.edu]
10171
10172   *) Fixed condition where, if a child fails to fork, the scoreboard would
10173      continue to say SERVER_STARTING forever. Eventually, the main process
10174      would refuse to start new children because count_idle_servers() will
10175      count those SERVER_STARTING entries and will always report that there
10176      are enough idle servers. [Phillip Vandry]
10177
10178   *) Fixed bug in bcwrite regarding failure to account for partial writes.
10179      Avoided calling bflush() when the client is pipelining requests.
10180      Removed unnecessary flushes from http_protocol. [Dean Gaudet]
10181
10182   *) Added description of "." mode in server-status [Jim Jagielski]
10183
10184 Changes with Apache 1.2b4
10185
10186   *) Fix possible race condition in accept_mutex_init() that
10187      could leave a small security hole open allowing files to be
10188      overwritten in cases where the server UID has write permissions.
10189      [Marc Slemko]
10190
10191   *) Fix awk compatibilty problem in Configure. [Jim Jagielski]
10192
10193   *) Fix portablity problem in util_script where ARG_MAX may not be
10194      defined for some systems.
10195
10196   *) Add changes to allow compilation on Machten 4.0.3 for PowerPC.
10197      [Randal Schwartz]
10198
10199   *) OS/2 changes to support an MMAP style scoreboard file and UNIX
10200      style magic #! token for better script portability. [Garey Smiley]
10201
10202   *) Fix bug in suexec wrapper introduced in b3 that would cause failed
10203      execution for ~userdir CGI. [Jason Dour]
10204
10205   *) Fix initgroups() business in suexec wrapper. [Jason Dour]
10206
10207   *) Fix month off by one in suexec wrapper logging.
10208
10209 Changes with Apache 1.2b3:
10210
10211   *) Fix error in mod_cgi which could cause resources not to be properly
10212      freed, or worse. [Dean Gaudet]
10213
10214   *) Fix find_string() NULL pointer dereference. [Howard Fear]
10215
10216   *) Add set_flag_slot() at the request of Dirk and others.
10217      [Dirk vanGulik]
10218
10219   *) Sync mod_rewrite with patch level 10. [Ralf Engelschall]
10220
10221   *) Add changes to improve the error message given for invalid
10222      ServerName parameters. [Dirk vanGulik]
10223
10224   *) Add "Authoritative" directive for Auth modules that don't
10225      currently have it. This gives admin control to assign authoritative
10226      control to an authentication scheme and allow "fall through" for
10227      those authentication modules that aren't "Authoritative" thereby
10228      allowing multiple authentication mechanisms to be chained.
10229      [Dirk vanGulik]
10230
10231   *) Remove requirement for ResourceConfig/AccessConfig if not using
10232      the three config file layout. [Randy Terbush]
10233
10234   *) Add PASV mode to mod_proxy FTP handler. [Chuck Murcko]
10235
10236   *) Changes to suexec wrapper to fix the following problems:
10237      1.  symlinked homedirs will kill ~userdirs.
10238      2.  initgroups() on Linux 2.0.x clobbers gr->grid.
10239      3.  CGI command lines paramters problems
10240      4.  pw-pwdir for "docroot check" still the httpd user's pw record.
10241     [Randy Terbush, Jason Dour]
10242
10243   *) Change create_argv() to accept variable arguments. This fixes
10244      a problem where arguments were not getting passed to the CGI via
10245      argv[] when the suexec wrapper was active. [Randy Terbush, Jake Buchholz]
10246
10247   *) Collapse multiple slashes in path URLs to properly apply
10248      handlers defined by <Location>. [Alexei Kosut]
10249
10250   *) Define a sane set of DEFAULT_USER and DEFAULT_GROUP values for AIX.
10251
10252   *) Improve the accuracy of request duration timings by setting
10253      r->request_time in read_request_line() instead of read_request().
10254      [Dean Gaudet]
10255
10256   *) Reset timeout while reading via get_client_block() in mod_cgi.c
10257      Fixes problem with timed out transfers of large files. [Rasmus Lerdorf]
10258
10259   *) Add the ability to pass different Makefile.tmpl files to Configure
10260      using the -make flag. [Rob Hartill]
10261
10262   *) Fix coredump triggered when sending a SIGHUP to the server caused
10263      by an assertion failure, in turn caused by an uninitialised field in a
10264      listen_rec.
10265      [Ben Laurie]
10266
10267   *) Add FILEPATH_INFO variable to CGI environment, which is equal to
10268      PATH_INFO from previous versions of Apache (in certain situations,
10269      Apache 1.2's PATH_INFO will be different than 1.1's). [Alexei Kosut]
10270      [later removed in 1.2b11]
10271
10272   *) Add rwrite() function to API to allow for sending strings of
10273      arbitrary length. [Doug MacEachern]
10274
10275   *) Remove rlim_t typedef for NetBSD. Do older versions need this?
10276
10277   *) Defined rlim_t and WANTHSREGEX=yes and fixed waitpid() substitute for
10278      NeXT. [Jim Jagielski]
10279
10280   *) Removed recent modification to promote the status code on internal
10281      redirects, since the correct fix was to change the default log format
10282      in mod_log_config so that it outputs the original status. [Rob Hartill]
10283
10284 Changes with Apache 1.2b2:
10285
10286   *) Update set_signals() to use sigaction() for setting handlers.
10287      This appears to fix a re-entrant problem in the seg_fault()
10288      bus_error() handlers. [Randy Terbush]
10289
10290   *) Changes to allow mod_status compile for OS/2 [Garey Smiley]
10291
10292   *) changes for DEC AXP running OSF/1 v3.0. [Marc Evans]
10293
10294   *) proxy_http.c bugfixes:  [Chuck Murcko]
10295         1) fixes possible NULL pointer reference w/NoCache
10296         2) fixes NoCache behavior when using ProxyRemote (ProxyRemote
10297            host would cache nothing if it was in the local domain,
10298            and the local domain was in the NoCache list)
10299         3) Adds Host: header when not available
10300         4) Some code cleanup and clarification
10301
10302   *) mod_include.c bugfixes:
10303         1) Fixed an ommission that caused include variables to not
10304            be parsed in config errmsg directives [Howard Fear]
10305         2) Remove HAVE_POSIX_REGEX cruft [Alexei Kosut]
10306         3) Patch to fix compiler warnings [perrot@lal.in2p3.fr]
10307         4) Allow backslash-escaping to all quoted text
10308            [Ben Yoshino <ben@wiliki.eng.hawaii.edu>]
10309         5) Pass variable to command line if not set in XSSI's env
10310            [Howard Fear]
10311
10312   *) Fix infinite loop when processing Content-language lines in
10313      type-map files. [Alexei Kosut]
10314
10315   *) Closed file-globbing hole in test-cgi script. [Brian Behlendorf]
10316
10317   *) Fixed problem in set_[user|group] that prevented CGI execution
10318      for non-virtualhosts when suEXEC was enabled. [Randy Terbush]
10319
10320   *) Added PORTING information file.  [Jim Jagielski]
10321
10322   *) Added definitions for S_IWGRP and S_IWOTH to conf.h [Ben Laurie]
10323
10324   *) Changed default group to "nogroup" instead of "nobody" [Randy Terbush]
10325
10326   *) Fixed define typo of FCNTL_SERIALIZED_ACCEPT where
10327      USE_FCNTL_SERIALIZED_ACCEPT was intended.
10328
10329   *) Fixed additional uses of 0xffffffff where INADDR_NONE was intended,
10330      which caused problems of systems where socket s_addr is >32bits.
10331
10332   *) Added comment to explain (r->chunked = 1) side-effect in
10333      http_protocol.c [Roy Fielding]
10334
10335   *) Replaced use of index() in mod_expires.c with more appropriate
10336      and portable isdigit() test.  [Ben Laurie]
10337
10338   *) Updated Configure for ...
10339         OS/2          (DEF_WANTHSREGEX=yes, other code changes)
10340         *-dg-dgux*    (bad pattern match)
10341         QNX           (DEF_WANTHSREGEX=yes)
10342         *-sunos4*     (DEF_WANTHSREGEX=yes, -DUSEBCOPY)
10343         *-ultrix      (new)
10344         *-unixware211 (new)
10345      and added some user diagnostic info.  [Ben Laurie]
10346
10347   *) In helpers/CutRule, replaced "cut" invocation with "awk" invocation
10348      for better portability. [Jim Jagielski]
10349
10350   *) Updated helpers/GuessOS for ...
10351         SCO 5            (recognize minor releases)
10352         SCO UnixWare     (braindamaged uname, whatever-whatever-unixware2)
10353         SCO UnixWare 2.1.1      (requires a separate set of #defines in conf.h)
10354         IRIX64           (-sgi-irix64)
10355         ULTRIX           (-unknown-ultrix)
10356         SINIX            (-whatever-sysv4)
10357         NCR Unix         (-ncr-sysv4)
10358      and fixed something in helpers/PrintPath  [Ben Laurie]
10359
10360 Changes with Apache 1.2b1
10361
10362   *) Not listed. See <http://www.apache.org/docs/new_features_1_2.html>
10363
10364 Changes with Apache 1.1.1
10365
10366   *) Fixed bug where Cookie module would make two entries in the
10367      logfile for each access [Mark Cox]
10368
10369   *) Fixed bug where Redirect in .htaccess files would cause memory
10370      leak. [Nathan Neulinger]
10371
10372   *) MultiViews now works correctly with AddHandler [Alexei Kosut]
10373
10374   *) Problems with mod_auth_msql fixed [Dirk vanGulik]
10375
10376   *) Fix misspelling of "Anonymous_Authorative" directive in mod_auth_anon.
10377
10378 Changes with Apache 1.1.0
10379
10380   *) Bring NeXT support up to date. [Takaaki Matsumoto]
10381
10382   *) Bring QNX support up to date. [Ben Laurie]
10383
10384   *) Make virtual hosts default to main server keepalive parameters.
10385      [Alexei Kosut, Ben Laurie]
10386
10387   *) Allow ScanHTMLTitles to work with lowercase <title> tags. [Alexei Kosut]
10388
10389   *) Fix missing address family for connect, also remove unreachable statement
10390      in mod_proxy. [Ben Laurie]
10391
10392   *) mod_env now turned on by default in Configuration.tmpl.
10393
10394   *) Bugs which were fixed:
10395         a) yet more mod_proxy bugs [Ben Laurie]
10396         b) CGI works again with inetd [Alexei Kosut]
10397         c) Leading colons were stripped from passwords [osm@interguide.com]
10398         d) Another fix to multi-method Limit problem [jk@tools.de]
10399
10400 Changes with Apache 1.1b4
10401
10402   *) r->bytes_sent variable restored. [Robert Thau]
10403
10404   *) Previously broken multi-method <Limit> parsing fixed. [Robert Thau]
10405
10406   *) More possibly unsecure programs removed from the support directory.
10407
10408   *) More mod_auth_msql authentication improvements.
10409
10410   *) VirtualHosts based on Host: headers no longer conflict with the
10411      Listen directive.
10412
10413   *) OS/2 compatibility enhancements. [Gary Smiley]
10414
10415   *) POST now allowed to directory index CGI scripts.
10416
10417   *) Actions now work with files of the default type.
10418
10419   *) Bugs which were fixed:
10420         a) more mod_proxy bugs
10421         b) early termination of inetd requests
10422         c) compile warnings on several systems
10423         d) problems when scripts stop reading output early
10424
10425 Changes with Apache 1.1b3
10426
10427   *) Much of cgi-bin and all of cgi-src has been removed, due to
10428      various security holes found and that we could no longer support
10429      them.
10430
10431   *) The "Set-Cookie" header is now special-cased to not merge multiple
10432      instances, since certain popular browsers can not handle multiple
10433      Set-Cookie instructions in a single header. [Paul Sutton]
10434
10435   *) rprintf() added to buffer code, occurrences of sprintf removed.
10436      [Ben Laurie]
10437
10438   *) CONNECT method for proxy module, which means tunneling SSL should work.
10439      (No crypto needed)  Also a NoCache config directive.
10440
10441   *) Several API additions: pstrndup(), table_unset() and get_token()
10442      functions now available to modules.
10443
10444   *) mod_imap fixups, in particular Location: headers are now complete
10445      URL's.
10446
10447   *) New "info" module which reports on installed module set through a
10448      special URL, a la mod_status.
10449
10450   *) "ServerPath" directive added - allows for graceful transition
10451      for Host:-header-based virtual hosts.
10452
10453   *) Anonymous authentication module improvements.
10454
10455   *) MSQL authentication module improvements.
10456
10457   *) Status module design improved - output now table-based. [Ben Laurie]
10458
10459   *) htdigest utility included for use with digest authentication
10460      module.
10461
10462   *) mod_negotiation: Accept values with wildcards to be treated with
10463      less priority than those without wildcards at the same quality
10464      value. [Alexei Kosut]
10465
10466   *) Bugs which were fixed:
10467         a) numerous mod_proxy bugs
10468         b) CGI early-termination bug [Ben Laurie]
10469         c) Keepalives not working with virtual hosts
10470         d) RefererIgnore problems
10471         e) closing fd's twice in mod_include (causing core dumps on
10472            Linux and elsewhere).
10473
10474 Changes with Apache 1.1b2
10475
10476   *) Bugfixes:
10477         a) core dumps in mod_digest
10478         b) truncated hostnames/ip address in the logs
10479         c) relative URL's in mod_imap map files
10480
10481 Changes with Apache 1.1b1
10482
10483   *) Not listed. See <http://www.apache.org/docs/new_features_1_1.html>
10484
10485 Changes with Apache 1.0.3
10486
10487   *) Internal redirects which occur in mod_dir.c now preserve the
10488      query portion of a request (the bit after the question mark).
10489      [Adam Sussman]
10490
10491   *) Escape active characters '<', '>' and '&' in html output in
10492      directory listings, error messages and redirection links.
10493      [David Robinson]
10494
10495   *) Apache will now work with LynxOS 2.3 and later [Steven Watt]
10496
10497   *) Fix for POSIX compliance in waiting for processes in alloc.c.
10498      [Nick Williams]
10499
10500   *) setsockopt no longer takes a const declared argument [Martijn Koster]
10501
10502   *) Reset timeout timer after each successful fwrite() to the network.
10503      This patch adds a reset_timeout() procedure that is called by
10504      send_fd() to reset the timeout ever time data is written to the net.
10505      [Nathan Schrenk]
10506
10507   *) timeout() signal handler now checks for SIGPIPE and reports
10508      lost connections in a more user friendly way. [Rob Hartill]
10509
10510   *) Location of the "scoreboard" file which used to live in /tmp is
10511      now configurable (for OSes that can't use mmap) via ScoreBoardFile
10512      which works similar to PidFile (in httpd.conf) [Rob Hartill]
10513
10514   *) Include sys/resource.h in the correct place for SunOS4 [Sameer Parekh]
10515
10516   *) the pstrcat call in mod_cookies.c didn't have an ending NULL,
10517      which caused a SEGV with cookies enabled
10518
10519   *) Output warning when MinSpareServers is set to <= 0 and change it to 1
10520      [Rob Hartill]
10521
10522   *) Log the UNIX textual error returned by some system calls, in
10523      particular errors from accept() [David Robinson]
10524
10525   *) Add strerror function to util.c for SunOS4 [Randy Terbush]
10526
10527 Changes with Apache 1.0.2
10528
10529   *) patch to get Apache compiled on UnixWare 2.x, recommended as
10530      a temporary measure, pending rewrite of rfc931.c. [Chuck Murcko]
10531
10532   *) Fix get_basic_auth_pw() to set the auth_type of the request.
10533      [David Robinson]
10534
10535   *) past changes to http_config.c to only use the
10536      setrlimit function on systems defining RLIMIT_NOFILE
10537      broke the feature on SUNOS4. Now defines HAVE_RESOURCE
10538      for SUNOS and prototypes the needed functions.
10539
10540   *) Remove uses of MAX_STRING_LEN/HUGE_STRING_LEN from several routines.
10541      [David Robinson]
10542
10543   *) Fix use of pointer to scratch memory. [Cliff Skolnick]
10544
10545   *) Merge multiple headers from CGI scripts instead of taking last
10546      one. [David Robinson]
10547
10548   *) Add support for SCO 5. [Ben Laurie]
10549
10550 Changes with Apache 1.0.1
10551
10552   *) Silence mod_log_referer and mod_log_agent if not configured
10553      [Randy Terbush]
10554
10555   *) Recursive includes can occur if the client supplies PATH_INFO data
10556      and the server provider uses relative links; as file.html
10557      relative to /doc.shtml/pathinfo is /doc.shtml/file.html. [David Robinson]
10558
10559   *) The replacement for initgroups() did not call {set,end}grent(). This
10560      had two implications: if anything else used getgrent(), then
10561      initgroups() would fail, and it was consuming a file descriptor.
10562      [Ben Laurie]
10563
10564   *) On heavily loaded servers it was possible for the scoreboard to get
10565      out of sync with reality, as a result of a race condition.
10566      The observed symptoms are far more Apaches running than should
10567      be, and heavy system loads, generally followed by catastrophic
10568      system failure. [Ben Laurie]
10569
10570   *) Fix typo in license. [David Robinson]
10571
10572 Changes with Apache 1.0.0                                        23 Nov 1995
10573
10574   *) Not listed. See <http://www.apache.org/docs/new_features_1_0.html>
10575
10576 Changes with Apache 0.8.16                                       05 Nov 1995
10577
10578   *) New man page for 'httpd' added to support directory [David Robinson]
10579
10580   *) .htgroup files can have more than one line giving members for a
10581      given group (each must have the group name in front), for NCSA
10582      back-compatibility [Robert Thau]
10583
10584   *) Mutual exclusion around accept() is on by default for SVR4 systems
10585      generally, since they generally can't handle multiple processes in
10586      accept() on the same socket.  This should cure flaky behavior on
10587      a lot of those systems.  [David Robinson]
10588
10589   *) AddType, AddEncoding, and AddLanguage directives take multiple
10590      extensions on a single command line [David Robinson]
10591
10592   *) UserDir can be disabled for a given virtual host by saying
10593      "UserDir disabled" in the <VirtualHost> section --- it was a bug
10594      that this didn't work.  [David Robinson]
10595
10596   *) Compiles on QNX [Ben Laurie]
10597
10598   *) Corrected parsing of ctime time format [David Robinson]
10599
10600   *) httpd does a perror() before exiting if it can't log its pid
10601      to the PidFile, to make diagnosing the error a bit easier.
10602      [David Robinson]
10603
10604   *) <!--#include file="..."--> can no longer include files in the
10605      parent directory, for NCSA back-compatibility.  [David Robinson]
10606
10607   *) '~' is *not* escaped in URIs generated for directory listings
10608      [Roy Fielding]
10609
10610   *) Eliminated compiler warning in the imagemap module [Randy Terbush]
10611
10612   *) Fixed bug involving handling URIs with escaped %-characters
10613      in redirects [David Robinson]
10614
10615 Changes with Apache 0.8.15                                       14 Oct 1995
10616
10617   *) Switched to new, simpler license
10618
10619   *) Eliminated core dumps with improperly formatted DBM group files [Mark Cox]
10620
10621   *) Don't allow requests for ordinary files to have PATH_INFO [Ben Laurie]
10622
10623   *) Reject paths containing %-escaped '%' or null characters [David Robinson]
10624
10625   *) Correctly handles internal redirects to files with names containing '%'
10626      [David Robinson]
10627
10628   *) Repunctuated some error messages [Aram Mirzadeh, Andrew Wilson]
10629
10630   *) Use geteuid() rather than getuid() to see if we have root privilege,
10631      so that server correctly resets privilege if run setuid root.  [Andrew
10632      Wilson]
10633
10634   *) Handle ftp: and telnet: URLs correctly in imagemaps (built-in module)
10635      [Randy Terbush]
10636
10637   *) Fix relative URLs in imagemap files [Randy Terbush]
10638
10639   *) Somewhat better fix for the old "Alias /foo/ /bar/" business
10640      [David Robinson]
10641
10642   *) Don't repeatedly open the ErrorLog if a bunch of <VirtualHost>
10643      entries all name the same one. [David Robinson]
10644
10645   *) Fix directory listings with filenames containing unusual characters
10646      [David Robinson]
10647
10648   *) Better URI-escaping for generated URIs in directories with filenames
10649      containing unusual characters [Ben Laurie]
10650
10651   *) Fixed potential FILE* leak in http_main.c [Ben Laurie]
10652
10653   *) Unblock alarms on error return from spawn_child() [David Robinson]
10654
10655   *) Sample Config files have extra note for SCO users [Ben Laurie]
10656
10657   *) Configuration has note for HP-UX users [Rob Hartill]
10658
10659   *) Eliminated some bogus Linux-only #defines in conf.h [Aram Mirzadeh]
10660
10661   *) Nuked bogus #define in httpd.h [David Robinson]
10662
10663   *) Better test for whether a system has setrlimit() [David Robinson]
10664
10665   *) Calls update_child_status() after reopen_scoreboard() [David Robinson]
10666
10667   *) Doesn't send itself SIGHUP on startup when run in the -X debug-only mode
10668      [Ben Laurie]
10669
10670 Changes with Apache 0.8.14                                       19 Sep 1995
10671
10672   *) Compiles on SCO ODT 3.0 [Ben Laurie]
10673
10674   *) AddDescription works (better) [Ben Laurie]
10675
10676   *) Leaves an intelligible error diagnostic when it can't set group
10677      privileges on standalone startup [Andrew Wilson]
10678
10679   *) Compiles on NeXT again --- the 0.8.13 RLIMIT patch was failing on
10680      that machine, which claims to be BSD but does not support RLIMIT.
10681      [Randy Terbush]
10682
10683   *) gcc -Wall no longer complains about an unused variable when util.c
10684      is compiled with -DMINIMAL_DNS [Andrew Wilson]
10685
10686   *) Nuked another compiler warning for -Wall on Linux [Aram Mirzadeh]
10687
10688 Changes with Apache 0.8.13                                       07 Sep 1995
10689
10690   *) Make IndexIgnore *work* (ooops) [Jarkko Torppa]
10691
10692   *) Have built-in imagemap code recognize & honor Point directive [James
10693      Cloos]
10694
10695   *) Generate cleaner directory listings in directories with a mix of
10696      long and short filenames [Rob Hartill]
10697
10698   *) Properly initialize dynamically loaded modules [Royston Shufflebotham]
10699
10700   *) Properly default ServerName for virtual servers [Robert Thau]
10701
10702   *) Rationalize handling of BSD in conf.h and elsewhere [Randy Terbush,
10703      Paul Richards and a cast of thousands...]
10704
10705   *) On self-identified BSD systems (we don't try to guess any more),
10706      allocate a few extra file descriptors per virtual host with setrlimit,
10707      if we can, to avoid running out. [Randy Terbush]
10708
10709   *) Write 22-character lock file name into buffer with enough space
10710      on startup [Konstantin Olchanski]
10711
10712   *) Use archaic setpgrp() interface on NeXT, which requires it [Brian
10713      Pinkerton]
10714
10715   *) Suppress -Wall warning by casting const away in util.c [Aram Mirzadeh]
10716
10717   *) Suppress -Wall warning by initializing variable in negotiation code
10718      [Tobias Weingartner]
10719
10720 Changes with Apache 0.8.12                                       31 Aug 1995
10721
10722   *) Doesn't pause three seconds after including a CGI script which is
10723      too slow to die off (this is done by not even trying to kill off
10724      subprocesses, including the SIGTERM/pause/SIGKILL routine, until
10725      after the entire document has been processed).  [Robert Thau]
10726
10727   *) Doesn't do SSI if Options Includes is off.  (Ooops).  [David Robinson]
10728
10729   *) Options IncludesNoExec allows inclusion of at least text/* [Roy Fielding]
10730
10731   *) Allows .htaccess files to override <Directory> sections naming the
10732      same directory [David Robinson]
10733
10734   *) Removed an efficiency hack in sub_req_lookup_uri which was
10735      causing certain extremely marginal cases (e.g., ScriptAlias of a
10736      *particular* index.html file) to fail.  [David Robinson]
10737
10738   *) Doesn't log an error when the requested URI requires
10739      authentication, but no auth header line was supplied by the
10740      client; this is a normal condition (the client doesn't no auth is
10741      needed here yet).  [Robert Thau]
10742
10743   *) Behaves more sanely when the name server loses its mind [Sean Welch]
10744
10745   *) RFC931 code compiles cleanly on old BSDI releases [Randy Terbush]
10746
10747   *) RFC931 code no longer passes out name of prior clients on current
10748      requests if the current request came from a server that doesn't
10749      do RFC931.  [David Robinson]
10750
10751   *) Configuration script accepts "Module" lines with trailing whitespace.
10752      [Robert Thau]
10753
10754   *) Cleaned up compiler warning from mod_access.c [Robert Thau]
10755
10756   *) Cleaned up comments in mod_cgi.c [Robert Thau]
10757
10758 Changes with Apache 0.8.11                                       24 Aug 1995
10759
10760   *) Wildcard <Directory> specifications work.  [Robert Thau]
10761
10762   *) Doesn't loop for buggy CGI on Solaris [Cliff Skolnick]
10763
10764   *) Symlink checks (FollowSymLinks off, or SymLinkIfOwnerMatch) always check
10765      the file being requested itself, in addition to the directories leading
10766      up to it. [Robert Thau]
10767
10768   *) Logs access failures due to symlink checks or invalid client address
10769      in the error log [Roy Fielding, Robert Thau]
10770
10771   *) Symlink checks deal correctly with systems where lstat of
10772      "/path/to/some/link/" follows the link.  [Thau, Fielding]
10773
10774   *) Doesn't reset DirectoryIndex to 'index.html' when
10775      other directory options are set in a .htaccess file.  [Robert Thau]
10776
10777   *) Clarified init code and nuked bogus warning in mod_access.c
10778      [Florent Guillaume]
10779
10780   *) Corrected several directives in sample srm.conf
10781      --- includes corrections to directory indexing icon-related directives
10782      (using unknown.gif rather than unknown.xbm as the DefaultIcon, doing
10783      icons for encodings right, and turning on AddEncoding by default).
10784      [Roy Fielding]
10785
10786   *) Corrected descriptions of args to AddIcon and AddAlt in command table
10787      [James Cloos]
10788
10789   *) INSTALL & README mention "contributed modules" directory [Brian
10790      Behlendorf]
10791
10792   *) Fixed English in the license language...  "for for" --> "for".
10793      [Roy Fielding]
10794
10795   *) Fixed ScriptAlias/Alias interaction by moving ScriptAlias handling to
10796      mod_alias.c, merging it almost completely with handling of Alias, and
10797      adding a 'notes' field to the request_rec which allows the CGI module
10798      to discover whether the Alias module has put this request through
10799      ScriptAlias (which it needs to know for back-compatibility, as the old
10800      NCSA code did not check Options ExecCGI in ScriptAlias directories).
10801      [Robert Thau]
10802
10803 Changes with Apache 0.8.10                                       18 Aug 1995
10804
10805   *) AllowOverride applies to the named directory, and not just
10806      subdirectories.  [David Robinson]
10807
10808   *) Do locking for accept() exclusion (on systems that need it)
10809      using a special file created for the purpose in /usr/tmp, and
10810      not the error log; using the error log causes real problems
10811      if it's NFS-mounted; this is known to be the cause of a whole
10812      lot of "server hang" problems with Solaris.  [David Robinson;
10813      thanks to Merten Schumann for help diagnosing the problem].
10814
10815 Changes with Apache 0.8.9                                        12 Aug 1995
10816
10817   *) Compiles with -DMAXIMUM_DNS ---- ooops! [Henrik Mortensen]
10818
10819   *) Nested includes see environment variables of the including document,
10820      for NCSA bug-compatibility (some sites have standard footer includes
10821      which try to print out the last-modified date).  [Eric Hagberg/Robert
10822      Thau]
10823
10824   *) <!--exec cgi="/some/uri/here"--> always treats the item named by the
10825      URI as a CGI script, even if it would have been treated as something
10826      else if requested directly, for NCSA back-compatibility.  (Note that
10827      this means that people who know the name of the script can see the
10828      code just by asking for it).  [Robert Thau]
10829
10830   *) New version of dbmmanage script included in support directory as
10831      dbmmanage.new.
10832
10833   *) Check if scoreboard file couldn't be opened, and say so, rather
10834      then going insane [David Robinson]
10835
10836   *) POST to CGI works on A/UX [Jim Jagielski]
10837
10838   *) AddIcon and AddAlt commands work properly [Rob Hartill]
10839
10840   *) NCSA server push works properly --- the Arena bug compatibility
10841      workaround, which broke it, is gone (use -DARENA_BUG_WORKAROUND
10842      if you still want the workaround).  [Rob Hartill]
10843
10844   *) If client didn't submit any Accept-encodings, ignore encodings in
10845      content negotiation.  (NB this will all have to be reworked anyway
10846      for the new HTTP draft).  [Florent Guillaume]
10847
10848   *) Don't dump core when trying to log timed-out requests [Jim Jagielski]
10849
10850   *) Really honor CacheNegotiatedDocs [Florent Guillaume]
10851
10852   *) Give Redirect priority over Alias, for NCSA bug compatibility
10853      [David Robinson]
10854
10855   *) Correctly set PATH_TRANSLATED in all cases from <!--#exec cmd=""-->,
10856      paralleling earlier bug fix for CGI [David Robinson]
10857
10858   *) If DBM auth is improperly configured, report a server error and don't
10859      dump core.
10860
10861   *) Deleted FCNTL_SERIALIZED_ACCEPTS from conf.h entry for A/UX;
10862      it seems to work well enough without it (even in a 10 hits/sec
10863      workout), and the overhead for the locking under A/UX is
10864      alarmingly high (though it is very low on other systems).
10865      [Eric Hagberg, Jim Jagielski]
10866
10867   *) Fixed portability problems with mod_cookies.c [Cliff Skolnick]
10868
10869   *) Further de-Berklize mod_cookies.c; change the bogus #include.  [Brian
10870      Behlendorf/Eric Hagberg]
10871
10872   *) More improvements to default Configuration for A/UX [Jim Jagielski]
10873
10874   *) Compiles clean on NEXT [Rob Hartill]
10875
10876   *) Compiles clean on SGI [Robert Thau]
10877
10878 Changes with Apache 0.8.8                                        08 Aug 1995
10879
10880   *) SunOS library prototypes now never included unless explicitly
10881      requested in the configuration (via -DSUNOS_LIB_PROTOTYPES);
10882      people using GNU libc on SunOS are screwed by prototypes for the
10883      standard library.
10884
10885      (Those who wish to compile clean with gcc -Wall on a standard
10886      SunOS setup need the prototypes, and may obtain them using
10887      -DSUNOS_LIB_PROTOTYPES.  Those wishing to use -Wall on a system
10888      with nonstandard libraries are presumably competent to make their
10889      own arrangements).
10890
10891   *) Strips trailing '/' characters off both args to the Alias command,
10892      to make 'Alias /foo/ /bar/' work.
10893
10894 Changes with Apache 0.8.7                                        03 Aug 1995
10895
10896   *) Don't hang when restarting with a child from 'TransferLog "|..."' running
10897      [reported by David Robinson]
10898
10899   *) Compiles clean on OSF/1 [David Robinson]
10900
10901   *) Added some of the more recent significant changes (AddLanguage stuff,
10902      experimental LogFormat support) to CHANGES file in distribution root
10903      directory
10904
10905 Changes with Apache 0.8.6                                        02 Aug 1995
10906
10907   *) Deleted Netscape reload workaround --- it's in violation of HTTP specs.
10908      (If you actually wanted a conditional GET which bypassed the cache, you
10909      couldn't get it). [Reported by Roy Fielding]
10910
10911   *) Properly terminate headers on '304 Not Modified' replies to conditional
10912      GETs --- no browser we can find cares much, but the CERN proxy chokes.
10913      [Reported by Cliff Skolnick; fix discovered independently by Rob Hartill]
10914
10915   *) httpd -v doesn't call itself "Shambhala".  [Reported by Chuck Murcko]
10916
10917   *) SunOS lib-function prototypes in conf.h conditionalized on __GNUC__,
10918      not __SUNPRO_C (they're needed to quiet gcc -Wall, but acc chokes on 'em,
10919      and older versions don't set the __SUNPRO_C preprocessor variable).  On
10920      all other systems, these are never used anyway.  [Reported by Mark Cox].
10921
10922   *) Scoreboard file (/tmp/htstatus.*) no longer publically writable.
10923
10924 Changes with Apache 0.8.5                                        01 Aug 1995
10925
10926   *) Added last-minute configurable log experiment, as optional module
10927
10928   *) Correctly set r->bytes_sent for HTTP/0.9 requests, so they get logged
10929      properly.  (One-line fix to http_protocol.c).
10930
10931   *) Work around bogus behavior when reloading from Netscape.
10932      It's Netscape's bug --- for some reason they expect a request with
10933      If-modified-since: to not function as a conditional GET if it also
10934      comes with Pragma: no-cache, which is way out of line with the HTTP
10935      spec (according to Roy Fielding, the redactor).
10936
10937   *) Added parameter to set maximum number of server processes.
10938
10939   *) Added patches to make it work on A/UX.  A/UX is *weird*.  [Eric Hagberg,
10940      Jim Jagielski]
10941
10942   *) IdentityCheck bugfix [Chuck Murcko].
10943
10944   *) Corrected cgi-src/Makefile entry for new imagemap script.  [Alexei Kosut]
10945
10946   *) More sample config file corrections; add extension to AddType for
10947      *.asis, move AddType generic description to its proper place, and
10948      fix miscellaneous typos. [ Alexei Kosut ]
10949
10950   *) Deleted the *other* reference to the regents from the Berkeley
10951      legal disclaimer (everyplace).
10952
10953   *) Nuked Shambhala name from src/README; had already cleaned it out
10954      of everywhere else.
10955
10956 Changes with Apache 0.8.4
10957
10958   *) Changes to server-pool management parms --- renamed current
10959      StartServers to MinSpareServers, created separate StartServers
10960      parameter which means what it says, and renamed MaxServers to
10961      MaxSpareServers (though the old name still works, for NCSA 1.4
10962      back-compatibility).  The old names were generally regarded as
10963      too confusing.  Also altered "docs" in sample config files.
10964
10965   *) More improvements to default config files ---
10966      sample directives (commented out) for XBitHack, BindAddress,
10967      CacheNegotiatedDocs, VirtualHost; decent set of AddLanguage
10968      defaults, AddTypes for send-as-is and imagemap magic types, and
10969      improvements to samples for DirectoryIndex [Alexei Kosut]
10970
10971   *) Yet more improvements to default config files --- changes to
10972      Alexei's sample AddLanguage directives, and sample LanguagePriority
10973      [ Florent Guillaume ]
10974
10975   *) Set config file locations properly if not set in httpd.conf
10976      [ David Robinson ]
10977
10978   *) Don't escape URIs in internal redirects multiple times; don't
10979      do that when translating PATH_INFO to PATH_TRANSLATED either.
10980      [ David Robinson ]
10981
10982   *) Corrected spelling of "Required" in 401 error reports [Andrew Wilson]
10983
10984 Changes with Apache 0.8.3
10985
10986   *) Edited distribution README to *briefly* summarize installation
10987      procedures, and give a pointer to the INSTALL file in the src/
10988      directory.
10989
10990   *) Upgraded imagemap script in cgi-bin to 1.8 version from more
10991      recent NCSA distributions.
10992
10993   *) Bug fix to previous bug fix --- if .htaccess file and <Directory>
10994      exist for the same directory, use both and don't segfault.  [Reported
10995      by David Robinson]
10996
10997   *) Proper makefile dependencies [David Robinson]
10998
10999   *) Note (re)starts in error log --- reported by Rob Hartill.
11000
11001   *) Only call no2slash() after get_path_info() has been done, to
11002      preserve multiple slashes in the PATH_INFO [NCSA compatibility,
11003      reported by Andrew Wilson, though this one is probably a real bug]
11004
11005   *) Fixed mod_imap.c --- relative paths with base_uri referer don't
11006      dump core when Referer is not supplied. [Randy Terbush]
11007
11008   *) Lightly edited sample config files to refer people to our documentation
11009      instead of NCSA's, and to list Rob McCool as *original* author (also
11010      deleted his old, and no doubt non-functional email address).  Would be
11011      nice to have examples of new features...
11012
11013 Changes with Apache 0.8.2                                        19 Jul 1995
11014
11015   *) Added AddLanuage code [Florent Guillaume]
11016
11017   *) Don't say "access forbidden" when a CGI script is not found.  [Mark Cox]
11018
11019   *) All sorts of problems when MultiViews finds a directory.  It would
11020      be nice if mod_dir.c was robust enough to handle that, but for now,
11021      just punt.  [reported by Brian Behlendorf]
11022
11023   *) Wait for all children on restart, to make sure that the old socket
11024      is gone and we can reopen it.  [reported by Randy Terbush]
11025
11026   *) Imagemap module is enabled in default Configuration
11027
11028   *) RefererLog and UserAgentLog modules properly default the logfile
11029      [Randy Terbush]
11030
11031   *) Mark Cox's mod_cookies added to the distribution as an optional
11032      module (commented out in the default Configuration, and noted as
11033      an experiment, along with mod_dld). [Mark Cox]
11034
11035   *) Compiles on ULTRIX (a continuing battle...). [Robert Thau]
11036
11037   *) Fixed nasty bug in SIGTERM handling [reported by Randy Terbush]
11038
11039   *) Changed "Shambhala" to "Apache" in API docs. [Robert Thau]
11040
11041   *) Added new, toothier legal disclaimer. [Robert Thau; copied from BSD
11042      license]
11043
11044 Changes with Apache 0.8.1
11045
11046   *) New imagemap module [Randy Terbush]
11047
11048   *) Replacement referer log module with NCSA-compatible RefererIgnore
11049      [Matthew Gray again]
11050
11051   *) Don't mung directory listings with very long filenames.
11052      [Florent Guillaume]
11053
11054 Changes with Apache 0.8.0 (nee Shambhala 0.6.2)                  16 Jul 1995
11055
11056   *) New config script.  See INSTALL for info.  [Robert Thau]
11057
11058   *) Scoreboard mechanism for regulating the number of extant server
11059      processes.  MaxServers and StartServers defaults are the same as
11060      for NCSA, but the meanings are slightly different.  (Actually,
11061      I should probably lower the MaxServers default to 10).
11062
11063      Before asking for a new connection, each server process checks
11064      the number of other servers which are also waiting for a
11065      connection.  If there are more than MaxServers, it quietly dies
11066      off.  Conversely, every second, the root, or caretaker, process
11067      looks to see how many servers are waiting for a new connection;
11068      if there are fewer than StartServers, it starts a new one.  This
11069      does not depend on the number of server processes already extant.
11070      The accounting is arranged through a "scoreboard" file, named
11071      /tmp/htstatus.*, on which each process has an independent file
11072      descriptor (they need to seek without interference).
11073
11074      The end effect is that MaxServers is the maximum number of
11075      servers on an *inactive* server machine, but more will be forked
11076      off to handle unusually heavy loads (or unusually slow clients);
11077      these will die off when they are no longer needed --- without
11078      reverting to the overhead of full forking operation.  There is a
11079      hard maximum of 150 server processes compiled in, largely to
11080      avoid forking out of control and dragging the machine down.
11081      (This is arguably too high).
11082
11083      In my server endurance tests, this mechanism did not appear to
11084      impose any significant overhead, even after I forced it to put the
11085      scoreboard file on a normal filesystem (which might have more
11086      overhead than tmpfs).  [Robert Thau]
11087
11088   *) Set HTTP_FOO variables for SSI <!--#exec cmd-->s, not just CGI scripts.
11089      [Cliff Skolnick]
11090
11091   *) Read .htaccess files even in directory with <Directory> section.
11092      (Former incompatibility noted on mailing list, now fixed). [Robert
11093      Thau]
11094
11095   *) "HEAD /" gives the client a "Bad Request" error message, rather
11096      than trying to send no body *and* no headers.  [Cliff Skolnick].
11097
11098   *) Don't produce double error reports for some very obscure cases
11099      mainly involving auth configuration (the "all modules decline to
11100      handle" case which is a sure sign of a server bug in most cases,
11101      but also happens when authentication is badly misconfigured).
11102      [Robert Thau]
11103
11104   *) Moved FCNTL_SERIALIZED_ACCEPT defines into conf.h (that's what
11105      it's *for*, and this sort of thing really shouldn't be cluttering
11106      up the Makefile). [Robert Thau]
11107
11108   *) Incidental code cleanups in http_main.c --- stop dragging
11109      sa_client around; just declare it where used.  [Robert Thau]
11110
11111   *) Another acc-related fix.  (It doesn't like const char
11112      in some places...). [Mark Cox]
11113
11114 Changes with Shambhala 0.6.1                                     13 Jul 1995
11115
11116   *) Fixed auth_name-related typos in http_core.c [Brian Behlendorf]
11117      Also, fixed auth typo in http_protocol.c unmasked by this fix.
11118
11119   *) Compiles clean with acc on SunOS [Paul Sutton]
11120
11121   *) Reordered modules in modules.c so that Redirect takes priority
11122      over ScriptAlias, for NCSA bug-compatibility [Rob Hartill] ---
11123      believe it or not, he has an actual site with a ScriptAlias and
11124      a Redirect declared for the *exact same directory*.  Even *my*
11125      compatibility fetish wouldn't motivate me to fix this if the fix
11126      required any effort, but it doesn't, so what the hey.
11127
11128   *) Fixed to properly default several server_rec fields for virtual
11129      servers from the corresponding fields in the main server_rec.
11130      [Cliff Skolnick --- 'port' was a particular irritant].
11131
11132   *) No longer kills off nph- child processes before they are
11133      finished sending output. [Matthew Gray]
11134
11135 Changes with Shambhala 0.6.0                                     10 Jul 1995
11136
11137   *) Two styles of timeout --- hard and soft.  soft_timeout()s just put
11138      the connection to the client in an "aborted" state, but otherwise
11139      allow whatever handlers are running to clean up.  hard_timeout()s
11140      abort the request in progress completely; anything not tied to some
11141      resource pool cleanup will leak.  They're still around because I
11142      haven't yet come up with a more elegant way of handling
11143      timeouts when talking to something that isn't the client.  The
11144      default_handler and the dir_handler now use soft timeouts, largely
11145      so I can test the feature.  [Robert Thau]
11146
11147   *) TransferLog "| my_postprocessor ..." seems to be there.  Note that
11148      the case of log handlers dying prematurely is probably handled VERY
11149      gracelessly at this point, and if the logger stops reading input,
11150      the server will hang.  (It is known to correctly restart the
11151      logging process on server restart; this is (should be!) going through
11152      the same SIGTERM/pause/SIGKILL routine used to ding an errant CGI
11153      script).  [Robert Thau]
11154
11155   *) asis files supported (new module).  [Robert Thau]
11156
11157   *) IdentityCheck code is compiled in, but has not been tested.  (I
11158      don't know anyone who runs identd). [Robert Thau]
11159
11160   *) PATH_INFO and PATH_TRANSLATED are not set unless some real PATH_INFO
11161      came in with the request, for NCSA bug-compatibility. [Robert Thau]
11162
11163   *) Don't leak the DIR * on HEAD request for a directory. [Robert Thau]
11164
11165   *) Deleted the block_alarms() stuff from dbm_auth; no longer necessary,
11166      as timeouts are not in scope. [Robert Thau]
11167
11168   *) quoted-string args in config files now handled correctly (doesn't drop
11169      the last character). [Robert Thau; reported by Randy Terbush]
11170
11171   *) Fixed silly typo in http_main.c which was suddenly fatal in HP-UX.
11172      How the hell did it ever work? [Robert Thau; reported by Rob Hartill]
11173
11174   *) mod_core.c --- default_type returns DEFAULT_TYPE (the compile-time
11175      default default type); the former default default behavior when all
11176      type-checkers defaulted had been a core dump.  [Paul Sutton]
11177
11178   *) Copy filenames out of the struct dirent when indexing
11179      directories.  (On Linux, readdir() returns a pointer to the same
11180      memory area every time).  Fix is in mod_dir.c.  [Paul Sutton]
11181
11182 Changes with Shambhala 0.5.3 [not released]
11183
11184   *) Default response handler notes "file not found" in the error log,
11185      if the file was not found.  [Cliff Skolnick].
11186
11187   *) Another Cliff bug --- "GET /~user" now properly redirects (the userdir
11188      code no longer sets up bogus PATH_INFO which fakes out the directory
11189      handler). [Cliff Skolnick]
11190
11191 Changes with Shambhala 0.5.2                                     06 Jul 1995
11192
11193   *) Changes to http_main.c --- root server no longer plays silly
11194      games with SIGCHLD, and so now detects and replaces dying
11195      children.  Child processes just die on SIGTERM, without taking
11196      the whole process group with them.  Potential problem --- if any
11197      child process refuses to die, we hang in restart.
11198      MaxRequestsPerChild may still not work, but it certainly works
11199      better than it did before this!  [Robert Thau]
11200
11201   *) mod_dir.c bug fixes: ReadmeName and HeaderName
11202      work (or work better, at least); over-long description lines
11203      properly terminated. [Mark Cox]
11204
11205   *) http_request.c now calls unescape_url() more places where it
11206      should [Paul Sutton].
11207
11208   *) More directory handling bugs (reported by Cox)
11209      Parent Directory link is now set correctly. [Robert Thau]
11210
11211 Changes with Shambhala 0.5.1                                     04 Jul 1995
11212
11213   *) Generalized cleanup interface in alloc.c --- any function can be
11214      registered with alloc.c as a cleanup for a resource pool;
11215      tracking of files and file descriptors has been reimplemented in
11216      terms of this interface, so I can give it some sort of a test.
11217      [Robert Thau]
11218
11219   *) More changes in alloc.c --- new cleanup_for_exec() function,
11220      which tracks down and closes all file descriptors which have been
11221      registered with the alloc.c machinery before the server exec()s a
11222      child process for CGI or <!--#exec-->.  CGI children now get
11223      started with exactly three file descriptors open.  Hopefully,
11224      this cures the problem Rob H. was having with overly persistent
11225      CGI connections. [Robert Thau]
11226
11227   *) Mutual exclusion around the accept() in child_main() --- this is
11228      required on at least SGI, Solaris and Linux, and is #ifdef'ed in
11229      by default on those systems only (-DFCNTL_SERIALIZED_ACCEPT).
11230      This uses fcntl(F_SETLK,...) on the error log descriptor because
11231      flock() on that descriptor won't work on systems which have BSD
11232      flock() semantics, including (I think) Linux 1.3 and Solaris.
11233
11234      This does work on SunOS (when the server is idle, only one
11235      process in the pool is waiting on accept()); it *ought* to work
11236      on the other systems. [Robert Thau]
11237
11238   *) FreeBSD and BSDI portability tweaks [Chuck Murcko]
11239
11240   *) sizeof(*sa_client) bugfix from [Rob Hartill]
11241
11242   *) pstrdup(..., NULL) returns NULL, [Randy Terbush]
11243
11244   *) block_alarms() to avoid leaking the DBM* in dbm auth (this should
11245      be unnecessary if I go to the revised timeout-handling scheme).
11246      [Robert Thau]
11247
11248   *) For NCSA bug-compatibility, set QUERY_STRING env var (to a null
11249      string) even if none came in with the request.  [Robert Thau]
11250
11251   *) CHANGES file added to distribution ;-).
11252
11253 Changes with Shambhala 0.4.5
11254
11255   *) mod_dld --- early dynamic loading support [rst]
11256   *) Add wildcard content handlers for XBITHACK; default_hander now
11257      invoked with that mechanism (as a handler hanging off mod_core) [rst]
11258   *) XBITHACK supported as a wildcard content-handler, and 
11259      configurable at run-time (not just at compile time, as in the
11260      "patchy server" releases) [rst]
11261
11262 Changes with Shambhala 0.4.4                                     30 Jun 1995
11263
11264   *) Fixed basic thinkos in mod_dbm_auth.c [rst, reported by Mark Cox]
11265   *) Handle Addtype x/y .z [rst, reported by Cox]
11266
11267 Changes with Shambhala 0.4.3
11268
11269   *) Fixed very dumb bug in mod_alias; "Alias" and "Redirect" are not
11270      synonymous [rst, terbush]
11271
11272 Changes with Shambhala 0.4.1                                     28 Jun 1995
11273
11274   *) First-cut virtual host implementation; some refit in the config
11275      reading code, and log management, was necessary to support this [rst]
11276   *) Sub-pool machinery, originally added to avoid excessive storage
11277      allocation on listings of large directories (which turned out to
11278      be the problem that the 0.3 storage accounting was added to
11279      find).  Subrequests and mod_dir changed to use subpools.  [rst]
11280   *) More memory debugging --- free list consistency checks. [rst]
11281   *) Added err_headers to request_rec, with support elsewhere [rst]
11282   *) Other fixes to minor bugs in mod_dir and mod_includes [rst, terbush]
11283
11284 Changes with Shambhala 0.3                                       19 Jun 1995
11285
11286   *) Switch ONE_PROCESS to a runtime command-line option (-X)
11287   *) Don't compile in mod_ai_backcompat by default
11288   *) Switch name of server from Apache to Shambhala in Makefile
11289   *) Add some accounting routines to track memory usage in the pools,
11290      for debugging
11291
11292 Changes with Shambhala 0.2
11293
11294   *) Set DOCUMENT_ROOT CGI variable
11295   *) Add single-process debugging, as a compile-time option (ONE_PROCESS)
11296   *) Add critical section protection to handling of cleanup structures 
11297      in alloc.c [rst]
11298   *) Significant code reorg within the server core to group related
11299      functions together [rst]
11300   *) Correctly handle clients that hang up before sending any request
11301      [rst]
11302   *) Replace dying child processes. [rst]
11303
11304 Changes with Shambhala 0.1                                       12 Jun 1995
11305
11306    Major rewrite of the pre-existing "patchy server" codebase, by
11307    Robert Thau (rst).  Significant portions of the server code, such
11308    as configuration-file handling and HTTP authentication support,
11309    were ripped out and rewritten from scratch.  Code that was not
11310    completely rewritten was significantly altered.
11311
11312    Major changes with this release include:
11313
11314    *) Introduction of the module API; in request handling, the central 
11315       machinery just dispatches to various modules, which actually do
11316       most of the work.  Configuration handling is similar --- modules
11317       declare their own commands, and the central machinery just
11318       dispatches to them.  
11319
11320       API features from shambhala/0.1 were substantially unchanged in
11321       Apache 1.0 and 1.1.  (1.0 API features not yet present in this
11322       release, such as wildcard handlers and subpools, were added in
11323       subsequent Shambhala releases, and were also generally rst's
11324       work). 
11325
11326    *) This release included the following modules:
11327
11328       mod_access      (access control --- allow and deny directives),
11329       mod_alias       (Alias and Redirect commands),
11330       mod_auth        (straight HTTP authentication, based on flat-files)
11331       mod_auth_dbm    (same, with dbm files)
11332       mod_cgi         (CGI scripts and, in this release, ScriptAlias)
11333       mod_common_log  (CLF access logs; later renamed mod_log_common)
11334       mod_dir         (directory indexing)
11335       mod_include     (server-side includes)
11336       mod_mime        (AddType directives)
11337       mod_negotiation (content negotiation)
11338       mod_userdir     (support for users' public_html directories)
11339
11340       It also included a mod_ai_backcompat, which was a private hack
11341       for back-compatibility with rst's own AI-lab servers.
11342
11343       All of these modules were substantially complete, and functional 
11344       or nearly so (a few, which implemented features not in use at
11345       Thau's site, required patches of a few lines).
11346
11347    *) sub-request machinery, to allow modules to determine how other
11348       modules would assign MIME types to a given file, or optionally
11349       serve its content (this is heavily used by mod_dir, mod_include
11350       and mod_negotiation).
11351
11352    *) Resource pool system for keeping track of memory allocated and
11353       files opened in service of a particular request.  Much of the
11354       code in the modules (when they weren't rewrites) was adjusted to 
11355       replace a pervasive convention of using fixed-size buffers on
11356       the stack with an equally pervasive convention of using memory
11357       allocated with palloc().
11358
11359    *) Reorganization of data structures associated with a given
11360       request to eliminate use of global variables and the troublesome 
11361       unmunge_name function (used in NCSA and early Apache releases to 
11362       attempt to determine the URI which mapped to a given filename
11363       --- a difficult proposition, given that it is easy to produce
11364       setups in which multiple URIs map to the same file).
11365
11366    *) Source files renamed and rearranged
11367
11368    *) Very simple pre-forking behavior --- parent process forked off a 
11369       fixed number of children, and then just waited for SIGHUP.
11370
11371    *) Other more minor changes too numerous to list.
11372
11373    This release included modified versions of a lot of code from the
11374    Apache 0.6.4 public release, plus an early pre-forking patch
11375    codeveloped by Robert Thau and Rob Hartill.
11376
11377 Changes with Apache 0.7.3                                        20 Jun 1995
11378
11379    *) There were a bunch of changes between Apache 0.6.4 and 0.7.3 that
11380       were incorporated by Rob Hartill on the main branch while Robert Thau
11381       worked on the Shambhala rewrite above.  Most were merged into the
11382       Shambala architecture after Apache 0.8.0.
11383
11384 Changes with Apache 0.6.4                                        13 May 1995
11385
11386    *) Patches by Rob Hartill, Cliff Skolnick, Randy Terbush, Robert Thau,
11387       and others.
11388
11389 Changes with Apache 0.5.1                                        10 Apr 1995
11390
11391 Changes with Apache 0.4                                          02 Apr 1995
11392
11393   *) Patches by Brian Behlendorf, Andrew Wilson, Robert Thau,
11394      and Rob Hartill.
11395
11396 Changes with Apache 0.3                                          24 Mar 1995
11397
11398   *) Patches by Robert Thau, David Robinson, Rob Hartill, and
11399      Carlos Varela.
11400
11401 Changes with Apache 0.2                                          18 Mar 1995
11402
11403   *) Based on NCSA httpd 1.3 by Rob McCool and patches by CERT,
11404      Roy Fielding, Robert Thau, Nicolas Pioch, David Robinson,
11405      Brian Behlendorf, Rob Hartill, and Cliff Skolnick.