]> granicus.if.org Git - apache/blob - CHANGES
Make the header filter use the brigade buffering functions for creating
[apache] / CHANGES
1 Changes with Apache 2.0b1
2
3   *) Cleanup the header handling a bit.  This uses the apr_brigade_*
4      functions for the buffering so that we don't need to compute
5      the length of the headers before we actually create the header
6      buffer.  [Ryan Bloom]
7
8   *) Allow filters to buffer data using the ap_f* functions.  These have
9      become macros that resolve directly to apr_brigade_*.  
10      [Ryan Bloom]
11
12   *) Get the Unix MPM's to do a graceful restart again.  If we are going
13      to register a cleanup with ap_cleanup_scoreboard, then we have to
14      kill the cleanup with the same function,  and that function can't be
15      static.  [Ryan Bloom]
16
17   *) Install all required header files.  Without these, it was not
18      possible to compile some modules outside of the server.
19      [Ryan Bloom]
20
21   *) Fix the AliasMatch directive in Apache 2.0.  When we brought a patch
22      forward from 1.3 to 2.0, we missed a single line, which broke regex
23      aliases.  [Ryan Bloom]
24
25   *) We have a poor abstraction in the protocol.  This is a temporary
26      hack to fix the bug, but it will need to be fixed for real.  If
27      we find an error while sending out a custom error response, we back
28      up to the first non-OK request and send the data.  Then, when we send
29      the EOS from finalize_request_protocol, we go to the last request,
30      to ensure that we aren't sending an EOS to a request that has already
31      received one.  Because the data is sent on a different request than
32      the EOS, the error text never gets sent down the filter stack.  This
33      fixes the problem by finding the last request, and sending the data
34      with that request.  [Ryan Bloom]
35
36   *) Make the server status page show the correct restart time, and
37      thus the proper uptime. [Ryan Bloom]
38
39   *) Move the CGI creation logic from mod_include to mod_cgi(d).  This
40      should reduce the amount of duplicate code that is required to
41      create CGI processes.
42      [Paul J. Reder <rederpj@raleigh.ibm.com>]
43
44   *) ap_new_connection() closes the socket and returns NULL if a socket
45      call fails.  Usually this is due to a connection which has been 
46      reset.  [Jeff Trawick]
47
48   *) Move the Apache version information out of httpd.h and into release.h.
49      This is in preparation for the first tag with the new tag and release
50      system.  [Ryan Bloom]
51
52   *) Begin restructuring scoreboard code to enable adding back in
53      the ability to use IPC other than shared memory.
54      Get mod_status working on Windows again. [Bill Stoddard]
55
56   *) Make mod_status work with 2.0.  This will work for prefork,
57      mpmt_pthread, and dexter.  [Ryan Bloom]
58
59   *) Correct a typo in httpd.conf.
60      [Kunihiro Tanaka <tanaka@apache.or.jp>] PR#7154 
61
62   *) Really fix mod_rewrite map lookups this time. [Tony Finch]
63
64   *) Get the correct IP address if ServerName isn't set and we can't
65      find a fully-qualified domain name at startup.
66      PR#7170 [Danek Duvall <dduvall@eng.sun.com>]
67
68   *) Make mod_cgid work with SuExec.  [Ryan Bloom]
69
70   *) Adopt apr user/group name features for mod_rewrite.  Eliminates some
71      'extra' stat's for user/group since they should never occur, and now
72      resolves the SCRIPT_USER and SCRIPT_GROUP, including on WinNT NTFS
73      volumes.  [William Rowe]
74
75   *) Adopt apr features to simplify mod_includes.  This changes the
76      behavior of the USER_NAME variable, unknown uid's are now reported
77      as USER_NAME="<unknown>" rather than the old user#000 result.
78      WinNT now resolves USER_NAME on NTFS volumes.  [William Rowe]
79
80   *) Adopt apr features for simplifing mod_userdir, and accept the new
81      Win32/OS2 exceptions without hiccuping.  [William Rowe]
82
83   *) Replace configure --with-optim option by using and saving the
84      environment variable OPTIM instead.  This is needed because configure
85      options do not support multiple flags separated by spaces.
86      [Roy Fielding]
87
88   *) Fix some byterange handling.  If we get a byte range that looks like
89      "-999999" where that is past the end of the file, we should return 
90      a PARTIAL CONTENT status code, and return the whole file as one big
91      byterange.  This matches the 1.3 handling now.  [Ryan Bloom]
92
93   *) Make the error bucket a real meta-data bucket.  This means that the
94      bucket length is 0, and a read returns NULL data.  If one of these
95      buckets is passed down after the headers are sent, this data will
96      just be ignored.  [Greg Stein]
97
98   *) The prefork MPM wasn't killing child processes correctly if a restart
99      signal was received while the process was serving a request.  The child
100      process would become the equivalent of a second parent process.  If
101      we break out of the accept loop, then we need to do die after cleaning
102      up after ourselves.  [Ryan Bloom]
103
104   *) Change the Prefork MPM to use SIGWINCH instead of SIGUSR1 for graceful
105      restarts.  [Ryan Bloom]
106
107   *) Modify the apr_stat/lstat/getfileinfo calls within apache to use
108      the most optimal APR_FINFO_wanted bits.  This spares Win32 from
109      performing very expensive owner, group and permission lookups
110      and allows the server to function until these apr_finfo_t fields
111      are implemented under Win32.  [William Rowe]
112
113   *) Support for typedsafe optional functions - that is functions exported by
114      optional modules, which, therefore, may or may not be present, depending
115      on configuration. See the experimental modules mod_optional_fn_{ex,im}port
116      for sample code. [Ben Laurie]
117
118   *) filters can now report an HTTP error to the server.  This is done
119      by sending a brigade where the first bucket is an error_bucket.
120      This bucket is a simple bucket that stores an HTTP error and
121      a string.  Currently the string is not used, but it may be needed
122      to output an error log.  The http_header_filter will find this
123      bucket, and output the error text, and then return 
124      AP_FILTER_ERROR, which informs the server that the error web page
125      has already been sent.  [Ryan Bloom]
126
127   *) If we get an error, then we should remove all filters except for
128      those critical to serving a web page.  This fixes a bug, where
129      error pages were going through the byterange filter, even though
130      that made no sense.  [Ryan Bloom]
131
132   *) Relax the syntax checking of Host: headers in order to support
133      iDNS. PR#6635 [Tony Finch]
134
135   *) Cleanup the byterange filter to use the apr_brigade_partition
136      and apr_bucket_copy functions.  This removes a lot of very messy
137      code, and hopefully makes this filter more stable.
138      [Ryan Bloom]
139
140   *) Remove AddModule and ClearModuleList directives.  Both of these
141      directives were used to ensure that modules could be enabled
142      in the correct order.  That requirement is now gone, because
143      we use hooks to ensure that modules are in the correct order.
144      [Ryan Bloom]
145
146   *) When SuExec is specified, we need to add it to the list of
147      targets to be built.  If we don't, then any changes to the
148      configuration won't affect SuExec, unless 'make suexec' is
149      specifically run.  [Ryan Bloom]
150
151   *) Cleaned out open_file from mod_file_cache, as apr now accepts
152      the APR_XTHREAD argument to open a file for consumption by
153      parallel threads on win32.  [William Rowe]
154
155   *) Correct a bug in determining when we follow symlinks.  The code
156      expected a stat -1 result, not an apr_status_t positive error.
157      Also check if the APR_FINFO_USER fields are valid before we
158      follow the link.  [William Rowe]
159
160   *) Move initgroupgs, ap_uname2id and ap_gname2id from util.c to
161      mpm_common.c.  These functions are only valid on some platforms,
162      so they should not be in the main-line code. [Ryan Bloom]
163
164   *) Remove ap_chdir_file().  This function is not thread-safe,
165      and nobody is currently using it.  [Ryan Bloom]
166
167   *) Do not try to run make depend if there are no .c files in the
168      current directory, doing so makes `make depend` fail.
169      [Ryan Bloom]
170
171    *) Update highperformance.conf to work with either prefork or
172       pthreads mpms.  [Greg Ames] 
173
174   *) Stop checking to see if this is a pipelined request if we know
175      for a fact that it isn't.  Basically, if r->connection->keepalive == 0.
176      This keeps us from making an extra read call when serving a 1.0
177      request.  [Ryan Bloom and Greg Stein]
178
179   *) Fix the handling of variable expansion look-ahead in mod_rewrite,
180      i.e. syntax like %{LA-U:REMOTE_USER}, and also fix the parsing of
181      more complicated nested RewriteMap lookups. PR#7087 [Tony Finch]
182
183   *) Fix the RFC number mentioned when complaining about a missing
184      Host: header. PR#7079 [Alexey Toptygin <alexeyt@wam.umd.edu>]
185
186   *) Fix an endless loop in ab which occurred when ab was posting
187      and the server dropped the connection unexpectedly.
188      [Jeff Trawick]
189
190   *) Fix a segfault while handling request bodies in ap_http_filter().  
191      This problem has been seen with mod_dav usage as well as with 
192      requests where the body was just being discarded.  [Jeff Trawick]
193
194   *) Some adjustment on the handling and automatic setting (via
195      hints.m4) of various compilation flags (eg: CFLAGS). Also,
196      add the capability to specify flags (NOTEST_CFLAGS and
197      NOTEST_LDFLAGS) which are used to compile Apache, but
198      not used during the configuration process. Useful for
199      flags like "-Werror". [Jim Jagielski]
200
201   *) Stop using environment variables to force debug mode or
202      no detach.  We now use the -D command line argument to 
203      specify the correct mode.  -DONE_PROCESS and -DNO_DETACH.
204      [Greg Stein, Ryan Bloom]
205
206   *) Change handlers to use hooks. [Ben Laurie]
207
208   *) Stop returning copies of filenames from both apr_file_t and
209      apr_dir_t.  We pstrdup the filenames that we store in the
210      actual structures, so we don't need to pstrdup the strings again.
211      [Ryan Bloom]
212
213   *) mod_cgi: Fix some problems where the wrong error value was being
214      traced.  [Jeff Trawick]
215
216   *) EBCDIC: Fix some missing ASCII conversion on some protocol data.
217      [Jeff Trawick]
218
219   *) Add generic hooks. [Ben Laurie]
220
221   *) Use a real pool to dup the error log descriptor.  [Ryan Bloom]
222
223   *) Fix a segfault caused by mod_ext_filter when the external filter 
224      program does not exist. [Jeff Trawick]
225
226   *) Fix an output truncation error when on an HTTP >= 1.0 request an
227      object of size between DEFAULT_BUCKET_SIZE and AP_MIN_BYTES_TO_WRITE 
228      was served through mod_charset_lite (or anything else that would
229      create a transient bucket in this size range).  ap_bucket_make_heap()
230      silently failed (fixed), transient_setaside() discovered it, but
231      ap_save_brigade() ignored it (fixed). [Jeff Trawick]
232      
233   *) Ignore \r\n or \n when using PEEK mode for input filters.  The problem
234      is that some browsers send extra lines at the end of POST requests, and
235      we don't want to delay sending data back to the user just because the
236      browser isn't well behaved. [Ryan Bloom]
237
238   *) Get SuEXEC working again.  We can't send absolute paths to suExec
239      because it refuses to execute those programs.  SuEXEC also wasn't
240      always recognizing configuration changes made using the autoconf
241      setup.  [Ryan Bloom]
242
243   *) Allow the buildconf process to find the config.m4 files in the correct
244      order.  Basically, we can now name config.m4 files as config\d\d.m4,
245      and we will sort them correctly when inserting them into the build
246      process.  [Ryan Bloom]
247
248   *) Get mod_cgid to use apr calls for creating the actual CGI process.
249      This also allows mod_cgid to use ap_os_create_priviledged_process,
250      thus allowing for SuExec execution from mod_cgid.  Currently, we do
251      not support everything that standard SuExec supports, but at least
252      it works minimally now. [Ryan Bloom]
253
254   *) Allow SuExec to be configured from the ./configure command line.
255      [Ryan Bloom]
256
257   *) Update some of the docs in README and INSTALL to reflect some of
258      the changes in Apache 2.0 [Cliff Woolley <cliffwoolley@yahoo.com>]
259
260   *) If we get EAGAIN returned from the call to apr_sendfile, then we
261      need to call sendfile again.  This gets us serving large files
262      such as apache_2.0a9.tar.gz on FreeBSD again. [Ryan Bloom]
263
264   *) Get the support programs building cleanly again.
265      [Cliff Woolley <cliffwoolley@yahoo.com>]
266
267   *) The Apache/Win32 Apache.exe and dll's now live in bin.  The 
268      current directory logic now backs up over bin/ to determine the
269      server root from the Apache.exe path.
270
271   *) Apache/Win32 now follows the standard conventions of mod_foo.so
272      loadable modules, dynamic libs are all named libfoo.dll, and the
273      makefile.win populates the include, lib and libexec directories.
274
275   *) Apache is now IPv6-capable.  On systems where APR supports IPv6,
276      Apache gets IPv6 listening sockets by default.  Additionally, the
277      Listen, NameVirtualHost, and <VirtualHost> directives support IPv6
278      numeric address strings (e.g., "Listen [fe80::1]:8080").
279      [Jeff Trawick]
280
281   *) Modify the install directory layout.  Modules are now installed in
282      modules/.  Shared libraries should be installed in libraries/, but
283      we don't have any of those on Unix yet.  All install directories
284      are modifyable at configure time. [Ryan Bloom]
285
286   *) Install all header files in the same directory on Unix. [Ryan Bloom]
287
288   *) Get the functions in server/linked into the server, regardless of
289      which modules linked into the server.  This uses the same hack 
290      for Apache that we use for APR and apr-util to ensure all of the
291      necessary functions are linked.  As a part of thise, the CHARSET_EBCDIC
292      was renamed to AP_CHARSET_EBCDIC for namespace protection, and to make
293      the scripts a bit easier.
294      [Ryan Bloom]
295
296   *) Rework the RFC1413 handling to make it thread-safe, use a timeout
297      on the query, and remove IPv4 dependencies.  [Jeff Trawick]
298
299   *) Get all of the auth modules to the point that they will install and
300      be loadable into the server.  Our new build/install mechanism expects
301      that all modules will have a common name format.  The auth modules 
302      didn't use that format, so we didn't install them properly.
303      [Ryan Bloom]
304
305   *) API routines ap_pgethostbyname() and ap_pduphostent() are no longer
306      available.  Use apr_getaddrinfo() instead.  [Jeff Trawick]
307
308   *) Get "NameVirtualHost *" working in 2.0.  [Ryan Bloom]
309
310   *) Return HTTP_RANGE_NOT_SATISFIABLE if the every range requested starts
311      after the end of the response. [Ryan Bloom]
312
313   *) Get byterange requests working with responses that do not have a
314      content-length.  Because of the way byterange requests work, we have to
315      have all of the data before we can actually do the byterange, so we
316      can compute the content-length in the byterange filter.
317      [Ryan Bloom]
318
319   *) Get exe CGI's working again on Windows.
320      [Allan Edwards]
321
322   *) Get mod_cgid and mod_rewrite to work as DSOs by changing the way
323      they keep track of whether or not their  post config hook has been
324      called before.  Instead of a static variable (which is replaced when 
325      the DSO is loaded a second time), use userdata in the process pool.
326      [Jeff Trawick]
327
328 Changes with Apache 2.0a9
329
330   *) Win32 now requires perl to complete the final install step for users
331      to build + install on Win32.  Makefile.win now rewrites @@ServerRoot@
332      and installs the conf, htdocs and htdocs/manual directories.
333      [William Rowe]
334
335   *) Make mod_include use a hash table to associate directive tags with
336      functions.  This allows modules to implement their own SSI tags easily.
337      The idea is simple enough, a module can insert it's own tag and function
338      combination into a hash table provided by mod_include.  While mod_include
339      parses an SSI file, when it encounters a tag in the file, it does a
340      hash lookup to find the function that implements that tag, and passes
341      all of the relevant data to the function.  That function is then
342      responsible for processing the tag and handing the remaining data back
343      to mod_include for further processing.
344      [Paul J. Reder <rederpj@raleigh.ibm.com>]
345
346   *) Get rid of ap_new_apr_connection().  ap_new_connection() now has 
347      fewer parameters: the local and remote socket addresses were removed
348      from the parameter list because all required information is available
349      via the APR socket.  [Jeff Trawick]
350
351   *) Distribution directory structure reorganized to reflect a
352      normal source distribution with external install targets.
353      [Roy Fielding]
354
355   *) The MPMs that need multiple segments of shared memory now create
356      two apr_shmem_t variables, one for each shared memory allocation.
357      the problem is that we can't determine how much memory will be required
358      for shared memory allocations once we try to allocate more than one
359      variable.  The MM code automatically aligns the shared memory allocations,
360      so we end up needing to pad the amount of shared memory we want based
361      on how many variables will be allocated out of the shared memory segment.
362      It is just easier to create a second apr_shmem_t variable, and two
363      shmem memory blocks.
364      [Ryan Bloom]
365
366   *) Cleanup the export list a bit.  This creates a single unified list of
367      functions exported by APR.  The export list is generated at configure
368      time, and that list is then used to generate the exports.c file.
369      Because of the way the export list is generated, we only export those
370      functions that are valid on the platform we are building on.
371      [Ryan Bloom]
372
373   *) Enable logging the cookie with mod_log_config
374      [Sander van Zoest <sander@covalent.net>]
375
376   *) Fix a segfault in mod_info when it reaches the end of the configuration.
377      [Jeff Trawick]
378
379   *) Added lib/aputil/ as a placeholder for utility functions which are not
380      specific to the Apache HTTP Server (but do not make sense with APR).
381      The first utility is "apu_dbm": a set of functions to work with DBM
382      files. This first version can be compiled for SDBM or GDBM databases.
383      [Greg Stein]
384
385   *) Complete re-write of mod_include.  This makes mod_include a filter that
386      uses buckets directly.  This has now served the FAQ correctly.
387      [Paul Reder <rederpj@raleigh.ibm.com>]
388
389   *) Allow modules to specify the first filter in a sub_request when
390      making the sub_request.  This keeps modules from having to change the
391      output_filter immediately after creating the sub-request, and therefore
392      skip the sub_req_output_filter.  [Ryan Bloom]
393
394   *) Update ab to accept URLs with IPv6 literal address strings (in the
395      format described in RFC 2732), and to build Host header fields in
396      the same format.  This allows IPv6 literal address strings to be
397      used with ab.  This support has been tested against Apache 1.3 with 
398      the KAME patch, but Apache 2.0 does not yet work with this format
399      of the Host header field.  [Jeff Trawick]
400
401   *) Accomodate an out-of-space condition in the piped logs and the
402      rotatelogs.c code, and no longer churn log processes for this
403      condition.  [Victor J. Orlikowski]
404
405   *) Add support for partial writes with apr_sendfile() to core_output_filter.
406      [Greg Ames] 
407
408 Changes with Apache 2.0a8
409
410   *) Add a directive to mod_mime so that filters can be associated with
411      a given mime-type.
412      [Ryan Bloom]
413
414   *) Get multi-views working again.  We were setting the path_info
415      field incorrectly if we couldn't find the specified file.
416      [Ryan Bloom]
417
418   *) Fix 304 processing.  The core should never try to send the headers
419      down the filter stack.  Always, just setup the table in the request
420      record, and let the header filter convert it to data that is ready
421      for the network.
422      [Ryan Bloom]
423
424   *) More fixes for the proxy.  There are still bugs in the proxy code,
425      but this has now proxied www.yahoo.com and www.ntrnet.net (my ISP)
426      successfully.
427      [Ryan Bloom]
428
429   *) Fix params for apr_getaddrinfo() call in connect proxy handler.
430      [Chuck Murcko]
431
432   *) APR: Add new apr_getopt_long function to handle long options.
433      [B. W. Fitzpatrick <fitz@red-bean.com>]
434
435   *) APR: Change apr_connect() to take apr_sockaddr_t instead of hostname.
436      Add generic apr_create_socket().  Add apr_getaddrinfo() for doing
437      hostname resolution/address string parsing and building
438      apr_sockaddr_t.  Add apr_get_sockaddr() for getting the address
439      of one of the apr_sockaddr_t structures for a socket.  Change
440      apr_bind() to take apr_sockaddr_t.  [David Reid and Jeff Trawick]
441
442   *) Remove the BUFF from the HTTP proxy.  This is still a bit ugly, but
443      I have proxied pages with it, cleanup will commence soon.
444      [Ryan Bloom]
445
446   *) Make the proxy work with filters.  This isn't perfect, because we
447      aren't dealing with the headers properly.  [Ryan Bloom]
448
449   *) Do not send a content-length iff the C-L is 0 and this is a head
450      request.  [Ryan Bloom]
451
452   *) Make cgi-bin work as a regular directory when using mod_vhost_alias
453      with no VirtualScriptAlias directives. PR#6829 [Tony Finch]
454
455   *) Remove BUFF from the PROXY connect handling. [Ryan Bloom]
456
457   *) Get the default_handler to stop trying to deal with HEAD requests.
458      The idea is to let the content-length filter compute the C-L before
459      we try to send the data.  If we can get the C-L correctly, then we
460      should send it in the HEAD response.
461      [Ryan Bloom]
462      
463   *) The Header filter can now determine if a body should be sent based
464      on r->header_only.  The general idea of this is that if we delay
465      deciding to send the body, then we might be able to compute the
466      content-length correctly, which will help caching proxies to cache
467      our data better.  Any handler that doesn't want to try to compute
468      the content-length can just send an EOS bucket without data and
469      everything will just work.
470      [Ryan Bloom]
471
472   *) Add the referer to the error log if one is available.
473      [Markus Gyger <mgyger@itr.ch>]
474
475   *) Mod_info.c has now been ported to Apache 2.0.  As a part of this
476      change, the root of the configuration tree has been exposed to modules
477      as ap_conftree.
478      [Ryan Morgan <rmorgan@covalent.net>]
479
480   *) Get the core_output_filter to use the bucket interface directly.
481      This keeps us from calling the content-length filter multiple times
482      for a simple static request.
483      [Ryan Bloom]
484
485   *) We are sending the content-type correctly now.
486      [Ryan Bloom and Will Rowe]
487
488   *) APR on FreeBSD: Fix a bug in apr_sendfile() which caused us to report
489      a bogus bytes-sent value when the only thing being sent was trailers
490      and writev() returned an error (or EAGAIN).  [Jeff Trawick]
491
492   *) Get SINGLE_LISTEN_UNSERIALIZED_ACCEPT working again.  This uses the
493      hints file to determine which platforms define 
494      SINGLE_LISTEN_UNSERIALIZED_ACCEPT.
495      [Ryan Bloom]
496
497   *) APR: add apr_get_home_directory()  [Jeff Trawick]
498
499   *) Initial import of 1.3-current mod_proxy. [Chuck Murcko]
500
501   *) Not all platforms have INADDR_NONE defined by default.  Apache
502      used to make this check and define INADDR_NONE if appropriate,
503      but APR needs the check too, and I suspect other applications will
504      as well.  APR now defines APR_INADDR_NONE, which is always a valid
505      value on all platforms.
506      [Branko Èibej <brane@xbc.nu>]
507
508   *) Destroy the pthread mutex in lock_intra_cleanup() for PR#6824.
509      [Shuichi Kitaguchi <ki@hh.iij4u.or.jp>] 
510
511   *) Relax the syntax checking of Host: headers in order to support
512      iDNS. PR#6635 [Tony Finch]
513
514   *) When reading from file buckets we convert to an MMAP if it makes
515      sense.  This also simplifies the default handler because the
516      default handler no longer needs to try to create MMAPs.
517      [Ryan Bloom]
518
519   *) BUFF has been removed from the main server.  The BUFF code will remain
520      in the code until it has been purged from the proxy module as well.
521      [Ryan Bloom]
522
523   *) Byteranges have been completely re-written to be a filter.  This
524      has been tested, and I believe it is working correctly, but it could
525      doesn't work for the Adobe Acrobat plug-in.  The output almost matches
526      the output from 1.3, the only difference being that 1.3 includes
527      a content-length in the response, and this does not.
528      [Ryan Bloom]
529
530   *) APR read/write functions and bucket read functions now operate
531      on unsigned integers, instead of signed ones.  It doesn't make
532      any sense to use signed ints, because we return the error codes,
533      so if we have an error we should report 0 bytes read or written.
534      [Ryan Bloom]
535
536   *) Always compute the content length, whether it is sent or not.
537      The reason for this, is that it allows us to correctly report
538      the bytes_sent when logging the request.  This also simplifies
539      content-length filter a bit, and fixes the actual byte-reporing
540      code in mod_log_config.c
541      [Ryan Bloom]
542
543   *) Remove AP_END_OF_BRIGADE definition.  This does not signify what
544      it says, because it was only used by EOS and FLUSH buckets.  Since
545      neither of those are required at the end of a brigade, this was
546      really signifying FLUSH_THE_DATA, but that can be determined better
547      by checking AP_BUCKET_IS_EOS() or AP_BUCKET_IS_FLUSH.  EOS and FLUSH
548      buckets now return a length of 0, which is actually the amount of data
549      read, so they make more sense.
550      [Ryan Bloom]
551
552   *) Allow the core_output_filter to save some data past the end of a
553      request.  If we get an EOS bucket, we only send the data if it 
554      makes sense to send it.  This allows us to pipeline request
555      responses.  As a part of this, we also need to allocate mmap
556      buckets out of the connection pool, not the request pool.  This
557      allows the mmap to outlive the request.
558      [Ryan Bloom]
559
560   *) Make blocking and non-blocking bucket reads work correctly for
561      sockets and pipes.  These are the only bucket types that should
562      have non-blocking reads, because the other bucket types should
563      ALWAYS be able to return something immediately.
564      [Ryan Bloom]
565
566   *) In the Apache/Win32 console window, accept Ctrl+C to stop the 
567      server, but use Ctrl+Break to initiate a graceful restart 
568      instead of duplicating behavior. [John Sterling]
569
570   *) Patch mod_autoindex to set the Last-Modified header based on
571      the directory's mtime, and add the ETag header.  [William Rowe]
572
573   *) Merge the 1.3 patch to add support for logging query string in 
574      such a way that "%m %U%q %H" is the same as "%r".
575      [Bill Stoddard]
576
577   *) Port three log methods from mod_log_config 1.3 to 2.0: 
578      CLF compliant '-' byte count, method and protocol.
579      [Bill Stoddard]
580
581   *) Add a new LogFormat directive, %c, that will log connection
582      status at the end of the response as follows:
583      'X' - connection aborted before the response completed.
584      '+' - connection may be kept-alive by the server.
585      '-' - connection will be closed by the server.
586      [Bill Stoddard]
587
588   *) Expand APR for WinNT to fully accept and return utf-8 encoded
589      Unicode file names and paths for Win32, and tag the Content-Type 
590      from mod_autoindex to reflect that charset if the the feature
591      macro APR_HAS_UNICODE_FS is true.  [William Rowe]
592
593   *) Compute the content length (and add appropriate header field) for
594      the response when no content length is available and we can't use 
595      chunked encoding.  [Jeff Trawick]
596
597   *) Changed ap_discard_request_body() to use REQUEST_CHUNKED_DECHUNK,
598      so that content input filters get dechunked data when using
599      the default handler. Also removed REQUEST_CHUNKED_PASS.
600      [Sascha Schumann]
601      
602   *) Add mod_ext_filter as an experimental module.  This module allows
603      the administrator to use external programs as filters.  Currently,
604      only filtering of output is supported.  [Jeff Trawick]
605
606   *) Most Apache functions work on EBCDIC machines again, as protocol
607      data is now translated (again).  [Jeff Trawick]
608
609   *) Introduce ap_xlate_proto_{to|from}_ascii() to clean up some of
610      the EBCDIC support.  They are noops on ASCII machines, so this
611      type of translation doesn't have to be surrounded by #ifdef
612      CHARSET_EBCDIC.  [Jeff Trawick]
613
614   *) Fix mod_include.  tag commands work again, and the server will
615      send the FAQ again.  This also allows mod_include to set aside
616      buckets that include partial buckets.
617      [Ryan Bloom and David Reid]
618
619   *) Add suexec support back.  [Manoj Kasichainula]
620
621   *) Lingering close now uses the socket directly instead of using
622      BUFF.  This has been tested, but since all we can tell is that it
623      doesn't fail, this needs to be really hacked on.
624      [Ryan Bloom]
625
626   *) Allow filters to modify headers and have those headers be sent to
627      the client.  The idea is that we have an http_header filter that
628      actually sends the headers to the network.  This removes the need
629      for the BUFF to send headers.
630      [Ryan Bloom]
631
632   *) Charset translation: mod_charset_lite handles translation of
633      request bodies.  Get rid of the xlate version of ap_md5_digest()
634      since we don't compute digests of filtered (e.g., translated) 
635      response bodies this way anymore.  (Note that we don't do it at
636      all at the present; somebody needs to write a filter to do so.)
637      [Jeff Trawick]
638
639   *) Input filters and ap_get_brigade() now have a input mode parameter 
640      (blocking, non-blocking, peek) instead of a length parameter.
641      [hackathon]
642
643   *) Update the mime.types file to the registered media types as
644      of 2000-10-19. PR#6613 [Carsten Klapp <carsten.klapp@home.net>,
645      Tony Finch]
646
647   *) Namespace protect some macros declared in ap_config.h
648      [Ryan Bloom]
649
650   *) Support HTTP header line folding with input filtering.
651      [Greg Ames]
652
653   *) Mod_include works again.  This should still be re-written, but at
654      least now we can serve an SHTML page again.
655      [Ryan Bloom]
656
657   *) Begin to remove BUFF from the core.  Currently, we keep a pointer
658      to both the BUFF and the socket in the conn_rec.  Functions that
659      want to use the BUFF can, functions that want to use the socket,
660      can.  They point to the same place.
661      [Ryan Bloom]
662
663   *) apr_psprintf doesn't understand %lld as a format.  Make it %ld.
664      [Tomas "Ögren" <stric@ing.umu.se>]
665
666   *) APR pipes on Unix and Win32 are now cleaned up automatically when the 
667      associated pool goes away.  (APR pipes on OS/2 were already had this
668      logic.)  This resolvs a fatal file descriptor leak with CGIs.  
669      [Jeff Trawick]
670
671   *) The final line of the config file was not being read if there was
672      no \n at the end of it.  This was caused by apr_fgets returning 
673      APR_EOF even though we had read valid data.  This is solved by
674      making cfg_getline check the buff that was returned from apr_fgets.
675      If apr_fgets return APR_EOF, but there was data in the buf, then we
676      return the buf, otherwise we return NULL.
677      [Ryan Bloom]
678
679   *) Piped logs work again in the 2.0 series.
680      [Ryan Bloom]
681
682   *) Restore functionality broken by the mod_rewrite security fix:
683      rewrite map lookup keys and default values are now expanded
684      so that the lookup can depend on the requested URI etc.
685      PR #6671 [Tony Finch]
686
687   *) Tighten up the syntax checking of Host: headers to fix a
688      security bug in some mass virtual hosting configurations
689      that can allow a remote attacker to retrieve some files
690      on the system that should be inaccessible. [Tony Finch]
691
692   *) Add a pool bucket type.  This bucket is used for data allocated out
693      of a pool.  If the pool is cleaned before the bucket is destroyed, then
694      the data is converted to a heap bucket, allowing it to survive the
695      death of the pool.
696      [Ryan Bloom]
697
698   *) Add a flush bucket.  This allows modules to signal that the filters
699      should all flush whatever data they currently have.  There is no way
700      to actually force them to do this, so if a filter ignores this bucket,
701      that's life, but at least we can try with this.
702      [Ryan Bloom]
703
704   *) Add an output filter for sub-requests.  This filter just strips the
705      EOS bucket so that we don't confuse the main request's core output
706      filter by sending multiple EOS buckets.  This change also makes sub
707      requests start to send EOS buckets when they are finished.
708      [Ryan Bloom]
709
710   *) Make ap_bucket_(read|destroy|split|setaside) into macros.  Also
711      makes ap_bucket_destroy a return void, which is okay because it
712      used to always return APR_SUCCESS, and nobody ever checked its
713      return value anyway.
714      [Cliff Woolley <cliffwoolley@yahoo.com>]
715
716   *) Remove the index into the bucket-type table from the buckets
717      structure.  This has now been replaced with a pointer to the
718      bucket_type.  Also add some macros to test the bucket-type.
719      [Ryan Bloom]
720
721   *) Renamed all MODULE_EXPORT symbols to AP_MODULE_DECLARE and all symbols
722      for CORE_EXPORT to AP_CORE_DECLARE (namespace protecting the wrapper)
723      and retitled API_EXPORT as AP_DECLARE and APR_EXPORT as APR_DECLARE.
724      All _VAR_ flavors changes to _DATA to be absolutely clear.
725      [William Rowe]
726
727   *) Add support for /, //, //servername and //server/sharename 
728      parsing of <Directory> blocks under Win32 and OS2.
729      [Tim Costello, William Rowe, Brian Harvard]
730
731   *) Remove the function pointers from the ap_bucket type.  They have been
732      replaced with a global table.  Modules are allowed to register bucket
733      types and use then use those buckets.
734      [Ryan Bloom]
735
736   *) mod_cgid: In the handler, shut down the Unix socket (only for write) 
737      once we finish writing the request body to the cgi child process; 
738      otherwise, the client doesn't hit EOF on stdin.  Small request bodies 
739      worked without this change (for reasons I don't understand), but large 
740      ones didn't.  [Jeff Trawick]
741
742   *) Remove file bucket specific information from the ap_bucket type.
743      This has been moved to a file_bucket specific type that hangs off
744      the data pointer in the ap_bucket type.
745      [Ryan Bloom]
746
747   *) Input filtering now has a third argument.  This is the amount of data
748      to read from lower filters.  This argument can be -1, 0, or a positive
749      number.  -1 means give me all the data you have, I'll deal with it and
750      let you know if I need more.  0 means give me one line and one line
751      only.  A positive number means I want no more than this much data.
752
753      Currently, only 0 and a positive number are implemented.  This allows
754      us to remove the remaining field from the conn_rec structure, which
755      has also been done.
756      [Ryan Bloom] 
757     
758   *) Big cleanup of the input filtering.  The goal is that http_filter
759      understands two conditions, headers and body.  It knows where it is
760      based on c->remaining.  If c->remaining is 0, then we are in headers,
761      and http_filter returns a line at a time.  If it is not 0, then we are
762      in body, and http_filter returns raw data, but only up to c->remaining
763      bytes.  It can return less, but never more.
764      [Greg Ames, Ryan Bloom, Jeff Trawick]
765
766   *) mod_cgi: Write all of the request body to the child, not just what
767      the kernel would accept on the first write.  [Jeff Trawick]
768
769   *) Back out the change that moved the brigade from the core_output_filters
770      ctx to the conn_rec.  Since all requests over a given connection
771      go through the same core_output_filter, the ctx pointer has the
772      correct lifetime.
773      [Ryan Bloom]
774
775   *) Fix another bug in the send_the_file() read/write loop. A partial
776      send by apr_send would cause unsent data in the read buffer to
777      get clobbered. Complete making send_the_file handle partial
778      writes to the network.
779      [Bill Stoddard]
780
781   *) Fix a couple of type fixes to allow compilation on AIX again
782      [Victor J. Orlikowski <v.j.orlikowski@gte.net>]
783
784   *) Fix bug in send_the_file() which causes offset to be ignored
785      if there are no headers to send.
786      [Bill Stoddard]
787
788   *) Handle APR_ENOTIMPL returned from apr_sendfile in the core
789      filter. Useful for supporting Windows 9* with a binary
790      compiled on Windows NT.
791      [Bill Stoddard]
792
793 Changes with Apache 2.0a7
794
795   *) Reimplement core_output_filter to buffer/save bucket brigades
796      across multiple calls to the core_filter. The brigade will be
797      sent when either MIN_BYTES_TO_SEND or MAX_IOVEC_TO_WRITE
798      thresholds are hit or the EOS bucket is received.
799      [Bill Stoddard]
800
801   *) Create experimental filter (buffer_filter) that coalesces bytes 
802      into one large buffer before invoking the next filter in the
803      chain. This filter is particularly useful with the current 
804      implementation of mod_autoindex when it inserted above the
805      chunk_filter. mod_autoindex generates a lot of brigades that
806      containing buckets holding just a few bytes each. The
807      buffer_filter coalesces these buckets into a single large bucket.
808      [Bill Stoddard]
809
810   *) Add apr_sendfile() support into the core_output_filter.
811      [Bill Stoddard]
812
813   *) Add apr_sendv() support into the core_output_filter.
814      [Bill Stoddard]
815
816   *) Fix mod_log_config so that it compiles cleanly with BUFFERED_LOGS
817      [Mike Abbott <mja@sgi.com>]
818
819   *) Remove ap_send_fb.  This is no longer used in Apache, and it doesn't
820      make much sense, because Apache uses buckets instead of BUFFs now.
821      [Ryan Bloom]
822
823   *) send_the_file now falls back to a read/write loop on platforms that
824      do not have sendfile.
825      [Ryan Bloom and Brian Havard]
826
827   *) Install apachectl correctly, and substitute the proper values so
828      that it works again.  [Ryan Bloom]
829
830   *) Better(??) handle platforms that lack sendfile().
831      [Jim Jagielski]
832
833   *) APR now has UUID generation/formatting/parsing support.
834      [Greg Stein]
835
836   *) Begin the http_filter.  This is an input filter that understands
837      the absolute basic amount required to parse an HTTP Request.  The
838      goal is to be able to split headers from request body before passing
839      the data back to the other filters.
840      [Ryan Bloom]
841
842   *) Bring forward from 1.3.13 the config directory implementation
843      [Jim Jagielski]
844
845   *) install apxs if it is created
846      [Ryan Bloom]
847
848   *) Added APR_IS_STATUS_condition test macros to eliminate canonical error
849      conversions.  [William Rowe]
850
851   *) Now that we have ap_add_input_filter(), rename ap_add_filter() to 
852      ap_add_output_filter().  [Jeff Trawick]
853
854   *) Multiple build and configuration fixes
855     Build process:
856
857       -add datadir and localstatedir substitutions
858       -fix layout name
859       -fix logfilename misspelling
860       -fix evaluation of installation dir variables and
861       -replace $foobar by $(foobar) to be usefull in the makefile
862     
863     Cross compile:
864     
865       -add rules for cross-compiling in rules.mk. Okay, rule to check for
866        $CC_FOR_BUILD is still missing
867       -use CHECK_TOOL instead of CHECK_PROG for ranlib
868       -add missing "AR=@AR@" to severaly Makefile.in's
869       -cache result for "struct rlimit"
870       -compile all helper programs with native and cross compiler
871        and use the native version to generate header file
872      ["Rüdiger" Kuhlmann <Tadu@gmx.de>]
873
874   *) Prepare our autoconf setup for autoconf 2.14a and for cross-
875      compiling.
876      ["Rüdiger" Kuhlmann <Tadu@gmx.de>]
877
878   *) Fix a bug where a client which only sends \n to delimit header
879      lines (netcat) gets a strange looking HTTP_NOT_IMPLEMENTED 
880      message.  Start working on ebcdic co-existance with input 
881      filtering.
882      [William Rowe, Greg Ames]
883
884   *) If mod_so is enabled in the server always create libexec, even
885      if there are no modules installed in this directory.  This is a
886      requirement for APXS to work correctly.
887      [Ryan Bloom]
888
889   *) Connection oriented output filters are now stored in the 
890      conn_rec instead of the request_rec.  This allows us to add the
891      output filter in the pre-connection phase instead of the
892      post_read_request phase, which keeps us from trying to write an
893      error page before we have a filter to write to the network.
894      [Ryan Bloom, Jeff Trawick, and Greg Ames]
895
896   *) Cleaning up an mmap bucket no longer deletes the mmap.  An
897      mmap can be used across multiple buckets (default_handler with
898      byte ranges, mod_file_cache, mod_mmap_static), so cleanup of
899      the mmap itself can't be associated with the bucket.
900      [Jeff Trawick]
901
902   *) Add .dll caching directive ISAPICacheFile to mod_isapi.
903      [William Rowe]
904
905   *) Radical surgery to improve mod_isapi support under Win32.
906      Includes a number of newer ServerSupportFunction calls, support
907      for ReadClient (in order to retrieve POSTs greater than 48KB),
908      and general bug fixes to more reliably load ISAPI .dll's and
909      prevent leaking handle resources.  Note: There are still 
910      discrepancies between IIS's and Apache's ServerVariables, and
911      async calls are still not supported.  Additional warnings are
912      logged to facilitate debugging of unsupported ISAPI calls.
913      [William Rowe]
914
915   *) Add input filtering to Apache.  The basic idea for the input
916      filters is the same as the ideas for output filters.  The biggest
917      difference is that instead of calling ap_pass_brigade, ap_get_brigade
918      should be called, and the order of execution for the filter itself is
919      different.  When writing an output filter, a brigade is passed in,
920      and filters operate directly on that brigade, when done, they call
921      ap_pass_brigade.  Input filters are the exact opposite.  Because input
922      is not a push operation, filters first call ap_get_brigade.  When this
923      function returns, the input filter will be left with a valid brigade.
924      The input filter should then operate on the brigade, and return.
925      [Ryan Bloom]
926
927   *) Fix building on BSD/OS using its native make. The build system
928      falls back to the BSD .include directive on that host platform.
929      [Sascha Schumann]
930
931   *) Expand dbmmanage to allow -d -m -s -p options for Crypt, MD5,
932      SHA1 and plaintext password encodings.  Make feature tests a
933      bit more flexible.  [William Rowe]
934
935   *) Charset translation: mod_charset_lite handles output content 
936      translation in a filter.  mod_charset_lite no longer ignores 
937      subrequests.  A bunch of cruft related to BUFF's support for
938      translating request and response bodies was removed.  
939      [Jeff Trawick]
940
941   *) Move the addition of the CORE filter to the post_read_request
942      hook in http_core.c.  This removes the need to add the filter in
943      multiple places and allows for an SSL module to be added much
944      simpler. [Ryan Bloom]
945
946   *) Fix a security problem that affects certain configurations of
947      mod_rewrite. If the result of a RewriteRule is a filename that
948      contains expansion specifiers, especially regexp backreferences
949      $0..$9 and %0..%9, then it may be possible for an attacker to
950      access any file on the web server. [Tony Finch]
951
952   *) Fix a bug where errors that are detected during early request parsing
953      don't produce visible HTTP error messages at the browser, because
954      the core_filter wasn't present.  [Greg Ames]
955
956   *) Provide apr_socklen_t as a portability aid. 
957      [Victor  J. Orlikowski]
958
959   *) Overhaul of dbmmanage to allow a groups arg (as in Apache 1.2)
960      as well as a comment arg to the add, adduser and update cmds.
961      update allows the user to clear or preserve pw/groups/comment.
962      Fixed a bug in dbmmanage that prevented the check option from 
963      parsing a password followed by :group... text.  Corrected the
964      seed calcualation for Win32 systems, and added -lsdbm support.
965      [William Rowe]
966
967   *) Configured mod_auth_dbm to compile with sdbmlib under Win32.
968      [William Rowe]
969
970   *) Avoid a segfault when parsing .htaccess files.  An 
971      uninitialized tree pointer was passed to ap_build_config().
972      [Jeff Trawick]
973
974   *) Change the way that inet_addr & inet_network are checked for
975      in APR's configure process to allow BeOS BONE to correctly
976      find them. With this change BeOS BONE now builds from source
977      with no problems.  [David Reid]
978
979   *) Fix a bug in apr_create_process() for Unix.  The NULL signifying
980      the end of the parameters to execve() was stored in the wrong
981      location, overlaying the storage beyond the newargs[] array and 
982      also passing uninitialized storage to execve(), which would 
983      sometimes fail with EFAULT.  [Jeff Trawick]
984
985   *) Fix a bug parsing configuration file containers.  With a sequence
986      like this in the config file
987
988        <IfModule mod_kilroy.c>
989        any stuff
990        </IfModule>
991        <IfModule mod_lovejoy.c>
992        (blank line)
993        any stuff
994        </IfModule>
995
996      the second container would be terminated at the blank line due to
997      sediment in the buffer from reading the prior </IfModule> and an 
998      error message would be generated for the real </IfModule> for the
999      second container.  Also due to this problem, any two characters 
1000      could be used for "</" in the close of a container.  
1001      [Jeff Trawick]
1002
1003   *) ap_add_filter prototype changed to remove the ctx pointer.  The
1004      pointer still remains in the filter structure, but it can not be
1005      a part of the ap_add_filter prototype.  The reason is that when
1006      the core uses AddFilter to add a filter to the stack it doesn't
1007      know how to allocate the ctx pointer, or even how much memory should
1008      be allocated.  The filters will have to be responsible for allocating
1009      the ctx memory when they need it.
1010      [Ryan Bloom]
1011
1012   *) Add an AddFilter directive.  This directive takes a list of filters
1013      that should be activated for the requested resource.
1014      [Ryan Bloom]
1015
1016   *) apr_snprintf(): Get quad format strings working on OS/390 (and perhaps
1017      some other platforms).  [Jeff Trawick]
1018
1019   *) Modify mod_include to be a filter.  Currently, it has only been tested
1020      on actual files, but it should work for CGI scripts too.
1021      [Ryan Bloom]
1022
1023   *) apr_putc(), apr_puts() for Unix: handle buffered files and interrupted
1024      writes.  apr_flush() for Unix: handle interrupted writes.
1025      [Jeff Trawick]
1026
1027   *) NameVirtualHost can now take "*" as an argument instead of
1028      an IP address. This allows you to create a purely name-based
1029      virtual hosting server that does not have any IP addresses in
1030      the configuration file and which ignores the local address
1031      of any connections. PR #5595, PR #4455 [Tony Finch]
1032
1033   *) Fix some compile warnings in mod_mmap_static.c
1034      [Mike Abbott <mja@sgi.com>]
1035
1036   *) Fix chunking problem with CGI scripts.  The general problem was that
1037      the CGI modules were adding an EOS bucket and then the core added an
1038      EOS bucket.  The chunking filter finalizes the chunked response when it
1039      encounters an EOS bucket.  Because two EOS buckets were sent, we
1040      finalized the response twice.  The fix is to make sure we only send one
1041      EOS, by utilizing a flag in the request_rec.
1042      [Ryan Bloom]
1043
1044   *) apr_put_os_file() now sets up the unget byte appropriately on Unix
1045      and Win32.  Previously, the first read from an apr_file_t set up via
1046      apr_put_os_file() would return a '\0'.  [Jeff Trawick]
1047
1048   *) Mod_cgid now creates a single element bucket brigade, with a pipe
1049      bucket, instead of using BUFF's and ap_r*.
1050      [Ryan Bloom]
1051
1052   *) APRVARS.in no longer overwrites the EXTRA_LIBS variable.
1053      [Mike Abbott <mja@sgi.com>]
1054
1055   *) Remove ap_bopenf from buff code.  This required modifying the file_cache
1056      code to use APR file's directly instead of going through BUFFs.
1057      [Ryan Bloom]
1058
1059   *) Fix compile break on some platforms for mod_mime_magic.c
1060      [John K. Sterling <sterling@covalent.net>]
1061
1062   *) Fix merging of AddDefaultCharset directive.
1063      PR #5872 (1.3) [Jun Kuriyama <kuriyama@imgsrc.co.jp>]
1064
1065   *) Minor revamp of the rlimit sections of code. We now test
1066      explicitly for setrlimit and getrlimit. Also, unixd_set_rlimit()
1067      is now "available" even if the platform doesn't support
1068      the rlimit family (it's just a noop though). [Jim Jagielski]
1069
1070   *) Migrate the pre-selection of which MPM to use for specific
1071      platforms to hints.m4, which contains (or should contain)
1072      all platform specific "hints". [Jim Jagielski]
1073
1074   *) Remove IOLs from Apache.  With filtering, IOLs are no longer necessary
1075      [Ryan Bloom]
1076
1077   *) Add tables with non-string/binary values to APR.
1078      [Ken Coar]
1079
1080   *) Fix some bad calls to ap_log_rerror() in mod_rewrite. 
1081      [Jeff Trawick]
1082
1083   *) Update PCRE to version 3.2.  [Ryan Bloom]
1084
1085   *) Change the way buckets' destroy functions are called so that
1086      they can be more directly used when changing the type of a
1087      bucket in place. [Tony Finch]
1088
1089   *) Add generic support for reference-counting the resources used by
1090      buckets, and alter the HEAP and MMAP buckets to use it. Change
1091      the way buckets are initialised to support changing the type of
1092      buckets in place, and use it when setting aside TRANSIENT buckets.
1093      Change the implementation of TRANSIENT buckets so that it can be
1094      mostly shared with IMMORTAL buckets, which are now implemented.
1095      [Tony Finch]
1096
1097 Changes with Apache 2.0a6
1098
1099   *) Add support to Apache and APR for dsos on OS/390.  [Greg Ames]
1100
1101   *) Add a chunking filter to Apache.  This brings us one step closer
1102      to removing BUFF. [Ryan Bloom]
1103
1104   *) ap_add_filter now adds filters in a LIFO fashion.  The first filter
1105      added to the stack is the last filter to be called.  [Ryan Bloom]
1106
1107   *) Apache 2.0 has been completely documented using Scandoc.  The
1108      docs can be generated by running 'make docs'.  [Ryan Bloom]
1109
1110   *) Add filtered I/O to Apache.  This is based on bucket brigades,
1111      Currently the buckets still use BUFF under the covers, but that
1112      should change quickly.  The only currently written filter is the
1113      core filter which just calls ap_bwrite.  [The Apache Group]
1114
1115   *) APR locks on Unix: Let APR_LOCKALL locks work when APR isn't
1116      built with thread support.  [Jeff Trawick]
1117
1118   *) Abort configuration if --with-layout was specified and there's
1119      no layout definition file.  [Ken Coar]
1120
1121   *) Add support for '--with-port=n' option to configure.  [Ken Coar]
1122
1123   *) Add support for extension methods for the Allow response header
1124      field, and an API routine for accessing r->allowed and the
1125      list of extension methods in a unified manner.  [Ken Coar]
1126
1127   *) mod_cern_meta: fix broken file reading loop in scan_meta_file().
1128      [Rob Simonson <simo@us.ibm.com>]
1129
1130   *) Get xlate builds working again.  The apr renaming in 2.0a5 broke
1131      APACHE_XLATE builds.  [Jeff Trawick]
1132
1133   *) A configuration file parsing problem was fixed.  When the 
1134      configuration file started with an IfModule/IfDefine container, 
1135      only the last statement in the container would be retained.  
1136      [Jeff Trawick]
1137
1138 Changes with Apache 2.0a5
1139
1140   *) Perchild is serving pages after passing them to different child
1141      processes.  There are still a lot of bugs, but this does work.  I
1142      have made requests against the same installation of Apache, and had
1143      different servers use different user IDs to serve the responses.
1144      This change moves to using socketpair instead of an AF_UNIX socket.
1145      [Ryan Bloom]
1146
1147   *) Perchild MPM still doesn't work perfectly, but it is serving pages.
1148      It can't seem to pass between child processes yet, but I think we
1149      are closer now than before.  This moves us back to using Unix
1150      Domain Sockets.  [Ryan Bloom]
1151
1152   *) libapr functions and types renamed with apr_ prefix.
1153      #include "apr_compat.h" for 1.3.x backwards compat
1154      [Perl]
1155
1156   *) Fix problems with APR sockaddr handling on Win32.  It didn't always
1157      return the right information on the local socket address.
1158      [Gregory Nicholls <gnicholls@level8.com>]
1159
1160   *) ap_recv() on Win32: Set bytes-read to 0 on error.  
1161      [Gregory Nicholls <gnicholls@level8.com>]
1162
1163   *) Add an option to not detach from the controlling terminal without
1164      going into single process mode.  This allows for much easier
1165      debugging of the process startup code. [Ryan Bloom]
1166
1167   *) ab: don't use perror() to report the failure of an APR function.
1168      [Jeff Trawick]
1169
1170   *) Make dexter, mpmt_pthread, and perchild MPMs not destroy the
1171      scoreboard on graceful restarts.
1172      [Ryan Bloom]
1173
1174   *) Fix segfault/SIGSEGV when running gzip from mod_mime_magic.c.
1175      An invalid ap_proc_t was passed to ap_create_process().
1176      [Jeff Trawick]
1177
1178   *) Allow modules to register filters.  Those filters are still
1179      never called, but this is a step in the right direction.
1180      [Ryan Bloom and Greg Stein]
1181
1182   *) Register the mod_cgid daemon process for cleanup so that it is
1183      killed at termination if it does not die when the parent gets
1184      SIGTERM.  This change is to fix occasional problems where the
1185      process stays around.  Bugs in similar logic in mod_rewrite and
1186      mod_include were also fixed.  [Jeff Trawick]
1187
1188   *) Fix a bug in the time handling.  Basically, we were imploding a time
1189      in ap_parseHTTPdate, but it had bogus data in the exploded time format.
1190      Namely, tm_usec and tm_gmtoff were not filled out.  ap_implode_time
1191      uses those two fields to adjust the time value.  Because of the HTTP
1192      spec, both of those values can be zero'ed out safely.  This fixes
1193      the bug correctly.  [Ryan Bloom]
1194
1195   *) Fix a couple of place in the Windows code where the wrong error
1196      code was being returned. [Gregory Nicholls <gnicholls@level8.com>]
1197
1198   *) Fix POOL_DEBUG (at least for prefork mpm). [Dean Gaudet]
1199
1200   *) Added the APR_EOL_STR macro for platform dependent differences in 
1201      logfiles and other raw text (such as all APR files).  Fixes logfiles
1202      not terminated with cr/lf sequences in Win32.  [William Rowe]
1203
1204   *) Move all strings functions in APR to src/lib/apr/strings and create
1205      apr_strings.h for the prototypes. [Ryan Bloom]
1206
1207   *) APR lock fixes: when using SysV sems, flock(), or fcntl(), be sure
1208      to repeat the syscall until we stop getting EINTR.  I noticed a
1209      related problem at termination (SIGTERM) on FreeBSD when using
1210      fcntl().  Apache 1.3 had these new loops too.  Also, make the flock() 
1211      implementation work properly with child init.  Previously, ap_lock()
1212      was essentially a no-op because all children were using different
1213      locks and thus nobody ever blocked.  [Jeff Trawick]
1214
1215   *) The htdocs/ tree has been moved out of the CVS source tree into
1216      a separate area for easier development.  This has NO EFFECT on
1217      end-users or Apache installations.  [Ken Coar]
1218
1219   *) Integrate the mod_dav module for WebDAV protocol handling. This
1220      adds the dav and dav_fs modules, the SDBM library, and additional
1221      XML handling utilities. [Greg Stein]
1222
1223   *) Clean out obsolete names (from httpd.h) for the HTTP Status Codes
1224      [Greg Stein]
1225
1226   *) Update the lib/expat-lite/ library (bring forward changes from
1227      the Apache 1.3 repository). [Greg Stein]
1228
1229   *) If sizeof(long long) == sizeof(long), then prefer long in APR
1230      configure.in.  [Dave Hill <ddhill@zk3.dec.com>]
1231
1232   *) Add ap_sendfile for Tru64 Unix.  Also, add an error message for
1233      machines where sendfile is detected, but nobody has written ap_sendfile.
1234      [Dave Hill <ddhill@zk3.dec.com>]
1235
1236   *) Compile fixes in mod_mmap_static.  [Victor J. Orlikowski]
1237
1238   *) ab would start up more connections than needed, then quit when the
1239      desired number were finished. Also fixed a logic error involving
1240      ab keepalives.  [Victor J. Orlikowski]
1241
1242   *) WinNT: Implement non-blocking pipes with timeouts to communicate
1243      with CGIs. Apache 2.0a4 had non-blocking pipes but without 
1244      timeouts (i.e, if a timeout was specified, the pipe reverted to
1245      a full blocking pipe). Now the behaviour is more in line with
1246      Unix non-blocking pipes.
1247      [Bill Stoddard]
1248
1249   *) WinNT: Implement accept socket reuse. Using mod_file_cache to
1250      cache open file handles along with accept socket reuse enables
1251      Apache 2.0 to serve non-keepalive requests for static files at
1252      3x the rate of Apache 1.3.(e.g, Apache 1.3 will serve 400 rps
1253      and Apache 2.0 will serve almost 1200 rps on my system).
1254      [Bill Stoddard]
1255
1256   *) Merge mod_mmap_static function into mod_file_cache. mod_file_cache
1257      supports two config directives, mmapfile (same behavious as
1258      mod_mmap_static) and cachefile. Use the cachefile directive
1259      to cache open file handles. This directive only works on systems
1260      that have implemented the ap_sendfile API. cachefile works today
1261      on Windows NT, but has not been tested on any flavors of Unix.
1262      [Bill Stoddard]
1263
1264   *) Cleanup the configuration.  With the last few changes the
1265      configuration process automatically:
1266          inherits information about how to build from APR.  Allowing
1267          APR to inform Apache that it should or should not use -ldl
1268         
1269          Detects which mod_cgi should be used mod_cgi or mod_cgid,
1270          based on the threading model
1271
1272          Apache calls APR's configure process before finishing it's
1273          configuration processing, allowing for more information flow
1274          between the two.
1275      [Ryan Bloom]
1276          
1277
1278   *) Change Unix and Win32 ap_setsockopt() so that APR_SO_NONBLOCK
1279      with non-zero argument makes the socket non-blocking.  BeOS and
1280      OS/2 already worked this way.  [Jeff Trawick]
1281
1282   *) ap_close() now calls ap_flush() for buffered files, so write
1283      operations work a whole lot better on buffered files.
1284      [Jeff Trawick]
1285
1286   *) Fix error messages issued from MPMs which explain where to change
1287      compiled-in limits (e.g., ThreadsPerChild, MaxClients, StartTreads).
1288      [Greg Ames]
1289
1290   *) ap_create_pipe() now leaves pipes in blocking state.  (This helps 
1291      reduce the number of syscalls on Unix.)  ap_set_pipe_timeout() is
1292      now the way that the blocking state of a pipe is manipulated.
1293      ap_block_pipe() is gone.  [Jeff Trawick]
1294
1295   *) Correct the problem where the only local host name that the IP stack
1296      can discover are 'undotted' private names.  If no fully qualified
1297      domain name can be identified, the default ServerName will be set to
1298      the machine's IP address string. A warning is always provided if the
1299      ServerName not specified, but assumed.  Solves PR6215 [William Rowe]
1300
1301   *) Repair problems with config file processing which caused segfault
1302      at init when virtual hosts were defined and which caused ServerName to
1303      be ignored when there was no valid DNS setup.  [Jeff Trawick]
1304
1305   *) Removed pointless ap_is_aborted macro function. [Roy Fielding]
1306
1307   *) Add ap_sendfile implementation for AIX
1308      [Victor J. Orlikowski]
1309
1310   *) Repair C++ compatibility in ap_config.h, apr_file_io.h, 
1311      apr_network_io.h, and apr_thread_proc.h.  
1312      [Tyler J. Brooks <tylerjbrooks@home.com>, Jeff Trawick]
1313
1314   *) Bring the allocation and pool debugging code back into a working
1315      state.  This will need to be tested as so far it's only been used on
1316      BeOS. [David Reid]
1317
1318   *) Change configuration command setup to be properly typesafe when in
1319      maintainer mode. Note that this requires a compiler that can initialise
1320      unions. [Ben Laurie]
1321
1322   *) Turn on buffering for config file reads.  Part of this was to
1323      repair buffered I/O support in Unix and implement buffered
1324      ap_fgets() for all platforms.  [Brian Havard, Jeff Trawick]
1325
1326   *) Win32: Fix problem where UTC offset was not being set correctly
1327      in the access log. Problem reported on news group by Jerry Baker.
1328      [Bill Stoddard]
1329
1330   *) Fix segfault when reporting this type of syntax error:
1331      "</container> without matching <container> section", where
1332      container is VirtualHost or Directory or whatever.
1333      [Jeff Trawick]
1334
1335   *) Prevent the source code for CGIs from being revealed when using
1336      mod_vhost_alias and the CGI directory is under the document root
1337      and a user makes a request like http://www.example.com//cgi-bin/cgi
1338      as reported in <news:960999105.344321@ernani.logica.co.uk>
1339      [Tony Finch]
1340
1341   *) Add support for the new Beos NetwOrking Environment (BONE)
1342      [David Reid]
1343
1344   *) xlate: ap_xlate_conv_buffer() now tells the caller when the
1345      final input char is incomplete; ap_bwrite_xlate() now handles
1346      incomplete final input chars.  [Jeff Trawick]
1347
1348   *) Yet another update to saferead/halfduplex stuff -- need to ensure
1349      that a bhalfduplex call occurs before logging or else DNS and
1350      such can delay the last packet of the response.  [Dean Gaudet]
1351
1352   *) Some syscall reduction in APR on unix -- don't seek when setting
1353      up an mmap; and don't fcntl() more than once per socket.
1354      [Dean Gaudet]
1355
1356   *) When mod_cgid is started as root, the cgi daemon now switches 
1357      to the configured User/Group (like other httpd processes) 
1358      instead of continuing as root.  [Jeff Trawick]
1359
1360   *) The prefork MPM now uses an APR lock for the accept() mutex.
1361      It has not been getting a lock at all recently.  httpd -V now 
1362      displays APR's selection of the lock mechanism instead of the 
1363      symbols previously respected by prefork.  [Jeff Trawick]
1364
1365   *) Change the mmap() feature test to check only for existence.
1366      The previous check required features not used by Apache.
1367      [Greg Ames]
1368
1369   *) Fix a couple of bugs in mod_cgid:  The cgi arguments were
1370      sometimes mangled.  The len parm to accept() was not 
1371      initialized, leading sometimes to an endless loop of failed
1372      accept() calls on OS/390 and anywhere else that failed the call
1373      if the len was negative.  Use <sys/un.h> for struct sockaddr_un
1374      instead of declaring it ourselves to fix a compilation problem
1375      on Solaris.  [Jeff Trawick]
1376
1377   *) Add Resource limiting code back into Apache 2.0. [Ryan Bloom]
1378
1379   *) Fix zombie process problem with mod_cgi.  [Jeff Trawick]
1380
1381   *) Port mod_mmap_static to 2.0.  Make it go faster.  [Greg Ames]
1382
1383   *) Fix storage overlay when loading dsos.  Symptom: Apache dies at
1384      initialization if ALLOC_DEBUG is defined; no known symptom 
1385      otherwise.  [Jeff Trawick]
1386
1387   *) Fix typo in configure script when checking for mod_so.  bash
1388      doesn't seem to have a problem but /bin/sh on Solaris does.
1389      Symptom: "./configure: test: unknown operator =="
1390      [Jeff Trawick]
1391    
1392   *) Rebind the Win32 NT and 9x services control into the MPM.  
1393      All console, WinNT SCM and Win9x pseudo-service control code is
1394      now wrapped within the WinNT MPM.
1395      [William Rowe]
1396
1397   *) Make a copy of getenv("PATH") before storing for later use.  Some
1398      getenv() implementations use the same storage for successive calls.
1399      CGIs on OS/390 had a bad PATH due to this.  [Jeff Trawick]
1400
1401   *) Server Tokens work in 2.0 again.  This also propogates the change
1402      to allow just the product name in the server string using
1403      PRODUCT_ONLY.
1404      [Ryan Bloom]
1405
1406 Changes with Apache 2.0a4
1407
1408   *) EBCDIC: Rearrange calls to ap_checkconv() so that most handlers
1409      won't need to call it.  [Greg Ames, Jeff Trawick]
1410
1411   *) Move pre_config hook call to between configuration read and config
1412      tree walk.  This allows all modules to implement pre_config hooks
1413      and know that they will be called at an appropriate time.
1414      [Ryan Bloom] 
1415
1416   *) mod_cgi, mod_cgid: Make ScriptLog directive work again.  
1417      [Jeff Trawick]
1418
1419   *) Add pre-config hooks back to all modules.
1420      [Ryan Bloom]
1421
1422   *) Fix a SIGSEGV in ap_md5digest(), which is used when you have
1423      ContentDigest enabled and we can't/don't mmap the file. 
1424      [Jeff Trawick]
1425
1426   *) We now report the correct line number for syntax errors in config
1427      files.  [Ryan Bloom, Greg Stein, Jeff Trawick]
1428
1429   *) Brought mod_auth_digest up to synch with 1.3, fixed ap_time_t-
1430      related bugs, and changed shmem/locking to use apr API. Shared-mem
1431      is currently disabled, however, because of problems with graceful
1432      restarts. [Ronald Tschalär]
1433
1434   *) Fix corruption of IFS variable in --with-module= handling.  
1435      Depending on the user's shell or customization thereof, there 
1436      would be errors generating ap_config_auto.h later in the configure
1437      procedure.  [Jeff Trawick]
1438
1439   *) mod_cgi: Restore logging of stderr from child process when ScriptLog 
1440      isn't used (as in 1.3), except that on Unix it is now logged via 
1441      ap_log_rerror() instead of by the child having STDERR_FILENO refer
1442      to the error log.  [Greg Ames, Jeff Trawick]
1443
1444   *) Add '-D' argument processing for run time configuration defines.
1445      [William Rowe]
1446
1447   *) Organize http_main.c as independent code, such that no code or
1448      global data is exported from it.  WIN32 will dynamically link it
1449      to the server core, so this will prevent mutual dependency.
1450      [William Rowe]
1451
1452   *) Add separate dynamic linkage tags APR_EXPORT(), APR_EXPORT_NONSTD()
1453      and APR_VAR_EXPORT to correctly resolve apr functions and globals.
1454      [William Rowe]
1455
1456   *) Add Win9x service execution and Ctrl+C/Ctrl+Break/Shutdown handlers.
1457      [William Rowe, Jan Just Keijser <KEIJSERJJ@logica.com>]
1458
1459   *) Add mod_charset_lite for configuring character set translation.
1460      [Jeff Trawick]
1461
1462   *) Add '-n' option to htpasswd to make it print its user:pw record
1463      on stdout rather than having to frob a text file.  [Ken Coar]
1464
1465   *) Fix saferead.  Basically, we flush the output buffer if a read on the
1466      input will block.
1467      [Ryan Bloom]
1468  
1469   *) APR: Add ap_xlate_get_sb() so that an app can find out whether or not
1470      a conversion is single-byte only. [Jeff Trawick]
1471
1472   *) BEOS: ap_shutdown should return APR_SUCCESS or errno. Note that
1473      the BeOS 5.0 documentation says that shutdown doesn't work yet.
1474      [Roy Fielding]
1475
1476   *) Fix some minor errors where pid was being manipulated as an int
1477      instead of the portable pid_t.  [Roy Fielding]
1478
1479   *) Fix some error log prints that were printing the pointer to a
1480      structure rather than the pid within the structure.
1481      [Jeff Trawick, Roy Fielding]
1482
1483   *) ab: Fix a command-line processing bug; track bad headers in 
1484      err_response; support reading headers up to 2K. 
1485      [Ask Bjoern Hansen <ask@valueclick.com>]
1486
1487   *) Fix ap_resolve_env() so that it handles new function added in a prior
1488      alpha (see "Added the capability to do ${ENVVAR} constructs in the
1489      config file.") as well as the constructs used by mod_rewrite.
1490      [Paul Reder <rederpj@raleigh.ibm.com>]
1491
1492   *) Apache 2.0 builds and runs on OS/390. [Jeff Trawick, Greg Ames]
1493
1494   *) Change the EBCDIC support in functions for MD5, SHA1, and base 64 to use
1495      APR to perform translation, instead of accessing the hard-coded tables
1496      in 1.3's ebcdic.c. [Jeff Trawick]
1497
1498   *) Fix some bugs (mostly lost 1.3 code) in ab's command-line processing. 
1499      [Jeff Trawick]
1500
1501   *) Add the ability to hook into the config file reading phase.  Basically
1502      if a directive is specified EXEC_ON_READ, then when that directive is
1503      read from the config file, the assocaited function is executed.  This
1504      should only be used for those directives that must muck with HOW the
1505      server INTERPRETS the config.  This should not be used for directives
1506      that re-order or replace items in the config tree.  Those changes should
1507      be made in the pre-config step.
1508      [Ryan Bloom]
1509
1510   *) Add mod_example to the build system.
1511      [Tony Finch]
1512
1513   *) APR: Add ap_xlate_conv_byte() to convert one char between single-
1514      byte character sets. [Jeff Trawick]
1515
1516   *) Pick up various EBCDIC fixes from 1.3 (from Martin
1517      Kraemer and Oliver Reh originally according to the change log).
1518      [Jeff Trawick]
1519
1520   *) Fix a couple of problems in RFC1413 support (controlled by the
1521      IdentityCheck directive).  Apache did not build the request string
1522      properly and more importantly Apache would loop forever if the 
1523      would-be ident server dropped the connection before sending a
1524      properly terminated response. [Jeff Trawick]
1525
1526   *) apxs works in 2.0.
1527      [Ryan Bloom]
1528
1529   *) Reliable piped logs work in 2.0.
1530      [Ryan Bloom]
1531
1532   *) Introduce a hash table implementation into APR to be used for
1533      replacing tables and other random data structures in Apache.
1534      [Tony Finch]
1535
1536   *) Add some more error reporting to htpasswd in the case of problems
1537      generating or accessing the temporary file.  Also, pass in a
1538      buffer if the implementation knows how to use it (i.e., if L_tmpnam
1539      is defined).  [Ken Coar]
1540
1541   *) Configure creates config.nice now containing your configure
1542      options. Syntax: ./config.nice [--more-options]
1543      [Sascha Schumann]
1544
1545   *) Fix various return code problems in APR on Win32.  For most of
1546      these, APR was returning APR_EEXIST instead of GetLastError()/
1547      WSAGetLastError().  [Jeff Trawick]
1548
1549   *) Make piped logs work again in version 2.0
1550      [Ryan Bloom]
1551
1552   *) Add VPATH support to UNIX build system of Apache and APR.
1553      [Sascha Schumann]
1554
1555   *) Fix ap_tokenize_to_argv to respect the const arguments that are
1556      passed to it.
1557      [Ryan Bloom]
1558
1559   *) Fix mm's memcpy/memset macros, pointer arithmetic was broken.
1560      Patch submitted to author.
1561      [Sascha Schumann]
1562
1563   *) Fix mm configuration on Solaris 8 x86 and OS/390.  Don't require
1564      /sbin in PATH on FreeBSD (all submitted to rse previously) 
1565      [Jeff Trawick]
1566
1567   *) Fix building Pthread-based MPMs on OpenBSD
1568      [Sascha Schumann] PR#26
1569
1570   *) Fix ap_readdir() problem on systems where d_name[] field in
1571      struct dirent is declared with only one byte.  (This problem only 
1572      affected multithreaded builds.)  This caused a segfault during
1573      pool cleanup with mod_autoindex on Solaris (Solaris 8 x86, at 
1574      least). [Jeff Trawick]
1575
1576   *) Fix some make-portability problems on at least Tru64, Irix
1577      and UnixWare.
1578      [Sascha Schumann] PR#18, PR#39
1579
1580   *) Add ap_sigwait() to support old-style sigwait() on systems
1581      like OS/390 and UnixWare.
1582      [Sascha Schumann] 
1583
1584   *) Add POSIX-thread flags for more platforms.
1585      [Sascha Schumann]
1586
1587   *) Fix some minor bugs in ap_strerror().  Teach ap_strerror()
1588      (on Unix, at least) to handle resolver errors.  Fix a bug in
1589      the definition of APR_ENOMEM so that ap_strerror() can spit
1590      out the correct error message for it.
1591      [Jeff Trawick]
1592
1593 Changes with Apache 2.0a3
1594
1595   *) mod_so reports ap_os_dso_error() if ap_dso_load() fails
1596      [Doug MacEachern]
1597
1598   *) API: *HOOK* macros now have an AP_ prefix
1599      [Doug MacEachern]
1600
1601   *) Win32: Eliminate redundant calls to initialize winsock.
1602      [Tim Costello <timcostello@ozemail.com.au>]
1603
1604   *) Fix bugs initializing ungetchar for pipes. 
1605      [Chia-liang Kao <clkao@CirX.ORG>]
1606
1607   *) The ab program in the src/support directory is now portable using
1608      APR.
1609      [Ryan Bloom]
1610
1611   *) Support directory is being compiled when the server is built
1612      [Ryan Bloom]
1613
1614   *) The configure option --with-program-name has been added to allow
1615      developers to rename the executable at configure time.  This also
1616      changes the name of the config files to match the executable's name.
1617      [Ryan Bloom]
1618
1619   *) mod_autoindex: Add `IndexOptions +VersionSort', to nicely sort filenames
1620      containing version numbers. [Martin Pool]
1621
1622   *) ap_open(..,APR_OS_DEFAULT,..) uses perms 0666 instead of 0777 on
1623      Unix; access_log and error_log now created with these perms; non-
1624      Unix is unaffected [Jeff Trawick]
1625      
1626   *) Finished move of ap_md5 routines to apr_md5.  Removed ap_md5.h.
1627      Replaced more magic numbers with MD5_DIGESTSIZE.
1628      [William Rowe, Roy Fielding]
1629
1630   *) Win32: Get mod_auth_digest compiling and added to the Windows
1631      build environment. Not tested and I'd be suprised if it 
1632      actually works. [Bill Stoddard]
1633
1634   *) Revamp the Win32 make environment. Makefiles have been removed and
1635      Apache.dsw created to bring together all the pieces. Create new file
1636      os/win32/BaseAddr.ref to define module base addresses (to prevent
1637      dll relocation at start-up).
1638      [William Rowe, Greg Marr, Tim Costello, Bill Stoddard]
1639
1640   *) [EBCDIC] Port Paul Gilmartin's CRLF patch from 1.3.  This replaces most
1641      of the \015, \012, and \015\012 constants with macros.
1642      [Greg Ames <gregames@us.ibm.com>]
1643      
1644   *) Add ap_xlate_open() et al for translation of text between different 
1645      character sets.  The initial implementation requires iconv().
1646      [Jeff Trawick]
1647
1648   *) More FAQs and answers from comp.infosystems.www.servers.unix.
1649      [Joshua Slive <slive@finance.commerce.ubc.ca>]
1650
1651   *) CGI output is being timed out now.
1652      [Ryan Bloom]
1653
1654   *) Fix the problem with dieing quietly.  dupfile now takes a pool which
1655      is used by the new apr file.  There is no reason to create a new file
1656      with the same lifetime as the original file.
1657      [Ryan Bloom] 
1658
1659   *) Win32: Attempt to eliminate dll relocation at start-up by specifying
1660      module base addresses. This will help shooting seg faults
1661      in the field. [William Rowe <wrowe@lnd.com>]
1662
1663   *) Update Apache on Windows documentation. Add new document
1664      describing how to compile Apache on Windows.
1665      [William Rowe <wrowe@lnd.com>]
1666
1667   *) ap_set_pipe_timeout(), ap_poll(), and APR_SO_TIMEOUT now take 
1668      microseconds instead of seconds.  Some storage leaks and other
1669      minor bugs in related code were fixed.  [Jeff Trawick]
1670
1671   *) Win32: First cut at getting mod_isapi working under 2.0
1672      [William Rowe <wrowe@lnd.com>]
1673
1674   *) First stab at getting mod_auth_digest working under 2.0
1675      quick change summary:
1676      - moved the random byte generation (ap_generate_random_bytes) into APR
1677      - now uses ap_time_t
1678      - compiles and runs on linux
1679      - tested with amaya
1680      [Brian Martin <bmartin@penguincomputing.com>]
1681
1682   *) Win32: Move the space stripping of physical service names
1683      fix up from Apache 1.3. #include'ing "ap_mpm.h" fixes up an
1684      unresolved symbol. Add dependency checking to the
1685      CreateService call to ensure TCPIP and AFP (winsock) is started
1686      before Apache.
1687      [William Rowe <wrowe@lnd.com>]
1688
1689   *) Win32: Add code to perform latebinding on functions that may
1690      not exist on all levels of Windows where Apache runs. This
1691      is needed to allow Apache to start-up on Win95/98. All calls
1692      to non portable functions should be protected with
1693      ap_oslevel checks to prevent runtime segfaults. 
1694      [William Rowe <wrowe@lnd.com>]
1695
1696   *) Fix fallback default values for SHM_R and SHM_W [Martin Kraemer]
1697
1698   *) Get lingering_close() working again. [Dean Gaudet, Jeff Trawick]
1699
1700   *) Win32: Get non-blocking CGI pipe reads working under Windows NT.
1701      This addresses PR 1623. Still need to address timing out runaway
1702      CGI scripts. [Bill Stoddard]
1703  
1704   *) Win32: Make ap_stat Windows 95/98 friendly
1705      [William Rowe <wrowe@lnd.com>]                                            
1706
1707   *) Win32: Fix a bug in ap_get_oslevel which causes GetVersionEx() to 
1708      always fail. Need to initialise the dwOSVersionInfoSize member of the 
1709      OSVERSIONINFO struct before calling GetVersionEx, so GetVersionEx 
1710      always fails. 
1711
1712      The patch also enhances ap_get_oslevel (and the associated enum) to 
1713      handle selected service packs for NT4, and adds recognition for 
1714      Windows 2000. This is useful, eg. if we can recognise NT4 SP2 then 
1715      we can use ReadFileScatter and WriteFileGather in readwrite.c. 
1716      [Tim Costello <Tim.Costello@BTFinancialgroup.com>]
1717
1718   *) Get mod_rewrite building and running, and mod_status building for Win NT
1719      [Allan Edwards <ake@raleigh.ibm.com>]
1720
1721   *) Patch to port mod_auth_db to the 2.0 api and also to support 
1722      Berlekey DB 3.0. It works for me with both Berkeley DB 3.0.55 and 
1723      2.7.7.  It should work with version 1 as well but I haven't tested it.  
1724      [Brian Martin <bmartin@penguincomputing.com>]
1725
1726   *) Get APR DSO code working under Windows. Includes cross platform
1727      fixes to mod_so.c.
1728      [Tim.Costello@BTFinancialgroup.com]
1729
1730   *) Fix some of the Windows APR time functions.
1731      [William Rowe]
1732
1733   *) FAQ changes related to tidying up historical documents on the web site.
1734      [Joshua Slive <slive@finance.commerce.ubc.ca>]
1735
1736   *) Move Windows DSO code into APR.
1737      [Bill Stoddard]
1738
1739   *) Eliminate apr_win.h and apr_winconfig.h (and the ugly #ifdefs they cause).
1740      Now, apr.h and apr_config.h are generated from apr.hw and apr_config.hw
1741      at build time. At this point, the server will not compile on Windows because
1742      of the recent DSO commits. Fixing those next.
1743      [Bill Rowe & Bill Stoddard]
1744
1745   *) Added error checking for file I/O APR routines.
1746      [Jon Travis <jtravis@covalent.net>]
1747
1748   *) APR: Don't use the values of resolver error codes for the 
1749      corresponding APR error codes.  On Unix and Win32, return the 
1750      proper APR error code after a resolver error. [Jeff Trawick]
1751
1752 Changes with Apache 2.0a2
1753
1754   *) Renamed the executable back to httpd on all platforms other 
1755      than Win32
1756      [Ryan Bloom]
1757
1758   *) Allow BeOS to survive restarts, log properly and a few
1759      small things it had problems with due to the way it setup
1760      users and groups. [David Reid]
1761
1762   *) Get mod_rewrite working with APR locks
1763      [Paul Reder <rederpj@raleigh.ibm.com>]
1764
1765   *) Actually remove the sempahore when the lock cleanup routine
1766      is called on BeOS. [David Reid]
1767
1768   *) Clear hook registrations between reads of the config file.
1769      When DSOs are unloaded and re-loaded the old hook pointers may
1770      no longer be valid. This fix eliminates potential segfaults.
1771      [Allan Edwards <ake@raleigh.ibm.com>]
1772
1773   *) Fix a problem with Sigfunc not being defined or bypassed
1774      if sigaction() wasn't found. [Jim Jagielski]
1775
1776   *) Fix the locking mechanism on BSD variants.  They now use fcntl
1777      locks.  This allows the server to start and serve pages.
1778      [Ryan Bloom]
1779
1780   *) First cut at getting the Win32 installer to work
1781      [William Rowe <wrowe@lnd.com>]
1782
1783   *) Get htpasswd compiling under Windows
1784      [William Rowe <wrowe@lnd.com>]
1785
1786   *) Change the log message for a bind() failure to show the
1787      interface and port number. [Jeff Trawick]
1788
1789   *) Import the documentation from 1.3.12 and bring parts of it
1790      up-to-date with respect to the changes that have occurred
1791      in 2.0.
1792      [Tony Finch]
1793
1794   *) BeOS MPM updated.  CGI bug on BeOS fixed.  IP addresses
1795      now logged correctly on BeOS.
1796      [David Reid]
1797
1798   *) Create one makefile for all Win32 distributions (NT/2000/95/98).
1799      Makefile.win includes the same user interface as the old 
1800      Makefile.nt 
1801      [William Rowe <wrowe@lnd.com>, Jeff Trawick <trawick@us.ibm.com>]
1802
1803   *) Win32 exec now uses COMSPEC environment string for command 
1804      shell path resolution.
1805      [William Rowe <wrowe@lnd.com>] PR#3715
1806
1807   *) Win32: ap_connect() was not returning correct error condition
1808      PR5866
1809      [Allen Prescott <allen@clanprescott.com>]
1810
1811   *) Win32: ap_open() was broken on Win9x because an NT-specific
1812      flag was passed to CreateFile.  ap_puts() added an unnecessary
1813      '\n'.
1814      [Jeff Trawick <trawick@us.ibm.com>]
1815
1816   *) Put in Korean and Norwegian index.html pages (2.0 and 1.3)
1817      which where donated by Lee Kuk Hyun and Lorant Czaran. 'Fixed'
1818      confusing ee/et name and made all extensions language/dialect
1819      rather than country reflecting. Changed example files to
1820      explicit reflect the ISO charset and added a few common 
1821      ones to the example config [dirkx]
1822
1823   *) Extend external module capability.  To use this, you call
1824      configure with --with-module=path/to/mod1,path/to/mod2,etc.
1825      [Ryan Bloom]
1826
1827   *) Backported the various "default charset" fixes from 1.3.12,
1828      including the AddDefaultCharset directive. [Jim Jagielski]
1829
1830   *) Added the capability to do ${ENVVAR} constructs in the
1831      config file. E.g. 'ServerAdmin ${POSTMASTER}'. As commited
1832      it does this on a line by line basis; i.e. if the envvar
1833      expands to something with spaces you have to protect it
1834      by adding quotes around it (Unless of course you expect it
1835      to contains more than one argument. Alternatively you
1836      can compile it on a per token basis; which is what people
1837      usually expect by setting RESOLVE_ENV_PER_TOKEN. But this
1838      hampers fancier hacks.
1839      [Dirk-Willem van Gulik]
1840
1841   *) Changed the 'ErrorDocument' syntax in that it NO longer
1842      supports the asymetric
1843
1844                 ErrorDocument 301 "Some message
1845
1846      Note the opening " quote, without a closing quote. It now
1847      has either the following syntaxes
1848
1849                 ErrorDocument XXX /local/uri
1850                 ErrorDocument XXX http://valid/url
1851                 ErrorDocument XXX "Some Message"
1852
1853      The recognition heuristic is: if it has a space it
1854      is a message. If it has no spaces and starts with a /
1855      or is a valid URL then treat it that way. Otherwise it
1856      is assumed to be a message.
1857
1858      This breaks backward compatibility but makes live a hell
1859      of a lot easier for GUI's and config file parsers.
1860      [Dirk-Willem van Gulik]
1861
1862   *) Changed 'CacheNegotiatedDocs' from its present/not-present
1863      syntax into a 'on' or 'off' syntax. As it currently is the
1864      only non nesting token which uses NO_ARGS and thus is an
1865      absolute pain for any config interface automation. This
1866      breaks backward compatibility. [Dirk-Willem van Gulik]
1867
1868   *) Add ability to add external modules to the build process.  This is
1869      done with --with-module=/path/to/module.  Modules can only be added
1870      as static modules at this point.
1871      [Ryan Bloom]
1872
1873 Changes with Apache 2.0a1
1874
1875   *) Fix FreeBSD 3.3 core dump.
1876      Basically, ap_initialize() needs to get called before 
1877      create_process(), since create_process() passes op_on structure
1878      to semop() to get a lock, but op_on isn't initialized until 
1879      ap_initialize() calls setup_lock().  Here is a slight
1880      rearrangement to main() which calls ap_initialize() earlier...
1881      [Jeff Trawick <trawick@us.ibm.com>]
1882
1883   *) Enable Apache to use sendfile/TransmitFile API
1884      [Bill Stoddard, David Reid, Paul Reder]
1885
1886   *) Re-Implement Win32 APR network I/O APIs and most of the file I/O
1887      APIs.
1888      [Bill Stoddard]
1889
1890   *) Make file I/O and network I/O writev/sendv APIs consistent.
1891      Eliminate use of ap_iovec_t and use Posix struct iovec.
1892      Use seperate variable on ap_writev to set the number of iovecs
1893      passed in and number of bytes written.
1894      [Bill Stoddard]
1895
1896   *) Adapt file iol to use APR functions. Replaced ap_open_file() 
1897      with ap_create_file_iol(). ap_create_file_iol() requires that 
1898      the file be opened prior to the call using ap_open().
1899      [Bill Stoddard]
1900
1901   *) Port mod_include and mod_cgi to 2.0
1902      [Paul Reder, Bill Stoddard]
1903
1904   *) ap_send{,v}, ap_recv, ap_sendfile API clarification --
1905      bytes_read/bytes_written is always valid (never -1).  Plus
1906      some fixes to buff.c to correct problems introduced by the
1907      errno => ap_status_t changes a while back.  Plus a fix to
1908      chunked encoding introduced right at the beginning of 2.0.
1909      [Dean Gaudet]
1910
1911   *) Revamped UNIX build system to use autoconf and libtool.
1912      [Manoj Kasichainula, Sascha Schumann]
1913
1914   *) port mod_rewrite to 2.0. [Paul J. Reder <rederpj@raleigh.ibm.com>]
1915
1916   *) More rigorous checking of Host: headers to fix security problems
1917      with mass name-based virtual hosting (whether using mod_rewrite
1918      or mod_vhost_alias).
1919      [Ben Hyde, Tony Finch]
1920   
1921   *) Add back support for UseCanonicalName in <Directory> containers.
1922      [Manoj Kasichainula]
1923
1924   *) Added APLOG_STARTUP log type.  This allows us to write an error
1925      message without any of the date and time information.  As a part
1926      of this change, I also removed all of the calls to fprintf(stderr
1927      and replaced them with calls to ap_log_error using APLOG_STARTUP
1928      writing to stderr is no longer portable, because we don't direct 
1929      stderr to the error log on all platforms.
1930      [Ryan Bloom] 
1931  
1932   *) Convert error logging functions to take errno as an argument.
1933      This makes our error logs more portable, because some Windows API's 
1934      don't set errno.  This change allows us to still output a valid
1935      message on all of our platforms.
1936      [Ryan Bloom]
1937
1938   *) mod_mime_magic runs in 2.0-dev now.
1939      [Paul Reder <rederpj@raleigh.ibm.com>]
1940
1941   *) sendfile has been added to APR.
1942      [John Zedlewski <zedlwski@Princeton.EDU>]
1943
1944   *) buff.c has been converted to no longer use errno.
1945      [Manoj Kasichainula]
1946
1947   *) mod_speling runs in 2.0-dev now: a bug in readdir_r handling and
1948      interface adaption to APR functions did it. [Martin Kraemer]
1949
1950   *) Support DSOs properly on 32-bit HP-UX 11.0
1951      [Dilip Khandekar <dilip@cup.hp.com>]
1952
1953   *) Updated MM in APR source tree from version 1.0.8 to 1.0.11
1954      [Ralf S. Engelschall]
1955
1956   *) Cleaned APR build environment integration and bootstrap APR 
1957      automatically for developers from src/Configure.
1958      [Ralf S. Engelschall]
1959
1960   *) Fixed building of src/support/htpasswd.c
1961      [Ralf S. Engelschall]
1962
1963   *) When generating the Location: header, mod_speling forgot
1964      to escape the spelling-fixed uri. (Forw-Port from 1.3)
1965      [Martin Kraemer]
1966
1967   *) Moved mod_auth_digest.c from experimental to standard. [Roy Fielding]
1968
1969   *) Change all pools to APR contexts.  This is the first step to
1970      incorporating APR into Apache. [Ryan Bloom]
1971
1972   *) Move "handler not found" warning message to below the check
1973      for a wildcard handler.  [Dirk <dirkm@teleport.com>, Roy Fielding]
1974      PR#2584, PR#2751, PR#3349, PR#3436, PR#3548, PR#4384, PR#4795, PR#4807
1975
1976   *) Support line-continuation feature in config.option file and
1977      allow the loading of multiple option sections at once via
1978      ``--with-option=<section1>,<section2>,...''
1979      [Ralf S. Engelschall]
1980
1981   *) Rebuilt CVS repository with Apache 1.3.9 as basis.  [Roy Fielding]
1982
1983 Changes with Apache MPM
1984
1985   *) Use asynchronous AcceptEx() and a completion port to accept and
1986      dispatch connections to threads in Windows NT/2000. 
1987      [Bill Stoddard]
1988
1989   *) Implement WINNT Win32 MPM from original Win32 code in http_main.c
1990      [Bill Stoddard]  
1991
1992   *) Implement the APACI --with-option facility 
1993      (per default used the config.option file).
1994      [Ralf S. Engelschall]
1995
1996   *) MPM BEOS port.  [David Reid <abb37@dial.pipex.com>]
1997
1998   *) Start to implement module-defined hooks that are a) fast and b) typesafe.
1999      Replace pre_connection module call with a register_hook call and
2000      implement pre_connection as a hook. The intent is that these hooks will
2001      be extended to allow Apache to be multi-protocol, and also to allow the
2002      calling order to be specified on a per-hook/per-module basis.
2003      [Ben Laurie]
2004
2005   *) Implement mpm_* methods as "modules". Each method gets its own
2006      subdir in src/modules (eg: src/modules/prefork). Selection
2007      of method uses Rule MPM_METHOD.  [Jim Jagielski]
2008
2009   *) Port the hybrid server from the apache-apr repository as
2010      mpm_mpmt_pthread.  [Manoj Kasichainula]
2011
2012   *) os/unix/unixd.[ch]: detach, setuid, setgid, stuff which will be common
2013      amongst the unix MPMs.
2014
2015   *) mpm_prefork: throw away all the alarm/timeout crud; and clean up the
2016      signal handling for the new world order.  [Dean Gaudet]
2017
2018   *) Crude ap_thread_mutex abstraction so that we get the pthread stuff out
2019      of alloc.c for now.  [Dean Gaudet]
2020
2021   *) Handle partial large writes correctly.  [Ben Laurie]
2022
2023   *) Eliminate conn_rec's pointer to server. All it knows is the base server
2024      based on IP/port.  [Ben Laurie]
2025
2026   *) Port a bunch of modules to the new module structure.
2027      ["Michael H. Voase" <mvoase@midcoast.com.au>]
2028
2029   *) I/O layering and BUFF revamp.  See docs/buff.txt.  [Dean Gaudet]
2030
2031   *) Basic restructuring to introduce the MPM concept; includes various
2032      changes to the module API... better described by
2033      docs/initial_blurb.txt.  [Dean Gaudet]
2034
2035 Changes with Apache pthreads
2036
2037   *) New buff option added: BO_TIMEOUT. It describes the timeout for
2038      buff operations (generally over a network).
2039      [Dean Gaudet, Ryan Bloom, Manoj Kasichainula]
2040
2041   *) Created http_accept abstraction. Added 4 new functions (not exported):
2042      init_accept(), begin_accepting_requests(), get_request(), 
2043      stop_accepting_requests() [Bill Stoddard]
2044
2045   *) Fix to ap_rprintf call that allows mod_info to work properly.
2046      [James Morris <jmorris@intercode.com.au>]
2047
2048   *) user and ap_auth_type fields were moved from connection_rec to 
2049      request_rec. [Ryan Bloom] 
2050
2051   *) Removed the ap_block_alarms and ap_unblock_alarm calls.  These aren't
2052      needed in a threaded server.
2053
2054   *) Initial pthread implementation from from Dean's apache-nspr code.
2055      [Bill Stoddard, Ryan Bloom]
2056
2057
2058 Changes with Apache 1.3.9
2059
2060   *) Remove bogus error message when a redirect doesn't set Location.
2061      Instead, use an empty string to avoid coredump if the error message
2062      was supposed to include a location.  [Roy Fielding]
2063
2064   *) Don't allow configure to include mod_auth_digest unless it is
2065      explicitly requested, even if the user asked for all modules.
2066      [Roy Fielding]
2067
2068   *) Translate module names to dll names for OS/2 so that they are no more
2069      than 8 characters long and have an extension of "dll" instead of "so".
2070      [Brian Havard]
2071
2072   *) Print out pointer to Rule DEV_RANDOM when truerand lib not found.
2073      Fix test-compile check to check for randbyte instead of trand32.
2074      Use ap_base64encode_binary/decode instead of copy in mod_auth_digest.c
2075      and tweak to make Amaya happier.  [Ronald Tschalär]
2076
2077   *) Ensure that the installed expat include files are world readable,
2078      just like the other header files.  [Martin Kraemer]
2079
2080   *) Fixed generated AddModule adjustments in APACI's `configure' script
2081      in order to allow (new) modules like mod_vhost_alias to be handled
2082      correctly (which was touched by the adjustments for mod_alias).
2083      [Ralf S. Engelschall]
2084
2085   *) For binary builds, add -R flag to apachectl to work around the lack of
2086      an absolute path to the ./libexec directory where the libhttp.ep file
2087      is needed for SHARED_CORE architectures.  [Randy Terbush]
2088
2089   *) WIN32: Create the CGI script process as DETACHED.  This may solve the
2090      problem observed by some Win95/98 users where they get CGI script
2091      output sent to the console.  [Bill Stoddard]
2092
2093   *) Fix (re)naming in the uuencode/decode section. The ap/ap_
2094      routines are now called ap_base64* and are 'plain' (i.e., no 
2095      pool access or anything clever). Inside util.c the routines acting
2096      like pstrdup are called ap_pbase64encode() and ap_pbase64decode().
2097      The oddly named ap_uuencode(), ap_uudecode() are kept around for
2098      now but deprecated.  [dirkx]
2099
2100   *) Clean up the base64 and SHA1 additions and make sure they are
2101      represented in the ApacheCore.def, ApacheCoreOS2.def, and httpd.exp
2102      files.  [Roy Fielding]
2103
2104   *) WIN32: Migrate to InstallShield 5.5 and provide a bit more error
2105      checking.  Allow compiling on VS 6.0.  [Randy Terbush]
2106
2107   *) Fixed assumption of absolute paths in binbuild.sh.  [Tony Finch]
2108
2109   *) Use TestCompile to search for the truerand library (rather than blindly
2110      assuming its existence). If it is not found, complain (but do not
2111      exit - yet).  [Martin Kraemer]
2112
2113   *) We forgot to add the new exported function names to
2114      src/support/httpd.exp.  [Bill Stoddard, Randy Terbush]
2115
2116   *) Add description of -T command-line option to usage().
2117      [Ralf S. Engelschall]
2118
2119   *) For "some" platforms (notably, EBCDIC based ones), libos needs to be
2120      searched only AFTER libap has been searched, because libap needs
2121      some symbols from libos.  [Martin Kraemer]
2122
2123   *) Fix conflict with original mod_digest related to the symbol of the
2124      module dispatch list (which has to be unique for DSO and follow the
2125      usual conventions for the installation procedure).
2126      [Ralf S. Engelschall]
2127
2128   *) Add a dbm-library check for the "usual places" (-ldbm, -lndbm, -ldb)
2129      for other platforms as well.  [Martin Kraemer]
2130
2131   *) Make ap_sha1.c compile for EBCDIC platforms: replace remaining LONG
2132      types by AP_LONG and replace reference to renamed variable 'ubuf'
2133      by 'buffer'.  [Martin Kraemer]
2134
2135 Changes with Apache 1.3.8 [not released]
2136
2137   *) Flush the output buffer immediately after sending an error or redirect
2138      response, since the result may be needed by the client to abort a
2139      long data transfer or restart a series of pipelined requests.
2140      [Tom Vaughan <tvaughan@aventail.com>, Roy Fielding]
2141
2142   *) PORT: Improved compilation and DSO support on Sequent DYNIX/ptx.
2143      [Ian Turner <iant@sequent.com>] PR#4735
2144
2145   *) Local struct mmap in http_core.c conflicted with system structure
2146      name on DYNIX -- changed to mmap_rec.  [Roy Fielding] PR#4735
2147
2148   *) Added updated mod_digest as modules/experimental/mod_auth_digest.
2149      [Ronald Tschalär <ronald@innovation.ch>]
2150
2151   *) Fix a memory leak where the module counts were getting messed
2152      up across restarts.  [David Harris <dharris@drh.net>]
2153
2154   *) CIDR addresses such as a.b.c.d/24 where d != 0 weren't handled
2155      properly in mod_access.
2156      ["Paul J. Reder" <rederpj@raleigh.ibm.com>] PR#4770
2157
2158   *) RewriteLock/RewriteMap didn't work properly with virtual hosts.
2159      [Dmitry Khrustalev <dima@bog.msu.su>] PR#3874
2160
2161   *) PORT: Support for compaq/tandem/com.
2162      [Michael Ottati <michael.ottati@compaq.com>, dirkx]
2163
2164   *) Added SHA1 password encryption support to easy migration from 
2165      Netscape servers. See support/SHA1 for more information.
2166      Caused the separation of ap_md5.c into md5, sha1 and a general
2167      ap_checkpass.c with just a validate_passwd routine. Added a
2168      couple of flags to support/htpasswd. Some reuse of the to64()
2169      function; hence renamed to ap_to64().
2170      [Dirk-Willem van Gulik, Clinton Wong <clintdw@netcom.com>]
2171
2172   *) Change for EBCDIC platforms (TPF and BS2000) to correctly deal
2173      with ASCII/EBCDIC conversions in "ident" query.
2174      [David McCreedy <McCreedy@us.ibm.com>]
2175
2176   *) Get rid of redefinition warning on MAC_OS_X_SERVER platform.
2177      Change "Power Macintosh" to Power* so if uname prints "Power Book"
2178      we're still happy on Rhapsody platforms.  [Wilfredo Sanchez]
2179
2180   *) Fix SIGSEGV on some systems because the Vary fix below included
2181      a call to table_do with a variable argument list that was not
2182      NULL terminated.  Replaced with better implementation. [Roy Fielding]
2183
2184 Changes with Apache 1.3.7 [not released]
2185
2186   *) The "Vary" response header field is now sanitised right before
2187      the header is sent back to the client.  Multiple "Vary" fields
2188      are combined, and duplicate tokens (e.g., "Vary: host, host" or
2189      "Vary: host, negotiate, host, accept-language") are reduced to
2190      single instances.  This is a better solution than the force-no-vary
2191      one (which is still valid for clients that can't cope with Vary
2192      at all).  PR#3118 [Dean Gaudet, Roy Fielding, Ken Coar]
2193
2194   *) Portability changes for BeOS. [David Reid abb37@dial.pipex.com]
2195
2196   *) Link DSO's with "gcc -shared" instead of "ld -Bshareable" at 
2197      least on Linux and FreeBSD for now.  
2198      [Rasmus Lerdorf]
2199
2200   *) Win32: More apache -k restart work. Restarts are now honored
2201      immediately and connections in the listen queue are -not- lost.
2202      This is made possible by the use of the WSADuplicateSocket()
2203      call.  The listeners are opened in the parent, duplicated, then
2204      the duplicates are passed to the child. The original listen sockets 
2205      are not closed by the parent across a restart, thus the listen queue 
2206      is preserved.
2207      [Bill Stoddard <stoddard@raleigh.ibm.com>]
2208
2209   *) Fix handling of case when a client has sent "Expect: 100-continue"
2210      and we are going to respond with an error, but get stuck waiting to
2211      discard the body in the pointless hope of preserving the connection.
2212      [Roy Fielding, Joe Orton <jeo101@york.ac.uk>] PR#4499, PR#3806
2213
2214   *) Fix 'configure' to work correctly with SysV-based versions of
2215      'tr' (consistent with Configure's use as well). [Jim Jagielski]
2216
2217   *) apxs: Add "-S var=val" option which allows for override of CFG_*
2218      built-in values. Add "-e" option which works like -i but doesn't
2219      install the DSO; useful for editing httpd.conf with apxs. Fix
2220      editing code so that multiple invocations of apxs -a will not
2221      create duplicate LoadModule/AddModule entries; apxs can now be
2222      used to re- enable/disable a module.  [Wilfredo Sanchez]
2223
2224   *) Win32: Update the server to use Winsock 2. Specifically, link with
2225      ws2_32.lib rather than wsock32.lib.  This gives us access to 
2226      WSADuplcateSocket() in addition to some other enhanced comm APIs.
2227      Win 95 users may need to update their TCP/IP stack to pick up
2228      Winsock 2. (See http://www.microsoft.com/windows95/downloads/)
2229      [Bill Stoddard stoddard@raleigh.ibm.com]
2230
2231   *) Win32: Redirect CGI script stderr (script debug info) into the 
2232      error.log when CGI scripts fail. This makes Apache on Win32 
2233      behave more like Unix.      
2234      [Bill Stoddard stoddard@raleigh.ibm.com]
2235
2236   *) Fixed `httpd' usage display: -D was missing.
2237      [Ralf S. Engelschall] PR#4614
2238
2239   *) Fix `make r' test procedure in src/regex/: ap_isprint was not found.
2240      [Ralf S. Engelschall] PR#4561, PR#4562
2241
2242   *) OS/2: Fix problem with accept lock semaphores where server would die with
2243      "OS2SEM: Error 105 getting accept lock. Exiting!" 
2244      [Brian Havard] PR#4505
2245
2246   *) Add DSO support for DGUX 4.x using gcc. Tested on x86 platforms.
2247      [Randy Terbush <randy@covalent.net>]
2248  
2249   *) Add the new mass-vhost module (mod_vhost_alias.c) developed and
2250      used by Demon Internet, Ltd. [Tony Finch <fanf@demon.net>]
2251
2252   *) Better GCC detection for DSO flags under Solaris 2 where the `cc' 
2253      command potentially _is_ GCC. [Ralf S. Engelschall]
2254
2255   *) Fix apxs build issues on AIX 
2256      [Rasmus Lerdorf <rasmus@raleigh.ibm.com>]
2257
2258   *) DocumentRoot Checking: Under previous versions, when Apache
2259      first started up, it used to do a stat of each DocumentRoot to
2260      see if it existed and was a directory. If not, then an error
2261      message was printed. THIS HAS BEEN DISABLED. If DocumentRoot
2262      does not exist, you will get error messages in error_log. If
2263      the '-t' command line option is used (to check the configuration)
2264      the check of DocumentRoot IS performed. An additional command
2265      line option, '-T', has been added if you want to avoid the
2266      DocumentRoot check even when checking the configuration.
2267      [Jim Jagielski]
2268
2269   *) Win32: The query switch "apache -S" didn't exit after showing the
2270      vhost settings. That was inconsistent with the other query functions.
2271      [Bill Stoddard - Fixed by Martin on Unix in 1.3.4]
2272
2273   *) Win32: Changed behaviour of apache -k restart. 
2274      Previously, the server would drain all connections in the stack's
2275      listen queue before honoring the restart. On a busy server, this
2276      could take hours.  Now, a restart is honored almost immediately. 
2277      All connections in Apache's queues are handled but connections in 
2278      the stack's listen queue are discarded. Restart triggered by 
2279      MaxRequestPerChild is unchanged.
2280      [Bill Stoddard <stoddard@raleigh.ibm.com>]
2281
2282   *) Win32: Eliminated unnecessary call to wait_for_multiple_objects in
2283      the accept loop. Good for a 5% performance boost. Cleaned up 
2284      parent/child process management code. 
2285      [Bill Stoddard <stoddard@raleigh.ibm.com>]
2286
2287   *) Added ceiling on file size for memory mapped files.
2288      [John Giannandrea <jg@meer.net>] PR#4122
2289
2290   *) Fix ndbm.h include problems with brain-dead glibc >= 2.1 which 
2291      has ndbm.h in a non-standard db1/ subdir. PR#4431, PR#4528
2292      [Henri Gomez <gomez@slib.fr>, Ralf S. Engelschall] 
2293
2294   *) Determine AP_BYTE_ORDER for ap_config_auto.h and already
2295      use this at least for Expat. [Ralf S. Engelschall]
2296
2297   *) Allow .module files to specify libraries with Lib:.
2298      [Ben Laurie]
2299
2300   *) Allow SetEnvIf[NoCase] to test environment variables as well
2301      as header fields and request attributes.  [Ken Coar]
2302
2303   *) Fix mod_autoindex's handling of ScanHTMLTitles when file
2304      content-types are "text/html;parameters".  PR#4524  [Ken Coar]
2305
2306   *) Remove "mxb" support from mod_negotiation -- it was a draft feature
2307      never accepted into any standard, and it opens up certain DoS
2308      attacks.  [Koen Holtman <Koen.Holtman@cern.ch>]
2309
2310   *) TestCompile updated. We can now run programs and output the
2311      results during the Configure process. [ Jim Jagielski]
2312
2313   *) The source is now quad (long long) aware as needed. Specifically,
2314      the Configure process determines the correct size of off_t and
2315      *void. When the OS/platform/compiler supports quads, ap_snprintf()
2316      provides for the 'q' format qualifier (if quads are not available,
2317      'q' is silently "demoted" to long). [Jim Jagielski]
2318
2319   *) When the username or password fed to htpasswd is too long, include the
2320      size limit in the error message.  Also report illegal characters
2321      (currently only ':') in the username.  Add the size restrictions
2322      to the man page.  [Ken Coar]
2323
2324   *) Fixed the configure --without-support option so it doesn't result in
2325      an infinite loop.  [Marc Slemko]
2326
2327   *) Piped error logs could cause a segfault if an error occured
2328      during configuration after a restart.
2329      [Aidan Cully <aidan@panix.com>] PR#4456
2330
2331   *) If a "Location" field was stored in r->err_headers_out rather
2332      than r->headers_out, redirect processing wouldn't find it and
2333      the server would core dump on ap_escape_html(NULL).  Check both
2334      tables and raise HTTP_INTERNAL_SERVER_ERROR with a log message
2335      if Location isn't set.  [Doug MacEachern, Ken Coar]
2336
2337   *) Add RULE_EXPAT, the src/lib/ directory structure, and a modified copy
2338      of the Expat 1.0.2 distribution. [Greg Stein]
2339
2340   *) Replace regexec() calls with calls to a new API stub function
2341      ap_regexec().  This solves problems with DSO modules which use the regex
2342      library. [Jens-Uwe Mager <jum@helios.de>, Ralf S. Engelschall]
2343
2344   *) Add 'Request_Protocol' special keyword to mod_setenvif so that
2345      environment variables can be set according to the protocol version
2346      (e.g., HTTP/0.9 or HTTP/1.1) of the request.  [Ken Coar]
2347
2348   *) Add DSO support for OpenStep (Mach 4.2) platform.
2349      [Ralf S. Engelschall, Rex Dieter <rdieter@math.unl.edu>] PR#3997
2350
2351   *) Fix sed regex for generating ap_config_auto.h in src/Configure.
2352      [Jan Gallo <gallo@pvt.sk>] PR#3690, PR#4373
2353  
2354   *) Switch to /bin/sh5 in APACI on Ultrix and friends to avoid problems with
2355      their brain-dead /bin/sh. [Ralf S. Engelschall] PR#4372
2356
2357   *) Better DSO flags recognition on NetBSD platforms using ELF.
2358      [Todd Vierling <tv@pobox.com>] PR#4310
2359
2360   *) Always log months in english format for %t in mod_log_config.
2361      [Petr Lampa <lampa@fee.vutbr.cz>] PR#4366, 679
2362
2363   *) Support for server-parsed and multiview-determined ReadmeName and
2364      HeaderName files in mod_autoindex. Removed the restriction on
2365      "/"s in ReadmeName and HeaderName directives since the *sub_req*
2366      routines will deal with the access issues. (It's now possible to
2367      have {site|group|project|customer|...} wide readmes and headers.)
2368      [Raymond S Brand <rsbx@rsbx.net>, Ken Coar] PR#1574, 3026, 3529,
2369      3569, 4256
2370
2371   *) When stat() fails, don't assume anything about the contents of
2372      the struct stat.  [Ed Korthof <ed@bitmechanic.com>]
2373
2374   *) It's OK for a semop to return EINTR, just loop around and try
2375      again.  [Dean Gaudet]
2376
2377   *) Fix configuration engine re-entrant hangups, which solve a
2378      handful of problems seen with mod_perl <Perl> configuration sections
2379      [Salvador Ortiz Garcia <sog@msg.com.mx>]
2380
2381   *) Mac OS and Mac OS X Server now use the appropriate custom layout
2382      by default when building with APACI; allow for platform-specific
2383      variable defaults in configure. [Wilfredo Sanchez]
2384
2385   *) Do setgid() before initgroups() in http_main; some platforms
2386      zap the grouplist when setgid() is called.  This was fixed in
2387      suexec earlier, but the main httpd code missed the change.
2388      [Rob Saccoccio <robs@InfiniteTechnology.com>]  PR#2579
2389
2390   *) Add recognition of .tgz as a gzipped tarchive.
2391      [Bertrand de Singly <bertrand.de-singly@polytechnique.fr>]  PR#2364
2392
2393   *) mod_include's fsize/flastmod should allow only relative paths, just
2394      like "include file".  [Jaroslav Benkovsky <benkovsk@pha.pvt.cz>]
2395
2396   *) OS/2: Add support for building loadable modules using DLLs.
2397      [Brian Havard]
2398
2399   *) Add iconsdir, htdocsdir, and cgidir to config.layout.
2400      [Wilfredo Sanchez]
2401
2402   *) Fix minor but annoying bug with the test for Configuration.tmpl
2403      being newer than Configuration so that it is less likely to fail
2404      when using APACI and shadow sources. [Wilfredo Sanchez]
2405
2406   *) PORT: Add initial support for Mac OS (versions 10.0 and
2407      greater). Use Mac OS X Server layout for now. Clean up dyld code
2408      in unix/os.c, and don't install the dyld error handlers, which
2409      are no longer needed in Mac OS. [Wilfredo Sanchez]
2410
2411   *) Rename Rhapsody layout to "Mac OS X Server". Change install
2412      locations to appropriate ones for user-built (as opposed to
2413      system) installs. [Wilfredo Sanchez]
2414
2415   *) Modify mod_autoindex's handling of AddDescription so that the
2416      behaviour matches the documentation.  [Ken Coar] PR#1898, 3072.
2417
2418   *) Add functionality to the install-bindist.sh script created by
2419      binbuild.sh to use tar when copying distribution files to the
2420      serverroot. This allows upgrading an existing installation
2421      without nesting the new distribution in the old.
2422
2423      install-bindist.sh now detects the local perl5 path to install
2424      apxs and dbmmanage with proper path to perl interpreter.
2425
2426      Add an install-binsupport target which copies the source files
2427      for apxs and dbmmanage to bindist to allow these scripts to
2428      be properly installed relative to the destination serverroot.
2429      [Randy Terbush, Covalent Technologies, randy@covalent.net]
2430
2431   *) Fix intermittent SEGV in ap_proxy_cache_error() in
2432      src/modules/proxy_util.c where a NULL filepointer and
2433      temporary filename were closed and unlinked.
2434      [Graham Leggett <minfrin@sharp.fm>,
2435      Tim Costello <tjcostel@socs.uts.edu.au>] PR#3178
2436
2437   *) Fix inconsistent error messages reported by mod_proxy.
2438      [Graham Leggett <minfrin@sharp.fm>]
2439
2440   *) OS/2: Fix terminating CGIs that aren't compiled by EMX GCC when a 
2441      connection is aborted.  [Brian Havard]
2442
2443   *) Force the LANG envariable to the known state of "C" so that we
2444      have assurance about how string manipulators (e.g., tr) will
2445      function.  [Ken Coar]  PR#1630
2446
2447   *) Add a directive to allow customising of the tracking cookie name.
2448      [Ken Coar]  PR#2921, 4303
2449
2450   *) Add "force-no-vary" envariable to allow servers to work around
2451      clients that choke on "Vary" fields in the response header.
2452      [Ken Coar, Dmitry Khrustalev <dima@zippy.machaon.ru>]  PR#4118
2453
2454   *) Fixed a bug in mod_dir that causes a child process will infinitely
2455      recurse when it attemps to handle a request for a directory wnd the
2456      value of the DirectoryIndex directive is a single dot. Also likely
2457      to happen for anyother values of DirectoryIndex that will map back
2458      to the same directory. The handler now only considers regular files
2459      as being index candidates. No PR#s found.
2460      [Raymond S Brand <rsbx@rsbx.net>]
2461
2462   *) Ease configuration debugging by making TestCompile fall back to
2463      using "make" if the $MAKE variable is unset [Martin Kraemer]
2464
2465   *) Fixed the ServerSignature directive to work as documented.
2466      [Raymond S Brand <rsbx@rsbx.net>] PR#4248
2467
2468   *) Add "opt" (SysV-style) layout to config.layout. [Raymond S Brand
2469      <rsbx@rsbx.net>]
2470
2471   *) Add APACI --without-execstrip option which can be used to disable the
2472      stripping of executables on installation.  This is very important for DSO
2473      and debugging situations. [Ralf S. Engelschall]
2474
2475   *) Add support for OS/2 (case insenstive filesystem, .exe suffix, etc)
2476      to APACI files and related scripts. 
2477      [Yitzchak Scott-Thoennes <sthoenna@efn.org>, Ralf S. Engelschall] PR#4269
2478
2479   *) Add support for standalone mode in TPF
2480      [Joe Moenich <moenich@us.ibm.com>]
2481
2482   *) Fix number of bytes copied by read_connection() in src/support/ab.c
2483      [Jim Cox <jc@superlink.net>] PR#4271
2484
2485   *) Fix special RewriteCond "-s" pattern matching.
2486      [Bob Finch <bob@nas.com>]
2487
2488   *) Fix value quoting in src/Configure script for ap_config_auto.h 
2489      [Paul Sutton <paul@awe.com>]
2490
2491   *) Make sure RewriteLock can be used only in the global context, (i.e.
2492      outside of any <VirtualHost> sections) because it's a global facility of
2493      the rewrite engine. [Ralf S. Engelschall]
2494
2495   *) Fix the ownership delegation for proxy directory under `make install'.
2496      [Ralf S. Engelschall]
2497
2498   *) APACI would not correctly build suexec. [Maria Verina
2499      <mariav@icgeb.trieste.it>] PR#4260
2500
2501   *) mod_mime_magic passed only the first 4k of a file to
2502      uncompress/gzip, but those tools sometimes do not produce
2503      any output unless a sufficient portion of the compressed
2504      file is input.  Change to pass the entire file -- but
2505      only read 4k of output.
2506      [Marcin Cieslak <saper@system.pl>] PR#4097
2507
2508   *) "IndexOptions None" generated extra spaces at the end of each
2509      line.  [inkling@firstnethou.com] PR#3770
2510
2511   *) The "100 Continue" response wasn't being sent after internal
2512      redirects. [Jose KAHAN <kahan@w3.org>] PR#3910, 3806, 3575
2513
2514   *) When padding the name with spaces for display, mod_autoindex would
2515      count &, <, and > in their escaped width, messing up the display.
2516      [Dean Gaudet] PR#4075, 3758
2517
2518   *) PORT: fixed a compilation problem on NEXT.
2519      [Jacques Distler <distler@golem.ph.utexas.edu>] PR#4130
2520
2521   *) r->request_time wasn't being set properly in certain error conditions.
2522      [Dean Gaudet] PR#4156
2523
2524   *) PORT: deal with UTS compiler error in http_protocol.c
2525      [Dave Dykstra <dwd@bell-labs.com>] PR#4189
2526
2527   *) Add ap_vrprintf() function.  [John Tobey <jtobey@banta-im.com>] PR#4246
2528
2529   *) Fix the mod_mime hash table to work properly with locales other
2530      than C.  [Dean Gaudet] PR#3427
2531
2532   *) Fix a memory leak which is exacerbated by certain configurations.
2533      [Dean Gaudet] PR#4225
2534
2535   *) Prevent clobbering saved IFS values in APACI. [Jim Jagielski]
2536
2537   *) Fix buffer overflows in ap_uuencode and ap_uudecode pointed out
2538      by "Peter 'Luna' Altberg <peter@altberg.nu>" and PR#3422
2539      [Peter 'Luna' Altberg <peter@altberg.nu>, Ronald Tschalär]
2540
2541   *) Make {Set,Unset,Pass}Env per-directory instead of per-server.
2542      [Ben Laurie]
2543
2544   *) Correct an apparent typo: on the Windows and MPE platforms, the
2545      htpasswd utility was limiting passwords to only 8 characters.
2546      [Ken Coar]
2547
2548   *) EBCDIC platforms: David submitted patches for two bugs in the
2549      MD5 digest port for EBCDIC machines:
2550      a) the htdigest utility overwrote the old contents of the digest file
2551      b) the Content-MD5 header value (ContentDigest directive) was wrong
2552      when the returned file was not converted from EBCDIC, but was a
2553      binary (e.g., image file) in the first place.
2554      [David McCreedy <mccreedy@us.ibm.com>]
2555
2556   *) support/htpasswd now permits the password to be specified on the
2557      command line with the '-b' switch.  This is useful when passwords
2558      need to be maintained by scripts -- particularly in the Win32
2559      environment.  [Ken Coar]
2560
2561   *) Win32: Win32 multiple services patch. Added capability to install and
2562      run multiple copies of apache as individual services.
2563
2564      Example 1:
2565      apache -n apache1 -i -f c:/httpd.conf
2566         Installs apache as service 'apache1' and associates c:/httpd.conf
2567         with that service.
2568      net start apache1
2569         Starts apache1 service.
2570      net stop apache1
2571         Stops apache1 service
2572
2573      Example 2:
2574      apache -n apache2 -i
2575         Installs apache as service 'apache2'. httpd.conf is located under
2576         the default server root (/apache/conf/httpd.conf).
2577      net start apache2
2578         Starts apache2 service.
2579
2580      Example 3:
2581      apache -n apache3 -i -d c:/program files/apache
2582         Install apache as service 'apache3' and sets server root to
2583         c:/program files/apache.
2584
2585      Example 4:
2586      apache -n apache2 -k restart
2587         Restart apache2 service 
2588
2589      [Keith Wannamaker, Ken Parzygnat, Bill Stoddard]
2590
2591   *) Correct the signed/unsigned character handling for the MD5 routines;
2592      mismatches were causing compilation problems with gcc -pedantic and
2593      in the TPF cross-compilation.  [Ken Coar]
2594
2595   *) OS/2: Rework CGI handling to use spawn*() instead of fork/exec, achieving
2596      a roughly 5 fold speed up. [Brian Havard]
2597
2598   *) proxy ftp: instead of using the hardwired string "text/plain" as
2599      a fallback type for files served by the ftp proxy, use the
2600      ap_default_type() function to determine the configured type.
2601      This allows for special configurations like
2602         <Directory proxy:ftp://some.host>
2603         DefaultType gargle/blurb
2604         </Directory>
2605      Additionally, add the Content-Encoding: header to FTP proxy replies
2606      when the encoding is defined (by the AddEncoding directive).
2607      Because it was missing, it was almost impossible to browse compressed
2608      files using the FTP proxy (works now perfectly in Communicator).
2609      The ftp proxy now also returns the Date: and Server: header lines (if not
2610      much else... This code is "somewhat" broken) like normal requests do.
2611      [Martin Kraemer]
2612
2613   *) Be more smart in APACI's configure script when determining the UID/GID
2614      for User/Group directives and use the determined UID/GID to initialize
2615      the permissions on the proxycachedir.
2616      [Dirk-Willem van Gulik, Ralf S. Engelschall]
2617
2618   *) Changed the forking-prior-to-cleanup in the proxy module to first
2619      check wether it actually needs to collect garbage. This reduces 
2620      the number of fork()s from one/request to just the odd one an hour.
2621      [Dirk-Willem van Gulik]
2622
2623   *) Added proxy, auth and header support to src/support/ab.c. Added a
2624      README file to src/support/
2625      [Dirk-Willem van Gulik]
2626
2627   *) Don't hard-code the path to AWK in --shadow bootstrapping Makefile.
2628      [Ralf S. Engelschall] PR#4050
2629
2630   *) Add support for DSO module compilation on BSD/OS 3.x.
2631      [Randy Terbush, Covalent Technologies]
2632
2633   *) Fix sed-substitutions in `make install': path elements like `httpd/conf'
2634      (for instance from an APACI configure --sysconfdir=/etc/httpd/conf
2635      option) were substituted with $(TARGET).conf, etc. Same for other strings
2636      with dots where the dot wasn't matched as plain text. 
2637      [Ralf S. Engelschall]
2638
2639   *) PORT: Add support for FreeBSD 4.x [Ralf S. Engelschall]
2640
2641   *) Fix verbose output of APACI configure (option -v) 
2642      [Martin Kraemer, Ralf S. Engelschall]
2643
2644 Changes with Apache 1.3.6
2645
2646   *) Removed new PassAllEnv code due to DSO problems. [Lars Eilebrecht]
2647
2648 Changes with Apache 1.3.5 [not released]
2649
2650   *) M_INVALID needed a value within the scope of METHODS so that unknown
2651      methods can be access controlled.  [Roy Fielding] PR#3821
2652
2653   *) Added PassAllEnv; makes server's entire environment available
2654      to CGIs and SSIs executed within directive's scope.  [Ken Coar]
2655
2656   *) ap_uuencode() always added two trailing '='s and encoding of
2657      8 bit characters on a machine with signed char may produced
2658      incorrect results. Additionally ap_uuencode() should now
2659      work correctly on EBCDIC platforms.
2660      [Ronald Tschalär <ronald@innovation.ch>] PR#3411
2661
2662   *) WIN32: Binary installer now runs the configuration DLL before
2663      the reboot prompt (which is only given if MSVCRT.DLL system
2664      DLL is new or updated). This should avoid the configuration
2665      directory being empty after installation. [Paul Sutton]
2666      PR#3767, 3800, 3827, 3850, 3900, 3953, 3988
2667
2668   *) WIN32: Binary installer now creates Start menu options to start
2669      and stop Apache as a console application and to uninstall
2670      the Apache service on NT. [Paul Sutton] PR#3741
2671
2672   *) WIN32: Apache.exe now contains an icon. [Paul Sutton]
2673
2674   *) PORT: Switch back to using fcntl() locking on Linux -- instabilities
2675      have been reported with flock() locking (probably related to kernel
2676      version).  [Dean Gaudet] PR#2723, 3531
2677
2678   *) Using APACI, the main config file (usually httpd.conf) was
2679      not being adjusted as $(TARGET).conf. [Wilfredo Sanchez
2680      <wsanchez@apple.com>]
2681
2682   *) PORT: AIX does not require the SHARED_CODE "hack"
2683      [Ryan Bloom <rbb@raleigh.ibm.com>]
2684
2685   *) Set-Cookie headers were being doubled up for some CGIs by the O(n^2)
2686      avoidance code added in 1.3.3.
2687      [Dean Gaudet, Jeff Lewis <lewis@stanford.edu>] PR#3872
2688
2689   *) ap_isxdigit was somehow neglected when adding the ap_isfoo() macros
2690      for 8-bit safeness.  [Dean Gaudet]
2691
2692   *) PORT: Use -fPIC instead of -fpic on Solaris and SunOS for compiling DSOs
2693      because SPARCs have a small machine-specific maximum size for the Global
2694      Offset Table which is often exceeded when compiling one of the larger
2695      third-party modules with Apache. [Peter Urban <Peter.Urban@epfl.ch>] PR#3977
2696
2697   *) Move the directive `ExtendedStatus' in httpd.conf-dist-win _after_ the
2698      DSO/DLL section because it's a directive from mod_status and isn't
2699      available before the DLL of mod_status is loaded.
2700      [Martin POESCHL <mpoeschl@gmx.net>] PR#3936
2701
2702   *) SECURITY: Fix a bug in the calculation of the buffer size for the line 
2703      continuation facility in Apache's configuration files which could 
2704      lead to a buffer overflow situation.
2705      [Thomas Devanneaux <Thomas.Devanneaux@enst.fr>] PR#3617
2706
2707   *) Make documentation and error messages of APACI's --activate-module=FILE 
2708      option more clear. [Jan Wolter <janc@wwnet.net>] PR#3995
2709
2710   *) Fix the gcc version check (for enabling the `inline' facility) to 
2711      really support all future gcc versions >= 2.7 until we know more.
2712      [John Tobey <jtobey@banta-im.com>] PR#3983
2713
2714   *) Let APACI's configure script correctly complain for unknown --enable-XXX
2715      and --disable-XXX options. [Ralf S. Engelschall] PR#3958
2716
2717   *) Link the shared core bootstrap program (``Rule SHARED_CORE=yes'') also
2718      against libap.a and use its ap_snprintf() instead of sprintf() to avoid
2719      possible buffer overflows. [Ralf S. Engelschall]
2720
2721   *) Remove no longer used non-API function ap_single_module_init().
2722      [Ralf S. Engelschall]
2723
2724   *) Add Apple's Mac OS X Server Layout "Rhapsody" to config.layout.
2725      [Wilfredo Sanchez]
2726
2727   *) Add cgidir, htdocsdir, iconsdir variables to Makefile.tmpl in order
2728      to make platform installations easier.  [Wilfredo Sanchez]
2729
2730   *) In configure, do not append the target name to the directory path if
2731      the path already contains "apache".  [Ralf S. Engelschall]
2732
2733   *) SIGPIPE is now ignored by the server core.  The request write routines
2734      (ap_rputc, ap_rputs, ap_rvputs, ap_rwrite, ap_rprintf, ap_rflush) now
2735      correctly check for output errors and mark the connection as aborted.
2736      Replaced many direct (unchecked) calls to ap_b* routines with the
2737      analogous ap_r* calls.  [Roy Fielding]
2738
2739   *) Enhanced mod_rewrite's mapfile handling: The in-core cache for text and
2740      DBM format mapfiles now uses a 4-way hash table with LRU functionality.
2741      Furthermore map lookups for non-existent keys are now cached as well.
2742      Additionally "txt" maps are now parsed with simple string functions
2743      instead of using ap_pregcomp(). As a side effect a bug that prevented
2744      the usage of keys containing the "," character was fixed.
2745      The changes drastically improve the performance when large rewrite maps
2746      are in use.
2747      [Michael van Elst <mlelstv@serpens.swb.de>, Lars Eilebrecht] PR#3160
2748
2749   *) Added ap_sub_req_method_uri() for doing a subrequest with a method
2750      other than GET, and const'd the definition of method in request_rec.
2751      [Greg Stein]
2752
2753   *) Use proper pid_t type for saving PIDs in alloc.c.  [John Bley]
2754
2755   *) Replaced use of WIN32 define with HAVE_DRIVE_LETTERS to indicate
2756      when the OS allows a DOS drive letter within pathnames.  [Brian Havard]
2757
2758   *) Add %V to mod_log_config, this logs the hostname according to the
2759      UseCanonicalName setting (this is the pre-1.3.4 behaviour of
2760      %v).  Useful for mass vhosting.  [Tony Finch <dot@dotat.at>]
2761
2762   *) Add support for \n and \t to mod_log_config, can be used to produce
2763      more reliable logs with multiline entries.  [Tony Finch <dot@dotat.at>]
2764
2765   *) Fixed a few compiler nits.  [John Bley <jbb6@acpub.duke.edu>]
2766
2767   *) Added informative error messages for failed munmap() and fseek() calls
2768      in http_core.c. [John Bley, Roy Fielding]
2769
2770   *) Added some informative error messages for some failed malloc()
2771      calls. [John Bley <jbb6@acpub.duke.edu>, Jim Jagielski]
2772
2773   *) OS/2 ap_os_canonical_filename()'s behaviour is improved: ap_assert()
2774      is removed. This allows <Directory proxy:*> directives to work and
2775      prevents invalid requests from killing the process.
2776      [Brian Havard <brianh@kheldar.apana.org.au>]
2777
2778   *) Reorganised FAQ document.
2779      [Joshua Slive <slive@finance.commerce.ubc.ca>] PR#2497
2780
2781   *) src/support/: The ApacheBench benchmark program was overhauled by
2782      David N. Welton: you can now have it generate an HTML TABLE, presumably
2783      for integration into other HTML sources. David updated the ab man page
2784      as well and added some missing descriptions. Thanks!
2785      [David N. Welton <davidw@prosa.it>]
2786
2787   *) Win32: The filename validity checker now allows filenames containing
2788      characters in the range 0x80 to 0xff (for example accented characters).
2789      [Paul Sutton] PR#3890
2790
2791   *) Added conditional logging based upon environment variables to
2792      mod_log_config.  mod_log_referer and mod_log_agent
2793      are now deprecated.  [Ken Coar]
2794
2795   *) Allow apache acting as a proxy server to relay the real
2796      reason of a failure to a client rather than the "internal
2797      server error" it does currently. The general exposure mechanism
2798      can be triggered by any module by setting the "verbose-error-to"
2799      note to "*"; this allows more than just proxy errors to be exposed.
2800      [Cliff Skolnick, Roy Fielding, Martin Kraemer] Related to PR#3455, 4086
2801
2802   *) Moved man pages for ab and apachectrl to section 8.
2803      [Wilfredo Sanchez, Roy Fielding]
2804
2805   *) Added -S option to install.sh so that options can be passed to
2806      strip on some platforms. [Ralf S. Engelschall, Wilfredo Sanchez]
2807
2808   *) Tweak modules Makefile generated by Configure so that it handles
2809      the test case of no modules being selected. [chaz@reliant.com]
2810
2811   *) Added a <LimitExcept method ...> sectioning directive that allows
2812      the user to assign authentication control to any HTTP method that
2813      is *not* given in the argument list; i.e., the logical negation
2814      of the <Limit> directive.  This is particularly useful for controlling
2815      access on methods unknown to the Apache core, but perhaps known by
2816      some module or CGI script. [Roy Fielding, Tony Finch]
2817
2818   *) Prevent apachectl from complaining if the PIDFILE exists but
2819      does not contain a process id, as might occur if the server is
2820      being rapidly restarted. [Wilfredo Sanchez]
2821
2822   *) Win32: Add global symbols missing from ApacheCore.def. [Carl Olsen]
2823
2824   *) Entity tag comparisons for If-Match and If-None-Match were not being
2825      performed correctly -- weak tags might cause false positives.  Also,
2826      strong comparison wasn't properly enforced in all cases.
2827      [Roy Fielding, Ken Coar, Dean Gaudet] PR#2065, 3657
2828
2829   *) OS/2: Supply OS/2 error code instead of errno on semaphore errors.
2830      [Brian Havard]
2831
2832   *) Work around a bug in Lynx regarding its sending "Negotiate: trans"
2833      even though it doesn't understand TCN.  [Koen Holtman, Roy Fielding]
2834
2835   *) Added ap_size_list_item(), ap_get_list_item(), and ap_find_list_item()
2836      to util.c for parsing an HTTP header field value to extract the next
2837      list item, taking into account the possible presence of nested comments,
2838      quoted-pairs, and quoted-strings. ap_get_list_item() also removes
2839      insignificant whitespace and lowercases non-quoted tokens.
2840      [Roy Fielding] PR#2065
2841
2842   *) proxy: The various calls to ap_proxyerror() can return HTTP/1.1 status
2843      code different from 500. This allows the proxy to, e.g., return
2844      "403 Forbidden" for ProxyBlock'ed URL's. [Martin Kraemer] Related to PR#3455
2845
2846   *) Fix ordering of language variants for the case where the traditional
2847      negotiation algorithm is being used with multiple language variants
2848      and no Accept-Language. [James Treacy <treacy@debian.org>] PR#3299, 3688
2849
2850   *) Do not round the TCN quality calculation to 5 decimal places,
2851      unlike RFC 2296, because the calculation might need 12 decimal places
2852      to get the right result.  [Roy Fielding]
2853
2854   *) Remove unused code to disable transparent negotiation when
2855      negotiating on encoding only, as we now handle encoding too
2856      (though this is nonstandard for TCN), remove charset=ISO-8859-1
2857      fiddle from the fiddle-averse RVSA comparison, and fix bugs in
2858      some debugging statements within mod_negotiation. [Koen Holtman]
2859
2860   *) Fixed a rare memory corruption possibility in mod_dir if the index
2861      file is negotiable and no acceptable variant can be found.
2862      [Dean Gaudet, Roy Fielding, Martin Kraemer]
2863
2864   *) Win32: Add new config directive, ScriptInterpreterSource, to enable
2865      searching the Win32 registry for script interpreters.
2866      [Bill Stoddard]
2867
2868   *) Win32: The compiled-in default filename for the error log is now
2869      error.log, which matches the default in the distributed httpd.conf.
2870      [Paul Sutton]
2871
2872   *) Win32: Any error messages from -i or -u command line options are now
2873      displayed on the console output rather than sent to the error log.
2874      Also the "Running Apache..." message is not output unless Apache is
2875      going to serve requests. [Paul Sutton]
2876
2877   *) Rework the MD5 authentication scheme to use FreeBSD's algorithm,
2878      and use a private significator ('$apr1$') to mark passwords as
2879      being smashed with our own algorithm.  Also abstract the password
2880      checking into a new ap_validate_password() routine.  [Ken Coar]
2881
2882   *) Win32: The filename validity checker now allows "COM" but refuses 
2883      access to "COM1" through "COM4". This allows filenames such
2884      as "com.name" to be served. [Paul Sutton] PR#3769.
2885
2886   *) BS2000: Adapt to the new ufork() system call interface which will
2887      make subtasking easier on the OSD/POSIX mainframe environment.
2888      [Martin Kraemer]
2889
2890   *) Add a compatibility define for escape_uri() -> ap_escape_uri() to
2891      ap_compat.h. [David White <david@persimmon.com>] PR#3725
2892
2893   *) Make NDBM file suffix determination for mod_rewrite more accurate, i.e.
2894      use `.db' instead of `.pag' not only for FreeBSD, but also when
2895      the NDBM library looks like Berkeley-DB based.
2896      [Ralf S. Engelschall] PR#3773
2897
2898   *) Add ability to handle DES or MD5 authentication passwords.
2899      [Ryan Bloom <rbb@Raleigh.IBM.Com>]
2900
2901   *) Fix O(n^2) memory consumption in mod_speling.  [Dean Gaudet]
2902
2903   *) SECURITY: Avoid some buffer overflow problems when escaping
2904      quoted strings.  (This overflow was on the heap and we believe
2905      impossible to exploit.)  [Rick Perry <perry@ece.vill.edu>]
2906
2907   *) Let src/Configure be aware of CFLAGS options starting with plus
2908      signs as it's the case for the HP/UX compiler.
2909      [Doug Yatcilla <yatcilda@umdnj.edu>] PR#3681
2910
2911   *) Remove the hard-wire of TAR=tar (we now check for gtar and gnutar first)
2912      and check to see if the tar we wind up with supports '-h'.
2913      [Jim Jagielski] PR#3671
2914
2915   *) A consistent and conservative style for all shell scripts has been
2916      implemented. Basically, all shell string tests use the traditional
2917      hack of 'if [ "x$var" != "x" ]' or 'if [ "x$var" = "xstring" ]'
2918      to protect against bare null variable strings (ie: wrapping both
2919      sides with double quotes and prepending 'x'). 'x' was chosen
2920      because it's more universal and hopefully easier for old shell
2921      prgrammers, as well as being easier to search for in 'vi' (/x\$) :)
2922      [Jim Jagielski]
2923
2924   *) The status module now prints out both the main server generation as
2925      well as the generation of each process. Also, the vhost info is
2926      printed with '?notable'. [Jim Jagielski]
2927
2928   *) Move src/main/md5c.c to src/ap/ap_md5c.c; it's httpd-neutral
2929      and this makes its functions available to things in src/support.
2930      [Ken Coar]
2931
2932 Changes with Apache 1.3.4
2933
2934   *) Renamed macros status_drops_connection to ap_status_drops_connection
2935      and vestigial scan_script_header to ap_scan_script_header_err,
2936      mostly for aesthetic reasons. [Roy Fielding]
2937
2938   *) The query switch "httpd -S" didn't exit after showing the
2939      vhost settings. That was inconsistent with the other query functions.
2940      [Martin Kraemer]
2941
2942   *) Moved the MODULE_MAGIC_COOKIE from before the versions and
2943      filename to the end of the STANDARD_MODULE_STUFF.  Its
2944      presence at the beginning prevented reporting of the filename
2945      for modules compiled before 1 January 1999.  [Ken Coar]
2946
2947   *) SECURITY: ap_os_is_filename_valid() has been added to Win32
2948      to detect and prevent access to special DOS device file names.
2949      [Paul Sutton, Ken Parzygnat]
2950      
2951   *) WIN32: Created new makefiles Makefile_win32.txt (normal build)
2952      and Makefile_win32_debug.txt (debug build) that work on Win95.
2953      Run each of the following from the src directory:
2954         nmake /f Makefile_win32.txt           # compiles normal build
2955         nmake /f Makefile_win32.txt install   # compiles and installs
2956         nmake /f Makefile_win32.txt clean     # removes compiled junk
2957         nmake /f Makefile_win32_debug.txt     # compiles debug build
2958         nmake /f Makefile_win32_debug.txt install
2959         nmake /f Makefile_win32_debug.txt clean
2960      [Roy Fielding]
2961
2962   *) Added binbuild.sh and findprg.sh helpers to make it easier for us
2963      to build binary distributions. [Lars Eilebrecht]
2964
2965   *) IndexOptions SuppressColumnSorting only turned off making
2966      the column headers anchors; you could still change the display
2967      order by manually adding a '?N=A' or similar query string to the
2968      URL.  Now SuppressColumnSorting locks in the sort order so
2969      it can't be overridden this way.  [Ken Coar]
2970
2971   *) Added IndexOrderDefault directive to supply a default sort order
2972      for FancyIndexed directory listings.  [Ken Coar] PR#1699
2973
2974   *) Change the ap_assert macro to a variant that works on all platforms.
2975      [Richard Prinz <richard.prinz@cso.net>] PR#2575
2976
2977   *) Make sure under ELF-based NetBSD (now) and OpenBSD (future) we don't
2978      search for an underscore on dlsym() (as it's already the case
2979      for FreeBSD 3.0). [Todd Vierling <tv@pobox.com>] PR#2462
2980   
2981   *) Small fix for mod_env.html: The module was documented as to be _not_
2982      compiled into Apache per default, although it _IS_ compiled into 
2983      Apache per default. [Sim Harbert <sim@mindspring.com>] PR#3572
2984
2985   *) Instead of fixing a bug in the generation procedure for config.status (a
2986      backslash was missing) we remove the bug together with it's complete
2987      context because the special cases of the past can now no longer occur
2988      because of the recent magic for the --with-layout default.
2989      [Ralf S. Engelschall] PR#3590
2990  
2991   *) Make top-level Makefile aware of a parallel build procedures (make -j) by
2992      making sure the src/support/ tools are _forced_ to be build last (they
2993      depend on other libraries).
2994      [Markus Theissinger <markus.theissinger@gmx.de>]
2995
2996   *) Fix installation procedure: Now that os-inline.c is actually used (a
2997      recently fixed bug prevented this) we need to also install os-include.c
2998      in addition to os.h into the PREFIX/include/ location or building of
2999      module DSOs with APXS fails. [Ralf S. Engelschall] PR#3527
3000
3001   *) Added MODULE_MAGIC_COOKIE as the first field in a module structure to
3002      allow us to distinguish between a garbled DSO (or even a file which isn't
3003      an Apache module DSO at all) and a DSO which doesn't match the current
3004      Apache API. [Ralf S. Engelschall] PR#3152
3005  
3006   *) Two minor enhancements to mod_rewrite: First RewriteRule now also
3007      supports the ``nocase|NC'' flag (as RewriteCond already does for ages) to
3008      match case insensitive (this especially avoids nasty patterns like
3009      `[tT][eE][sS][tT]'). Second two additional internal map functions
3010      `escape' and `unescape' were added which can be used to escape/unescape
3011      to/from hex-encodings in URLs parts (this is especially useful in
3012      combination with map lookups). 
3013      [Magnus Bodin, Ian Kallen, Ralf S. Engelschall]
3014
3015   *) Renamed the macro escape_uri() to ap_escape_uri() which was
3016      forgotten (because it was a macro) in the symbol renaming process.
3017      [Ralf S. Engelschall]
3018
3019   *) Fix some inconsistencies related to the scopes of directives. The only
3020      user visible change is that the directives `UseCanonicalName' and
3021      `ContentDigest' now use the (more correct) `Options' scope instead of
3022      (less correct) `AuthConfig' scope.  [Ralf S. Engelschall]
3023
3024   *) Using DSO, the Server token was being mangled. Specifically, the
3025      module's token was being added first before the Apache token. This
3026      has been fixed. [Jim Jagielski]
3027
3028   *) Major overhaul of mod_negotiation.c, part 2.
3029      - properly handle "identity" within Accept-Encoding.
3030      - allow encoded variants in RVSA negotiation and let them appear in
3031        the Alternates field using the non-standard "encoding" tag-list.
3032      - fixed both negotiation algorithms so that an explicitly accepted
3033        encoding is preferred over no encoding if "identity" is not
3034        included within Accept-Encoding.
3035      - added ap_array_pstrcat() to alloc.c for efficient concatenation
3036        of large substring sequences.
3037      - replaced O(n^2) memory hogs in mod_negotiation with ap_array_pstrcat.
3038      [Roy Fielding]
3039
3040   *) Major overhaul of mod_negotiation.c, part 1.
3041      - cleanups to mod_negotiation comments and code structure
3042      - made compliant with HTTP/1.1 proposed standard (rfc2068) and added
3043        support for everything in the upcoming HTTP/1.1
3044        revision (draft-ietf-http-v11-spec-rev-06.txt).
3045          - language tag matching also handles tags with more than 2
3046            levels like x-y-z
3047          - empty Accept, Accept-Language, Accept-Charset headers are
3048            processed correctly; previously an empty header would make all
3049            values acceptable instead of unacceptable.
3050          - allowed for q values in Accept-Encoding
3051      - added support for transparent content negotiation (rfc2295 and
3052        rfc2296) (though we do not implement all features in these drafts,
3053        e.g. no feature negotiation).  Removed old experimental version.
3054      - implemented 'structured entity tags' for better cache correctness
3055        (structured entity tags ensure that caches which can deal with Vary
3056        will (eventually) be updated if the set of variants on the server
3057        is changed)
3058          - this involved adding a vlist_validator element to request_rec
3059          - this involved adding the ap_make_etag() function to the global API
3060      - modified guessing of charsets used by Apache negotiation algorithm 
3061        to guess 'no charset' if the variant is not a text/* type
3062      - added code to sort multiviews variants into a canonical order so that
3063        negotiation results are consistent across backup/restores and mirrors
3064      - removed possibility of a type map file resolving to another type map
3065        file as its best variant
3066      [Koen Holtman, Roy Fielding, Lars Eilebrecht] PR#3451, 3299, 1987
3067
3068   *) RFC2396 allows the syntax http://host:/path (with no port number)
3069      but the proxy disallowed it (ap_proxy_canon_netloc()).
3070      [David Kristol <dmk@bell-labs.com>] PR#3530
3071
3072   *) When modules update/modify the file name in the configfile_t structure,
3073      syntax errors will report the updated name, not the original one.
3074      [Fabien Coelho <coelho@cri.ensmp.fr>] PR#3573
3075
3076   *) Correct some filename case assumptions from WIN32 to
3077      CASE_BLIND_FILESYSTEM.  [Brian Havard <brianh@kheldar.apana.org.au>]
3078
3079   *) For %v log ServerName regardless of the UseCanonicalName
3080      setting (similarly for %p).  [Dean Gaudet]
3081
3082   *) Configure was initializing the variables $OSDIR, $INCDIR and $SHELL
3083      rather late (too late for some invocations of TestCompile).
3084      This improves the make environment available to TestCompile and
3085      the *.module scripts. [Martin Kraemer]
3086
3087   *) The hashbang emulation code in ap_execve.c would interpret
3088      #!/hashbang/scripts correctly, but failed to fall back to a
3089      standard shell for scripts which did NOT start with #!
3090      Now SHELL_PATH is started in these cases. [Martin Kraemer]
3091
3092   *) PORT: Added the Cyberguard V2 port [Richard Stagg <stagg@lentil.org>]
3093      PR#3336
3094
3095   *) Update APXS manual page: some -q option arguments were missing
3096      and another was incorrect. [Mark Anderson <mda@discerning.com>] PR#3553
3097
3098   *) Cleanup the command line options: `-?' was documented to show
3099      the usage list but does it with an error because `?' is not a valid
3100      command. OTOH a lot of users expect `-h' to print such a usage list and
3101      instead are annoyed for ages by our huge unreadable list of directives.
3102      So we now changed the command line options this way:
3103      1. `-L' => `-R' 
3104         Intent: we need `-L' to be free, and `-R' for the DSO run-time path is
3105         very similar to the popular linker option.
3106      2. `-h' => `-L'
3107         Intent: while -l gives the small list of modules, -L now gives the
3108         large list of directives implemented by these modules.  This is also
3109         consistent with -v (short version info) and -V (large version info).
3110      3. `-?' => `-h' 
3111         Intent: it's now the expected option ;-)
3112      The manual page was adjusted accordingly. 
3113      [Ralf S. Engelschall] PR#2714
3114
3115   *) Fixed problem of fclose() on an unopened file in suexec if LOG_EXEC
3116      wasn't defined.  [Rick Franchuk <rickf@transpect.net>]
3117
3118   *) Removed recently introduced bugs and disfigurements in APACI:
3119      o fixed argument line processing: using $args was broken: It was not
3120        initialized and using args="$args $apc_option" and even args="$args
3121        \"$apc_option\"" fails in the second processing round for any arguments
3122        containing whitespaces. The only correct way is to use the construct
3123        "$@" (but not possible here) or iterate _both_ times over the implicit
3124        argument line (no argument to for-loop) which is what we now use.
3125      o make --with-layout=Apache the default without creating
3126        redundancy (copying the --with-layout block in the argument parsing
3127        loop).  We achieve this by using the "$@" construct together with the
3128        `set' command to prepend --with-layout=Apache to the command line in
3129        case --with-layout is not used.
3130      o fixed auto-suffix handling now that config.layout exists.
3131        Paths which are auto-suffixed are marked with a trailing plus sign in
3132        config.layout and every path now can be marked this way (not only the
3133        four paths for which we do it currently).  Additionally the suffix is
3134        no longer a static one. Instead it's now `/<target>' where <target> is
3135        the argument of the --target option or per default `httpd'.
3136      o allow also tabs (and only spaces) where we match whitespaces
3137      o various fixes and cleanups related to used shell coding style
3138      o made Jim happy by replacing `Written by' with `Initially written by' ;-)
3139      o trimmed output of --help to fit into 80 columns
3140      [Ralf S. Engelschall]
3141
3142   *) Added two new core API functions, ap_single_module_configure() and
3143      ap_single_module_init(), which are now used by mod_so to configure a module
3144      after loading. [Ralf S. Engelschall]
3145
3146   *) PORT: Add defines for USE_FLOCK_SERIALIZED_ACCEPT and
3147      SINGLE_LISTEN_UNSERIALIZED_ACCEPT to NetBSD/OpenBSD section
3148      of ap_config.h to allow serialized accept for multiport listens.
3149      [Roy Fielding, Curt Sampson] PR#3120
3150
3151   *) PORT: Fixed a misplaced #endif for NetBSD/OpenBSD section
3152      of ap_config.h that would skip several defines if DEFAULT_GROUP
3153      was overridden. [Roy Fielding]
3154
3155   *) PORT: The I86 version of DGUX has support for strncasecmp and 
3156      strcasecmp, so allow it in ap_config.h. [Amiel Lee Yee] PR#3247
3157
3158   *) Fix ordering of definitions in ap_config.h so that ap_inline is
3159      defined before it might be used. [Victor Khimenko]
3160
3161   *) PORT: Add Dynamic Shared Object (DSO) support for BSDI (v4.0).
3162      [Tom Serkowski <tks@bsdi.com>] PR#3453
3163
3164   *) Make generation of src/Configuration.apaci more robust: It failed to
3165      differenciate between modules when one module name was a postfix of
3166      another (e.g. cgi vs. fastcgi). We now check for mod_XXX, libXXX and even
3167      just XXX (think about totally non-standard names like "apache_ssl", too).
3168      [Ralf S. Engelschall] PR#3380
3169
3170   *) In src/Configure remove the SERVER_SUBVERSION support (already deprecated
3171      since 1.3b7) and make whitespace handling more robust (it failed horrible
3172      when whitespaces were present in the arguments of -D options).
3173      [Ralf S. Engelschall] PR#3240
3174
3175   *) Add APACI --shadow=DIR variant (in addition to --shadow). This now first
3176      creates an external package shadow tree in DIR before the local build
3177      shadow tree is generated under DIR. This way one can have the extracted
3178      Apache distribution tree read-only on NFS or CDROM and still build Apache
3179      from these sources. An automatically triggered VPATH-like mechanism is
3180      provided through the TOP variable, too.
3181      [Ralf S. Engelschall, Wilfredo Sanchez <wsanchez@apple.com>]
3182
3183   *) Fix negotiation so that a Vary response header is correctly 
3184      generated when, for a particular dimension, variants only vary
3185      in having or not having a value for that dimension. [Paul Sutton]
3186
3187   *) Fix negotiation so that we prefer an encoded variant over an
3188      unencoded variant if the user-agent explicitly says it can
3189      accept that encoding. Previously we always preferred the unencoded
3190      variant.
3191      [Paul Ausbeck <paula@alumni.cse.ucsc.edu>, Paul Sutton] PR#3447
3192  
3193   *) Fix APXS tool: query variables LIBS_SHLIB and TARGET were not recognized
3194      and the usage page was inconsistent with the functionality and manpage.
3195      [Ralf S. Engelschall]
3196
3197   *) Allow special options -Wc,xxx and -Wl,xxx on APXS compile/link command.
3198      They can occur multiple times and their arguments (`xxx') are passed AS
3199      IS to the compiler/linker command.  [Ralf S. Engelschall]
3200
3201   *) Fixed possible (but harmless in practice) bug in the DBM lookup
3202      procedure of mod_rewrite: very long keys were truncated.
3203      [Ralf S. Engelschall]
3204
3205   *) Added a generic --with-layout=[FILE:]ID option. ID here is a layout
3206      identifier, currently "Apache" and "GNU" are pre-defined in the file
3207      config.layout.  Custom layouts are possible by using FILE:ID as the
3208      argument where the layout ID is taken from FILE.
3209
3210      The config.layout file consists of <Layout ID>..</Layout> sections
3211      where inside those sections "path_variable: path_value" pairs can be
3212      specified. These lines are converted to path_variable='path_value'.
3213
3214   *) Add a DefaultLanguage directive so that files missing a language
3215      extension (e.g., .fr, .de) can be labelled as being some other
3216      default language. DefaultLanguage can appear in <Directory> and 
3217      <Files> containers as well as .htaccess files.  [Paul Sutton]
3218      PR#1180
3219
3220   *) Fix TARGET configuration when configuring and installing using
3221      APACI configure. TARGET now defines the basename of the configuration
3222      file, startup script, manual page, etc. log_error_core() now reports
3223      the server binary name given by argv[0]. TARGET can now also be defined
3224      with --target=TARGET parameter passed to APACI configure.
3225      [Ralf Engelschall, Randy Terbush]
3226
3227   *) mod_include.c:handle_perl() now properly tests for OPT_INCNOEXEC
3228      rather than OPT_INCLUDES [Rainer Schoepf <schoepf@uni-mainz.de>]
3229
3230   *) ap_md5_binary() was using sprintf() rather than a table lookup
3231      to convert binary bytes to hex digits.
3232      [Ronald Tschalär <ronald@innovation.ch>] PR#3409
3233
3234   *) Fix SEGV in TCN negotiation if no variants are acceptable.
3235      [Martin Plechsmid <plechsmi@karlin.mff.cuni.cz>] PR#1987
3236
3237   *) API: ap_exists_config_define() function is now "public" [Doug MacEachern]
3238
3239   *) Fix documentation of `Action' directive: It can activate a CGI script
3240      when either a handler or a MIME content type is triggered by the request.
3241      [Andrew Pimlott <pimlott@math.harvard.edu>] PR#3340
3242
3243   *) Document the `add' command of `dbmmanage' in `dbmmanage.1' manpage.
3244      [David MacKenzie <djm@uu.net>] PR#3394
3245
3246   *) Ignore a "ErrorDocument 401" directive with a full URL and write a
3247      notice to the error log. It is not possible to send a 401 response
3248      and a redirect at the same time.  [Lars Eilebrecht]
3249
3250   *) Fallback to native compilers for IRIX-32 platform. It seems that
3251      a gcc 2.8.1 compiled apache is logging client addresses with all
3252      bits set (255.255.255.255). This is the second such problem caused
3253      by gcc 2.8.1 compiler. The first being broken semaphore locking.
3254      [Randy Terbush]
3255
3256   *) Updated mime.types to reflect current Internet media types
3257      and include a URL to the registry.
3258      [Manoj Kasichainula, Roy Fielding] PR#2380, 2286, 2246
3259
3260   *) SECURITY: Do a more complete check in mod_include to avoid 
3261      an infinite loop of recursive SSI includes.  [Marc Slemko] PR#3323
3262
3263   *) Add APACI --suexec-docroot and --suexec-logfile options which can be
3264      used to set the document root directory (DOC_ROOT) and the suexec
3265      logfile (LOG_EXEC), respectively. Additionally the --layout option
3266      was changed to show more information about the suEXEC setup.
3267      [Lars Eilebrecht] PR#3316, 3357, 3361
3268
3269   *) Added the last two WebDAV status codes of 424 (Failed Dependency)
3270      and 507 (Insufficient Storage) for use by third-party modules.
3271      [Roy Fielding]
3272
3273   *) Enabled all of the WebDAV method names for use by third-party
3274      modules, Limit, and Script directives.  That includes PATCH,
3275      PROPFIND, PROPPATCH, MKCOL, COPY, MOVE, LOCK, and UNLOCK.
3276      Improved mod_actions.c so that it can use any of the methods
3277      defined in httpd.h.  Added ap_method_number_of(method) for
3278      getting the internal method number.  [Roy Fielding]
3279
3280   *) PORT: Add a port to the TPF OS. [Joe Moenich <moenich@us.ibm.com> and
3281      others at IBM]
3282
3283   *) Fix problems with handling of UNC names (e.g., \\host\path)
3284      on Win32.  [Ken Parzygnat <kparz@us.ibm.com>]
3285
3286   *) Rework os_canonical_*() on Win32 so it's simpler, more
3287      robust, and works.  [Ken Parzygnat <kparz@us.ibm.com>]
3288      PR#2555, 2915, 3064, 3232
3289
3290   *) Work around incomplete implementation of strftime on Win32.
3291      [Manoj Kasichainula, Ken Parzygnat <kparz@us.ibm.com>]
3292
3293   *) Move a typedef to fix compile problems on Linux with 1.x kernels.
3294      [Manoj Kasichainula] PR#3177
3295
3296   *) PORT: Add a port to the Concurrent PowerMAX OS. [Tom Horsley
3297      <Tom.Horsley@mail.ccur.com>]
3298
3299   *) WIN32: Log more explicit error messages if spawning an interpreted 
3300      script failed, including the command line used to attempt to execute 
3301      the interpreter and the Win32 error code returned.  [Marc Slemko]
3302
3303   *) Disable sending of error-notes on a 500 (Internal Server Error) response
3304      since it often includes file path info.  Enable sending of error-notes
3305      on a 501 (Method Not Implemented).  [Roy Fielding] PR#3173
3306
3307   *) http_config.c would respond with 501 (Method Not Implemented) if a
3308      content type handler was specified but could not be found, which
3309      should have been a 500 response.  Likewise, mod_proxy.c would responsd
3310      with a 501 if the URI scheme is unrecognized instead of the correct
3311      response of 403 (Forbidden).  [Roy Fielding]
3312
3313   *) SECURITY: Eliminate DoS attack when a bad URI path contains what
3314      looks like a printf format escape.  [Marc Slemko, Studenten Net Twente]
3315
3316   *) Fix in mod_autoindex: for files where the last modified time stamp was
3317      unavailable, an empty string was printed which was 2 bytes short.
3318      The size and description columns were therefore not aligned correctly.
3319      [Martin Kraemer] (no PR#)
3320
3321   *) Update BS2000 OS code to work with recent versions. Starting with
3322      release A17, the child fork() must be replaced by a _rfork().
3323      (BS2000 only) [Martin Kraemer]
3324
3325   *) Add the actual server_rec structure of the specific Vhost to the
3326      scoreboard file and avoid a string copy (as well as allow some
3327      further future enhancements). [Harrie Hazewinkel
3328      <harrie.hazewinkel@jrc.it>]
3329
3330   *) Add APACI --permute-module=foo:bar option which can be used to
3331      on-the-fly/batch permute the order of two modules (mod_foo and mod_bar)
3332      in the Configuration[.apaci] file. Two special and important variants are
3333      supported for the option argument: first BEGIN:foo which permutes module
3334      mod_foo with the begin of the module list, i.e. it `moves' the module to
3335      the begin of the list (gives it lowest priority).  And second foo:END
3336      which permutes mod_foo with the end of the module list, i.e. it `moves'
3337      the module to the end of the list (gives it highest priority). 
3338      [Ralf S. Engelschall]
3339
3340   *) Fix problem with 'apache -k shutdown' and startup event
3341      synchronisation (Win32).  [Ken Parzygnat <kparz@raleigh.ibm.com>]
3342      PR#3255
3343
3344   *) The config parser wasn't correctly noticing a missing '>'
3345      on container start lines (e.g., it wouldn't spot
3346      "<Directory /" as a syntax error).  [Ryan Bloom <rbbloom@us.ibm.com>]
3347      PR#3279
3348
3349   *) Add a 'RemoveHandler' directive which will selectively remove
3350      all handler associations for the specified file extensions.
3351      [Ryan Bloom <rbbloom@us.ibm.com>] PR#1799.
3352
3353   *) Properly handle & allow "nul" and ".*/null" in AccessConfig and
3354      ResourceConfig directives on Win32.  Also add a note to the effect
3355      of 'useless User directive ignored on Win32' to the errorlog if
3356      a User directive is encountered on Win32.
3357      [Ken Parzygnat <kparz@raleigh.ibm.com>] PR#2078, 2303.
3358
3359   *) Fix multiple whitespace handling in imagemaps for mod_imap which was
3360      broken since Apache 1.3.1 where we took out compressing of multiple
3361      spaces in ap_cfg_getline().
3362      [Ivan Richwalski <ivan@seppuku.net>] PR#3249
3363
3364   *) Fix Berkeley-DB/2.x support in mod_auth_db: The data structures were not
3365      initialized correctly and the db_open() call used an invalid mode
3366      parameter. [Ron Klatchko <ron@ckm.ucsf.edu>] PR#3171
3367
3368   *) PORT: DSO support for UnixWare 7
3369      [Ralf S. Engelschall, Ron Record <rr@sco.com>]
3370
3371   *) Merge the contents of the {srm,access}.conf-dist* files into the
3372      httpd.conf-dist* files.  The srm and access files now contain
3373      only comments, and httpd.conf has all the combined contents in
3374      a rational order.  [Ken Coar]
3375
3376   *) PORT: DSO/ELF support for FreeBSD 3.0.
3377      [Ralf S. Engelschall, Dirk Froemberg <ibex@physik.TU-Berlin.DE>]
3378   
3379   *) Add a "default-handler" handler that calls the default_hander()
3380      function which is normally called for static content.  This allows
3381      you to override a specific handler.  [Marc Slemko]
3382
3383   *) Further simplify checking for absolute paths by replacing an
3384      hard-coded syntax check with a call to a routine we already created to
3385      do this.  [Ken Parzygnat <kparz@raleigh.ibm.com>] PR#2976, 3074
3386
3387   *) Log an error if we encounter a malformed "require" directive 
3388      in mod_auth if we know that we know that no other module can
3389      deal with it.  [Marc Slemko]
3390
3391   *) Remove ap_private_extern method of hiding conflicting symbols
3392      on the NEXT platform because it is not correct for all versions,
3393      and the versions for which it is correct are unknown.
3394      [Wilfredo Sanchez <wsanchez@apple.com>]
3395
3396   *) Fix inheritance of IndexOptions NameWidth and remove unintended
3397      restriction on +NameWidth, +IconHeight, and +IconWidth.  [Ken Coar]
3398
3399   *) Fix per-directory config merging for cases in which a 500 error
3400      is encountered in an .htaccess file somewhere down the tree.
3401      [Ken Coar]  PR#2409
3402
3403   *) Minor performance improvement to ap_escape_html(). [Roy Fielding]
3404
3405   *) Fixed a segmentation violation in mod_proxy when a response is
3406      non-cachable.  [Roy Fielding, traced by Doug Bloebaum]. PR#2950, 3056
3407
3408 Changes with Apache 1.3.3
3409
3410   *) Added a complete implementation of the Expect header field as
3411      specified in rev-05 of HTTP/1.1.  Disabled the 100 Continue
3412      response when we already know the final status, which is mighty
3413      useful for PUT responses that result in 302 or 401. [Roy Fielding]
3414
3415   *) Remove extra trailing whitespace from the getline results as part
3416      of the protocol processing, which is extra nice because it works
3417      between continuation lines, is almost no cost in the normal case
3418      of no extra whitespace, and saves memory. [Roy Fielding]
3419
3420   *) Added new HTTP status codes and default response bodies from the
3421      revised HTTP/1.1 (307, 416, 417), WebDAV (102, 207, 422, 423), and 
3422      HTTP Extension Framework (510) specifications.  Did not add the
3423      WebDAV 424 and 425 codes because they are bogus.  We don't use any
3424      of these codes yet, but they are now available to 3rd-party modules.
3425      [Roy Fielding]
3426
3427   *) Fix a possible race condition between timed-out requests and the
3428      ap_bhalfduplex select that might result in an infinite loop on
3429      platforms that do not validate the descriptor. [Roy Fielding]
3430
3431   *) WIN32: Add "-k shutdown" and "-k restart" options to signal a
3432      running Apache server [Paul Sutton]
3433
3434   *) Fix mod_autoindex bug where directories got a size of "0k" instead
3435      of "-".  [Martin Plechsmid <plechsmi@karlin.mff.cuni.cz>, Marc Slemko]
3436      PR#3130
3437
3438   *) PORT: DRS 6000 machine. [Paul Debleecker <pdebleecker@jetair.be>]
3439
3440   *) Add the server signature text (from the core ServerSignature directive)
3441      to the list of envariables available to scripts, SSI, and the like.
3442      [Ken Coar]
3443
3444   *) PORT: Fix sys/resource.h handling for SCO 3.x platform.
3445      [M. Laak <maert@proinv.ee>] PR#3108
3446  
3447   *) Fallback from sysconf-based to plain HZ-based `ticks per second'
3448      calculation in mod_status for all systems which don't have POSIX
3449      sysconf() (like UTS 2.1) and not only for the NEXT platform.
3450      [Dave Dykstra <dwd@bell-labs.com>] PR#3055
3451
3452   *) Fix `require ...' directive parsing in mod_auth, mod_auth_dbm and
3453      mod_auth_db by using ap_getword_white() (which uses ap_isspace()) 
3454      instead of ap_getword(..., ' ') (which parses only according to spaces 
3455      but not tabs).  [James Morris <jmorris@intercode.com.au>, 
3456      Ralf S. Engelschall] PR#3105
3457
3458   *) Fix the SERVER_NAME variable under sub-request situations (where
3459      `UseCanonicalName off' is used) like CGI's called from SSI pages or
3460      RewriteCond variables by adopting r->hostname to sub-requests.
3461      [James Grinter <jrg@blodwen.demon.co.uk>] PR#3111
3462
3463   *) Fix stderr redirection under syslog-based error logging situation.
3464      [Youichirou Koga <y-koga@jp.FreeBSD.org>] PR#3095
3465
3466   *) Document `ErrorLog syslog:facility' variant of error logging.
3467      [Youichirou Koga <y-koga@jp.FreeBSD.org>] PR#3096
3468
3469   *) Fix http://localhost/ hints in top-level INSTALL document.
3470      [Rob Jenson <robjen@spotch.com>, Ralf S. Engelschall] PR#3088
3471
3472   *) Quote paths in default configuration files.  [Wilfredo Sanchez]
3473
3474   *) PORT: Remove extra HAVE_SYS_RESOURCE_H define for RHAPSODY since
3475      it is now taken care of properly by the header file tests.
3476      [Wilfredo Sanchez <wsanchez@apple.com>]
3477
3478   *) Fix problem with scripts and filehandle inheritance on Win32.
3479      [Ken Parzygnat <kparz@raleigh.ibm.com>]  PR#2884, 2910
3480
3481   *) Win32 name canonicalisation could end up using the server's
3482      working directory to fill in some blanks.  [Ken Parzygnat
3483      <kparz@raleigh.ibm.com>] PR#3001
3484
3485   *) Correct invalid assumption by ap_sub_req_lookup_file() that all
3486      absolute paths begin with "/" -- because they don't on Win32.
3487      [Ken Parzygnat <kparz@raleigh.ibm.com>] PR#2976, 3074
3488
3489   *) Add [REDIRECT_]VARIANTS environment variable to mod_speling
3490      so that ErrorDocument 300 processors can reformat the list
3491      if desired.  [Ken Coar] PR#2859
3492
3493   *) Add +/- incremental prefixes to IndexOptions keywords, and
3494      enable merging of multiple IndexOptions directives.  [Ken Coar]
3495
3496   *) PORT: Allow GuessOS to recognize Unixware 7.0.1 [Steve Cameron
3497      <steve.cameron@compaq.com>]
3498
3499   *) Reconstructed the loop through multiple htaccess file names so
3500      that missing files are not confused with unreadable files.
3501      [Roy Fielding]
3502
3503   *) The ap_pfopen and ap_pfdopen routines were failing to protect the
3504      errno on an error, which leads to one error being mistaken for
3505      another when reading non-existent .htaccess files.
3506      [Jim Jagielski]
3507
3508   *) OS/2: The new header tests get things right, need to update
3509      ap_config.h.  [Brian Havard]
3510
3511   *) The Perl %ENV hash will now be setup by default when using the
3512      mod_include `perl' command [Doug MacEachern]
3513
3514   *) PORT: Add Pyramid DC/OSx support to configuration mechanism.
3515      [Earle Ake <akee@wpdiss1.wpafb.af.mil>]
3516
3517   *) PORT: Fix sys/resource.h handling for Amdahl's UTS 2.1
3518      [Dave Dykstra <dwd@bell-labs.com>] PR#3054
3519
3520   *) Correct comment in mod_log_config.c about its internals.
3521      [Elf Sternberg <elf@halcyon.com>]
3522
3523   *) Avoid possible line overflow in Configure: Use an awkfile to
3524      handle the creation of modules.c [Jim Jagielski]
3525
3526 Changes with Apache 1.3.2
3527
3528   *) Fix bug in ap_remove_module(), which caused problems for dso's 
3529      who were the top_module.  [Doug MacEachern]
3530
3531   *) Add support for Berkeley-DB/2.x (in addition to Berkeley-DB/1.x) to
3532      mod_auth_db to both be friendly to users who wants to use this version
3533      and to avoid problems under platforms where only version 2.x is present.
3534      [Dan Jacobowitz <drow@false.org>, Ralf S. Engelschall]
3535
3536   *) When using ap_log_rerror(), make the error message available to the
3537      *ERROR_NOTES envariables by default.  [Ken Coar]
3538
3539   *) BS2000 platform only: get rid of the nasty BS2000AuthFile.
3540      You now must define a BS2000Account name for the server User.
3541      This has fewer security implications than the old approach.
3542      [Martin Kraemer]
3543
3544   *) Fix SHARED_CORE feature for HPUX platform: We now use extension `.sl'
3545      instead of `.so' and `SHLIB_PATH' instead of `LD_LIBRARY_PATH' on this
3546      platform to make the braindead HPUX linker happy. Notice, for the module
3547      DSOs we don't have to use this, because these are loaded manually (and
3548      not via HPUX' dld). [Ralf S. Engelschall] PR#2905, PR#2968
3549
3550   *) Remove 64 thread limit on Win32.
3551      [Bill Stoddard <stoddard@raleigh.ibm.com>]
3552
3553   *) Remove redundant substitutions in top-level Makefile.tmpl.
3554      [Ralf S. Engelschall]
3555
3556   *) Fix APACI's `Group' configuration adjustment - especially for Linux
3557      platforms where `nogroup' exists in /etc/group. [Ralf S. Engelschall]
3558  
3559   *) Make PrintPath work generically instead of having one version
3560      strictly for OS/2. [Jim Jagielski, Brian Havard]
3561
3562   *) Fix the recently introduced C header file checking: We now use the C
3563      pre-processor pass only (and no longer the complete compiler pass) to
3564      determine whether a C header file exists or not. Because only this way
3565      we're safe against inter-header dependencies (which caused horrible
3566      portability problems). The only drawback is that we now have a CPP
3567      configuration variable which has to be determined first (we do a similar
3568      approach as GNU Autoconf does here). When all fails the user still has
3569      the possibility to override it manually via APACI or src/Configuration.
3570      As a fallback for the header check itself we can directly check the
3571      existance of the file under /usr/include, too.
3572      [Ralf S. Engelschall] PR#2777
3573
3574   *) PORT: Added RHAPSODY (Mac OS X Server) support. MAP_TMPFILE defined
3575      as an alternate mechanism for mmap'd shared memory for RHAPSODY.
3576      ap_private_extern defined to hide symbols that conflict with loaded
3577      dynamic libraries on the NEXT and RHAPSODY platforms.
3578      [Wilfredo Sanchez <wsanchez@apple.com>]
3579
3580   *) Delete PID file on clean shutdowns.
3581      [Charles Randall <crandall@matchlogic.com>] PR#2947
3582
3583   *) Fix mod_auth_*.html documents: NSCA -> NCSA
3584      [Youichirou Koga <y-koga@jp.FreeBSD.org>] PR#2991
3585
3586   *) Fix INSTALL document: www.gnu.ai.mit.edu -> www.gnu.org
3587      [Karl Berry <karl@gnu.org>] PR#2994
3588
3589   *) Fix dbmmanage.1 manual page.
3590      [Youichirou Koga <y-koga@jp.FreeBSD.org>] PR#2992
3591      
3592   *) Fix possible buffer overflow situation in suexec.c.
3593      [Jeff Stewart <jws@purdue.edu>] PR#2790
3594
3595   *) Add some more LIBS for the SCO5 platform which are needed for the already
3596      used -lprot. It's actually a bug in SCO5, of course.
3597      [Ronald Record <rr@sco.com>] PR#2533
3598
3599   *) Fix documentation of ProxyPass/ProxyPassReverse according to the
3600      trailing slash problem. [Jon Drukman <jsd@gamespot.com>] PR#2933
3601   
3602   *) Remove `-msym' option from LDFLAGS_SHLIB for the Digital UNIX (OSF/1)
3603      platform, because it's only supported under version 4.0 and higher. But
3604      because our GuessOS is still unaware of Digital UNIX versions and the
3605      -msym is just to optimize the DSO statup time a little bit it's safe and
3606      best when we leave it out now.  [Ralf S. Engelschall] PR#2969
3607
3608   *) Fix the ap_log_error_old(), ap_log_unixerr() and ap_log_printf()
3609      functions: First all three functions no longer fail on strings containing
3610      "%" chars and second ap_log_printf() no longer does a double-formatting
3611      (instead it directly passes through the message to be formatted to the
3612      real internal formatting function). [Ralf S. Engelschall] PR#2941
3613
3614   *) Allow "Include" directives anywhere in the server config
3615      files (but not .htaccess files).  [Ken Coar] PR#2727
3616
3617   *) The proxy was refusing to serve CONNECT requests except to
3618      port 443 (https://) and 563 (snews://). The new AllowCONNECT
3619      directive allows the configuration of the ports to which a
3620      CONNECT is allowed.  [Sameer Parekh, Martin Kraemer]
3621
3622   *) mod_expires will now act on content that is not sent from a file
3623      on disk.  Previously it would never add an Expires: header to
3624      any response that did not come from a file on disk; the only
3625      case where it still doesn't (and can't) add one for that type of 
3626      content is if you are using a modification date based setting.  
3627      [Marc Slemko, Paul Phillips <paulp@go2net.com>]
3628
3629   *) Problems encountered during .htaccess parsing or CGI execution
3630      that lead to a "500 Server Error" condition now provide explanatory
3631      text (in the *ERROR_NOTES envariable) to ErrorDocument 500 scripts.
3632      [Ken Coar] PR#1291
3633
3634   *) Add NameWidth keyword to IndexOptions directive so that the
3635      width of the filename column is customisable.  [Ken Coar, Dean Gaudet]
3636      PR#1949, 2324.
3637
3638   *) Recognize lowercase _and_ uppercase `uname' results under
3639      SCO OpenServer. [David Coelho <drc@ppt.com>]
3640
3641   *) As duplicate "HTTP/1.0 200 OK" lines within the header seem to be
3642      a common problem of (mis-administrated?) IIS servers, make the apache
3643      proxy immune to these errors (and ignore the duplicates, but log
3644      the fact to error_log). [Martin Kraemer], after the proposal in PR#2914 
3645      
3646   *) The <IfModule and <IfDefine block starting directives now only
3647      allow exactly one argument. Previously, the optional negation
3648      character '!' could be separated by whitespace without a syntax
3649      error being reported, albeit defeating the IfModule functionality
3650      (enclosed directives would ALWAYS be executed). By using the
3651      stricter syntax, these hard-to-track errors can be avoided.
3652      [Martin Kraemer]
3653
3654   *) Simplify handling of IndexOptions in mod_autoindex -- and BTW
3655      cause the standalone FancyIndexing directive to logically OR
3656      into any existing IndexOptions settings rather than wiping
3657      them out.  [Ken Coar]
3658
3659   *) Changes in ftp proxy: make URL parsing simpler by using the
3660      parsed_uri stuff.
3661      + Add display of the "current directory" in cases where it's
3662      different from the supplied path (e.g., ftp://user@host/ lives
3663      in /home/user, not in /, therefore clicking on "../" in the
3664      starting directory might send us to /home/).
3665      + When ftp login fails, (esp. when a user name was part of the
3666      URL already), we now return [401 Unauthorized ] to allow the
3667      browser to pop up an authorization dialog. This makes passwords
3668      slightly less visible (they don't appear in the regular log files)
3669      and implements a functionality that other www proxy servers
3670      already offered.
3671      [Martin Kraemer]
3672
3673   *) Triggered by the recent "Via:" header changes, the proxy module would
3674      dump core for replies with invalid headers (e.g., duplicate
3675      "HTTP/1.0 200 OK" lines). These errors are now logged and the
3676      core dump is avoided. Also, broken replies are not cached.
3677      [Martin Kraemer] PR#2914
3678
3679   *) new `GprofDir' directive when compiled with -DGPROF, where gprof can
3680      plop gmon.out profile data for each child [Doug MacEachern]
3681    
3682   *) Use the construct ``"$@"'' instead of ``$*'' in the generated
3683      config.status script to be immune against arguments with whitespaces.
3684      [Yves Arrouye <yves@apple.com>] PR#2866
3685
3686   *) Replace the inlined information grabbing stuff for the configuration
3687      adjustment feature (no --without-confadjust) with calls to a new helper
3688      script `buildinfo.sh' which is both more flexible and already proofed to
3689      be more robust against platform differences. This mainly fixes the
3690      recently occured ``sed: command garbled: ...'' problems.
3691      [Ralf S. Engelschall] PR#2776, PR#2848
3692
3693   *) Make ab.c again pass ``gcc -Wall -Wshadow -Wpointer-arith -Wcast-align
3694      -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Winline''
3695      without complains after we recently added the POST feature.
3696      [Ralf S. Engelschall]
3697
3698   *) Renamed is_HTTP_xxx() macros to ap_is_HTTP_xxx() name. They are used inside
3699      modules as API functions and we forgot them at the big symbol renaming.
3700      [Ralf S. Engelschall]
3701
3702   *) Remove bad reference to non-existing SERVER_VERSION in mod_rewrite.html
3703      [Youichirou Koga <y-koga@jp.FreeBSD.ORG>] PR#2895
3704
3705   *) Dynamically size the filename column of mod_autoindex output.
3706      [Dean Gaudet]
3707
3708   *) Add the ability to do POST requests to the ab benchmarking tool.
3709      [Kurt Sussman <kls@best.com>] PR#2871
3710
3711   *) Bump up MAX_ENV_FLAGS in mod_rewrite.h from the too conservatice limit of
3712      5 to 10 because there are some users out there who always have 5 to 8
3713      variables in one RewriteRule and had to patch mod_rewrite.h for every
3714      release. So 15 should be now more than enough, even for them. (I never
3715      needed more than 4 in my RewriteRules ;-)
3716      [Ralf S. Engelschall]
3717
3718   *) Make the proxy generate and understand Via: headers
3719      [Martin Kraemer]
3720
3721   *) Change the proxy to use tables instead of array_headers for
3722      the header lines. [Martin Kraemer]
3723
3724   *) Make sure the config.status file is not overridden when just
3725      ``configure --help'' is used. [Ralf S. Engelschall] PR#2844
3726
3727   *) Split MODULE_MAGIC_NUMBER into _MAJOR/_MINOR numbers. This should
3728      provide a way to trace API changes that add functionality but do
3729      not create a compatibility issue for precompiled modules, etc.
3730      See include/ap_mmn.h for more details.  [Randy Terbush]
3731
3732   *) Fix suexec installation under `make install root=xxx' situation.
3733      [Ralf S. Engelschall]
3734
3735   *) Extend the output of the -V switch to include the paths of all
3736      compiled-in configuration files, if they were overridden at
3737      compile time, for least astonishment of the user.
3738      [Martin Kraemer]
3739
3740   *) When READing a request in ExtendedStatus mode, the "old"
3741      vhost, request and client information is not displayed.
3742      [Jim Jagielski]
3743
3744   *) STATUS is no longer available. Full status information now
3745      run-time configurable using the ExtendedStatus directive.
3746      [Jim Jagielski]
3747
3748   *) SECURITY: Eliminate O(n^2) space DoS attacks (and other O(n^2)
3749      cpu time attacks) in header parsing.  Add ap_overlap_tables(),
3750      a function which can be used to perform bulk update operations
3751      on tables in a more efficient manner.  [Dean Gaudet]
3752
3753   *) SECURITY: Added compile-time and configurable limits for
3754      various aspects of reading a client request to avoid some simple
3755      denial of service attacks, including limits on maximum request-line
3756      size (LimitRequestLine), number of header fields (LimitRequestFields),
3757      and size of any one header field (LimitRequestFieldsize).  Also added
3758      a configurable directive LimitRequestBody for limiting the size of the
3759      request message body.  [Roy Fielding]
3760
3761   *) Make status module aware of DNS and logging states, even if
3762      STATUS not defined.  [Jim Jagielski]
3763
3764   *) Fix a problem with the new OS/2 mutexes.  [Brian Havard]
3765
3766   *) Enhance mod_speling so that CheckSpelling can be used in
3767      <Directory> containers and .htaccess files.  [Ken Coar]
3768
3769   *) API: new ap_custom_response() function for hooking into the
3770      ErrorDocument mechanism at runtime [Doug MacEachern]
3771
3772   *) API: new ap_uuencode() function [Doug MacEachern]
3773
3774   *) API: scan_script_header_err_core() now "public" and renamed
3775      ap_scan_script_header_err_core() [Doug MacEachern]
3776
3777   *) The 'status' module will now show the process pid's and their
3778      state even without full STATUS accounting. [Jim Jagielski]
3779
3780   *) Restore the client IP address to the error log messages, this
3781      was lost during the transition from 1.2 to 1.3.  Add a new
3782      function ap_log_rerror() which takes a request_rec * and
3783      formats it appropriately.  [Dean Gaudet] PR#2661
3784
3785   *) Cure ap_cfg_getline() of its nasty habit of compressing internal
3786      whitespace in input lines -- including within quoted strings.
3787      [Ken Coar]
3788      but leading and trailing whitespace should continue to be
3789      stripped [Martin Kraemer]
3790
3791   *) Cleanup of the PrintPath/PrintPathOS2 helper functions. Avoid
3792      the ugly use of an env. variable and use command-line args for
3793      alternate $PATH. Make more like advanced 'type's as well.
3794      [Jim Jagielski]
3795
3796   *) The IRIXN32 Rule was being ignored. Configure now correctly adds
3797      -n32 only if IRIXN32 says to. [Jim Jagielski, Alain St-Denis
3798      <alain.st-denis@ec.gc.ca>] PR#2736
3799
3800   *) Clean up a warning in mod_proxy. [Ralf S. Engelschall]
3801
3802   *) Renamed __EMX__ (internal define of the gcc port under OS/2) to OS2
3803      following the same idea as "MSVC vs WIN32". Additionally the src/os/emx/
3804      directory was renamed to src/os/os2/ for consistency.
3805      [Brian Havard, Ralf S. Engelschall]
3806
3807   *) Add new Rule SHARED_CHAIN which can be used to enable linking of DSO
3808      files (here modules) against other DSO files (here shared libraries).
3809      This is done by determining a subset of LIBS which can be safely used for
3810      linking the DSOs, i.e. PIC libs and shared libs.  Currently the rule is
3811      disabled for all platforms to avoid problems with this (experimental)
3812      rule. But we provide it now for those people how ran into problems and
3813      want to came out by forcing linking against DSOs.
3814      [Ralf S. Engelschall] PR#2587
3815
3816   *) Fix suEXEC start message: Has to be of `notice' level to really get
3817      printed together with the standard startup message because the `notice'
3818      level is handled special inside ap_log_error() for startup messages.
3819      [Ralf S. Engelschall] PR#2761 PR#2761 PR#2765
3820
3821   *) Add correct `model' MIME types from RFC2077 to mime.types file.
3822      [Ralf S. Engelschall] PR#2732
3823
3824   *) Fixed examples in mod_rewrite.html document. 
3825      [Youichirou Koga <y-koga@jp.FreeBSD.org>, Ralf S. Engelschall] PR#2756
3826
3827   *) Allow ap_read_request errors to propagate through the normal request
3828      handling loop so that the connection can be properly closed with
3829      lingering_close, thus avoiding a potential TCP reset that would
3830      cause the client to miss the HTTP error response.  [Roy Fielding]
3831
3832   *) One more portability fix for APACI shadow tree support: Swap order of awk
3833      and sed in top-level configure script to avoid sed fails on some
3834      platforms (for instance SunOS 4.1.3 and NCR SysV) because of the
3835      non-newline-termined output of Awk. [Ralf S. Engelschall] PR#2729
3836
3837   *) PORT: NEC EWS4800 support.
3838      [MATSUURA Takanori <t-matsuu@protein.osaka-u.ac.jp>]
3839
3840   *) Fix a segfault in the proxy on OS/2.  [Brian Havard]
3841
3842   *) Fix Win32 part of ap_spawn_child() by providing a reasonable child_info
3843      structure instead of just NULL. This fixes at least the RewriteMap
3844      programs under Win32. [Marco De Michele <mdemichele@tin.it>] PR#2483
3845
3846   *) Add workaround to top-level `configure' script for brain dead 
3847      `echo' commands which interpet escape sequences per default.
3848      [Ralf S. Engelschall] PR#2654
3849
3850   *) Make sure that the path to the Perl interpreter is correctly
3851      adjusted under `make install' also for the printenv CGI script.
3852      [Ralf S. Engelschall] PR#2595
3853  
3854   *) Update the mod_rewrite.html document to correctly reflect the situation
3855      of the `proxy' (`[P]') feature. [Ralf S. Engelschall] PR#2679
3856
3857   *) Fix `install-includes' sub-target of `install' target in top-level
3858      Makefile.tmpl: The umask+cp approach didn't work as expected (especially
3859      for users which extracted the distribution under 'umask 077'), so replace
3860      it by an explicit cp+chmod approach.
3861      [Richard Lloyd, Curt Sampson, Ralf S. Engelschall] PR#2656 PR#2626
3862  
3863   *) Fix `distclean' and `clean' targets in src/Makefile.tmpl to have same
3864      behavior and to cleanup correctly even under enabled SHARED_CORE rule.
3865      [Ralf S. Engelschall]
3866
3867   *) Use a more straight forward and thus less problematic Sed command in
3868      src/helper/mkdir.sh script.  [Ralf S. Engelschall]
3869
3870   *) Make sure the `configure' scripts doesn't fail when trying to guess the
3871      domainname of the machine and there are multiple `domainname' and
3872      `search' entries in /etc/resolv.conf.
3873      [Ralf S. Engelschall] PR#2710
3874
3875   *) Add note about the SHARED_CORE requirement on some platforms also to the
3876      INSTALL file because a lot of users don't read htdocs/manual/dso.html
3877      first. [Ralf S. Engelschall] PR#2701
3878
3879   *) Fix document "hyperlink" for dso.html in src/Configuration.tmpl
3880      [Knut A.Syed <Knut.Syed@nhh.no>] PR#2674
3881
3882   *) Modify mod_rewrite to update the Vary response field if the URL rewriting
3883      engine does any manipulations or decisions based upon request fields. 
3884      [Ken Coar] PR#1644
3885
3886   *) Document the special APACI behavior for installation paths where
3887      ``/apache'' is appended to paths under some (well defined, of course)
3888      situations to prevent pollution of system locations with Apache files.
3889      [Ralf S. Engelschall] PR#2660
3890
3891   *) Fixed problem with buffered response message not being sent for
3892      the read_request error conditions of URI-too-long (414) and
3893      malformed header fields (400).  [Roy Fielding] PR#2646
3894
3895   *) Add support for the Max-Forwards: header line required by RFC2068 for
3896      the TRACE method. This allows apache to TRACE along a chain of proxies
3897      up to a predetermined depth. [Martin Kraemer]
3898
3899   *) Fix SHARED_CORE rule: The CFLAGS_SHLIB variable is no longer doubled
3900      (compilers complained) and the .so.V.R.P filename extension was adjusted
3901      to correctly reflect the 1.3.2 version.
3902      [Ralf S. Engelschall] PR#2644
3903
3904   *) SECURITY: Plug "..." and other canonicalization holes under OS/2.
3905      [Brian Havard]
3906   
3907   *) PORT: implement serialized accepts for OS/2.  [Brian Havard]
3908
3909   *) mod_include had problems with the fsize and flastmod directives
3910      under WIN32.  Fix also avoids the minor security hole of using
3911      ".." paths for fsize and flastmod.
3912      [Manoj Kasichainula <manojk@raleigh.ibm.com>] PR#2355
3913
3914   *) Fixed some Makefile dependency problems.  [Dean Gaudet]
3915
3916 Changes with Apache 1.3.1
3917
3918   *) Disable the incorrect entry for application/msword in the 
3919      mod_mime_magic "magic" file because it also matches other Office
3920      documents.  [Ralf S. Engelschall] PR#2608
3921
3922   *) Fix broken RANLIB handling in src/Configure (the entry from
3923      src/Configuration.tmpl was ignored) and additionally force RANLIB to
3924      /bin/true under HP/UX where ranlib exists but is deprecated.
3925      [Ralf S. Engelschall] PR#2627
3926      
3927   *) 'apachectl status' failed on some systems.
3928      [Steve VanDevender <stevev@darkwing.uoregon.edu>, Lars Eilebrecht] PR#2613
3929
3930   *) Add new flags for ap_unparse_uri_components() to make it generate
3931      the scheme://sitepart string only, or to omit the query string.
3932      [Martin Kraemer]
3933
3934   *) WIN32: Canonicalize ServerRoot before checking to see if it
3935      is a valid directory.  The failure to do this caused certain
3936      ServerRoot settings (eg. "ServerRoot /apache") to be improperly
3937      rejected.  [Marc Slemko]
3938
3939   *) Global renaming of C header files to both get rid of conflicts with third
3940      party packages and to again reach consistency:
3941        1. conf.h      -> ap_config.h
3942        2. conf_auto.h -> ap_config_auto.h \ these are now merged
3943        3. ap_config.h -> ap_config_auto.h / in the config process
3944        4. compat.h    -> ap_compat.h
3945        5. apctype.h   -> ap_ctype.h
3946      Backward compatibility files for conf.h and compat.h were created.
3947
3948   *) mod_mmap_static will no longer take action on requests unless at 
3949      least one "mmapfile" directive is present in the configuration. 
3950      This experimental module has to do some black magic to operate 
3951      inside the current API and thus creates side-effects for other 
3952      modules under some circumstances.
3953      [Ralf S. Engelschall]
3954  
3955   *) Add conservative ticks around more egrep arguments in top-level configure
3956      to avoid problems under brain-dead platforms like Digital UNIX (OSF1).
3957      [Ralf S. Engelschall] PR#2596
3958
3959   *) mod_rewrite created RewriteLock files under the UID of the parent
3960      process, thus the child processes had no write access to the files.
3961      Now a chown() is done on the file to the uid of the children,
3962      if applicable.  [Lars Eilebrecht, Ralf S. Engelschall] PR#2341
3963
3964   *) Autogenerate some HAVE_XXXXX_H defines in conf_auto.h (determined via
3965      TestCompile) instead of defining them manually in conf.h based on less
3966      accurate platform definitions.  This way we no longer have to fiddle with
3967      OS-type and/or OS-version identifiers to discover whether a system header
3968      file exists or not.  Instead we now directly check for the existence of
3969      those esoteric ones. 
3970      [Ralf S. Engelschall] PR#2093, PR#2361, PR#2377, PR#2434,
3971                            PR#2524, PR#2525, PR#2533, PR#2569
3972
3973   *) mod_setenvif (BrowserMatch* and friends) will now match a missing
3974      field with "^$".  [Ken Coar]
3975
3976   *) Set the RTLD_GLOBAL dlopen mode parameter to allow dynamically loaded
3977      modules to load their own modules dynamically.  This improves mod_perl
3978      and mod_php3 when these modules are loaded dynamically into Apache.
3979      [Rasmus Lerdorf]
3980
3981   *) Cache a proxied request in the event that the client cancels the
3982      transfer, provided that the configured percentage of the file has
3983      already been transfered. It works for HTTP transfers only.  The 
3984      new configuration directive is called CacheForceCompletion. 
3985      [Glen Parker <glenebob@nwlink.com>] PR#2277
3986
3987   *) Add the "<!DOCTYPE HTML" magic cookie used by modern documents (and
3988      required by HTML 3.2 and later) to mod_mime_magic's conf/magic.
3989      [Anna Shergold <anna@inext.co.uk>]
3990
3991   *) Fix yet another signal-based race condition involving nested timers.
3992      Signals suck.  [Dean Gaudet]
3993
3994   *) suexec's error messages have been clarified a little bit.  [Ken Coar]
3995
3996   *) Clean up some, but perhaps not all, 8-bit character set problems
3997      with config file parsing, and URL parsing.  We now define
3998      ap_isdigit(), ap_isupper(), ... which cast to an (unsigned char).
3999      This should work on most modern unixes.
4000      [Dean Gaudet] PR#800, 2282, 2553  (and others)
4001
4002   *) The "handler not found" error was issued in cases where the handler
4003      really did exist, but was just declining to serve the request.
4004      [John Van Essen <jve@gamers.org>] PR#2529
4005
4006   *) Add Dynamic Shared Object (DSO) support for SCO5 (OpenServer 5.0.x).
4007      [Ronald Record <rr@sco.com>] PR#2533
4008
4009   *) The APACI libexecdir was not extended with an "apache/" subdir
4010      if the installation prefix didn't already contain "apache", but
4011      it should be because the DSO files are Apache-specific.  Now
4012      libexecdir is treated the same way sysconfdir, datadir, localstatedir
4013      and includedir are already treated.
4014      [Charles Levert <charles@comm.polymtl.ca>] PR#2551
4015
4016   *) The <Limit> parsing routine was incorrectly treating methods as
4017      case-insensitive.  [Ken Coar]
4018
4019   *) The ap_bprintf() code neglected to test if there was an error on
4020      the connection.  ap_bflush() misdiagnosed a failure as a success.
4021      [Dean Gaudet]
4022
4023   *) add support for #perl arg interpolation in mod_include
4024      [Doug MacEachern]
4025
4026   *) API: Name changes of table_elts to ap_table_elts, is_table_empty
4027      to ap_is_table_empty and bgetflag to ap_bgetflag. [Ben Laurie]
4028
4029   *) PORT: Add UnixWare 7 support
4030      [Vadim Kostoglodoff <vadim@olly.ru>] PR#2463
4031
4032   *) Fix the Guess-DSO-flags-from-Perl stuff in src/Configure: "perl" was
4033      used instead of "$PERL" which contains the correctly determined Perl
4034      interpreter (important for instance on systems where "perl" and "perl5"
4035      exists, like BSDI or FreeBSD, etc).
4036      [Ralf S. Engelschall] PR#2505
4037
4038   *) Move the initial suEXEC-related startup message from plain
4039      fprintf()/stderr to a delayed ap_log_error()-based one to avoid problems
4040      when Apache is started from inetd (instead of standalone). Under this
4041      situation startup messages on stderr lead to problems (the line is sent
4042      to the client in front of the requested document).
4043      [Ralf S. Engelschall] PR#871, PR#1318
4044
4045   *) Add a flag so ap_fnmatch() can be used for case-blind pattern matching.
4046      [Ken Coar, Dean Gaudet]
4047
4048   *) WIN32: Don't collapse multiple slashes in PATH_INFO.
4049      [Ben Laurie, Bill Stoddard <wgstodda@us.ibm.com>] PR#2274
4050
4051   *) WIN32 SECURITY: Eliminate trailing "."s in path components. These are
4052      ignored by the Windows filesystem, and so can be used to bypass security.
4053      [Ben Laurie, Alexei Kosut].
4054
4055   *) We now attempt to dump core when we get SIGILL. [Jim Jagielski]
4056
4057   *) PORT: remove broken test for MAP_FILE in http_main.c.
4058      [Wilfredo Sanchez <wsanchez@apple.com>]
4059
4060   *) PORT: Change support/apachectl to use "kill -0 $pid" to test if the
4061      httpd is running.  This should be more portable than figuring out
4062      which of three dozen different versions of "ps" are installed.
4063      [a cast of dozens]
4064
4065   *) WIN32: If we can't figure out how to execute a file in a script
4066      directory, bail out of the request with an error message.  [W G Stoddard]
4067
4068   *) WIN32 SECURITY: Eliminate directories consisting of three or more dots;
4069      these are treated by Win32 as if they are ".." but are not detected by
4070      other machinery within Apache. This is something of a kludge but
4071      eliminates a security hole. [Manoj Kasichainula, Ben Laurie]
4072
4073   *) Move ap_escape_quotes() from src/ap to src/main/util.c; it uses
4074      pools and thus pollutes libap (until the pool stuff is moved there).
4075      [Ken Coar]
4076
4077   *) IndexIgnore should be case-blind on Win32 (and any other case-aware
4078      but case-insensitive platforms).  New #define for this added to conf.h
4079      (CASE_BLIND_FILESYSTEM).  [Ken Coar] PR#2455
4080
4081   *) Enable DSO support for OpenBSD in general, not only for 2.x, because it
4082      also works for OpenBSD 1.x. [Ralf S. Engelschall]
4083
4084   *) PORT: Fix compilation problem on ARM Linux.
4085      [Sam Kington <sam@illuminated.co.uk>] PR#2443
4086
4087   *) Let APACI's configure script determine some configuration parameters
4088      (Group, Port, ServerAdmin, ServerName) via some intelligent tests to
4089      remove some of the classical hurdles for new users when setting up
4090      Apache. This is done per default because it is useful for the average
4091      user. Package authors can use the --without-confadjust option to disable
4092      these configuration adjustments.
4093      [Ralf S. Engelschall]
4094
4095   *) Added an EXTRA_DEPS configuration parameter which can be used
4096      to add an extra Makefile dependency for the httpd target, for instance
4097      to external third-party libraries, etc.
4098      [Ralf S. Engelschall]
4099
4100   *) Add <IfDefine>..</IfDefine> sections to the core module (with same spirit
4101      as <IfModule>..</IfModule> sections) which can be used to skip or process
4102      contained commands dependend of ``-D PARAMETER'' options on the command
4103      line. This can be used to achieve logical conditions like <IfDefine
4104      ReverseProxy> instead of physically ones (e.g. <IfModule mod_proxy.c>)
4105      and thus especially can be used for conditionally loading DSO-based
4106      modules via LoadModule, etc. [Ralf S. Engelschall]
4107
4108   *) PORT: clean up a warning in mod_status for OS/2.  [Brian Havard]
4109
4110   *) Make table elements const. This may prevent obscure errors. [Ben Laurie]
4111
4112   *) Fix parsing of FTP `SIZE' responses in proxy module: The newline was not
4113      truncated which forced following HTTP headers to be data in the HTTP
4114      reponse. [Ralf S. Engelschall, Charles Fu <ccwf@bacchus.com>] 
4115      PR#2412, 2367
4116
4117   *) Portability fix for APACI shadow tree support: Swap order of awk and sed
4118      in top-level configure script to avoid sed fails on some platforms (for
4119      instance SunOS 4.1.3 and NCR SysV) because of the non-newline-termined
4120      output of Awk. [Bill Houle <bhoule@sandiegoca.ncr.com>] PR#2435
4121
4122   *) Improve performance of directory listings (mod_autoindex) by comparing
4123      integer keys (last-modified and size) as integers rather than converting
4124      them to strings first.  Also use a set of explicit byte tests rather
4125      than strcmp() to check for parent directory-ness of an entry.  Oh, and
4126      make sure the parent directory (if displayed) is *always* listed first
4127      regardless of the sort key.  Overall performance winnage should be good
4128      in CPU time, instruction cache, and memory usage, particularly for large
4129      directories.  [Ken Coar]
4130
4131   *) Add a tiny but useful goody to APACI's configure script: The generation
4132      of a config.status script (as GNU Autoconf does) which remembers the used
4133      configure command and hence can be used to restore the configuration by
4134      just re-running this script or for remembering the configuration between
4135      releases.
4136      [Ralf S. Engelschall]
4137
4138   *) Add httpd -t (test) option for running configuration syntax tests only.
4139      If something is broken it complains and exits with a return code
4140      non-equal to 0. This can be used manually by the user to check the Apache
4141      configuration after editing and is also automatically used by apachectl
4142      on (graceful) restart command to make sure Apache doesn't die on restarts
4143      because of a configuration which is now broken since the last (re)start.
4144      This way `apachectl restart' can be used inside cronjobs without having
4145      to expect Apache to be falling down. Additionally the httpd -t can be run
4146      via `apachectl configtest'.
4147      [Ralf S. Engelschall] PR#2393
4148   
4149   *) Minor display fix for "install" target of top-level Makefile:
4150      the displayed installation command was incorrect although the
4151      executed command was correct. Now they are in sync.
4152      [Ralf S. Engelschall] PR#2402
4153
4154   *) Correct initialization of variable `allowed_globals' in http_main.c
4155      [Justin Bradford <justin@ukans.edu>] PR#2400
4156
4157   *) Apache would incorrectly downcase the entire Content-Type passed from
4158      CGIs.  This affected server-push scripts and such which use
4159      multipart/x-mixed-replace;boundary=ThisRandomString.
4160      [Dean Gaudet] PR#2394
4161
4162   *) PORT: QNX update to properly guess 32-bit systems.
4163      [Sean Boudreau <seanb@qnx.com>] PR#2390
4164
4165   *) Make sure the DSO emulation code for HPUX finds the proprietary shl_xxx()
4166      functions which are in libdld under HPUX 9/10.
4167      [Ralf S. Engelschall] PR#2378
4168
4169   *) Make sure the "install" target of the top-level Makefile doesn't break
4170      because of a return code of 1 from an "if" (for instance under braindead
4171      Ultrix the result code of an "if" construct is 1 if the "then" clause
4172      didn't match). [Ralf S. Engelschall]
4173
4174   *) Add an additional "dummy" target to the "$(LIB)" target in generated
4175      modules/xxx/Makefile's to avoid problems with SVR4 Make under "full-DSO"
4176      situation (no libxxx.a built, only mod_xxx.so's) where LIB and OBJS are
4177      empty. [Ralf S. Engelschall, Dean Gaudet, Martin Kraemer]
4178
4179   *) Replace two bad sprintf() calls with ap_snprintf() variants in
4180      mod_rewrite. [Ralf S. Engelschall]
4181
4182   *) Fix missing usage description for MetaFiles directive.
4183      [David MacKenzie <djm@va.pubnix.com>] PR#2384
4184
4185   *) mod_log_config wouldn't let vhosts use log formats defined in the
4186      main server.  [Christof Damian <damian@mediaconsult.com>] PR#2090
4187
4188   *) mod_usertrack was corrupting the client hostname.  As part of the
4189      fix, the cookie values were slightly extended to include the
4190      fully qualified hostname of the client.
4191      [Dean Gaudet] PR#2190, 2229, 2366
4192
4193   *) Fix a typo in pool debugging code.  [Alvaro Martinez Echevarria]
4194
4195   *) mod_unique_id did not work on alpha linux (in general on any
4196      architecture that has 64-bit time_t).
4197      [Alvaro Martinez Echevarria]
4198
4199   *) PORT: Make SCO 5 (and probably 3) compile again. [Ben Laurie]
4200
4201   *) PORT: NCR MPRAS systems have the same bug with SIGHUP restart that
4202      Solaris systems experience.  So define WORKAROUND_SOLARIS_BUG.
4203      [Klaus Weber <kweber@chephren.germany.ncr.com>] PR#1973
4204
4205   *) Change "Options None" to "Options FollowSymLinks" in the 
4206      <Directory /> section of the default access.conf-dist
4207      (and -win even though it doesn't matter there).  This has better
4208      performance, and more intuitive semantics.  [Dean Gaudet]
4209
4210   *) PORT: Updated support for UTS 2.1.2.
4211      [Dave Dykstra <dwd@bell-labs.com>] PR#2320
4212
4213   *) Fix symbol export list (src/support/httpd.exp) after recent
4214      API changes in the child spawning area.
4215      [Jens-Uwe Mager <jum@helios.de>]
4216
4217   *) Workaround for configure script and old `test' commands which do not
4218      support the -x flag (for instance under platforms like Ultrix). This is
4219      solved by another helper script findprg.sh which searches for Perl and
4220      Awk like PrintPath but _via different names_.
4221      [Ralf S. Engelschall]
4222
4223   *) Remove the system() call from htpasswd.c, which eliminates a system
4224      dependancy.  ["M.D.Parker" <mdpc@netcom.com>] PR#2332
4225
4226   *) PORT: Fix compilation failures on NEXTSTEP.
4227      [Rex Dieter <rdieter@math.unl.edu>] PR#2293, 2316
4228
4229   *) PORT: F_NDELAY is a typo, should have been FNDELAY.  There's also
4230      O_NDELAY on various systems.  [Dave Dykstra <dwd@bell-labs.com>] PR#2313
4231
4232   *) PORT: helpers/GuessOS updates for various versions for NCR SVR4.
4233      [juerg schreiner <j.schreiner@zh.ch>,
4234      Bill Houle <Bill.Houle@SanDiegoCA.NCR.COM>] PR#2310
4235
4236   *) Fix recently introduced Win32 child spawning code in mod_rewrite.c which
4237      was broken because of invalid ap_pstrcat() -> strcat() transformation.
4238      [Ralf S. Engelschall]
4239
4240   *) Proxy Cache Fixes: account for directory sizes, fork off garbage collection
4241      to continue in background, use predefined types (off_t, size_t, time_t),
4242      log the current cache usage percentage at LogLevel debug
4243      [Martin Kraemer, based on discussion between Dean Gaudet & Dirk vanGulik]
4244
4245 Changes with Apache 1.3.0
4246
4247   *) Using a type map file as a custom error document was not possible.
4248      [Lars Eilebrecht] PR#1031
4249
4250   *) Avoid problems with braindead Awks by additionally searching for gawk 
4251      and nawk in APACI's configure script.
4252      [Dave Dykstra <dwd@bell-labs.com>, Ralf S. Engelschall] PR#2319
4253
4254   *) Rename md5.h to ap_md5.h to avoid conflicts with native MD5 on
4255      some systems. [Randy Terbush]
4256
4257   *) Change usage of perror()+fprintf(stderr,...) in mod_rewrite to
4258      more proper ap_log_error() variants.
4259      [Ralf S. Engelschall]
4260
4261   *) Make sure the argument for the --add-module option to APACI's configure
4262      script is of type [path/to/]mod_xxx.c because all calculations inside
4263      configure and src/Configure depend on this.
4264      [Ralf S. Engelschall] PR#2307
4265
4266   *) Changes usage of perror/fprintf to stderr to more proper ap_log_error
4267      in mod_mime, mod_log_referer, mod_log_agent, and mod_log_config.
4268      [Brian Behlendorf]
4269
4270   *) Various OS/2 cleanups ["Brian Havard" <brianh@kheldar.apana.org.au>]
4271
4272   *) PORT: QNX needed a #include <sys/mman.h>; and now it uses flock
4273      serialized accept to handle multiple sockets.
4274      [Rob Saccoccio <robs@InfiniteTechnology.com>] PR#2295, 2296
4275  
4276   *) Have NT properly set the directory for CGI scripts 
4277      (& other spawned children)
4278      [W G Stoddard <wgstodda@us.ibm.com>]
4279
4280   *) Propagate environment to CGI scripts correctly in Win32.
4281      [W G Stoddard <wgstodda@us.ibm.com>] PR#2294
4282
4283   *) Some symbol renaming:
4284      ap_spawn_child_err became ap_spawn_child
4285      ap_spawn_child_err_buff became ap_bspawn_child
4286      spawn_child was obsoleted and moved to compat.h
4287      [Brian Behlendorf]
4288
4289   *) Upgrade the child spawning code in mod_rewrite for the RewriteMap
4290      programs: ap_spawn_child_err() is used and the Win32 case now uses
4291      CreateProcess() instead of a low-level execl() (which caused problems in
4292      the past under Win32).
4293      [Ralf S. Engelschall]
4294
4295   *) A few cosmetics and trivial enhancements to APXS to make the
4296      generated Makefile more user friendly. [Ralf S. Engelschall]
4297
4298   *) Proxy Fix: The proxy special failure routine ap_proxyerror()
4299      was updated to use the normal apache error processing, thereby allowing
4300      proxy errors to be treated by ErrorDocument's as well. For this
4301      purpose, a new module-to-core communication variable "error-notes"
4302      was introduced; the proxy (and possibly other modules) communicates
4303      its error text using this variable. Its content is copied to a new
4304      cgi-env-var REDIRECT_ERROR_NOTES for use by ErrorDocuments.
4305      The old proxy special error routine ap_proxy_log_uerror()
4306      was replaced by regular ap_log_error() calls, many messages were made
4307      more informative. 
4308      [Martin Kraemer] PR#494, 1259
4309
4310   *) SECURITY: A possible buffer overflow in the ftp proxy was fixed.
4311      [Martin Kraemer]
4312
4313   *) Transform the configure message "You need root privileges for suEXEC"
4314      from a fatal error into a (more friendly) warning because the building
4315      ("make") of Apache we can allow, of course. Root privileges are needed
4316      only for the installation step ("make install"). So make sure the
4317      user is aware of this fact but let him proceed as long as he can.
4318      [Ralf S. Engelschall] PR#2288
4319   
4320   *) Renamed three more functions to common ap_ prefix which we missed at the
4321      Big Symbol Renaming because they're #defines and not real C functions:
4322      is_default_port(), default_port(), http_method().
4323      [Ralf S. Engelschall]
4324
4325   *) A zero-length name after a $ in an SSI document should cause
4326      just the $ to be in the expansion.  This was broken during the
4327      security fixes in 1.2.5.  [Dean Gaudet] PR#1921, 2249
4328
4329   *) Call ap_destroy_sub_req() in ap_add_cgi_vars() to reclaim some
4330      memory.  [Rob Saccoccio <robs@InfiniteTechnology.com>] PR#2252
4331
4332   *) Fix src/support/httpd.exp (DSO export file which is currently only
4333      used under AIX) because of recent changes to function names.
4334      [Ralf S. Engelschall]
4335
4336 Changes with Apache 1.3b7
4337
4338   *) Make sure a MIME-type can be forced via a RewriteRule even when no
4339      substitution takes place, for instance via the following rule:
4340      ``RewriteRule ^myscript$ - [T=application/x-httpd-cgi]'' This was often
4341      requested by users in the past to force a single script without a .cgi
4342      extension and outside any cgi-bin dirs to be executed as a CGI program.
4343      [Ralf S. Engelschall] PR#2254
4344
4345   *) A fix for protocol issues surrounding 400, 408, and
4346      414 responses. [Ed Korthof]
4347
4348   *) Ignore MaxRequestsPerChild on WIN32. [Brian Behlendorf]
4349
4350   *) Fix discrepancy in proxy_ftp.c which was causing failures when 
4351      trying to connect to certain ftpd's, such as anonftpd.  
4352      [Rick Ohnemus <rick@ecompcon.com>]
4353
4354   *) Make mod_rewrite use ap_open_piped_log() for RewriteLog directive's
4355      logfile instead of fiddling around itself with child spawning stuff.
4356      [Ralf S. Engelschall]
4357
4358   *) Made RefererIgnore case-insensitive.
4359
4360   *) Mod_log_agent, mod_log_referer now use ap_open_piped_log for piped logs.
4361      [Brian Behlendorf]
4362
4363   *) Replace use of spawn_child with ap_spawn_child_err_buff, to make everything
4364      "safe" under Win32.  In: mod_include.c, mod_mime_magic.c
4365      [Brian Behlendorf]
4366
4367   *) Improve RFC1413 support. [Bob Beck <beck@bofh.ucs.ualberta.ca>]
4368
4369   *) Fix support script `dbmmanage': It was unable to handle some sort
4370      of passwords, especially passwords with "0" chars.
4371      [Ralf S. Engelschall] PR#2242
4372
4373   *) WIN32: Clicking on "Last Modified" in a fancy index caused a crash. Fixed.
4374      [Ben Laurie] PR#2238
4375
4376   *) WIN32: CGIs could cause a hang (because of a deadlock in the standard C
4377      library), so CGI handling has been changed to use Win32 native handles
4378      instead of C file descriptors.
4379      [Ben Laurie and Bill Stoddard <wgstodda@us.ibm.com>] PR#1129, 1607
4380
4381   *) The proxy cache would store an incorrect content-length in the cached
4382      file copy after a cache update. That resulted in repeated fetching
4383      of the original copy instead of using the cached copy.
4384      [Ernst Kloppenburg <kloppen@isr.uni-stuttgart.de>] PR#2094
4385
4386   *) The Makefiles assumed that DSO files are build via $(LD). This
4387      is broken for two reasons: First we never defined at least LD=ld
4388      somewhere to make sure this works (it was silently assumed that most Make
4389      provide a built-in LD definition - ARGL!) and second using the generic LD
4390      variable is not the truth. Instead a special variable named LD_SHLIB is
4391      reasonable because although "ld" is usually the default, the command for
4392      building DSO files can be "libtool" or even "cc" on some systems.
4393      [Ralf S. Engelschall]
4394
4395   *) Replace the AddVersionPlatform directive with ServerTokens which
4396      provides for more control over the format of the Server:
4397      header line. SERVER_SUBVERSION is no longer supported;
4398      all module should use the ap_add_version_component()
4399      API function instead. [Jim Jagielski]
4400
4401   *) Support for the NCR MP/RAS 3.0
4402      [John Withers <withers@semi.kcsc.mwr.irs.gov>]
4403
4404   *) The LDFLAGS_SHLIB_EXPORT variable of src/Configuration[.tmpl] was
4405      not retrieved in src/Configure and thus was not useable.
4406      [Ralf S. Engelschall]
4407  
4408   *) Various Makefile consistency cleanups:
4409      - make OSDIR also automatically be relative to src/ like INCDIR
4410      - SUBDIRS is now generated in src/Makefile only and not in
4411        Makefile.config because it is a local define for this location.
4412      - remove BROKEN_BPRINTF_FLAGS because is it no longer used inside
4413        any Makefile but make sure that at least the "-K inline" is kept in
4414        CFLAGS for SCO 5.
4415      - update the "depend" targets in Makefile.tmpl files to use $(OSDIR), too.
4416      - updated the dependencies theirself
4417      - removed not existing SHLIB variable from "clean" targets
4418      - replaced SHLIB_OBJS/SHLIBS_OBJ consistently with OBJS_PIC because OBJS
4419        already exists and OBJS_PIC are also just plain objects and have not
4420        directly to do with "shared" things. The only difference is that they
4421        contain PIC. So OBJS_PIC is the more canonical name.
4422      - Updated the Makefile-dependency lines for OBJS_PIC
4423      - Removed the Makefile-dependency line in Configure to avoid double
4424        definitions
4425      - replaced ugly xx-so.o/xx.so-o hack with a clean and consistent usage
4426        of xxx.lo as GNU libtool does with its PIC objects
4427      - reduce local complexity in modules Makefile.tmpl by moving the last
4428        existing target "depend" to the generation section in Configure, too.
4429      - removed the historical $(SPACER) which was used in the past together
4430        with BROKEN_BPRINTF_FLAGS to avoid zig-zags in the build process. This
4431        is no longer needed.
4432      - force the build and run of the gen_xxx programs under main/ as the
4433        first step before building the objects because it looks cleaner
4434      [Ralf S. Engelschall]
4435
4436   *) WIN32: Make Win32 work again after the /dev/null DoS fix.
4437      [Ben Laurie]
4438
4439   *) WIN32: Check for buffer overflows in ap_os_canonical_filename.
4440      [Ben Laurie]
4441
4442   *) WIN32: Don't force ISAPI headers to finish with \n.
4443      [Jim Patterson <Jim.Patterson@Cognos.COM>, Ben Laurie] PR#2060
4444
4445   *) When opening "configuration" files (like httpd.conf, htaccess
4446      and htpasswd), Apache will not allow them to be non-/dev/null
4447      device files. This closes a DoS hole. At the same time,
4448      we use ap_pfopen to open these files to handle timeouts.
4449      [Jim Jagielski, Martin Kraemer]
4450
4451   *) Apache will now log the reason its httpd children exit if they exit
4452      due to an unexpected signal.  (It requires a new porting define,
4453      SYS_SIGLIST, which if defined should point to a list of text
4454      descriptions of the signals available.  See PORTING.)  [Dean Gaudet]
4455
4456   *) WIN32: chdir() doesn't make sense in a multithreaded environment 
4457      like WIN32.  Before, Win32 CGI's could have had sporadic failures 
4458      if a chdir call from one thread was made between another chdir call 
4459      and a spawn in another thread.  So, for now don't chdir for CGI scripts 
4460      in WIN32.  The current CGI "spec" is unclear as to whether it's 
4461      necessary.  Long-term fix is to either serialize the chdir/spawn combo 
4462      or use WIN32 native calls to spawn a process.  This temp fix was 
4463      necessary to remove this as a showstopper for 1.3's release. 
4464      [Brian Behlendorf]
4465
4466   *) Cleanup the suEXEC support in APACI and make it more safe:
4467      1. Add big fat hint in INSTALL about risks and to read the
4468         htdocs/manual/suexec.html document before using the suexec-related
4469         configure options.
4470      2. Make sure the user has at least provided one --suexec-xxxx option
4471         (specifies suEXEC parameters) in addition to --enable-suexec option.
4472         If only --enable-suexec is given APACI stops with a hint to INSTALL
4473         and htdocs/manual/suexec.html documents.
4474      3. Provide two additional --suexec-xxxx options to make the suEXEC
4475         configuration complete (especially for package maintainers who else
4476         had to patch the source tree) by providing ways to configure minimal
4477         UID/GID and safe PATH, too.
4478      [Ralf S. Engelschall]
4479
4480   *) Cleanup of the `configure --shadow' process:
4481      - make sure the configure script creates its temporary files in the
4482        shadow tree to avoid conflicts with parallel configure runs
4483      - removed unnecessary option "-r" from "rm" call for Makefiles
4484      - make sure the configure scripts creates the shadow-wrapper Makefile
4485        only when no shadow trees already exists
4486      - make sure "make distclean" removes the shadow-wrapper Makefile but only
4487        when no more shadow trees exists
4488      - overhauled mkshadow.sh script: now its more IFS-safe and approx. twice
4489        as fast (in the past it needed 70sec, now it runs just 38sec)
4490      - make sure CVS does not complain about the created files
4491        Makefille.<gnutriple> and directories src.<gnutriple>
4492      [Ralf S. Engelschall]
4493
4494   *) Added the ap_add_version_component() API routine and the
4495      AddVersionPlatform core directive.  The first allows modules to
4496      declare themselves in the Server response header field value,
4497      augmenting the SERVER_SUBVERSION define in the Configuration file
4498      with run-time settings (more useful in a loadable-module environment).
4499      AddVersionPlatform inserts a comment such as "(UNIX)" or "(Win32)"
4500      into the server version string.  [Ken Coar] PR#2056
4501
4502   *) Minor stability tweaks to avoid core dumps in ap_snprintf.
4503      [Martin Kraemer]
4504
4505   *) Emit the "Accept-Range" header for the default handler.
4506      [Brian Behlendorf] PR#1464
4507
4508   *) Add a note to httpd.conf-dist that apache will on some systems fail
4509      to start when the Group # is set to a negative or large positive value.
4510      [Martin Kraemer]
4511
4512   *) Make sure the module execution order is correct even when some modules
4513      are loaded under runtime (`LoadModule') via the DSO mechanism:
4514      1. The list of loaded modules is now a dynamically allocated one
4515         and not the original statically list from modules.c
4516      2. The loaded modules are now correctly setup by LoadModule for
4517         later use by the AddModule command.
4518      3. When the DSO mechanism for modules is used APACI's `install'
4519         target now enables all created `LoadModule' lines per default because
4520         this is both already expected by the user _and_ needed to avoid
4521         confusion with the next point and reduces the Makefile.tmpl complexity
4522      4. When the DSO mechanism for modules is used, APACI's `install'
4523         target now additionally makes sure the module list is reconstructed
4524         via a complete `ClearModuleList+AddModule...' entry.
4525      5. The support tool `apxs' now also makes sure an AddModule command
4526         is added in addition to the LoadModule command.
4527      6. The modules.c generation was extended to now contain two
4528         comments to make sure no one is confused by the confusing terminology
4529         of loading/linking (we use load=link+load & link=activate instead of
4530         the obvious load=activate & link=link :-( )
4531      This way now there is no longer a difference under execution time between
4532      statically and dynamically linked modules.
4533      [Ralf S. Engelschall]
4534
4535   *) Fix the generated mod_xxx.c from "apxs -g -f xxx" after the
4536      Big Symbol Renaming. [Ralf S. Engelschall]
4537
4538   *) Add a comment to mod_example.c showing the format of a FLAG command
4539      handler.  [Ken Coar]
4540
4541   *) Standardized the time format in mod_status to match that of other 
4542      places in the code (e.g. DATE_GMT).  PR#1551
4543
4544   *) Fix handling of %Z in timefmt strings for those platforms with no time
4545      zone information in their tm struct. [Paul Eggert <eggert@twinsun.com>]
4546      PR#754
4547
4548   *) Makes mod_rewrite, mod_log_config, mod_status and the ServerSignature 
4549      feature compatible with 'UseCanonicalName off' by changing  
4550      r->server->server_hostname to ap_get_server_name().  And I changed some 
4551      functions which use r->server->port to use ap_get_server_port() instead, 
4552      because if there's no Port directive in the config r->server->port is 0.
4553      [Lars Eilebrecht]
4554
4555   *) get/set_module_config are trivial enough to be better off inline.  Worth
4556      1.5% performance boost. [Dean Gaudet]
4557
4558   *) Fix off-by-one error in ap_proxy_date_canon() in proxy_util.c
4559      when ensuring 'x' is at least 30-chars big. [Jim Jagielski,
4560      Brian Behlendorf]
4561
4562   *) [BS2000 security] BS2000 needs an extra authentication to initialize
4563      the task environment to the unprivileged User id. Otherwise CGI scripts
4564      would have a way to gain super user access. [Martin Kraemer]
4565
4566   *) Fix debug log messages for BS2000/OSD: instead of logging the whole
4567      absolute path, only log base name of logging source as is done
4568      in unix. [Martin Kraemer]
4569
4570   *) Ronald Tschalaer's Accept-Encoding patch - preserve the "x-" in
4571      the encoding type from the Accept-Encoding header (if it's there)
4572      and use it in the response, as that's probably what it'll be expecting.
4573      [Ronald.Tschalaer@psi.ch]
4574
4575   *) Fix to mod_alias: translate_alias_redir is dealing with
4576      a URI, not a filename, so the check for drive letters for win32 
4577      and emx is not necessary. [Dean Gaudet]
4578
4579   *) WIN32: Allow .cmd as an executable extension.
4580      [Kari Likovuori <Kari.Likovuori@mol.fi>] PR#2146
4581
4582   *) Make Apache header files, and some variables, C++ friendly.
4583      [Michael Anderson's <mka@redes.int.com.mx>]
4584
4585   *) Child processes can now "signal" (by exiting with a status
4586      of APEXIT_CHILDFATAL) the parent process to abort and
4587      shutdown the server if the error in the child process was
4588      fatal enough. [Jim Jagielski]
4589
4590   *) mod_autoindex's find_itme() was sensitive to MIME type case.
4591      [Jim Jagielski] PR#2112
4592
4593   *) Make sure the referer_log and agent_log entries in the default httpd.conf
4594      file are also adjusted for the actual relative installation paths.
4595      [Ralf S. Engelschall] PR#2175
4596
4597   *) WIN32: Extensive overhaul of the way UNCs are handled. [Ben Laurie]
4598
4599   *) WIN32: Make roots of filesystems (e.g. c:/) work. [Ben Laurie]
4600      PR#1558
4601
4602   *) PORT: Various porting changes to support AIX 3.2, 4.1.5, 4.2 and 4.3.
4603      Additionally the checks for finding the vendor DSO library were moved
4604      from mod_so.c to Configure because first it needs $PLAT etc. and second
4605      mod_so already uses an abstraction layer and does not fiddle with the
4606      vendor functions itself.
4607      [Jens-Uwe Mager, Ralf S. Engelschall]
4608
4609   *) PORT: Some optimization defines for NetBSD
4610      [Jaromir Dolecek <dolecek@ics.muni.cz>] PR#2165
4611
4612   *) PORT: Dynamic Shared Object (DSO) support for NetBSD.
4613      [Jaromir Dolecek <dolecek@ics.muni.cz>, Ralf S. Engelschall] PR#2158
4614
4615   *) Add Dynamic Shared Object (DSO) support for AIX (at least 4.2 but older
4616      AIX variants should work fine, too. Even AIX 3.x should work). This is
4617      accomplished by using the free DSO emulation code from Jens-Uwe Mager
4618      which we put into a os/unix/os-dso-aix.c file.
4619      [Ralf S. Engelschall]
4620   
4621   *) PORT: Fix compiler warnings under AIX >= 4.2 where the manual pages imply
4622      that we should use NET_SIZE_T == int but the include files force size_t.
4623      [Ralf S. Engelschall]
4624
4625   *) Fix two bugs in select() handling in http_main.c.
4626      [Roy Fielding]
4627
4628   *) Suppress "error(0)" messages for ap_log_error() when the APLOG_NOERRNO
4629      is unset (as it is in situations like timeouts) where it is unclear
4630      whether errno is set or not.  [Martin Kraemer]
4631
4632   *) Just having APACI's localstatedir is too general and not enough for most
4633      of the systems. 1.3b6 again required manual APACI patches by package
4634      maintainers from RedHat and FreeBSD because for their filesystem layout a
4635      little bit more flexibility in configuring the paths is needed. Hence we
4636      provide three additional configure options (--runtimedir, --logfiledir,
4637      --proxycachedir) which now can be used for more granular adjustments if
4638      --localstatedir is not enough to fit the particular needs. As a nice
4639      side-effect this reduces some subdir fiddling in configure+Makefile.tmpl.
4640      [Ralf S. Engelschall]
4641
4642   *) Make the install root for "make install" in APACI's Makefile overrideable
4643      by package authors.  This way we are even more friendly to package
4644      maintainers (especially Debian and RedHat) who build for the real prefix
4645      via "configure --prefix=/<real>" but use a different local prefix via
4646      "make root=/tmp/apache install" for rolling the package without bristling
4647      the target location on their system. 
4648      [Ralf S. Engelschall]
4649
4650   *) Workaround sed limitations in APACI's configure script by now
4651      substituting in chunks of 50 commands (because for instance HPUX's vendor
4652      sed has a limit of max. 98 commands)
4653      [Ralf S. Engelschall] PR#2136
4654
4655   *) Adding SOCKS5 support and fixing existing SOCKS4 support.
4656      [Ralf S. Engelschall] PR#2140
4657
4658   *) Manually fix some symbols which were not renamed to prefix ap_ in the BIG
4659      RENAMING process because they are defined as pre-processor macros instead
4660      of real functions: bputc, bgetc, piped_log_write_fd, piped_log_read_fd
4661      [Ralf S. Engelschall]
4662
4663   *) Workaround braindead AWK's when generating ap_config.h: The split() and
4664      substr() functions cannot be nested under vendor AWK from Solaris 2.6.
4665      [Ralf S. Engelschall] PR#2139
4666
4667   *) Various bugfixes and cleanups for the APACI configure script:
4668      o fix IFS handling for _nested_ situation
4669      o fix Perl interpreter search: take first one found instead of last one
4670      o fix DSO consistency check
4671      o print error messages to stderr instead of stdout
4672      o add install-quiet for --shadow situation to Makefile stub
4673      o reduce complexity by avoiding sed-hacks for rule and module list loops
4674      [Ralf S. Engelschall]
4675
4676   *) Fix DEBUG_CGI situation in mod_cgi.c [David MacKenzie] PR#2114
4677
4678   *) Make sure the input field separator (IFS) shell variable is explicitly
4679      initialized correctly before _every_ `for' loop and also restored after
4680      the loops. [Ralf S. Engelschall]
4681
4682   *) Make sure that "make install" doesn't overwrite the `mime.types' and
4683      `magic' files from an existing Apache installation. Because people often
4684      customize these for own MIME and content types.
4685      [Ralf S. Engelschall]
4686
4687   *) PORT: Dynamic Shared Object (DSO) support for OpenBSD 2.x
4688      [Peter Galbavy, Ralf S. Engelschall] PR#2109
4689
4690   *) Fix the path to the ScoreBoardFile in the install-config target, too.
4691      [Ralf S. Engelschall] PR#2105
4692
4693   *) Let "configure" clear out the users parameters (provided as shell
4694      variables) to avoid side-effects in "src/Configure" when the user
4695      exported them (which is not needed, but some users do it). 
4696      [Ralf S. Engelschall] PR#2101
4697
4698   *) Provide backward compatibility from some old src/Configuration.tmpl
4699      parameter names to the canonical Autoconf-style shell variable names. For
4700      instance CFLAGS vs. EXTRA_CFLAGS. The EXTRA_xxx variants are accepted now
4701      but a hint message is displayed. [Ralf S. Engelschall]
4702   
4703   *) Make sure that "make install" doesn't overwrite the DocumentRoot and
4704      CGI scripts from an existing Apache installation. 
4705      [Ralf S. Engelschall, Jim Jagielski] PR#2084
4706
4707   *) Make `configure --compat' more "compatible" by first 
4708      let the libexecdir default to EPREFIX/libexec instead of EPREFIX/bin and
4709      second by making sure the "avoid-bristling-suffix" /apache is not
4710      appended to sysconfdir, datadir, localstatedir and includedir when
4711      --compat is used. [Ralf S. Engelschall, Lars Eilebrecht]
4712
4713   *) NeXT required strdup() in support/logresolve.c
4714      [Francisco Tomei <fatomei@sandburg.unm.edu>] PR#2082
4715
4716   *) AIX required sys/select.h in support/ab.c
4717      [Jens Schleusener <Jens.Schleusener@dlr.de>] PR#2081
4718
4719   *) Fix the path to the MimeMagicFile in the install-config target, too.
4720      [Ralf S. Engelschall] PR#2089
4721
4722   *) PORT: Added HP-UX 11 patches [Jeff Earickson <jaearick@colby.edu>]
4723
4724   *) If you start apache with the -S command line option it will dump
4725      out the parsed vhost settings.  This is useful for folks trying
4726      to figure out what is wrong with their vhost configuration.
4727      (Other dumps may be added in the future.) [Dean Gaudet]
4728
4729   *) Add %pA, %pI, and %pp codes to ap_vformatter (and hence ap_bprintf,
4730      ap_snprintf, and ap_psprintf).  See include/ap.h for docs.
4731      [Dean Gaudet]
4732
4733   *) Because /usr/local/apache is the default prefix the ``configure
4734      --compat'' option no longer has to set prefix, again. This way the
4735      --compat option honors a leading --prefix option. [Lars Eilebrecht]
4736
4737   *) PORT: Cast the first argument of dlopen() in ap_os_dso_load()
4738      to `char *' under OSF1 and FreeBSD 2.x where it is defined this way
4739      to avoid "discard const" warnings. [Ralf S. Engelschall]
4740
4741   *) If a specific handler is set for a file yet the request still
4742      ends up being handled by the default handler, log an error
4743      message before handling it.  This catches things such as trying 
4744      to use SSIs without mod_include enabled.  [Marc Slemko]
4745
4746   *) Fix error logging for the startup case where ap_log_error() still uses
4747      stderr as the target. Now the default log level is honored here, too.
4748      [Ralf S. Engelschall]
4749     
4750   *) PORT: Make sure some AWK's don't fail in src/Configure with "string too
4751      long" errors when generating the MODULES entry for src/Makefile
4752      [Ben Hyde, Ralf S. Engelschall]
4753
4754   *) Make sure src/Configure doesn't complain about the old directory
4755      /usr/local/etc/httpd/ when APACI is used.  [Lars Eilebrecht]
4756    
4757 Changes with Apache 1.3b6
4758
4759   *) PORT: Clean up warnings on Ultrix and HPUX.  [Ben Hyde]
4760  
4761   *) Adding DSO support for the HP/UX platform by emulating the dlopen-style
4762      interface via the similar but proprietary HP/UX shl_xxx-style system
4763      calls. [Ralf S. Engelschall]
4764
4765   *) PORT: Updated UnixWare 2.0.x and 2.1.x entries for DSO support and made
4766      APACI Makefile.tmpl "install" target more robust for sensible UnixWare
4767      Make. [Ralf S. Engelschall]
4768
4769   *) ++++ THE BIG SYMBOL RENAMING ++++
4770      To avoid symbol clashes with third-party code compiled into the server,
4771      we globally applied the prefix "ap_" to the following classes of
4772      functions:
4773         - Apache provided general functions (e.g., ap_cpystrn)
4774         - Public API functions (e.g., palloc, bgets)
4775         - Private functions which we can't make static (because of
4776           cross-object usage) but should be (e.g., new_connection)
4777      For backward source compatibility a new header file named compat.h was
4778      created which provides defines for the old symbol names and can be used
4779      by third-party module authors.
4780      [The Apache Group]
4781
4782   *) Added dynamic shared object (DSO) support for SVR4-derivates: The
4783      problem under SVR4 is that there is no command flag to force the linker
4784      to export the global symbols of the httpd executable therewith they are
4785      available to the DSO's. Instead of problematic hacks like creating a
4786      dummy.so file (containing dummy references to all global symbols) the
4787      httpd binary is linked against, we use a clean trick stolen from Perl 5:
4788      Placing the Apache core code itself into a DSO library named libhttpd.so.
4789      This way the global symbols _HAVE_ to be exported and thus are available
4790      to any manually loaded DSO's under runtime. To reduce the impact to the
4791      user to null we go even further and create a stub httpd executable which
4792      automatically keeps track of the DSO library loading itself and thus
4793      hides the complete mechanism from the user. Although the generation of
4794      this DSO library is automatically triggered for platforms which
4795      essentially need it (mostly all SVR4-derivates) it can be also enabled
4796      manually via the Rule SHARED_CORE. This can be interesting in the future
4797      where we perhaps exploit this libhttpd.so mechanism for providing nifty
4798      features like graceful upgrades, or whatever. 
4799      [Ralf S. Engelschall, Martin Kraemer]
4800
4801   *) Build the libraries before building the rest of the tools. [Ben Hyde]
4802
4803   *) Add "distclean" target to src/-Makefiles to provide "make distclean" also
4804      inside the src subtree (i.e. for non-APACI users). Following GNU Makefile
4805      conventions while "clean" removes only stuff created by "all" targets,
4806      "distclean" additionally removes the stuff from the configuration
4807      process. This way "make distclean" (hence the name) provides a fresh
4808      source tree as it was for distribution.
4809      [Ralf S. Engelschall]
4810
4811   *) Allow top-level (APACI) Makefile to break on build errors
4812      the same way the src/ subtree Makefiles breaks on them by replacing the
4813      initial APACI sed-subdir-display-kludge with a more clean
4814      variable-passing-solution: variable SDP can optionally hold the subdir
4815      prefix which is consistently used for displaying the subdir movement.
4816      This way even the top-level Makefile can stop correctly on errors as the
4817      user expects. [Ralf S. Engelschall]
4818
4819   *) Fixed ordering of argument checks for RewriteBase directive.
4820      [Todd Eigenschink <eigenstr@mixi.net>] PR#2045
4821
4822   *) Change Win32 IS_MODULE to SHARED_MODULE to match Unix' method of
4823      indicating that a module is being compiled for dynamic loading. Also
4824      remove #define IS_MODULE from modules and add SHARED_MODULE define
4825      to the mak/dsp files. [Alexei Kosut]
4826
4827   *) Reduce logging level of "normal" warning messages to APLOG_INFO,
4828      since we are now logging APLOG_WARNING by default. [Roy Fielding]
4829
4830   *) PORT: OS/2 tweak to deal with multiple .exe targets. [Brian Havard]
4831  
4832   *) Add documentation file and src/Configuration.tmpl entry for the
4833      experimental mod_mmap_static module. Because although it is and marked as
4834      an experimental one it is distributed and thus should be documented and
4835      prepared for configuration the same way as all others modules. 
4836      [Ralf S. Engelschall]
4837
4838   *) Add query (-q) option to apxs support tool to be able to manually query
4839      specific settings from apxs. This is needed for instance when you
4840      manually want to access Apache's header files and you need to assemble
4841      the -I option.  Now you can do -I`apxs -q INCLUDEDIR`.
4842      [Ralf S. Engelschall]
4843
4844   *) Now src/Configure uses a fallback strategy for the shared object support
4845      on platforms where no explicit information is available: If a Perl
4846      installation exists we ask it about its shared object support and if it's
4847      the dlopen-style one we shamelessly guess the compiler and linker flags
4848      for creating shared objects from Perls knowledge. Of course, the user is
4849      warning about what we are doing and informed that he should send us
4850      the guessed flags when they work. [Ralf S. Engelschall]
4851
4852   *) Provide APACI --without-support option to be able to disable the build
4853      and installation of the support tools from the src/support/ area.
4854      Although its useful to have these installed per default we should provide
4855      a way to compile and install without them for backward-compatibility.
4856      [Ralf S. Engelschall]
4857
4858   *) Add of the new APache eXtenSion (apxs) support tool for building and
4859      installing modules into an _already installed_ Apache package through the
4860      dynamic shared object (DSO) mechanism [mod_so.c]. The trick here is that
4861      this approach actually doesn't need the Apache source tree.  The
4862      (APACI-installed) server package is enough, because this now includes the
4863      Apache C header files (PREFIX/include) and the new APXS tool
4864      (SBINDIR/apxs).  The intend is to provide a handy tool for third-party
4865      module authors to build their Apache modules _OUTSIDE_ the Apache source
4866      tree while avoiding them to fiddle around with the totally platform
4867      dependend way of compiling DSO files. The tool supports all ranges of
4868      modules, from trivial ones (single mod_foo.c) to complex ones (like PHP3
4869      which has a mod_php3.c plus a pre-built libmodphp3-so.a) and even can
4870      on-the-fly generate a minimalistic Makefile and sample module for the
4871      first step to provide both a quick success event and to demonstrate the
4872      APXS mechanism to module authors. [Ralf S. Engelschall]
4873
4874   *) Fix core dumps in use of CONNECT in proxy.  
4875      [Rainer.Scherg@rexroth.de] PR#1326, #1573, #1942
4876
4877   *) Modify the log directives in httpd.conf-dist files to use CustomLog
4878      so that users have examples of how CustomLog can be used.
4879      [Lars Eilebrecht]
4880
4881   *) Add the new Apache Autoconf-style Interface (APACI) for the top-level of
4882      the Apache distribution tree.  Until Apache 1.3 there was no real
4883      out-of-the-box batch-capable build and installation procedure for the
4884      complete Apache package. This is now provided by a top-level "configure"
4885      script and a corresponding top-level "Makefile.tmpl" file.  The goal is
4886      to provide a GNU Autoconf-style frontend which is capable to both drive
4887      the old src/Configure stuff in batch and additionally installs the
4888      package with a GNU-conforming directory layout. Any options from the old
4889      configuration scheme are available plus a lot of new options for flexibly
4890      customizing Apache. [Ralf S. Engelschall]
4891
4892   *) The floating point ap_snprintf code wasn't threadsafe.
4893      Had to remove the HAVE_CVT macro in order to do threadsafe
4894      calling of the ?cvt() floating point routines.  [Dean Gaudet]
4895
4896   *) PORT: Add the SCO_SV port. [Jim Jagielski] PR#1962
4897
4898   *) PORT: IRIX needs the -n32 flag iff using the 'cc' compiler
4899      [Jim Jagielski] PR#1901
4900
4901   *) BUG: Configure was using TCC and CC inconsistently. Make sure
4902      Configure knows which CC we are using. [Jim Jagielski]
4903
4904   *) "Options +Includes" wasn't correctly merged if "+IncludesNoExec"
4905      was defined in a parent directory. [Lars Eilebrecht]
4906
4907   *) API: ap_snprintf() code mutated into ap_vformatter(), which is
4908      a generic printf-style routine that can call arbitrary output
4909      routines.  Use this to replace http_bprintf.c.  Add new routines
4910      psprintf(), pvsprintf() which allocate the exact amount of memory
4911      required for a string from a pool.  Use psprintf() to clean up
4912      various bits of code which used ap_snprintf()/pstrdup().
4913      [Dean Gaudet]
4914
4915   *) PORT: HAVE_SNPRINTF doesn't do anything any longer.  This is because
4916      ap_snprintf() has different semantics and formatting codes than
4917      snprintf().  [Dean Gaudet]
4918
4919   *) SIGXCPU and SIGXFSZ are now reset to SIG_DFL at boot-time.  This
4920      is necessary on at least Solaris where the /etc/rc?.d scripts
4921      are run with these signals ignored, and "SIG_IGN" settings are
4922      maintained across exec().
4923      [Rein Tollevik <reint@sys.sol.no>] PR#2009
4924
4925   *) Fix the check for symbolic links in ``RewriteCond ... -l'': stat() was
4926      used instead of lstat() and thus this flag didn't work as expected.
4927      [Rein Tollevik <reint@sys.sol.no>] PR#2010
4928
4929   *) Fix the proxy pass-through feature of mod_rewrite for the case of
4930      existing QUERY_STRING now that mod_proxy was recently changed because of
4931      the new URL parsing stuff. [Ralf S. Engelschall]
4932
4933   *) A few changes to scoreboard definitions which helps gcc generate
4934      better code.  [Dean Gaudet]
4935
4936   *) ANSI C doesn't guarantee that "int foo : 2" in a structure will
4937      be a signed bitfield.  So mark a few bitfields as signed to
4938      ensure correct code.  [Dean Gaudet]
4939
4940   *) The default for HostnameLookups was changed to Off, but there
4941      was a problem and it wasn't taking effect. [Dean Gaudet]
4942
4943   *) PORT: Clean up undefined signals on some platforms (SCO, BeOS).
4944      [Dean Gaudet]
4945
4946   *) After a SIGHUP the listening sockets in the parent weren't
4947      properly marked for closure on fork().
4948      [Jürgen Keil <jk@tools.de>] PR#2000
4949  
4950   *) Allow %2F in two situations: 1) it is in the query part of the URI,
4951      therefore not exposed to %2F -> '/' translations and 2) the request
4952      is a proxy request, so we're not dealing with a local resource anyway.
4953      Without this, the proxy would fail to work for any URL's with
4954      %2f in them (occurs quite often in
4955      http://.../cgi-bin/...?http%3A%2F%2F... references) [Martin Kraemer]
4956
4957   *) Protect against FD_SETSIZE mismatches.  [Dean Gaudet]
4958
4959   *) Make the shared object compilation command more portable by avoiding
4960      the direct combination of `-c' & `-o' which is not honored by some
4961      compilers like UnixWare's cc. [Ralf S. Engelschall]
4962
4963   *) WIN32: the proxy was creating filenames missing the last four
4964      characters.  While this normally doesn't stop anything from 
4965      working, it can result in extra collisions.  
4966      [Tim Costello <tjcostel@socs.uts.edu.au>] PR#1890
4967
4968   *) Now mod_proxy uses the response string (in addition to the response status
4969      code) from the already used FTP SIZE command to setup the Content-Length
4970      header if available. [Ralf S. Engelschall] PR#1183
4971
4972   *) Reanimated the (still undocumented) proxy receive buffer size directive:
4973      Renamed from ReceiveBufferSize to ProxyReceiveBufferSize because the old
4974      name was really too generic, added documentation for this directive to
4975      the mod_proxy.html and corrected the hyperlink to it in the
4976      new_features_1.3.html document.  [Ralf S. Engelschall] PR#1348
4977
4978   *) Fix a bug in the src/helpers/fp2rp script and make it a little bit
4979      faster [Martin Kraemer]
4980   
4981   *) Make Configure die when you give it an unknown command switch.
4982      [Ben Hyde]
4983
4984   *) Add five new and fresh manpages for the support programs: dbmmanage.1,
4985      suexec.8, htdigest.1, rotatelogs.8 and logresolve.8.  Now all up-to-date
4986      and per default compiled support programs have manual pages - just to
4987      document our stuff a little bit more and to be able to do really
4988      Unix-like installations ;-) [Ralf S. Engelschall]
4989
4990   *) Major cleanups to the Configure script to make it and its generated
4991      Makefiles again readable and maintainable: add SRCDIR option, removed
4992      INCLUDES_DEPTH[0-2] kludge, cleanup of TARGET option, cleanup of
4993      generated sections, consequently added Makefile headers with inheritance
4994      information, added subdir movement messages for easier following where
4995      the build process currently stays (more verbose then standard Make, less
4996      verbose than GNU make), same style to comments in the Configure script,
4997      added Apache license header, fixed a few bugs, etc. [Ralf S. Engelschall]
4998      
4999   *) Add the new ApacheBench program "ab" to src/support/: This is derived
5000      from the ZeusBench benchmarking program and can be used to determine the
5001      response performance of an Apache installation. This version is
5002      officially licensed with Zeus Technology, Ltd. See the license agreement
5003      statements in <199803171224.NAA24547@en1.engelschall.com> in apache-core.
5004      [Ralf S. Engelschall]
5005
5006   *) API: Various core functions that are definately not part of the API
5007      have been made static, and a few have been marked API_EXPORT.  Still
5008      more have been marked CORE_EXPORT and are not intended for general
5009      use by modules.  [Doug MacEachern, Dean Gaudet]
5010
5011   *) mod_proxy was not clearing the Proxy-Connection header from
5012      requests; now it does.  This did not violate any spec, however 
5013      causes poor interactions when you are talking to remote proxies.  
5014      [Marc Slemko] PR#1741
5015
5016   *) Various cleanups to the command line interface and manual pages.
5017      [Ralf S. Engelschall]
5018
5019   *) cfg_getline() was not properly handling lines that did not end
5020      with a line termination character.  [Marc Slemko] PR#1869, 1909
5021
5022   *) Performance tweak to mod_log_config.  [Dmitry Khrustalev]
5023
5024   *) Clean up some undocumented behavior of mod_setenvif related to
5025      "merging" two SetEnvIf directives when they match the same header
5026      and regex.  Document that mod_setenvif will perform comparisons in
5027      the order they appear in the config file.  Optimize mod_setenvif by
5028      doing more work at config time rather than at runtime.
5029      [Dean Gaudet]
5030
5031   *) src/include/ap_config.h now wraps it's #define's with #ifndef/#endif's
5032      to allow for modules to overrule them and to reduce redefinition
5033      warnings [Jim Jagielski]
5034
5035   *) [PORT] For A/UX change the OS-#define for -DAUX to -DAUX3.
5036      [Jim Jagielski]
5037
5038   *) Making the hard-coded cross-module function call mime_find_ct() (from
5039      mod_proxy to mod_mime) obsolete by making sure the API hook for MIME type
5040      checking is really called even for proxy requests except for URLs with
5041      HTTP schemes (because there we can optimize by not running the type
5042      checking hooks due to the fact that the proxy gets the MIME Content-type
5043      from the remote host later). This change cleans up mod_mime by removing
5044      the ugly export kludge, makes the one-liner file mod_mime.h obsolete, and
5045      especially unbundles mod_proxy and mod_mime. This way they both now can
5046      be compiled as shared objects and are no longer tied together. 
5047      [Ralf S. Engelschall]
5048
5049   *) util.c cleanup and speedup. [Dean Gaudet]
5050
5051   *) API: Clarification, pstrndup() will always copy n bytes of the source
5052      and NUL terminate at the (n+1)st byte.  [Dean Gaudet]
5053
5054   *) Mark module command_rec and handler_rec structures const so that they
5055      end up in the read-only data section (and are friendlier to systems
5056      that don't do optimistic memory allocation on fork()). [Dean Gaudet]
5057
5058   *) Add check to the "Port" directive to make sure the specified 
5059      port is in the appropriate range.  [Ben Hyde]
5060
5061   *) Performance improvements to invoke_handler().
5062      [Dmitry Khrustalev <dima@bog.msu.su>]
5063
5064   *) Added support for building shared objects even for library-style modules
5065      (which are built from more than one object file). This now provides the
5066      ability to build mod_proxy as a shared object module. Additionally
5067      modules like mod_example are now also supported for shared object
5068      building because the generated Makefiles now no longer assume there is at
5069      least one statically linked module. [Ralf S. Engelschall]
5070
5071   *) API: Clarify usage of content_type, handler, content_encoding,
5072      content_language and content_languages fields in request_rec.  They
5073      must always be lowercased; and the strings pointed to shouldn't
5074      be modified (you must copy them to modify them).  Fix a few bugs
5075      related to this.  [Dean Gaudet]
5076
5077   *) API: Clarification: except for RAW_ARGS, all command handlers can
5078      treat the char * parameters as permanent, and modifiable.  There
5079      is no need to pstrdup() them.  Clean up some needless pstrdup().
5080      [Dean Gaudet]
5081
5082   *) Now mod_so keeps track of which module shared objects with which names
5083      are loaded and thus avoids multiple loading and unloading and irritating
5084      error_log messages. [Ralf S. Engelschall]
5085
5086   *) Prior to the existence of mod_setenv it was necessary to tweak the TZ
5087      environment variable in the apache core.  But that tweaking interferes
5088      with mod_setenv.  So don't tweak if the user has specified an explicit
5089      TZ variable.  [Jay Soffian <jay@cimedia.com>] PR#1888
5090
5091   *) rputs() did not calculate r->sent_bodyct properly.
5092      [Siegmund Stirnweiss <siegst@kat.ina.de>] PR#1900
5093
5094   *) The CGI spec says that REMOTE_HOST should be set to the remote hosts's
5095      name, or left unset if this value is unavailable.  Apache was setting
5096      it to the IP address when unavailable.
5097      [Tony Finch <fanf@demon.net>] PR#1925
5098
5099   *) Various improvements to the configuration and build support for compiling
5100      modules as shared objects. Especially Solaris 2.x, SunOS 4.1, IRIX and
5101      OSF1 support with GCC and vendor compilers was added.  This way shared
5102      object support is now provided out-of-the-box for FreeBSD, Linux,
5103      Solaris, SunOS, IRIX and OSF1. In short: On all major platforms!
5104      [Ralf S. Engelschall]
5105
5106   *) Minor cleanup in http_main -- split QNX and OS2 specific "mmap"
5107      scoreboard code into separate #defines -- USE_POSIX_SCOREBOARD
5108      and USE_OS2_SCOREBOARD.  [Dean Gaudet]
5109
5110   *) Fix one more special locking problem for RewriteMap programs in
5111      mod_rewrite: According to the documentation of flock(), "Locks are on
5112      files, not file descriptors.  That is, file descriptors duplicated
5113      through dup(2) or fork(2) do not result in multiple instances of a lock,
5114      but rather multiple references to a single lock. If a process holding a
5115      lock on a file forks and the child explicitly unlocks the file, the
5116      parent will lose its lock.". To overcome this we have to make sure the
5117      RewriteLock file is opened _AFTER_ the childs were spawned which is now
5118      the case by opening it in the child_init instead of the module_init API
5119      hook. [Ralf S. Engelschall] PR#1029
5120
5121   *) Change to Location and LocationMatch semantics.  LocationMatch no
5122      longer lets a single slash match multiple adjacent slashes in the
5123      URL.  This change is for consistency with RewriteRule and
5124      AliasMatch.  Multiple slashes have meaning in URLs that they do
5125      not have in (some) filesystems.  Location on the other hand can
5126      be considered a shorthand for a more complicated regex, and it
5127      does match multiple slashes with a single slash -- which is
5128      also consistent with the Alias directive.
5129      [Dean Gaudet] related PR#1440
5130
5131   *) Fix bug with mod_mime_magic causing certain files, including files
5132      of length 0, to result in no response from the server.
5133      [Dean Gaudet]
5134
5135   *) The Configure script now generates src/include/ap_config.h which
5136      contains the set of defines used when Apache is compiled on a platform.
5137      This file can then be included by external modules before including
5138      any Apache header files in case they are being built separately from
5139      Apache.  Along with this change, a couple of minor changes were
5140      made to make Apache's #defines coexist peacefully with any autoconf
5141      defines an external module might have. [Rasmus Lerdorf]
5142
5143   *) Fix mod_rewrite for the ugly API case where <VirtualHost> sections exist
5144      but without any RewriteXXXXX directives. Here mod_rewrite is given no
5145      chance by the API to initialize its per-server configuration and thus
5146      receives the wrong one from the main server. This is now avoided by
5147      remembering the server together with the config structure while
5148      configuring and later assuming there is no config when we see a
5149      difference between the remembered server and the one calling us. 
5150      [Ralf S. Engelschall] PR#1790
5151
5152   *) Fixed the DBM RewriteMap support for mod_rewrite: First the support now
5153      is automatically disabled under configure time when the dbm_xxx functions
5154      are not available. Second, two heavy source code errors in the DBM
5155      support code were fixed.  This makes DBM RewriteMap's usable again after
5156      a long time of brokenness. [Ralf S. Engelschall] PR#1696
5157
5158   *) Now all configuration files support Unix-style line-continuation via 
5159      the trailing backslash ("\") character. This enables us to write down
5160      complex or just very long directives in a more readable way.  The
5161      backslash character has to be really the last character before the
5162      newline and it has not been prefixed by another (escaping) backslash.
5163      [Ralf S. Engelschall]
5164
5165   *) When using ProxyPass the ?querystring was not passed correctly.
5166      [Joel Truher <truher@wired.com>]
5167
5168   *) To deal with modules being compiled and [dynamically] linked
5169      at a different time from the core, the SERVER_VERSION and
5170      SERVER_BUILT symbols have been abstracted through the new
5171      API routines apapi_get_server_version() and apapi_get_server_built().
5172      [Ken Coar]  PR#1448
5173
5174   *) WIN32: Preserve trailing slash in canonical path (and hence
5175      in PATH_INFO). [Paul Sutton, Ben Laurie]
5176
5177   *) PORT: USE_PTHREAD_SERIALIZED_ACCEPT has proven unreliable
5178      depending on the rev of Solaris and what mixture of modules
5179      are in use.  So it has been disabled, and Solaris is back to
5180      using USE_FCNTL_SERIALIZED_ACCEPT.  Users may experiment with
5181      USE_PTHREAD_SERIALIZED_ACCEPT at their own risk, it may speed
5182      up static content only servers.  Or it may fail unpredictably.
5183      [Dean Gaudet] PR#1779, 1854, 1904
5184
5185   *) mod_test_util_uri.c created which tests the logic in util_uri.c.
5186      [Dean Gaudet]
5187
5188   *) API: Rewrite of absoluteURI handling, and in particular how
5189      absoluteURIs match vhosts.  Unless a request is a proxy request, a
5190      "http://host" url is treated as if a similar "Host:" header had been
5191      supplied.  This change was made to support future HTTP/1.x protocols
5192      which may require clients to send absoluteURIs for all requests.
5193
5194      In order to achieve this change subtle changes were made to the API.  In a
5195      request_rec, r->hostlen has been removed.  r->unparsed_uri now exists so
5196      that the unmodified uri can be retrieved easily.  r->proxyreq is not set
5197      by the core, modules must set it during the post_read_request or
5198      translate_names phase.
5199
5200      Plus changes to the virtualhost test suite for absoluteURI testing.
5201
5202      This fixes several bugs with the proxy proxying requests to vhosts
5203      managed by the same httpd.
5204      [Dean Gaudet]
5205
5206   *) API: Cleanup of code in http_vhost.c, and remove vhost matching
5207      code from mod_rewrite.  The vhost matching is now performed by a
5208      globally available function matches_request_vhost().  [Dean Gaudet]
5209
5210   *) Reduce memory usage, and speed up ServerAlias support.  As a
5211      side-effect users can list multiple ServerAlias directives
5212      and they're all considered.
5213      [Chia-liang Kao <clkao@cirx.org>] PR#1531
5214
5215   *) The "poly" directive in image maps did not include the borders of the
5216      polygon, whereas the "rect" directive does.  Fix this inconsistency.
5217      [Konstantin Morshnev <moko@design.ru>] PR#1771
5218
5219   *) Make \\ behave as expected.  [Ronald.Tschalaer@psi.ch]
5220
5221   *) Add the `%a' construct to LogFormat and CustomLog to log the client IP
5222      address. [Todd Eigenschink <eigenstr@mixi.net>] PR#1885
5223
5224   *) API: A new source module main/util_uri.c; It contains a routine
5225      parse_uri_components() and friends which breaks a URI into its component
5226      parts.  These parts are stored in a uri_components structure called
5227      parsed_uri within each request_rec, and are available to all modules.
5228      Additionally, an unparse routine is supplied which re-assembles the URI
5229      components back to an URI, optionally hiding the username:password@ part
5230      from ftp proxy requests, and other useful routines.  Within the structure,
5231      you find on a ready-for-use basis:
5232         scheme;     /* scheme ("http"/"ftp"/...) */
5233         hostinfo;   /* combined [user[:password]@]host[:port] */
5234         user;       /* user name, as in http://user:passwd@host:port/ */
5235         password;   /* password, as in http://user:passwd@host:port/ */
5236         hostname;   /* hostname from URI (or from Host: header) */
5237         port_str;   /* port string (integer representation is in "port") */
5238         path;       /* the request path (or "/" if only scheme://host was given) */
5239         query;      /* Everything after a '?' in the path, if present */
5240         fragment;   /* Trailing "#fragment" string, if present */
5241      This is meant to serve as the platform for *BIG* savings in
5242      code complexity for the proxy module (and maybe the vhost logic).
5243      [Martin Kraemer]
5244
5245   *) Make all possible meta-construct expansions ($N, %N, %{NAME} and
5246      ${map:key}) available for all location where a string is created in
5247      mod_rewrite rewriting rulesets: 1st arg of RewriteCond, 2nd arg of
5248      RewriteRule and for the [E=NAME:STRING] flag of RewriteRule. This way the
5249      possible expansions are consequently usable at all string creation
5250      locations. [Ralf S. Engelschall]
5251
5252   *) Fix initialization of RewriteLogLevel (default now is 0 as documented 
5253      and not 1) and the per-virtual-server merging of directives. Now all
5254      directives except `RewriteEngine' and `RewriteOption' are either
5255      completely overridden (default) or completely inherited (when
5256      `RewriteOptions inherit') is used. [Ralf S. Engelschall] PR#1325
5257
5258   *) Fix `RewriteMap' program lookup in situations where such maps are
5259      defined but disabled (`RewriteEngine off') in per-server context. 
5260      [Ralf S. Engelschall] PR#1431
5261
5262   *) Fix bug introduced in 1.3b4-dev, config with no Port setting would cause
5263      server to bind to port 0 rather than 80.  [Dean Gaudet]
5264
5265   *) Fix long-standing problem with RewriteMap _programs_ under Unix derivates
5266      (like SunOS and FreeBSD) which don't accept the locking of pipes
5267      directly.  A new directive RewriteLock is introduced which can be used to
5268      setup a separate locking file which then is used for synchronization.
5269      [Ralf S. Engelschall] PR#1029
5270
5271   *) WIN32: The server root is obtained from the registry key
5272      HKLM\SOFTWARE\Apache Group\Apache\<version> (version is currently
5273      "1.3 beta"), unless overridden by the -d command line flag. The
5274      value is stored by running "apache -i -d serverroot". [Paul Sutton]
5275
5276   *) Merged os/win32/mod_dll.c into modules/standard/mod_so.c to support
5277      dynamic loading on Win32 and Unix via the same module. [Paul Sutton]
5278
5279   *) Now mod_rewrite no longer makes problematic assumptions on the characters
5280      a username can contain when trying to expand it via /etc/passwd. 
5281      [Ralf S. Engelschall]
5282
5283   *) The mod_setenvif BrowserMatch backwards compatibility command did not
5284      work properly with spaces in the regex.  [Ronald Tschalaer] PR#1825
5285
5286   *) Add new RewriteMap types: First, `rnd' which is equivalent to the `txt'
5287      type but with a special post-processing for the looked-up value: It
5288      parses it into alternatives according to `|' chars and then only one
5289      particular alternative is chosen randomly (this is an essential
5290      functionality needed for balancing between backend-servers when using
5291      Apache as a Reverse Proxy.  The looked up value here is a list of
5292      servers). Second, `int' with the built-in maps named `tolower' and
5293      `toupper' which can be used to map URL parts to a fixed case (this is an
5294      essential feature to fix the case of server names when doing mass
5295      virtual-hosting with the help of mod_rewrite instead of using
5296      <VirtualHost> sections). [Ralf S. Engelschall, parts based on code from
5297      Jay Soffian <jay@cimedia.com>] PR#1631
5298
5299   *) Add a new directive to mod_proxy similar to ProxyPass: `ProxyPassReverse'.
5300      This directive lets Apache adjust the URL in Location-headers on HTTP
5301      redirect responses sent by the remote server. This way the virtually
5302      mapped area is no longer left on redirects and thus by-passed which is
5303      especially essential when running Apache as a reverse proxy.  
5304      [Ralf S. Engelschall]
5305
5306   *) Hide Proxy-Authorization from CGI/SSI/etc just like Authorization is
5307      hidden. [Alvaro Martinez Echevarria]
5308
5309   *) Apache will, when started with the -X (single process) debugging flag,
5310      honor the SIGINT or SIGQUIT signals again now. This capability got lost
5311      a while ago during OS/2 signal handling changes.
5312
5313   *) [PORT] Work around the fact that NeXT runs on more than the
5314      m68k chips in mod_status [Scott Anguish and Timothy Luoma
5315      <luomat@peak.org>]
5316
5317   *) [PORT] Recognize FreeBSD versions so we can use the OS regex as well
5318      as handling unsigned-chars for FreeBSD v3 and v2 [Andrey Chernov
5319      <ache@nagual.pp.ru> and Jim] PR#1450
5320
5321   *) Use SA_RESETHAND or SA_ONESHOT when installing the coredump handlers.
5322      In particular the handlers could trigger themselves into an infinite
5323      loop if RLimitMem was used with a small amount of memory -- too small
5324      for the signal stack frame to be set up.  [Dean Gaudet]
5325
5326   *) Fix problems with absoluteURIs introduced during 1.3b4.  [Dean Gaudet,
5327      Alvaro Martinez Echevarria <alvaro@lander.es>]
5328
5329   *) Fix multiple UserDir problem introduced during 1.3b4-dev.
5330      [Dean Gaudet] PR#1850
5331
5332   *) ap_cpystrn() had an off-by-1 error.
5333      [Charles Fu <ccwf@klab.caltech.edu>] PR#1847
5334
5335   *) API: As Ken suggested the check_cmd_context() function and related
5336      defines are non-static now so modules can use 'em.  [Martin Kraemer]
5337
5338   *) mod_info would occasionally produce an unpaired <tt> in its
5339      output. Fixed. [Martin Kraemer]
5340
5341   *) By default AIX binds a process (and it's children) to a single
5342      processor.  httpd children now unbind themselves from that cpu
5343      and re-bind to one selected at random via bindprocessor()
5344      [Doug MacEachern]
5345
5346   *) Linux 2.0 and above implement RLIMIT_AS, RLIMIT_DATA has almost no
5347      effect.  Work around it by using RLIMIT_AS for the RLimitMEM
5348      directive.  [Enrik Berkhan <enrik@inka.de>] PR#1816
5349
5350   *) mod_mime_magic error message should indicate the filename when
5351      reads fail.  ["M.D.Parker" <mdpc@netcom.com>] PR#1827
5352
5353   *) Previously Apache would permit </Files> to end <FilesMatch> (and
5354      similary for Location and Directory), now this is diagnosed as an
5355      error.  Improve error messages for mismatched sections (<Files>,
5356      <FilesMatch>, <Directory>, <DirectoryMatch>, ...).
5357      [Dean Gaudet, Martin Kraemer]
5358
5359   *) <Files> is not permitted within <Location> (because of the
5360      semantic ordering).  [Dean Gaudet] PR#379
5361
5362   *) <Files> with wildcards was broken by the change in wildcard
5363      semantics (* does not match /).  To fix this, <Files> now
5364      apply only to the basename of the request filename.  This
5365      fixes some other inconsistencies in <Files> semantics
5366      (such as <Files a*b> not working).  [Dean Gaudet] PR#1817
5367
5368   *) Removed bogus "dist.tar" target from Makefile.tmpl and make sure
5369      backup files are removed on "clean" target [Ralf S. Engelschall]
5370
5371   *) PORT: Add -lm to LIBS for HPUX.  [Dean Gaudet] PR#1639
5372
5373   *) Various errors from select() and accept() in child_main() would
5374      result in an infinite loop.  It seems these two tickle kernel
5375      or library bugs occasionally, and result in log spammage and
5376      a generally bad scene.  Now the child exits immediately,
5377      which seems to be a good workaround.
5378      [Dean Gaudet] PR#1747, 1107, 588, 1787, 987, 588
5379
5380   *) Cleaned up some race conditions in unix child_main during
5381      initialization. [Dean Gaudet]
5382
5383   *) SECURITY: "UserDir /abspath" without a * in the path would allow
5384      remote users to access "/~.." and bypass access restrictions
5385      (but note /~../.. was handled properly).
5386      [Lauri Jesmin <jesmin@ut.ee>] PR#1701
5387
5388   *) API: os_is_path_absolute() now takes a const char * instead of a char *.
5389      [Dean Gaudet]
5390
5391 Changes with Apache 1.3b5
5392
5393   *) Source file dependencies in Makefile.tmpl files throughout the
5394      source tree were updated to accurately reflect reality.
5395      [Dean Gaudet]
5396
5397   *) Preserve the content encoding given by the AddEncoding directive
5398      when the client doesn't otherwise specify an encoding.
5399      [Ronald Tschalaer <Ronald.Tschalaer@psi.ch>]
5400
5401   *) Sort out problems with canonical filename handling happening too late.
5402      [Dean Gaudet, Ben Laurie]
5403
5404 Changes with Apache 1.3b4
5405
5406   *) The module structure was modified to include a *dynamic_load_handle
5407      in the STANDARD_MODULE_STUFF portion, and the MODULE_MAGIC_NUMBER
5408      has been bumped accordingly.  [Paul Sutton]
5409
5410   *) All BrowserMatch directives mentioned in
5411      htdocs/manual/known_client_problems.html are in the default
5412      configuration files.  [Lars Eilebrecht]
5413
5414   *) MiNT port update. [Jan Paul Schmidt]
5415
5416   *) HTTP/1.1 requires x-gzip and gzip encodings be treated
5417      equivalent, similarly for x-compress and compress.  Apache
5418      now ignores a leading x- when comparing encodings.  It also
5419      preserves the encoding the client requests (for example if
5420      it requests x-gzip, then Apache will respond with x-gzip
5421      in the Content-Encoding header).
5422      [Ronald Tschalaer <Ronald.Tschalaer@psi.ch>] PR#1772
5423
5424   *) Fix a memory leak on keep-alive connections.  [Igor Tatarinov]
5425
5426   *) Added mod_so module to support dynamic loading of modules on Unix
5427      (like mod_dld for Win32). This replaces mod_dld.c. Use SharedModule
5428      instead of AddModule in Configuration to build shared modules
5429      [Sameer Parekh, Paul Sutton]
5430
5431   *) Minor cleanups to r->finfo handling in some modules.
5432      [Dean Gaudet]
5433
5434   *) Abstract read()/write() to ap_read()/ap_write().
5435      Makes it easier to add other types of IO code such as SFIO.
5436      [Randy Terbush]
5437
5438   *) API: Generalize default_port manipulations to make support of
5439      different protocols easier. [Ben Laurie, Randy Terbush]
5440
5441   *) There are many cases where users do not want Apache to form
5442      self-referential urls using the "canonical" ServerName and Port.
5443      The new UseCanonicalName directive (default on), if set to off
5444      will cause Apache to use the client-supplied hostname and port.
5445      API: Part of this change required a change to the construct_url()
5446      prototype; and the addition of get_server_name() and
5447      get_server_port().
5448      [Michael Douglass <mikedoug@texas.net>, Dean Gaudet]
5449      PR#315, 459, 485, 1433
5450
5451   *) Yet another rearrangement of the source tree.. now all the common
5452      header files are in the src/include directory.  The -Imain -Iap
5453      references in Makefiles have been changed to the simpler -Iinclude
5454      instead.  In addition to simplifying the build a little bit, this
5455      also makes it clear when a module is referencing something in a
5456      other than kosher manner (e.g., the proxy including mod_mime.h).
5457      Module-private header files (the proxy, mod_mime, the regex library,
5458      and mod_rewrite) have not been moved to src/include; nor have
5459      the OS-abstraction files.  [Ken Coar]
5460
5461   *) Fix a bug where r->hostname didn't have the :port stripped
5462      from it.  [Dean Gaudet]
5463
5464   *) Tweaked the headers_out table size, and the subprocess_env
5465      table size guess in rename_original_environment().  Added
5466      MAKE_TABLE_PROFILE which can help discover make_table()
5467      calls that use too small an initial guess, see alloc.c.
5468      [Dean Gaudet]
5469
5470   *) Options and AllowOverride weren't properly merging in the main
5471      server setting inside vhosts (only an issue when you have no
5472      <Directory> or other section containing an Options that affects
5473      a request).  Options +foo or -foo in the main_server wouldn't
5474      affect the main_server's lookup defaults.  [Dean Gaudet]
5475
5476   *) Variable 'cwd' was being used pointlessly before being set.
5477      [Ken Coar] PR#1738
5478
5479   *) r->allowed handling cleaned up in the standard modules.
5480      [Dean Gaudet]
5481
5482   *) Some case-sensitivity issues cleaned up to be consistent with
5483      RFC2068.  [Dean Gaudet]
5484
5485   *) SIGURG doesn't exist everywhere.
5486      [Mark Andrew Heinrich <heinrich@tinderbox.Stanford.EDU>]
5487
5488   *) mod_unique_id was erroneously generating a second unique id when
5489      an internal redirect occured.  Such redirects occur, for example,
5490      when processing a DirectoryIndex match.  [Dean Gaudet]
5491
5492   *) API: table_add, table_merge, and table_set include implicit pstrdup()
5493      of the key and value.  But in many cases this is not required
5494      because the key/value is a constant, or the value has been built
5495      by pstrcat() or other similar means.  New routines table_addn,
5496      table_mergen, and table_setn have been added to the API, these
5497      routines do not pstrdup() their arguments.  The core code and
5498      standard modules were changed to take advantage of these routines.
5499      The resulting server is up to 20% faster in some situations.
5500
5501      Note that it is easy to get code subtly wrong if you pass a key/value
5502      which is in a pool other than the pool of the table.  The only
5503      safe thing to do is to pass key/values which are in the pool of
5504      the table, or in one of the ancestors of the pool of the table.
5505      i.e. if the table is part of a subrequest, a value from the main
5506      request's pool is OK since the subrequest pool is a sub_pool of the
5507      main request's pool (and therefore has a lifespan at most as long as
5508      the main pool).  There is debugging code which can detect improper
5509      usage, enabled by defining POOL_DEBUG.  See alloc.c for more details.
5510      [Dmitry Khrustalev <dima@bog.msu.su>, Dean Gaudet]
5511
5512   *) More mod_mime_magic cleanup:  fewer syscalls; should handle "files"
5513      which don't exist on disk more gracefully; handles vhosts properly.
5514      Update documentation to reflect the code -- if there's no
5515      MimeMagicFile directive then the module is not enabled.
5516      [Dean Gaudet]
5517
5518   *) PORT: Some older *nix dialects cannot automatically start scripts
5519      which begin with a #! interpreter line (the shell starts the scripts
5520      appropriately on these platforms). Apache now supports starting of
5521      "hashbang-scripts" when the NEED_HASHBANG_EMUL define is set.
5522      [Martin Kraemer, with code from peter@zeus.dialix.oz.au (Peter Wemm)
5523      taken from tcsh]
5524
5525   *) API: "typedef array_header table" removed from alloc.h, folks should
5526      have been writing to use table as if it were an opaque type, but even
5527      some standard modules got this wrong.  By changing the definition
5528      to "typedef struct table table" module authors will receive compile
5529      time warnings that they're doing the wrong thing.  This change
5530      facilitates future changes with more sophisticated table
5531      structures.  Specifically, module authors should be using table_elts()
5532      to get access to an array_header * for the table. [Dean Gaudet]
5533
5534   *) API: Renamed new_connection() to avoid namespace collision with LDAP
5535      library routines.  [Ken Coar, Rasmus Lerdorf]
5536
5537   *) WIN32: mod_speling is now available on the Win32 platform.
5538      [Marc Slemko]
5539
5540   *) For clarity the following compile time definition was changed:
5541
5542         SAFE_UNSERIALIZED_ACCEPT  ->   SINGLE_LISTEN_UNSERIALIZED_ACCEPT
5543
5544      Also, for example, HAVE_MMAP would mean to use mmap() scoreboards
5545      and not be a general notice that the OS has mmap(). Now the
5546      HAVE_MMAP/SHMGET #defines strictly are informational that the
5547      OS has that method of shared memory; the type to use for
5548      the scoreboard is a seperate #define (USE_MMAP_SCOREBOARD
5549      and USE_SHMGET_SCOREBOARD). This allows outside modules to
5550      determine if shared memory is available and allows Apache
5551      to determine the best method to use for the scoreboard.
5552      [Jim Jagielski]
5553
5554   *) PORT: UnixWare 2.1.2 SMP appears to require USE_FCNTL_SERIALIZED_ACCEPT,
5555      as do various earlier versions.  It should be safe on all versions.
5556      Unixware 1.x appears to have the same SIGHUP bug as solaris does with
5557      the slack code.  A few other cleanups for Unixware.
5558      [Tom Hughes <thh@cyberscience.com>] PR#1082, PR#1282, PR#1499, PR#1553
5559
5560   *) PORT: A/UX can handle single-listen accepts without mutex
5561      locking, so we add SINGLE_LISTEN_UNSERIALIZED_ACCEPT. [Jim Jagielski]
5562
5563   *) When die() happens we need to eat any request body if one exists.
5564      Otherwise we can't continue with a keepalive session.  This shows up
5565      as a POST problem with MSIE 4.0, typically against pages which are
5566      authenticated.  [Roy Fielding] PR#1399
5567
5568   *) If you define SECURITY_HOLE_PASS_AUTHORIZATION then the Authorization
5569      header will be passed to CGIs.  This is generally a security hole, so
5570      it's not a default.  [Marc Slemko] PR#549
5571
5572   *) Fix Y2K problem with date printing in suexec log.
5573      [Paul Eggert <eggert@twinsun.com>] PR#1343
5574
5575   *) WIN32 deserves a pid file.  [Ben Hyde]
5576
5577   *) suexec errors now include the errno/description.  [Marc Slemko] PR#1543
5578
5579   *) PORT: OSF/1 now uses USE_FLOCK_SERIALIZED_ACCEPT to solve PR#467.
5580      The choice of flock vs. fcntl was made based on timings which showed that
5581      even on non-NFS, non-exported filesystems fcntl() was an order of
5582      magnitude slower.  It also uses SINGLE_LISTEN_UNSERIALIZED_ACCEPT so
5583      that single socket users will see no difference. [Dean Gaudet] PR#467
5584
5585   *) "File does not exist" error message was erroneously including the
5586      errno.  [Marc Slemko]
5587
5588   *) Improve the warning message generated when a client drops the
5589      connection (hits stop button, etc.) during a send.  [Roy Fielding]
5590
5591   *) Defining GPROF will disable profiling in the parent and enable it
5592      in the children.  If you're profiling under Linux this is pretty much
5593      necessary because SIGPROF is lost across a fork(). [Dean Gaudet]
5594
5595   *) htdigest and htpasswd needed slight tweaks to work on OS/2 and WIN32.
5596      [Brian Havard]
5597
5598   *) The NeXT cc (which is gcc hacked up) doesn't appear to support some
5599      gcc functionality.  Work around it.
5600      [Keith Severson <keith@sssd.navy.mil>] PR#1613
5601
5602   *) Some linkers complain when .o files contain no functions.
5603      [Keith Severson <keith@sssd.navy.mil>] PR#1614
5604
5605   *) Some const declarations in mod_imap.c that were added for debugging
5606      purposes caused some compilers heartburn without adding any
5607      significant value, so they've been removed.  [Ken Coar]
5608
5609   *) The src/main/*.h header files have had #ifndef wrappers added to
5610      insulate them against duplicate calls if they get included through
5611      multiple paths (e.g., in .c files as well as other .h files).
5612      [Ken Coar]
5613
5614   *) The libap routines now have a header file for their prototypes,
5615      src/ap/ap.h, to ease their use in non-httpd applications.  [Ken Coar]
5616
5617   *) mod_autoindex with a plaintext header file would emit the <PRE>
5618      start-tag before the HTML preamble, rather than after the preamble
5619      but before the header file contents.  [John Van Essen <jve@gamers.org>]
5620      PR#1667
5621
5622   *) SECURITY: Fix a possible buffer overflow in logresolve.  This is
5623      only an issue on systems without a MAXDNAME define or where
5624      the resolver returns domain names longer than MAXDNAME.  [Marc Slemko]
5625
5626   *) SECURITY: Eliminate possible buffer overflow in cfg_getline, which
5627      is used to read various types of files such as htaccess and
5628      htpasswd files.  [Marc Slemko]
5629
5630   *) SECURITY: Ensure that the buffer returned by ht_time is always
5631      properly null terminated.  [Marc Slemko]
5632
5633   *) The "Connection" header could be sent back with multiple "close"
5634      tokens.  Not an error, but a waste.
5635      [Ronald.Tschalaer@psi.ch] PR#1683
5636
5637   *) mod_rewrite's RewriteLog should behave like mod_log_config, it
5638      shouldn't force hostname lookups.  [Dean Gaudet] PR#1684
5639
5640   *) "basic" auth needs a case-insensitive comparison.
5641      [Ronald.Tschalaer@psi.ch] PR#1666
5642
5643   *) For maximum portability, the environment passed to CGIs should
5644      only contain variables whose names match the regex
5645      /[a-zA-Z][a-zA-Z0-9_]*/.  This is now enforced by stamping
5646      underscores over any character outside the regex.  This
5647      affects HTTP_* variables, in a way that should be backward
5648      compatible for all the standard headers; and affects variables
5649      set with SetEnv/BrowserMatch and similar directives.
5650      [Dean Gaudet]
5651
5652   *) mod_speling returned incorrect HREF's when an ambigous match
5653      was found. Noticed by <robinton@amtrash.comlink.de> (Soeren Ziehe)
5654      [robinton@amtrash.comlink.de (Soeren Ziehe), Martin Kraemer]
5655
5656   *) PORT: Apache now compiles & runs on an EBCDIC mainframe
5657      (the Siemens BS2000/OSD family) in the POSIX subsystem
5658      [Martin Kraemer]
5659
5660   *) PORT: Fix problem killing children when terminating.  Allow ^C
5661      to shut down the server.  [Brian Havard]
5662
5663   *) pstrdup() is implicit in calls to table_* functions, so there's
5664      no need to do it before calling.  Clean up a few cases.
5665      [Marc Slemko, Dean Gaudet]
5666
5667   *) new -C and -c command line arguments
5668      usage:
5669      -C "directive" : process directive before reading config files
5670      -c "directive" : process directive after reading config files
5671      example:
5672      httpd -C "PerlModule Apache::httpd_conf"
5673      [Doug MacEachern, Martin Kraemer]
5674
5675   *) WIN32: Fix the execution of CGIs that are scripts and called 
5676      with path info that does not have an '=' in.
5677      (eg. http://server/cgi-bin/printenv?foobar)  
5678      [Marc Slemko] PR#1591
5679
5680   *) WIN32: Fix a call to os_canonical_filename so it doesn't try to 
5681      mess with fake filenames.  This fixes proxy caching on 
5682      win32. PR#1265
5683
5684   *) SECURITY: General mod_include cleanup, including fixing several
5685      possible buffer overflows and a possible infinite loop.
5686      [Dean Gaudet, Marc Slemko]
5687
5688   *) SECURITY: Numerous changes to mod_imap in a general cleanup
5689      including fixing a possible buffer overflow.  [Dean Gaudet]
5690
5691   *) WIN32: overhaul of multithreading code. Shutdowns are now graceful
5692      (connections are not dropped). Code can handle graceful restarts
5693      (but there is as yet no way to signal this to Apache). Various
5694      other cleanups. [Paul Sutton]
5695
5696   *) The aplog_error changes specific to 1.3 introduced a buffer
5697      overrun in the (now legacy) log_printf function.  Fixed.
5698      [Dean Gaudet]
5699
5700   *) mod_digest didn't properly deal with proxy authentication.  It
5701      also lacked a case-insensitive comparision of the "Digest"
5702      token.  [Ronald Tschalaer <Ronald.Tschalaer@psi.ch>] PR#1599
5703
5704   *) A few cleanups in mod_status for efficiency.  [Dean Gaudet]
5705
5706   *) A few cleanups in mod_info to make it thread-safe, and remove an
5707      off-by-5 bug that could hammer \0 on the stack. [Dean Gaudet]
5708
5709   *) no2slash() was O(n^2) in the length of the input.  Make it O(n).
5710      [Dean Gaudet]
5711
5712   *) API: migration from strncpy() to our "enhanced" version called
5713      ap_cpystrn() for performance and functionality reasons.
5714      Located in libap.a.  [Jim Jagielski]
5715
5716   *) table_set() and table_unset() did not deal correctly with
5717      multiple occurrences of the same key.
5718      [Stephen Scheck <sscheck@infonex.net>, Ben Laurie] PR#1604
5719
5720   *) The AuthName must now be enclosed in quotes if it is to contain
5721      spaces.  [Ken Coar] PR#1195
5722
5723   *) API: new function: ap_escape_quotes(). [Ken Coar] PR#1195
5724
5725   *) WIN32: Work around optimiser bug that killed ISAPI in release
5726      versions. [Ben Laurie] PR#1533
5727
5728   *) PORT: Update the MPE port [Mark Bixby, Jim Jagielski]
5729
5730   *) Interim (slow) fix for p->sub_pool critical sections in
5731      alloc.c (affects win32 only).  [Ben Hyde]
5732
5733   *) non-WIN32 was missing destroy_mutex definition.  [Ben Hyde]
5734
5735   *) send_fd_length() did not calculate total_bytes_sent properly.
5736      [Ben Reser <breser@regnow.com>] PR#1366
5737
5738   *) The bputc() macro was not properly integrated with the chunking
5739      code; in many cases modules using bputc() could cause completely
5740      bogus chunked output.  (Typically this will show up as problems
5741      with Internet Explorer 4.0 reading a page, but other browsers
5742      having no problem.) [Dean Gaudet]
5743
5744   *) Create LARGE_WRITE_THRESHOLD define which determines how many
5745      bytes have to be supplied to bwrite() before it will consider
5746      doing a writev() to assemble multiple buffers in one system
5747      call.  This is critical for modules such as mod_include,
5748      mod_autoindex, mod_php3 which all use bputc()/bputs() of smaller
5749      strings in some cases.  The result would be extra effort
5750      setting up writev(), and in many cases extra effort building
5751      chunks.  The default is 31, it can be overriden at compile
5752      time. [Dean Gaudet]
5753
5754   *) Move the gid switching code into the child so that log files
5755      and pid files are opened with the root gid.
5756      [Gregory A Lundberg <lundberg@vr.net>]
5757
5758   *) WIN32: Check for binaries by looking for the executable header
5759      instead of counting control characters.
5760      [Jim Patterson <Jim.Patterson@Cognos.COM>] PR#1340
5761
5762   *) ap_snprintf() moved from main/util_snprintf.c to ap/ap_snprintf.c
5763      so the functionality is available to applications other than the
5764      server itself (like the src/support tools).  [Ken Coar]
5765
5766   *) ap_slack() moved out of main/util.c into ap/ap_slack.c as part of
5767      the libap consolidation work.  [Ken Coar]
5768
5769   *) ap_snprintf() with a len of 0 behaved like sprintf().  This is not
5770      useful, and isn't what the standards require.  Now it returns 0
5771      and writes nothing.  [Dean Gaudet]
5772
5773   *) When an error occurs in fcntl() locking suggest the user look up
5774      the docs for LockFile.  [Dean Gaudet]
5775
5776   *) Eliminate some dead code from writev_it_all().
5777      [Igor Tatarinov <tatarino@prairie.NoDak.edu>]
5778
5779   *) mod_autoindex had an fread() without checking the result code.
5780      It also wouldn't handle "AddIconByType (TXT,/icons/text.gif text/*"
5781      (note the missing closing paren) properly.  [Dean Gaudet]
5782
5783   *) It appears the "257th byte" bug (see
5784      htdocs/manual/misc/known_client_problems.html#257th-byte) can happen
5785      at the 256th byte as well.  Fixed.  [Dean Gaudet]
5786
5787   *) PORT: Fix mod_mime_magic under OS/2, no support for block devices.
5788      [Brian Havard]
5789
5790   *) Fix memory corruption caused by allocating auth usernames in the
5791      wrong pool.  [Dean Gaudet] PR#1500
5792
5793   *) Fix an off-by-1, and an unterminated string error in
5794      mod_mime_magic.  [Dean Gaudet]
5795
5796   *) Fix a potential SEGV problem in mod_negotiation when dealing
5797      with type-maps.  [Dean Gaudet]
5798
5799   *) Better glibc support under Linux.  [Dean Gaudet] PR#1542
5800
5801   *) "RedirectMatch gone /" would cause a SIGSEGV. [Dean Gaudet] PR#1319
5802
5803   *) WIN32: avoid overflows during file canonicalisations.
5804      [malcolm@mgdev.demon.co.uk] PR#1378
5805
5806   *) WIN32: set_file_slot() didn't detect absolute paths. [Ben Laurie]
5807      PR#1511, 1508
5808
5809   *) WIN32: mod_status display header didn't match fields. [Ben Laurie]
5810
5811   *) The pthread_mutex_* functions return an error code, and don't
5812      set errno.  [Igor Tatarinov <tatarino@prairie.NoDak.edu>]
5813
5814   *) WIN32: Allow spaces to prefix the interpreter in #! lines.
5815      [Ben Laurie] PR#1101
5816
5817   *) WIN32: Cure file leak in CGIs. [Peter Tillemans <pti@net4all.be>] PR#1523
5818
5819   *) proxy_ftp: the directory listings generated by the proxy ftp module
5820      now have a title in which the path components are clickable and allow
5821      quick navigation to the clicked-on directory on the currently listed
5822      ftp server. This also fixes a bug where the ".." directory links would
5823      sometimes refer to the wrong directory.  [Martin Kraemer]
5824
5825   *) WIN32: Allocate the correct amount of memory for the scoreboard.
5826      [Ben Hyde] PR#1387
5827
5828   *) WIN32: Only lowercase the part of the path that is real. [Ben Laurie]
5829      PR#1505
5830
5831   *) Fix problems with timeouts in inetd mode and -X mode.  [Dean Gaudet]
5832
5833   *) Fix the spurious "(0)unknown error: mmap_handler: mmap failed"
5834      error messages. [Ben Hyde]
5835
5836 Changes with Apache 1.3b3
5837
5838   *) WIN32: Work around brain-damaged spawn calls that can't deal
5839      with spaces and slashes.  [Ben Laurie]
5840
5841   *) WIN32: Fix the code so CGIs can use socket calls on Windows.  
5842      The problem was that certain undocumented environment variables
5843      needed for sockets to work under Win32 were not being passed.
5844      [Frank Faubert <frank@sane.com>]
5845
5846   *) Add a "-V" command line flag to the httpd binary.  This 
5847      flag shows some of the defines that Apache was compiled with.
5848      It is useful for debugging purposes.  [Martin Kraemer]
5849
5850   *) Start separating the ap_*() routines into their own library, so they
5851      can be used by items in src/support among other things.  
5852      [Ken Coar] PR#512, 905, 1252, 1308 
5853
5854   *) Give a more informative error when no AuthType is set.
5855      [Lars Eilebrecht]
5856
5857   *) Remove strtoul() use from mod_proxy because it isn't available
5858      on all platforms.   [Marc Slemko] PR#1214
5859
5860   *) WIN32: Some Win32 systems terminated all responses after 16 kB. 
5861      This turns out to be a bug in Winsock - select() doesn't always 
5862      return the correct status.  [Ben Laurie]
5863
5864   *) Directives owned by http_core can now use the new check_cmd_context()
5865      routine to ensure that they're not being used within a container
5866      (e.g., <Directory>) where they're invalid.  [Martin Kraemer]
5867
5868   *) PORT: Recent changes made it necessary to add explicit prototype
5869      for fgetc() and fgets() on SunOS 4.x.  [Martin Kraemer, Ben Hyde]
5870
5871   *) It was necessary to distinguish between resources which are
5872      allocated in the parent, for cleanup in the parent, and resources
5873      which are allocated in each child, for cleanup in each child.
5874      A new pool was created which is passed to the module child_init
5875      and child_exit functions; modules are free to register per-child
5876      cleanups there.  This fixes a bug with reliable piped logs.
5877      [Dean Gaudet]
5878
5879   *) mod_autoindex wasn't displaying the ReadmeName file at the bottom
5880      unless it was also doing FancyIndexes, but it displayed the
5881      HeaderName file at the top under all circumstances.  It now shows
5882      the ReadmeName file for simple indices, too, as it should.  
5883      [Ken Coar] PR#1373
5884
5885   *) http_core was mmap()ing even in cases where it wasn't going to
5886      read the file.  [Ben Hyde <bhyde@gensym.com>]
5887
5888   *) Complete rewrite ;-) of mod_rewrite's URL rewriting engine:
5889      Now the rewriting engine (the heart of mod_rewrite) is organized more
5890      straight-forward, first time well documented and reduced to the really
5891      essential parts. All redundant cases were stripped off and processing now
5892      is the same for both per-server and per-directory context with only a
5893      minimum difference (the prefix stripping in per-dir context). As a
5894      side-effect some subtle restrictions and two recently discovered problems
5895      are gone: Wrong escaping of QUERY_STRING on redirects in per-directory
5896      context and restrictions on the substitution URL on redirects.
5897      Additionally some minor source cleanups were done. 
5898      [Ralf S. Engelschall] 
5899
5900   *) Lars Eilebrecht wrote a whole new set of Apache Vhost Internals
5901      documentation, examples, explanations and caveats. They live in a new
5902      subdirectory htdocs/manual/vhost/. [Lars Eilebrecht <sfx@unix-ag.org>]
5903
5904   *) If ap_slack fails to allocate above the low slack line it's a good
5905      indication that further problems will occur; it's a better indication
5906      than many external libraries give us when we actually run out of
5907      descriptors.  So report it to the user once per restart.
5908      [Dean Gaudet] PR#1181
5909
5910   *) Change mod_include and mod_autoindex to use Y2K-safe date formats
5911      by default.  [Ken Coar]
5912
5913   *) Add a "SuppressColumnSorting" option to the IndexOptions list,
5914      which will keep the column heading from being links for sorting
5915      the display.  [Ken Coar, suggested by Brian Tiemann <btman@pacific.net>]
5916      PR #1261
5917
5918   *) PORT: Update the LynxOS port.  [Marius Groeger <mag@sysgo.de>]
5919
5920   *) Fix logic error when issuing a mmap() failed message
5921      with a non-zero MMAP_THRESHOLD.
5922      [David Chambers <davidc@flosun.salk.edu>] PR#1294
5923
5924   *) Preserve handler value on ProxyPass'ed requests by not
5925      calling find_types on a proxy'd request; fixes problems
5926      where some ProxyPass'ed URLs weren't actually passed
5927      to the proxy.
5928      [Lars Eilebrecht] PR#870
5929
5930   *) Fix a byte ordering problem in mod_access which prevented
5931      the old-style syntax (i.e. "a.b.c." to match a class C)
5932      from working properly. [Dean Gaudet] PR#1248, 1328, 1384
5933
5934   *) Fix problem with USE_FLOCK_SERIALIZED_ACCEPT not working
5935      properly. Each child needs to open the lockfile instead
5936      of using the passed file-descriptor from the parent. 
5937      [Jim Jagielski] PR#1056
5938
5939   *) Fix the error logging in mod_cgi; the recent error log changes
5940      introduced a bug that prevented it from working correctly.
5941      [M.D.Parker] PR#1352
5942
5943   *) Default to USE_FCNTL_SERIALIZED_ACCEPT on HPUX to properly 
5944      handle multiple Listen directives.  [Marc Slemko] PR#872
5945
5946   *) Inherit a bugfix to fnmatch.c from FreeBSD sources.
5947      ["[KOI8-R] áÎÄÒÅÊ þÅÒÎÏ×" <ache@nagual.pp.ru>] PR#1311
5948
5949   *) When a configuration parse complained about a bad directive,
5950      the logger would use whatever (unrelated) value was in errno.
5951      errno is now forced to EINVAL first in this case.  [Ken Coar]
5952
5953   *) A sed command in the Configure script pushed the edge of POSIXness,
5954      breaking on some systems.  [Bhaba R.Misra <system@vt.edu>] PR#1368
5955
5956   *) Solaris >= 2.5 was totally broken due to a mess up using pthread
5957      mutexes.  [Roy Fielding, Dean Gaudet]
5958
5959   *) OS/2 Port updated; it should be possible to build OS/2 from the same
5960      sources as Unix now.  [Brian Havard <brianh@kheldar.apana.org.au>]
5961
5962   *) Fix a year formatting bug in mod_usertrack.
5963      [Paul Eggert <eggert@twinsun.com>] PR#1342
5964
5965   *) A mild SIGTERM/SIGALRM race condition was eliminated.
5966      [Dean Gaudet] PR#1211
5967
5968   *) Warn user that default path has changed if /usr/local/etc/httpd
5969      is found on the system.  [Lars Eilebrecht]
5970
5971   *) Various mod_mime_magic bug fixes and cleanups: Uncompression
5972      should work, it should work on WIN32, and a few resource
5973      leaks and abort conditions are fixed.
5974      [Dean Gaudet] PR#1205
5975
5976   *) PORT: On AIX 1.x files can't be named '@', fix the proxy cache
5977      to use '%' instead of '@' in its encodings.
5978      [David Schuler <schuld@btv.ibm.com>] PR#1317
5979
5980   *) Improve the warning message generated when the "server is busy".
5981      [Dean Gaudet] PR#1293
5982
5983   *) PORT: All ports which don't otherwise define DEF_WANTHSREGEX will
5984      get Spencer regex by default.  This is to avoid having to
5985      discover bugs in operating system libraries.  [Dean Gaudet]
5986
5987   *) PORT: "Fix" PR#467 by generating warnings on systems which we have
5988      not been able to get working USE_*_SERIALIZED_ACCEPT settings for.
5989      Document this a bit more in src/PORTING.  [Dean Gaudet] PR#467
5990
5991   *) Ensure that one copy of config warnings makes it to the
5992      error_log.  [Dean Gaudet]
5993
5994   *) Invent new structure and associated methods to handle config file
5995      reading. Add "custom" hook to use config file cfg_getline() on
5996      something which is not a FILE*  [Martin Kraemer]
5997
5998   *) Make single-exe Windows install. [Ben Laurie and Eric Esselink]
5999
6000   *) WIN32: Make CGI work under Win95. [Ben Laurie and Paul Sutton]
6001
6002   *) WIN32: Make index.html and friends work under Win95. [Ben Laurie]
6003
6004   *) PORT: Solaris 2.4 needs Spencer regex, the system regex is broken.
6005      [John Line <jml4@cam.ac.uk>] PR#1321
6006
6007   *) Default pathname has been changed everywhere to /usr/local/apache
6008      [Sameer <sameer@c2.net>]
6009
6010   *) PORT: AIX now uses USE_FCNTL_SERIALIZED_ACCEPT.
6011      [David Bronder <David-Bronder@uiowa.edu>] PR#849
6012
6013   *) PORT: i386 AIX does not have memmove.
6014      [David Schuler <schuld@btv.ibm.com>] PR#1267
6015
6016   *) PORT: HPUX now defaults to using Spencer regex.
6017      [Philippe Vanhaesendonck <pvanhaes@be.oracle.com>,
6018      Omar Del Rio <al112263@academ01.lag.itesm.mx>] PR#482, 1246
6019
6020   *) PORT: Some versions of NetBSD don't automatically define
6021      __NetBSD__.  Workaround by defining NETBSD.
6022      [Chris Craft <ccraft@cncc.cc.co.us>] PR#977
6023
6024   *) PORT: UnixWare 2.x requires -lgen for syslog.
6025      [Hans Snijder <hs@meganet.nl>] PR#1249
6026
6027   *) PORT: ULTRIX appears to not have syslog.
6028      [Lars Eilebrecht <Lars.Eilebrecht@unix-ag.org>]
6029
6030   *) PORT: Basic Gemini port (treat it like unixware212).
6031      ["Pavel Yakovlev (Paul McHacker)" <hac@tomcat.olly.ru>]
6032
6033   *) PORT: All SVR4 systems now use NET_SIZE_T = size_t, and
6034      use USE_SHMGET_SCOREBOARD.
6035      [Martin Kraemer]
6036
6037   *) Various improvements in detecting config file errors (missing closing
6038      directives for <Directory>, <Files> etc. blocks, prohibiting global
6039      server settings in <VirtualHost> blocks, flagging unhandled multiple
6040      arguments to <Directory>, <Files> etc.)
6041      [Martin Kraemer]
6042
6043   *) Add support to suexec wrapper program for mod_unique_id's UNIQUE_ID
6044      variable to provide this one to suexec'd CGIs, too.
6045      [M.D.Parker <mdpc@netcom.com>] PR#1284
6046
6047   *) New support tool: src/support/split-logfile, a sample Perl script which
6048      splits up a combined access log into separate files based on the
6049      name of the virtual host (listed first in the log records by "%v").
6050      [Ken Coar]
6051
6052 Changes with Apache 1.3b2 (there is no 1.3b1)
6053
6054   *) TestCompile was not passing $LIBS [Dean Gaudet]
6055
6056   *) Makefile.tmpl was not using $CFLAGS in the link phase. 
6057      [Martin Kraemer]
6058
6059   *) Add debugging code to alloc.c.  Defining ALLOC_DEBUG provides a
6060      rudimentary memory debugger which can be used on live servers with
6061      low impact -- it sets all allocated and freed memory bytes to 0xa5.
6062      Defining ALLOC_USE_MALLOC will cause the alloc code to use malloc()
6063      and free() for each object.  This is far more expensive and should
6064      only be used for testing with tools such as Electric Fence and
6065      Purify.  See main/alloc.c for more details.  [Dean Gaudet]
6066
6067   *) Configure uses a sh trap and didn't set its exitcode properly.
6068      [Dean Gaudet] PR#1159
6069
6070   *) Yet another vhost revamp.  Add the NameVirtualHost directive which
6071      explicitly lists the ip:port pairs that are to be used for name-vhosts.
6072      From a given ip:port, regardless what the Host: header is, you can
6073      only reach the vhosts defined on that ip:port.  The precedence of
6074      vhosts was reversed to match other precedences in the config --
6075      the earlier vhosts override the later vhosts.  All vhost matching was
6076      moved into http_vhost.[ch].  [Dean Gaudet]
6077
6078   *) ap_inline can be used to force inlining.  GNUC __attribute__() can
6079      be used for whatever reason is appropriate (i.e. format() warnings
6080      for printf style functions).  Both are enabled only with
6081      gcc >= 2.7.x (so that we have fewer support issues with older
6082      versions).  [Dean Gaudet]
6083
6084   *) Fix support for Proxy Authentication (we were testing the response
6085      status too early). [Marc Slemko]
6086
6087   *) CoreDumpDirectory directive directs where the core file is
6088      written when a SIGSEGV, SIGBUS, SIGABORT or SIGABRT are
6089      received.  [Marc Slemko, Dean Gaudet]
6090
6091   *) PORT: Support for Atari MINT.
6092      [Jan Paul Schmidt <Jan.P.Schmidt@mni.fh-giessen.de>]
6093
6094   *) When booting, apache will now detach itself from stdin, stdout,
6095      and stderr.  stderr will not be detached until after the config
6096      files have been read so you will be able to see initial error
6097      messages.  After that all errors are logged in the error_log.
6098      This makes it more convenient to start apache via rsh, ssh,
6099      or crontabs.  [Dean Gaudet] PR#523
6100
6101   *) mod_proxy was sending HTTP/1.1 responses to ftp requests by mistake.
6102      Also removed the auto-generated link to www.apache.org that was the
6103      source of so many misdirected bug reports.  [Roy Fielding, Marc Slemko]
6104
6105   *) send_fb would not detect aborted connections in some situations.
6106      [Dean Gaudet]
6107
6108   *) mod_include would use uninitialized data when parsing certain
6109      expressions involving && and ||. [Brian Slesinsky] PR#1139
6110
6111   *) mod_imap should only handle GET methods.  [Jay Bloodworth]
6112
6113   *) suexec.c wouldn't build without -DLOG_EXEC. [Jason A. Dour]
6114
6115   *) mod_autoindex improperly counted &escapes; as more than one
6116      character in the description.  It also improperly truncated
6117      descriptions that were exactly the maximum length.
6118      [Martin Kraemer]
6119
6120   *) RedirectMatch was not properly escaping the result (PR#1155).  Also
6121      "RedirectMatch /advertiser/(.*) $1" is now permitted.
6122      [Dean Gaudet]
6123
6124   *) mod_include now uses symbolic names to check for request success
6125      and return HTTP errors, and correctly handles all types of
6126      redirections (previously it only did temporary redirect correctly).
6127      [Ken Coar, Roy Fielding]
6128
6129   *) mod_userdir was modifying r->finfo in cases where it wasn't setting
6130      r->filename.  Since those two are meant to be in sync with each other
6131      this is a bug.  ["Paul B. Henson" <henson@intranet.csupomona.edu>]
6132
6133   *) PORT: Support Unisys SVR4, whose uname returns mostly useless data.
6134      ["Kaufman, Steven E" <Steven.Kaufman@unisys.com>]
6135
6136   *) Inetd mode (which is buggy) uses timeouts without having setup the
6137      jmpbuffer. [Dean Gaudet] PR#1064
6138
6139   *) Work around problem under Linux where a child will start looping
6140      reporting a select error over and over.
6141      [Rick Franchuk <rickf@transpect.net>] PR#1107, 987, 588
6142
6143   *) Fixed error in proxy_util.c when looping through multiple host IP
6144      addresses. [Lars Eilebrecht] PR#974
6145
6146   *) If BUFFERED_LOGS is defined then mod_log_config will do atomic
6147      buffered writes -- that is, it will buffer up to PIPE_BUF (i.e. 4k)
6148      bytes before writing, but it will never split a log entry across a
6149      buffer boundary.  [Dean Gaudet]
6150
6151   *) API: the short_score record has been split into two pieces, one which
6152      the parent writes on, and one which the child writes on.  As part of
6153      this change the get_scoreboard_info() function was removed, and
6154      scoreboard_image was exported.  This change fixes a race condition
6155      in file based scoreboard systems, and speeds up changes involving the
6156      scoreboard in earlier 1.3 development.  [Dean Gaudet]
6157
6158   *) API: New register_other_child() API (see http_main.h) which allows
6159      modules to register children with the parent for maintenance.  It
6160      is disabled by defining NO_OTHER_CHILD.  [Dean Gaudet]
6161
6162   *) API: New piped_log API (see http_log.h) which implements piped logs,
6163      and will use register_other_child to implement reliable piped logs
6164      when it is available.  The reliable piped logs part can be disabled
6165      by defining NO_RELIABLE_PIPED_LOGS.  At the moment reliable piped
6166      logs is only available on Unix. [Dean Gaudet]
6167
6168   *) API: set_last_modified() broken into set_last_modified(), set_etag(), and
6169      meets_conditions().  This allows conditional HTTP selection to be
6170      handled separately from the storing of the header fields, and provides
6171      the ability for CGIs to set their own ETags for conditional checking.
6172      [Ken Coar, Roy Fielding]  PR#895
6173
6174   *) Changes to mod_log_config to allow naming of format strings.
6175      Format nicknames are defined with "LogFormat fmt nickname", and can
6176      be used with "LogFormat nickname" and "CustomLog logtarget nickname".
6177      [Ken Coar]
6178
6179   *) New module, "mod_speling", which can help find files even when 
6180      the URL is slightly misspelled. [Martin Kraemer, Alexei Kosut]
6181
6182   *) API: New function child_terminate() triggers the child process to
6183      exit, while allowing the child finish what it needs to for the
6184      current request first.  
6185      [Doug MacEachern, Alexei Kosut]
6186
6187   *) Windows now defaults to using full status reports with mod_status.
6188      [Alexei Kosut] PR #1094
6189
6190   *) *Really* disable all mod_rewrite operations if the engine is off.
6191      Some things (like RewriteMaps) were checked/performed even if they
6192      weren't supposed to be.  [Ken Coar] PR #991
6193
6194   *) Implement a new timer scheme which eliminates the need to call alarm() all
6195      the time.  Instead a counter in the scoreboard for each child is used to
6196      show when the child has made forward progress.  The parent samples this
6197      counter every scoreboard maintenance cycle, and issues SIGALRM if no
6198      progress has been made in the timeout period.  This reduces the static
6199      request best-case syscall count to 22 from 29.  This scheme is only
6200      used by systems with memory-based scoreboards.  [Dean Gaudet]
6201
6202   *) The proxy now properly handles CONNECT requests which are sent
6203      to proxy servers when using ProxyRemote.  [Marc Slemko] PR#1024
6204
6205   *) A script called apachectl has been added to the support 
6206      directory.  This script allows you to do things such as 
6207      "apachectl start" and "apachectl restart" from the command
6208      line.  [Marc Slemko]
6209
6210   *) Modules and core routines are now put into libraries, which
6211      simplifies the link line tremendously (among other advantages).
6212      [Paul Sutton]
6213
6214   *) Some of the MD5 names defined in Apache have been renamed to have
6215      an `ap_' prefix to avoid conflicts with routines supplied by
6216      external libraries.  [Ken Coar]
6217
6218   *) Removal of mod_auth_msql.c from the distribution. There are many
6219      other options for databases today. Rather than offer one option,
6220      offer none at this time. mod_auth_msql and other SQL database
6221      authentication modules can be found at the Apache Module Registry.
6222      http://modules.apache.org/ It would be nice to offer a generic
6223      mod_auth_sql option in the near future.
6224
6225   *) PORT: BeOS support added [Alexei Kosut]
6226
6227   *) Configure no longer accepts the -make option, since it creates
6228      Makefile on the fly based on Makefile.tmpl and Configuration.
6229
6230   *) Apache now gracefully shuts down when it receives a SIGTERM, instead
6231      of forcibly killing off all its processes and exiting without
6232      cleaning up. [Alexei Kosut]
6233
6234   *) API: A new field in the request_rec, r->mtime, has been added to
6235      avoid gratuitous parsing of date strings.  It is intended to hold
6236      the last-modified date of the resource (if applicable).  An
6237      update_mtime() routine has also been added to advance it if
6238      appropriate.  [Roy Fielding, Ken Coar]
6239
6240   *) SECURITY: If a htaccess file can not be read due to bad permissions,
6241      deny access to the directory with a HTTP_FORBIDDEN.  The previous
6242      behavior was to ignore the htaccess file if it could not be read.
6243      This change may make some setups with unreadable htaccess files
6244      stop working.  [Marc Slemko] PR#817
6245
6246   *) Add aplog_error() providing a mechanism to define levels of
6247      verbosity to the server error logging. This addition also provides
6248      the ability to log errors using syslogd. Error logging is configurable
6249      on a per-server basis using the LogLevel directive. Conversion
6250      of log_*() in progress. [Randy Terbush]
6251
6252   *) Further enhance aplog_error() to not log filename, line number, and
6253      errno information when it isn't applicable. [Ken Coar, Dean Gaudet]
6254
6255   *) WIN32: Canonicalise filenames under Win32. Short filenames are
6256      converted to long ones. Backslashes are converted to forward
6257      slashes. Case is converted to lower. Parts of URLs that do not
6258      correspond to files are left completely alone. [Ben Laurie]
6259
6260   *) PORT: 2 new OSs added to the list of ports:
6261       Encore's UMAX V: Arieh Markel <amarkel@encore.com>
6262       Acorn RISCiX: Stephen Borrill <sborrill@xemplar.co.uk>
6263
6264   *) Add the server version (SERVER_VERSION macro) to the "server
6265      configured and running" entry in the error_log.  Also build an
6266      object file at link-time that contains the current time
6267      (SERVER_BUILT global const char[]), and include that in the
6268      message.  [Ken Coar]
6269
6270   *) Set r->headers_out when sending responses from the proxy.
6271      This fixes things such as the logging of headers sent from
6272      the proxy.  [Marc Slemko] PR#659
6273
6274   *) support/httpd_monitor is no longer distributed because the 
6275      scoreboard should not be file based if at all possible. Use
6276      mod_status to see current server snapshot.
6277
6278   *) (set_file_slot): New function, allowing auth directives to be
6279      independent of the server root, so the server documents can be
6280      moved to a different directory or machine more easily.
6281      [David J. MacKenzie]
6282
6283   *) If no TransferLog is given explicitly, decline
6284      to log.  This supports coexistence with other logging modules,
6285      such as the custom one that UUNET uses. [David J. MacKenzie]
6286
6287   *) Check for titles in server-parsed HTML files.
6288      Ignore leading newlines and returns in titles.  The old behavior
6289      of replacing a newline after <title> with a space causes the
6290      title to be misaligned in the listing. [David J. MacKenzie]
6291
6292   *) Change mod_cern_meta to be configurable on a per-directory basis.
6293      [David J. MacKenzie]
6294
6295   *) Add 'Include' directive to allow inclusion of configuration
6296      files within configuration files. [Randy Terbush]
6297
6298   *) Proxy errors on connect() are logged to the error_log (nothing
6299      new); now they include the IP address and port that failed
6300      (*that's* new).   [Ken Coar, Marc Slemko] PR#352
6301
6302   *) Various architectures now define USE_MMAP_FILES which causes
6303      the server to use mmap() for static files.  There are two
6304      compile-time tunables MMAP_THRESHOLD (minimum number of bytes
6305      required to use mmap(), default is 0), and MMAP_SEGMENT_SIZE (maximum
6306      number of bytes written in one cycle from a single mmap()d object,
6307      default 32768).  [Dean Gaudet]
6308
6309   *) API: Added post_read_request API phase which is run right after reading
6310      the request from a client, or right after an internal redirect.  It is
6311      useful for modules setting environment variables that depend only on
6312      the headers/contents of the request.  It does not run during subrequests
6313      because subrequests inherit pretty much everything from the main
6314      request. [Dean Gaudet]
6315
6316   *) Added mod_unique_id which is used to generate a unique identifier for
6317      each hit, available in the environment variable UNIQUE_ID.
6318      [Dean Gaudet]
6319
6320   *) init_modules is now called after the error logs have been opened.  This
6321      allows modules to emit information messages into the error logs.
6322      [Dean Gaudet]
6323
6324   *) Fixed proxy-pass-through feature of mod_rewrite; Added error logging
6325      information for case where proxy module is not available. [Marc Slemko]
6326
6327   *) PORT: Apache has need for mutexes to serialize its children around
6328      accept.  In prior versions either fcntl file locking or flock file
6329      locking were used.  The method is chosen by the definition of
6330      USE_xxx_SERIALIZED_ACCEPT in conf.h.  xxx is FCNTL for fcntl(),
6331      and FLOCK for flock().  New options have been added:
6332         - SYSVSEM to use System V style semaphores
6333         - PTHREAD to use POSIX threads (appears to work on Solaris only)
6334         - USLOCK to use IRIX uslock
6335      Based on timing various techniques, the following changes were made
6336      to the defaults:
6337         - Linux 2.x uses flock instead of fcntl
6338         - Solaris 2.x uses pthreads
6339         - IRIX uses SysV semaphores -- however multiprocessor IRIX boxes
6340           work far faster if you -DUSE_USLOCK_SERIALIZED_ACCEPT
6341      [Dean Gaudet, Pierre-Yves Kerembellec <Pierre-Yves.Kerembellec@vtcom.fr>,
6342      Martijn Koster <m.koster@pobox.com>]
6343
6344   *) PORT: The semantics of accept/select make it very desirable to use
6345      mutexes to serialize accept when multiple Listens are in use.  But
6346      in the case where only a single socket is open it is sometimes
6347      redundant to serialize accept().  Not all unixes do a good job with
6348      potentially dozens of children blocked on accept() on the same
6349      socket.  It's now possible to define SINGLE_LISTEN_UNSERIALIZED_ACCEPT and
6350      the server will avoid serialization when listening on only one socket,
6351      and use serialization when listening on multiple sockets.
6352      [Dean Gaudet] PR#467
6353
6354   *) Configure changes: TestLib replaced by TestCompile, which has
6355      some additional capability (such as doing a sanity check of
6356      the compiler and flags selected); the version of Solaris is now
6357      available via the #define value of SOLARIS2; IRIX n32bit libs
6358      now supported and selectable by new Configuration Rule: IRIXN32;
6359      We no longer default to -O2 optimization.  [Jim Jagielski]
6360
6361   *) Updated Configure: Configuration now uses AddModule to specify
6362      module source or binary file location, relative to src directory.
6363      Modules can be dropped into modules/extra, or in their own 
6364      directory, and modules can come with a Makefile or Configure can 
6365      create one.  Modules can add compiler or library information to 
6366      generated Makefiles. [Paul Sutton]
6367
6368   *) Source core re-organisation: distributed modules are now in 
6369      modules/standard. All other source code is in main. OS-specific
6370      code is in os/{unix,emx,win32} directories. [Paul Sutton]
6371
6372   *) mod_browser has been removed, since it's replaced by mod_setenvif.
6373      [Ken Coar]
6374
6375   *) Fix another long-standing bug in sub_req_lookup_file where it would
6376      happily skip past access checks on subdirectories looked up with
6377      relative paths.  (It's used by mod_dir, mod_negotiation,
6378      and mod_include.) [Dean Gaudet]
6379
6380   *) directory_walk optimization to reduce an O(N*M) loop to O(N+M) where
6381      N is the number of <Directory> sections, and M is the number of
6382      components in the filename of an object.
6383
6384      To achieve this optimization the following config changes were made:
6385         - Wildcards (* and ?, not the regex forms) in <Directory>s,
6386           <Files>s, and <Location>s now treat a slash as a special
6387           character.  For example "/home/*/public_html" previously would
6388           match "/home/a/andrew/public_html", now it only matches things
6389           like "/home/bob/public_html".  This mimics /bin/sh behaviour.
6390         - It's possible now to use [] wildcarding in <Directory>, <Files>
6391           or <Location>.
6392         - Regex <Directory>s are applied after all non-regex <Directory>s.
6393
6394     [Dean Gaudet]
6395
6396   *) Fix a bug introduced in 1.3a1 directory_walk regarding .htaccess files
6397      and corrupted paths.  [Dean Gaudet]
6398
6399   *) Enhanced and cleaned up the URL rewriting engine of mod_rewrite:
6400      First the grouped parts of RewriteRule pattern matches (parenthesis!) can
6401      be accessed now via backreferences $1..$9 in RewriteConds test-against
6402      strings in addition to RewriteRules subst string. Second the grouped
6403      parts of RewriteCond pattern matches (parenthesis!) can be accessed now
6404      via backreferences %1..%9 both in following RewriteCond test-against
6405      strings and RewriteRules subst string. This provides maximum flexibility
6406      through the use of backreferences.
6407      Additionally the rewriting engine was cleaned up by putting common
6408      code to the new expand_backrefs_inbuffer() function. 
6409      [Ralf S. Engelschall]
6410
6411   *) When merging the main server's <Directory> and <Location> sections into
6412      a vhost, put the main server's first and the vhost's second.  Otherwise
6413      the vhost can't override the main server.  [Dean Gaudet] PR#717
6414
6415   *) The <Directory> code would merge and re-merge the same section after
6416      a match was found, possibly causing problems with some modules.
6417      [Dean Gaudet]
6418
6419   *) ip-based vhosts are stored and queried using a hashing function, which
6420      has been shown to improve performance on servers with many ip-vhosts.
6421      Some other changes had to be made to accommodate this:
6422         - the * address for vhosts now behaves like _default_
6423         - the matching process now is:
6424             - match an ip-vhost directly via hash (possibly matches main
6425               server)
6426             - if that fails, just pretend it matched the main server
6427             - if so far only the main server has been matched, perform
6428               name-based lookups (ServerName, ServerAlias, ServerPath)
6429               *only on name-based vhosts*
6430             - if they fail, look for _default_ vhosts
6431      [Dean Gaudet, Dave Hankins <dhankins@sugarat.net>]
6432
6433   *) dbmmanage overhaul:
6434      - merge dbmmanage and dbmmanage.new functionality, remove dbmmanage.new 
6435      - tie() to AnyDBM_File which will use one of DB_File, NDBM_File or
6436        GDBM_File (-ldb, -lndbm, -lgdbm) (trying each in that order)
6437      - provide better seed for rand
6438      - prompt for password as per getpass(3) (turn off echo, read from
6439        /dev/tty, etc.)
6440      - use "newstyle" crypt based on $Config{osname} ($^O)
6441      - will not add a user if already in database, use new `update' command
6442        instead
6443      - added `check' command to check a users' password
6444      - added `import' command to convert existing password text-files or 
6445        dbm files exported with `view'
6446      - more descriptive usage, general cleanup, 'use strict' clean, etc.
6447      [Doug MacEachern]
6448
6449   *) Added psocket() which is a pool form of socket(), various places within
6450      the proxy weren't properly blocking alarms while registering the cleanup
6451      for its sockets.  bclose() now uses pclose() and pclosesocket().  There
6452      was a bug where the client socket was being close()d twice due a still
6453      registered cleanup.  [Dean Gaudet]
6454
6455   *) A few cleanups were made to reduce time(), getpid(), and signal() calls.
6456      [Dean Gaudet]
6457
6458   *) PORT: AIX >= 4.2 requires -lm due to libc changes.
6459      [Jason Venner <jason@idiom.com>] PR#667
6460
6461   *) Enable ``=""'' for RewriteCond directives to match against
6462      the empty string. This is the preferred way instead of ``^$''.
6463      [Ralf S. Engelschall]
6464
6465   *) Fixed an infinite loop in mod_imap for references above the server root
6466      [Dean Gaudet] PR#748
6467
6468   *) mod_proxy now has a ReceiveBufferSize directive, similar to
6469      SendBufferSize, so that the TCP window can be set appropriately
6470      for LFNs. [Phillip A. Prindeville]
6471
6472   *) mod_browser has been replaced by the more general mod_setenvif
6473      (courtesy of Paul Sutton).  BrowserMatch* directives are still
6474      available, but are now joined by SetEnvIf*, UnSetEnvIf*, and
6475      UnSetEnvIfZero directives.  [Ken Coar]
6476
6477   *) "HostnameLookups double" forces double-reverse DNS to succeed in
6478      order for remote_host to be set (for logging, or for the env var
6479      REMOTE_HOST).  The old define MAXIMUM_DNS has been deprecated.
6480      [Dean Gaudet]
6481
6482   *) mod_access overhaul:
6483      - Now understands network/netmask syntax (i.e.  10.1.0.0/255.255.0.0)
6484        and cidr syntax (i.e. 10.1.0.0/16).  PR#762
6485      - Critical path was sped up by pre-computing a few things at config time.
6486      - The undocumented syntax "allow user-agents" was removed,
6487        the replacement is "allow from env=foobar" combined with mod_browser.
6488      - When used with hostnames it now forces a double-reverse lookup
6489        no matter what the directory settings are.  This double-reverse
6490        doesn't affect any of the other routines that use the remote
6491        hostname.  In particular it's still passed to CGIs and the log
6492        without the double-reverse check.  Related PR#860.
6493      [Dean Gaudet]
6494
6495   *) When a large bwrite() occurs (larger than the internal buffer size),
6496      while there is already something in the buffer, apache will combine
6497      the large write and the buffer into a single writev().  (This is
6498      in anticipation of using mmap() for reading files.)
6499      [Dean Gaudet]
6500
6501   *) In obscure cases where a partial socket write occurred while chunking,
6502      Apache would omit the chunk header/footer on the next block.  Cleaned
6503      up other bugs/inconsistencies in error conditions in buff.c.  Fixed
6504      a bug where a long pause in DNS lookups could cause the last packet
6505      of a response to be unduly delayed.  [Roy Fielding, Dean Gaudet]
6506
6507   *) API: Added child_exit function to module structure.  This is called
6508      once per "heavy-weight process" just before a server child exit()'s 
6509      e.g. when max_requests_per_child is reached, etc.
6510      [Doug MacEachern, Dean Gaudet]
6511
6512   *) mod_include cleanup showed that handle_else was being used to handle
6513      endif.  It didn't cause problems, but it was cleaned up too.
6514      [Howard Fear]
6515
6516   *) mod_cern_meta would attempt to find meta files for the directory itself
6517      in some cases, but not in others.  It now avoids it in all cases.
6518      [Dean Gaudet]
6519
6520   *) mod_mime_magic would core dump if there was a decompression error.
6521      [Martin Kraemer <Martin.Kraemer@mch.sni.de>] PR#904
6522
6523   *) PORT: some variants of DGUX require -lsocket -lnsl
6524      [Alexander L Jones <alex@systems-options.co.uk>] PR#732
6525
6526   *) mod_autoindex now allows sorting of FancyIndexed directory listings
6527      by the various fields (name, size, et cetera), either in ascending
6528      or descending order.  Just click on the column header.  [Ken Coar]
6529
6530   *) PORT: Various tweaks to eliminate pointer-int casting warnings on 64-bit
6531      CPUs like the Alpha.  Apache still stores ints in pointers, but that's
6532      the relatively safe direction.  [Dean Gaudet] PR#344
6533
6534   *) PORT: QNX mmap() support for faster/more reliable scoreboard handling.
6535      [Igor N Kovalenko <infoh@mail.wplus.net>] PR#683
6536
6537   *) child_main avoids an unneeded call to select() when there is only one
6538      listening socket.  [Dean Gaudet]
6539
6540   *) In the event that the server is starved for idle servers it will
6541      spawn 1, then 2, then 4, ..., then 32 servers each second,
6542      doubling each second.  It'll also give a warning in the errorlog
6543      since the most common reason for this is a poor StartServers
6544      setting.  The define MAX_SPAWN_RATE can be used to raise/lower
6545      the maximum.  [Dean Gaudet]
6546
6547   *) Apache now provides an effectively unbuffered connection for
6548      CGI scripts.  This means that data will be sent to the client
6549      as soon as the CGI pauses or stops output; previously, Apache would
6550      buffer the output up to a fixed buffer size before sending, which
6551      could result in the user viewing an empty page until the CGI finished
6552      or output a complete buffer.  It is no longer necessary to use an
6553      "nph-" CGI to get unbuffered output.  Given that most CGIs are written
6554      in a language that by default does buffering (e.g. perl) this
6555      shouldn't have a detrimental effect on performance.
6556
6557      "nph-" CGIs, which formerly provided a direct socket to the client
6558      without any server post-processing, were not fully compatible with
6559      HTTP/1.1 or SSL support.  As such they would have had to implement
6560      the transport details, such as encryption or chunking, in order
6561      to work properly in certain situations.  Now, the only difference
6562      between nph and non-nph scripts is "non-parsed headers".
6563      [Dean Gaudet, Sameer Parekh, Roy Fielding]
6564
6565   *) If a BUFF is switched from buffered to unbuffered reading the first
6566      bread() will return whatever remained in the buffer prior to the
6567      switch. [Dean Gaudet]
6568
6569 Changes with Apache 1.3a1
6570
6571   *) Added another Configure helper script: TestLib. It determines
6572      if a specified library exists.  [Jim Jagielski]
6573
6574   *) PORT: Allow for use of n32bit libraries under IRIX 6.x
6575      [derived from patch from Jeff Hayes <jhayes@aw.sgi.com>]
6576      PR#721
6577
6578   *) PORT: Some architectures use size_t for various lengths in network
6579      functions such as accept(), and getsockname().  The definition
6580      NET_SIZE_T is used to control this. [Dean Gaudet]
6581
6582   *) PORT: Linux: Attempt to detect glibc based systems and include crypt.h
6583      and -lcrypt.  Test for various db libraries (dbm, ndbm, db) when
6584      mod_auth_dbm or mod_auth_db are included.  [Dean Gaudet]
6585
6586   *) PORT: QNX doesn't have initgroups() which support/suexec.c uses.
6587      [Igor N Kovalenko <infoh@mail.wplus.net>]
6588
6589   *) "force-response-1.0" now only applies to requests which are HTTP/1.0 to
6590      begin with.  "nokeepalive" now works for HTTP/1.1 clients.  Added
6591      "downgrade-1.0" which causes Apache to pretend it received a 1.0.
6592      [Dean Gaudet] related PR#875
6593
6594   *) API: Correct child_init() slot declaration from int to void, to
6595      match the init() declaration.  Update mod_example to use the new
6596      hook.  [Ken Coar]
6597
6598   *) added transport handle slot (t_handle) to the BUFF structure
6599      [Doug MacEachern]
6600
6601   *) get_client_block() returns wrong length if policy is
6602      REQUEST_CHUNKED_DECHUNK.
6603      [Kenichi Hori <ken@d2.bs1.fc.nec.co.jp>] PR#815
6604
6605   *) Support the image map format of FrontPage.  For example:
6606         rect /url.hrm 10 20 30 40
6607      ["Chris O'Byrne" <obyrne@iol.ie>] PR#807
6608
6609   *) PORT: -lresolv and -lsocks were in the wrong order for Solaris.
6610      ["Darren O'Shaughnessy" <darren@aaii.oz.au>] PR#846
6611
6612   *) AddModuleInfo directive for mod_info which allows you to annotate
6613      the output of mod_info.  ["Lou D. Langholtz" <ldl@usi.utah.edu>]
6614
6615   *) Added NoProxy directive to avoid using ProxyRemote for selected
6616      addresses.  Added ProxyDomain directive to cause unqualified
6617      names to be qualified by redirection.
6618      [Martin Kraemer <Martin.Kraemer@mch.sni.de>]
6619
6620   *) Support Proxy Authentication, and don't pass the Proxy-Authorize
6621      header to the remote host in the proxy. [Sameer Parekh and
6622      Wallace]
6623
6624   *) Upgraded mod_rewrite from 3.0.6+ to latest officially available version
6625      3.0.9. This upgrade includes: fixed deadlooping on rewriting to same
6626      URLs, fixed rewritelog(), fixed forced response code handling on
6627      redirects from within .htaccess files, disabled pipe locking under
6628      braindead SunOS 4.1.x, allow env variables to be set even on rules with
6629      no substitution, bugfixed situations where HostnameLookups is off, made
6630      mod_rewrite more thread-safe for NT port and fixed problem when creating
6631      an empty query string via "xxx?".
6632          This update also removes the copyright of Ralf S. Engelschall,
6633      i.e. now mod_rewrite no longer has a shared copyright. Instead is is
6634      exclusively copyrighted by the Apache Group now. This happened because
6635      the author now has gifted mod_rewrite exclusively to the Apache Group and 
6636      no longer maintains an external version.
6637      [Ralf S. Engelschall]
6638
6639   *) API: Added child_init function to module structure.  This is called
6640      once per "heavy-weight process" before any requests are handled.
6641      See http_config.h for more details.  [Dean Gaudet]
6642
6643   *) Anonymous_LogEmail was logging on each subrequest.
6644      [Dean Gaudet] PR#421, 868
6645
6646   *) API: Added is_initial_req() which tests if the request being
6647      processed is the initial request, or a subrequest.
6648      [Doug MacEachern]
6649
6650   *) Extended SSI (mod_include) now handles additional relops for
6651      string comparisons (<, >, <=, and >=).  [Bruno Wolff III] PR#41
6652
6653   *) Configure fixed to correctly propagate user-selected options and
6654      settings (such as CC and OPTIM) to Makefiles other than
6655      src/Makefile (notably support/Makefile).  [Ken Coar] PR#666, #834
6656
6657   *) IndexOptions SuppressHTMLPreamble now causes the actual HTML of
6658      directory indices to start with the contents of the HeaderName file
6659      if there is one.  If there isn't one, the behaviour is unchanged.
6660      [Ken Coar, Roy Fielding, Andrey A. Chernov]
6661
6662   *) WIN32: Modules can now be dynamically loaded DLLs using the
6663      LoadModule/LoadFile directives. Note that module DLLs must be
6664      compiled with the multithreaded DLL version of the runtime library.
6665      [Alexei Kosut and Ben Laurie]
6666
6667   *) Automatic indexing removed from mod_dir and placed into mod_autoindex.
6668      This allows the admin to completely remove automatic indexing
6669      from the server, while still supporting the basic functions of
6670      trailing-slash redirects and DirectoryIndex files.  Note that if
6671      you're carrying over an old Configuration file and you use directory
6672      indexing then you'll want to add:
6673
6674      Module autoindex_module    mod_autoindex.o
6675
6676      before mod_dir in your Configuration.  [Dean Gaudet]
6677
6678   *) popendir/pclosedir created to properly protect directory scanning.
6679      [Dean Gaudet] PR#525
6680
6681   *) AliasMatch, ScriptAliasMatch and RedirectMatch directives added,
6682      giving regex support to mod_alias. <DirectoryMatch>, <LocationMatch>
6683      and <FilesMatch> sections added to succeed <DirectoryMatch ~>, etc...
6684      [Alexei Kosut]
6685
6686   *) The AccessFileName directive can now take more than one filename.
6687      ["Lou D. Langholtz" <ldl@usi.utah.edu>]
6688
6689   *) The new mod_mime_magic can be used to "magically" determine the type
6690      of a file if the extension is unknown.  Based on the unix file(1)
6691      command.  [Ian Kluft <ikluft@cisco.com>]
6692
6693   *) We now determine and display the time spent processing a
6694      request if desired.  [Jim Jagielski]
6695
6696   *) mod_status: PID field of "dead" child slots no longer displays
6697      main httpd process's PID.  [Jim Jagielski]
6698
6699   *) Makefile.nt added - to build all the bits from the command line:
6700         nmake -f Makefile.nt
6701          Doesn't yet work properly. [Ben Laurie]
6702
6703   *) Default text of 404 error is now "Not Found" rather than the
6704      potentially misleading "File Not Found".  [Ken Coar]
6705
6706   *) CONFIG: "HostnameLookups" now defaults to off because it is far better
6707      for the net if we require people that actually need this data to
6708      enable it.  [Linus Torvalds]
6709
6710   *) directory_walk() is an expensive function, keep a little more state to
6711      avoid needless string counting.  Add two new functions make_dirstr_parent
6712      and make_dirstr_prefix which replace all existing uses of make_dirstr.
6713      The new functions are a little less general than make_dirstr, but
6714      work more efficiently (less memory, less string counting).
6715      [Dean Gaudet]
6716
6717   *) EXTRA_LFLAGS was changed to EXTRA_LDFLAGS (and LFLAGS was changed
6718      to LDFLAGS) to avoid complications with lex rules in make files.
6719      [Dean Gaudet] PR#372
6720
6721   *) run_method optimized to avoid needless scanning over NULLs in the
6722      module list.  [Dean Gaudet]
6723
6724   *) Revamp of (unix) scoreboard management code such that it avoids
6725      unnecessary traversals of the scoreboard on each hit.  This is
6726      particularly important for high volume sites with a large
6727      HARD_SERVER_LIMIT.  Some of the previous operations were O(n^2),
6728      and are now O(n).  See also SCOREBOARD_MAINTENANCE_INTERVAL in
6729      httpd.h. [Dean Gaudet]
6730
6731   *) In configurations using multiple Listen statements it was possible for
6732      busy sockets to starve other sockets of service.  [Dean Gaudet]
6733
6734   *) Added hook so standalone_main can be replaced at compile time
6735      (define STANDALONE_MAIN)
6736      [Doug MacEachern]
6737
6738   *) Lowest-level read/write functions in buff.c will be replaced with
6739      the SFIO library calls sfread/sfwrite if B_SFIO is defined at
6740      compile time.  The default sfio discipline will behave as apache
6741      would without sfio compiled in.
6742      [Doug MacEachern]
6743
6744   *) Enhance UserDir directive (mod_userdir) to accept a list of
6745      usernames for the 'disable' keyword, and add 'enable user...' to
6746      selectively *en*able userdirs if they're globally disabled.
6747      [Ken Coar]
6748
6749   *) If NETSCAPE_DBM_COMPAT is defined in EXTRA_CFLAGS then Apache
6750      will work with Netscape dbm files.  (dbmmanage will probably not
6751      work however.) [Alexander Spohr <aspohr@netmatic.com>] PR#444
6752
6753   *) Add a ListenBacklog directive to control the backlog parameter
6754      passed to listen().  Also change the default to 511 from 512.
6755      [Marc Slemko]
6756
6757   *) API: A new handler response DONE which informs apache that the
6758      request has been handled and it can finish off quickly, similar to
6759      how it handles errors. [Rob Hartill]
6760
6761   *) Turn off chunked encoding after sending terminating chunk/footer
6762      so that we can't do it twice by accident. [Roy Fielding]
6763
6764   *) mod_expire also issues Cache-Control: max-age headers.
6765      [Rob Hartill]
6766
6767   *) API: Added kill_only_once option for free_proc_chain so that it won't
6768      aggressively try to kill off specific children.  For fastcgi.
6769      [Stanley Gambarin <gambarin@OpenMarket.com>]
6770
6771   *) mod_auth deals with extra ':' delimited fields.  [Marc Slemko]
6772
6773   *) Added IconHeight and IconWidth to mod_dir's IndexOptions directive.
6774      When used together, these cause mod_dir to emit HEIGHT and WIDTH
6775      attributes in the FancyIndexing IMG tags.  [Ken Coar]
6776
6777   *) PORT: Sequent and SONY NEWS-OS support added.  [Jim Jagielski]
6778
6779   *) PORT: Added Windows NT support
6780      [Ben Laurie and Ambarish Malpani <ambarish@valicert.com>]
6781
6782 Changes with Apache 1.2.6
6783
6784   *) mod_include when using XBitHack Full would send ETags in addition to
6785      sending Last-Modifieds.  This is incorrect HTTP/1.1 behaviour.
6786      [Dean Gaudet] PR#1133
6787
6788   *) SECURITY: When a client connects to a particular port/addr, and
6789      gives a Host: header ensure that the virtual host requested can
6790      actually be reached via that port/addr.  [Ed Korthof <ed@organic.com>]
6791
6792   *) Support virtual hosts with wildcard port and/or multiple ports
6793      properly.  [Ed Korthof <ed@organic.com>]
6794
6795   *) Fixed some case-sensitivity issues according to RFC2068.
6796      [Dean Gaudet]
6797
6798   *) Set r->allowed properly in mod_asis.c, mod_dir.c, mod_info.c,
6799      and mod_include.c.  [Dean Gaudet]
6800
6801   *) Variable 'cwd' was being used pointlessly before being set.
6802      [Ken Coar] PR#1738
6803
6804   *) SIGURG doesn't exist on all platforms.
6805      [Mark Andrew Heinrich <heinrich@tinderbox.Stanford.EDU>]
6806
6807   *) When an error occurs during a POST, or other operation with a
6808      request body, the body has to be read from the net before allowing
6809      a keepalive session to continue.  [Roy Fielding] PR#1399
6810
6811   *) When an error occurs in fcntl() locking suggest the user look up
6812      the docs for LockFile.  [Dean Gaudet]
6813
6814   *) table_set() and table_unset() did not deal correctly with
6815      multiple occurrences of the same key. [Stephen Scheck
6816      <sscheck@infonex.net>, Ben Laurie] PR#1604
6817
6818   *) send_fd_length() did not calculate total_bytes_sent properly in error
6819      cases.  [Ben Reser <breser@regnow.com>] PR#1366
6820
6821   *) r->connection->user was allocated in the wrong pool causing corruption
6822      in some cases when used with mod_cern_meta.  [Dean Gaudet] PR#1500
6823
6824   *) mod_proxy was sending HTTP/1.1 responses to ftp requests by mistake.
6825      Also removed the auto-generated link to www.apache.org that was the
6826      source of so many misdirected bug reports.  [Roy Fielding, Marc Slemko]
6827
6828   *) Multiple "close" tokens may have been set in the "Connection"
6829      header, not an error, but a waste.
6830      [Ronald.Tschalaer@psi.ch] PR#1683
6831
6832   *) "basic" and "digest" auth tokens should be tested case-insensitive.
6833      [Ronald.Tschalaer@psi.ch] PR#1599, PR#1666
6834
6835   *) It appears the "257th byte" bug (see
6836      htdocs/manual/misc/known_client_problems.html#257th-byte) can happen
6837      at the 256th byte as well.  Fixed.  [Dean Gaudet]
6838
6839   *) mod_rewrite would not handle %3f properly in some situations.
6840      [Ralf Engelschall]
6841
6842   *) Apache could generate improperly chunked HTTP/1.1 responses when
6843      the bputc() or rputc() functions were used by modules (such as
6844      mod_include).  [Dean Gaudet]
6845
6846   *) #ifdef wrap a few #defines in httpd.h to make life easier on
6847      some ports.  [Ralf Engelschall]
6848
6849   *) Fix MPE compilation error in mod_usertrack.c.  [Mark Bixby]
6850
6851   *) Quote CC='$(CC)' to improve recurse make calls.  [Martin Kraemer]
6852
6853   *) Avoid B_ERROR redeclaration on sysvr4 systems.  [Martin Kraemer]
6854
6855 Changes with Apache 1.2.5
6856
6857   *) SECURITY: Fix a possible buffer overflow in logresolve.  This is
6858      only an issue on systems without a MAXDNAME define or where 
6859      the resolver returns domain names longer than MAXDNAME.  [Marc Slemko]
6860
6861   *) Fix an improper length in an ap_snprintf call in proxy_date_canon().
6862      [Marc Slemko]
6863
6864   *) Fix core dump in the ftp proxy when reading incorrectly formatted
6865      directory listings.  [Marc Slemko]
6866
6867   *) SECURITY: Fix possible minor buffer overflow in the proxy cache.
6868      [Marc Slemko]
6869
6870   *) SECURITY: Eliminate possible buffer overflow in cfg_getline, which
6871      is used to read various types of files such as htaccess and 
6872      htpasswd files.  [Marc Slemko]
6873
6874   *) SECURITY: Ensure that the buffer returned by ht_time is always
6875      properly null terminated.  [Marc Slemko]
6876
6877   *) SECURITY: General mod_include cleanup, including fixing several
6878      possible buffer overflows and a possible infinite loop.  This cleanup
6879      was done against 1.3 code and then backported to 1.2, the result
6880      is a large difference (due to indentation cleanup in 1.3 code).
6881      Users interested in seeing a smaller set of relevant differences
6882      should consider comparing against src/modules/standard/mod_include.c
6883      from the 1.3b3 release.  Non-indentation changes to mod_include
6884      between 1.2 and 1.3 were minimal.  [Dean Gaudet, Marc Slemko]
6885
6886   *) SECURITY: Numerous changes to mod_imap in a general cleanup
6887      including fixing a possible buffer overflow.  This cleanup also
6888      was done with 1.3 code as a basis, see the the previous note
6889      about mod_include.  [Dean Gaudet]
6890
6891   *) SECURITY: If a htaccess file can not be read due to bad 
6892      permissions, deny access to the directory with a HTTP_FORBIDDEN.  
6893      The previous behavior was to ignore the htaccess file if it could not
6894      be read.  This change may make some setups with unreadable
6895      htaccess files stop working.  PR#817  [Marc Slemko]
6896
6897   *) SECURITY: no2slash() was O(n^2) in the length of the input.  
6898      Make it O(n).  This inefficiency could be used to mount a denial 
6899      of service attack against the Apache server.  Thanks to 
6900      Michal Zalewski <lcamtuf@boss.staszic.waw.pl> for reporting
6901      this.  [Dean Gaudet]
6902
6903   *) mod_include used uninitialized data for some uses of && and ||.
6904      [Brian Slesinsky <bslesins@wired.com>] PR#1139
6905
6906   *) mod_imap should decline all non-GET methods.
6907      [Jay Bloodworth <jay@pathways.sde.state.sc.us>]
6908
6909   *) suexec.c wouldn't build without -DLOG_EXEC. [Jason A. Dour]
6910
6911   *) mod_userdir was modifying r->finfo in cases where it wasn't setting
6912      r->filename.  Since those two are meant to be in sync with each other
6913      this is a bug.  ["Paul B. Henson" <henson@intranet.csupomona.edu>]
6914
6915   *) mod_include did not properly handle all possible redirects from sub-
6916      requests.  [Ken Coar]
6917
6918   *) Inetd mode (which is buggy) uses timeouts without having setup the
6919      jmpbuffer. [Dean Gaudet] PR#1064
6920
6921   *) Work around problem under Linux where a child will start looping
6922      reporting a select error over and over.
6923      [Rick Franchuk <rickf@transpect.net>] PR#1107
6924
6925 Changes with Apache 1.2.4
6926
6927   *) The ProxyRemote change in 1.2.3 introduced a bug resulting in the proxy
6928      always making requests with the full-URI instead of just the URI path.
6929      [Marc Slemko, Roy Fielding]
6930
6931   *) Add -lm for AIX versions >= 4.2 to allow Apache to link properly
6932      on this platform.  [Marc Slemko]
6933
6934 Changes with Apache 1.2.3
6935
6936   *) The request to a remote proxy was mangled if it was generated as the
6937      result of a ProxyPass directive. URL schemes other than http:// were not
6938      supported when ProxyRemote was used. PR#260, PR#656, PR#699, PR#713,
6939      PR#812 [Lars Eilebrecht]
6940
6941   *) Fixed proxy-pass-through feature of mod_rewrite; Added error logging
6942      information for case where proxy module is not available. [Marc Slemko]
6943
6944   *) Force proxy to always respond as HTTP/1.0, which it was failing to
6945      do for errors and cached responses.  [Roy Fielding]
6946
6947   *) PORT: Improved support for ConvexOS 11.  [Jeff Venters]
6948
6949 Changes with Apache 1.2.2 [not released]
6950
6951   *) Fixed another long-standing bug in sub_req_lookup_file where it would
6952      happily skip past access checks on subdirectories looked up with relative
6953      paths.  (It's used by mod_dir, mod_negotiation, and mod_include.)
6954      [Dean Gaudet]
6955
6956   *) Add lockfile name to error message printed out when
6957      USE_FLOCK_SERIALIZED_ACCEPT is defined.
6958      [Marc Slemko]
6959
6960   *) Enhanced the chunking and error handling inside the buffer functions.
6961      [Dean Gaudet, Roy Fielding]
6962
6963   *) When merging the main server's <Directory> and <Location> sections into
6964      a vhost, put the main server's first and the vhost's second.  Otherwise
6965      the vhost can't override the main server.  [Dean Gaudet] PR#717
6966
6967   *) The <Directory> code would merge and re-merge the same section after
6968      a match was found, possibly causing problems with some modules.
6969      [Dean Gaudet]
6970
6971   *) Fixed an infinite loop in mod_imap for references above the server root.
6972      [Dean Gaudet] PR#748
6973
6974   *) mod_include cleanup showed that handle_else was being used to handle
6975      endif.  It didn't cause problems, but it was cleaned up too.
6976      [Howard Fear]
6977
6978   *) Last official synchronization of mod_rewrite with author version (because
6979      mod_rewrite is now directly developed by the author at the Apache Group):
6980      o added diff between mod_rewrite 3.0.6+ and 3.0.9
6981        minus WIN32/NT stuff, but plus copyright removement.
6982        In detail:
6983        - workaround for detecting infinite rewriting loops
6984        - fixed setting of env vars when "-" is used as subst string
6985        - fixed forced response code on redirects (PR#777)
6986        - fixed cases where r->args is ""
6987        - kludge to disable locking on pipes under braindead SunOS
6988        - fix for rewritelog in cases where remote hostname is unknown
6989        - fixed totally damaged request_rec walk-back loop
6990      o remove static from local data and add static to global ones.
6991      o replaced ugly proxy finding stuff by simple
6992        find_linked_module("mod_proxy") call.
6993      o added missing negation char on rewritelog()
6994      o fixed a few comment typos
6995      [Ralf S. Engelschall]
6996
6997   *) Anonymous_LogEmail was logging on each subrequest.
6998      [Dean Gaudet] PR#421, PR#868
6999
7000   *) "force-response-1.0" now only applies to requests which are HTTP/1.0 to
7001      begin with.  "nokeepalive" now works for HTTP/1.1 clients.  Added
7002      "downgrade-1.0" which causes Apache to pretend it received a 1.0.
7003      Additionally mod_browser now triggers during translate_name to workaround
7004      a deficiency in the header_parse phase.
7005      [Dean Gaudet] PR#875
7006
7007   *) get_client_block() returns wrong length if policy is 
7008      REQUEST_CHUNKED_DECHUNK.
7009      [Kenichi Hori <ken@d2.bs1.fc.nec.co.jp>] PR#815
7010
7011   *) Properly treat <files> container like other containers in mod_info.
7012      [Marc Slemko] PR#848
7013
7014   *) The proxy didn't treat the "Host:" keyword of the host header as case-
7015      insensitive.  The proxy would corrupt the first line of a response from
7016      an HTTP/0.9 server.  [Kenichi Hori <ken@d2.bs1.fc.nec.co.jp>] PR#813,814
7017
7018   *) mod_include would log some bogus values occasionally.
7019      [Skip Montanaro <skip@calendar.com>, Marc Slemko] PR#797
7020
7021   *) PORT: The slack fd changes in 1.2.1 introduced a problem with SIGHUP
7022      under Solaris 2.x (up through 2.5.1).  It has been fixed.
7023      [Dean Gaudet] PR#832
7024
7025   *) API: In HTTP/1.1, whether or not a request message contains a body
7026      is independent of the request method and based solely on the presence
7027      of a Content-Length or Transfer-Encoding.  Therefore, our default
7028      handlers need to be prepared to read a body even if they don't know
7029      what to do with it; otherwise, the body would be mistaken for the
7030      next request on a persistent connection.  discard_request_body()
7031      has been added to take care of that.  [Roy Fielding] PR#378
7032
7033   *) API: Symbol APACHE_RELEASE provides a numeric form of the Apache
7034      release version number, such that it always increases along the
7035      same lines as our source code branching.  [Roy Fielding]
7036
7037   *) Minor oversight on multiple variants fixed.  [Paul Sutton] PR#94
7038
7039 Changes with Apache 1.2.1
7040
7041   *) SECURITY: Don't serve file system objects unless they are plain files,
7042      symlinks, or directories.  This prevents local users from using pipes
7043      or named sockets to invoke programs for an extremely crude form of
7044      CGI.  [Dean Gaudet]
7045
7046   *) SECURITY: HeaderName and ReadmeName were settable in .htaccess and
7047      could contain "../" allowing a local user to "publish" any file on
7048      the system.  No slashes are allowed now.  [Dean Gaudet]
7049
7050   *) SECURITY: It was possible to violate the symlink Options using mod_dir
7051      (headers, readmes, titles), mod_negotiation (type maps), or
7052      mod_cern_meta (meta files).  [Dean Gaudet]
7053
7054   *) SECURITY: Apache will refuse to run as "User root" unless
7055      BIG_SECURITY_HOLE is defined at compile time.  [Dean Gaudet]
7056
7057   *) CONFIG: If a symlink pointed to a directory then it would be disallowed
7058      if it contained a .htaccess disallowing symlinks.  This is contrary
7059      to the rule that symlink permissions are tested with the symlink
7060      options of the parent directory.  [Dean Gaudet] PR#353
7061
7062   *) CONFIG: The LockFile directive can be used to place the serializing
7063      lockfile in any location.  It previously defaulted to /usr/tmp/htlock.
7064      [Somehow it took four of us: Randy Terbush, Jim Jagielski, Dean Gaudet,
7065      Marc Slemko]
7066
7067   *) Request processing now retains state of whether or not the request
7068      body has been read, so that internal redirects and subrequests will
7069      not try to read it twice (and block). [Roy Fielding]
7070
7071   *) Add a placeholder in modules/Makefile to avoid errors with certain
7072      makes. [Marc Slemko]
7073
7074   *) QUERY_STRING was unescaped in mod_include, it shouldn't be.
7075      [Dean Gaudet] PR#644
7076
7077   *) mod_include was not properly changing the current directory.
7078      [Marc Slemko] PR#742
7079
7080   *) Attempt to work around problems with third party libraries that do not
7081      handle high numbered descriptors (examples include bind, and
7082      solaris libc).  On all systems apache attempts to keep all permanent
7083      descriptors above 15 (called the low slack line).  Solaris users
7084      can also benefit from adding -DHIGH_SLACK_LINE=256 to EXTRA_CFLAGS
7085      which keeps all non-FILE * descriptors above 255.  On all systems
7086      this should make supporting large numbers of vhosts with many open
7087      log files more feasible.  If this causes trouble please report it,
7088      you can disable this workaround by adding -DNO_SLACK to EXTRA_CFLAGS.
7089      [Dean Gaudet] various PRs
7090
7091   *) Related to the last entry, network sockets are now opened before
7092      log files are opened.  The only known case where this can cause
7093      problems is under Solaris with many virtualhosts and many Listen
7094      directives.  But using -DHIGH_SLACK_LINE=256 described above will
7095      work around this problem.  [Dean Gaudet]
7096
7097   *) USE_FLOCK_SERIALIZED_ACCEPT is now default for FreeBSD, A/UX, and
7098      SunOS 4.
7099
7100   *) Improved unix error response logging.  [Marc Slemko]
7101
7102   *) Update mod_rewrite from 3.0.5 to 3.0.6.  New ruleflag
7103      QSA=query_string_append.  Also fixed a nasty bug in per-dir context:
7104      when a URL http://... was used in conjunction with a special
7105      redirect flag, e.g. R=permanent, the permanent status was lost.
7106      [Ronald Tschalaer <Ronald.Tschalaer@psi.ch>, Ralf S. Engelschall]
7107
7108   *) If an object has multiple variants that are otherwise equal Apache
7109      would prefer the last listed variant rather than the first.
7110      [Paul Sutton] PR#94
7111
7112   *) "make clean" at the top level now removes *.o.  [Dean Gaudet] PR#752
7113
7114   *) mod_status dumps core in inetd mode.  [Marc Slemko and Roy Fielding]
7115      PR#566
7116
7117   *) pregsub had an off-by-1 in its error checking code. [Alexei Kosut]
7118
7119   *) PORT: fix rlim_t problems with AIX 4.2. [Marc Slemko] PR#333
7120
7121   *) PORT: Update UnixWare support for 2.1.2.
7122      [Lawrence Rosenman <ler@lerctr.org>] PR#511
7123
7124   *) PORT: NonStop-UX [Joachim Schmitz <schmitz_joachim@tandem.com>] PR#327
7125
7126   *) PORT: Update ConvexOS support for 11.5.
7127      [David DeSimone <fox@convex.com>] PR#399
7128
7129   *) PORT: Support for DEC cc compiler under ULTRIX.
7130      ["P. Alejandro Lopez-Valencia" <alejolo@ideam.gov.co>] PR#388
7131
7132   *) PORT: Support for Maxion/OS SVR4.2 Real Time Unix. [no name given] PR#383
7133
7134   *) PORT: Workaround for AIX 3.x compiler bug in http_bprintf.c.  
7135      [Marc Slemko] PR#725
7136
7137   *) PORT: fix problem compiling http_bprintf.c with gcc under SCO
7138      [Marc Slemko] PR#695
7139
7140 Changes with Apache 1.2
7141
7142 Changes with Apache 1.2b11
7143
7144   *) Fixed open timestamp fd in proxy_cache.c [Chuck Murcko]
7145
7146   *) Added undocumented perl SSI mechanism for -DUSE_PERL_SSI and mod_perl.
7147      [Doug MacEachern, Rob Hartill]
7148
7149   *) Proxy needs to use hard_timeout instead of soft_timeout when it is
7150      reading from one buffer and writing to another, at least until it has
7151      a custom timeout handler.  [Roy Fielding and Petr Lampa]
7152
7153   *) Fixed problem on IRIX with servers hanging in IdentityCheck,
7154      apparently due to a mismatch between sigaction and setjmp.
7155      [Roy Fielding] PR#502
7156
7157   *) Log correct status code if we timeout before receiving a request (408)
7158      or if we received a request-line that was too long to process (414).
7159      [Ed Korthof and Roy Fielding] PR#601
7160
7161   *) Virtual hosts with the same ServerName, but on different ports, were
7162      not being selected properly.  [Ed Korthof]
7163
7164   *) Added code to return the requested IP address from proxy_host2addr()
7165      if gethostbyaddr() fails due to reverse DNS lookup problems. Original
7166      change submitted by Jozsef Hollosi <hollosi@sbcm.com>.
7167      [Chuck Murcko] PR#614
7168
7169   *) If multiple requests on a single connection are used to retrieve
7170      data from different virtual hosts, the virtual host list would be
7171      scanned starting with the most recently used VH instead of the first,
7172      causing most virtual hosts to be ignored.
7173      [Paul Sutton and Martin Mares] PR#610
7174
7175   *) The OS/2 handling of process group was broken by a porting patch for
7176      MPE, so restored prior code for OS/2.  [Roy Fielding and Garey Smiley]
7177
7178   *) Inherit virtual server port from main server if none (or "*") is
7179      given for VirtualHost.  [Dean Gaudet] PR#576
7180
7181   *) If the lookup for a DirectoryIndex name with content negotiation
7182      has found matching variants, but none are acceptable, return the
7183      negotiation result if there are no more DirectoryIndex names to lookup.
7184      [Petr Lampa and Roy Fielding]
7185
7186   *) If a soft_timeout occurs after keepalive is set, then the main child
7187      loop would try to read another request even though the connection
7188      has been aborted.  [Roy Fielding]
7189
7190   *) Configure changes: Allow for whitespace at the start of a
7191      Module declaration. Also, be more understanding about the
7192      CC=/OPTIM= format in Configuration. Finally, fix compiler
7193      flags if using HP-UX's cc compiler. [Jim Jagielski]
7194
7195   *) Subrequests and internal redirects now inherit the_request from the
7196      original request-line. [Roy Fielding]
7197
7198   *) Test for error conditions before creating output header fields, since
7199      we don't want the error message to include those fields.  Likewise,
7200      reset the content_language(s) and content_encoding of the response
7201      before generating or redirecting to an error message, since the new
7202      message will have its own Content-* definitions. [Dean Gaudet]
7203
7204   *) Restored the semantics of headers_out (headers sent only with 200..299
7205      and 304 responses) and err_headers_out (headers sent with all responses).
7206      Avoid the overhead of copying tables if err_headers_out is empty
7207      (the usual case).  [Roy Fielding]
7208
7209   *) Fixed a couple places where a check for the default Content-Type was
7210      not properly checking both the value configured by the DefaultType
7211      directive and the DEFAULT_TYPE symbol in httpd.h.  Changed the value
7212      of DEFAULT_TYPE to match the documented default (text/plain).
7213      [Dean Gaudet] PR#506
7214
7215   *) Escape the HTML-sensitive characters in the Request-URI that is
7216      output for each child by mod_status. [Dean Gaudet and Ken Coar] PR#501
7217
7218   *) Properly initialize the flock structures used by the mutex locking
7219      around accept() when USE_FCNTL_SERIALIZED_ACCEPT is defined.
7220      [Marc Slemko]
7221
7222   *) The method for determining PATH_INFO has been restored to the pre-1.2b
7223      (and NCSA httpd) definition wherein it was the extra path info beyond
7224      the CGI script filename.  The environment variable FILEPATH_INFO has
7225      been removed, and instead we supply the original REQUEST_URI to any
7226      script that wants to be Apache-specific and needs the real URI path.
7227      This solves a problem with existing scripts that use extra path info
7228      in the ScriptAlias directive to pass options to the CGI script.
7229      [Roy Fielding]
7230
7231   *) The _default_ change in 1.2b10 will change the behaviour on configs
7232      that use multiple Listen statements for listening on multiple ports.
7233      But that change is necessary to make _default_ consistent with other
7234      forms of <VirtualHost>.  It requires such configs to be modified
7235      to use <VirtualHost _default_:*>.  The documentation has been
7236      updated.  [Dean Gaudet] PR#530
7237
7238   *) If an ErrorDocument CGI script is used to respond to an error
7239      generated by another CGI script which has already read the message
7240      body of the request, the server would block trying to read the
7241      message body again.  [Rob Hartill]
7242
7243   *) signal() replacement conflicted with a define on QNX (and potentially
7244      other platforms). Fixed. [Ben Laurie] PR#512
7245
7246 Changes with Apache 1.2b10
7247
7248   *) Allow HTTPD_ROOT, SERVER_CONFIG_FILE, DEFAULT_PATH, and SHELL_PATH
7249      to be configured via -D in Configuration.  [Dean Gaudet] PR#449
7250
7251   *) <VirtualHost _default_:portnum> didn't work properly.  [Dean Gaudet]
7252
7253   *) Added prototype for mktemp() for SUNOS4 [Marc Slemko]
7254
7255   *) In mod_proxy.c, check return values for proxy_host2addr() when reading
7256      config, in case the hostent struct returned is trash.
7257      [Chuck Murcko] PR #491
7258
7259   *) Fixed the fix in 1.2b9 for parsing URL query info into args for CGI
7260      scripts.  [Dean Gaudet, Roy Fielding, Marc Slemko]
7261
7262 Changes with Apache 1.2b9  [never announced]
7263
7264   *) Reset the MODULE_MAGIC_NUMBER to account for the unsigned port
7265      changes and in anticipation of 1.2 final release.  [Roy Fielding]
7266
7267   *) Fix problem with scripts not receiving a SIGPIPE when client drops
7268      the connection (e.g., when user presses Stop).  Apache will now stop
7269      trying to send a message body immediately after an error from write.
7270      [Roy Fielding and Nathan Kurz] PR#335
7271
7272   *) Rearrange Configuration.tmpl so that mod_rewrite has higher priority
7273      than mod_alias, and mod_alias has higher priority than mod_proxy;
7274      rearranged other modules to enhance understanding of their purpose
7275      and relative order (and maybe even reduce some overhead).
7276      [Roy Fielding and Sameer Parekh]
7277
7278   *) Fix graceful restart.  Eliminate many signal-related race
7279      conditions in both forms of restart, and in SIGTERM.  See
7280      htdocs/manual/stopping.html for details on stopping and
7281      restarting the parent.  [Dean Gaudet]
7282
7283   *) Fix memory leaks in mod_rewrite, mod_browser, mod_include.  Tune
7284      memory allocator to avoid a behaviour that required extra blocks to
7285      be allocated.  [Dean Gaudet]
7286
7287   *) Allow suexec to access files relative to current directory but not
7288      above.  (Excluding leading / or any .. directory.)  [Ken Coar]
7289      PR#269, 319, 395
7290
7291   *) Fix suexec segfault when group doesn't exist. [Gregory Neil Shapiro]
7292      PR#367, 368, 354, 453
7293
7294   *) Fix the above fix: if suexec is enabled, avoid destroying r->url
7295      while obtaining the /~user and save the username in a separate data
7296      area so that it won't be overwritten by the call to getgrgid(), and
7297      fix some misuse of the pool string allocation functions.  Also fixes
7298      a general problem with parsing URL query info into args for CGI scripts.
7299      [Roy Fielding] PR#339, 367, 354, 453
7300
7301   *) Fix IRIX warning about bzero undefined. [Marc Slemko]
7302
7303   *) Fix problem with <Directory proxy:...>. [Martin Kraemer] PR#271
7304
7305   *) Corrected spelling of "authoritative".  AuthDBAuthoratative became
7306      AuthDBAuthoritative. [Marc Slemko] PR#420
7307
7308   *) MaxClients should be at least 1. [Lars Eilebrecht] PR#375
7309
7310   *) The default handler now logs invalid methods or URIs (i.e. PUT on an
7311      object that can't be PUT, or FOOBAR for some method FOOBAR that
7312      apache doesn't know about at all).  Log 404s that occur in mod_include.
7313      [Paul Sutton, John Van Essen]
7314
7315   *) If a soft timeout (or lingerout) occurs while trying to flush a
7316      buffer or write inside buff.c or fread'ing from a CGI's output,
7317      then the timeout would be ignored. [Roy Fielding] PR#373
7318
7319   *) Work around a bug in Netscape Navigator versions 2.x, 3.x and 4.0b2's
7320      parsing of headers.  If the terminating empty-line CRLF occurs starting
7321      at the 256th or 257th byte of output, then Navigator will think a normal
7322      image is invalid.  We are guessing that this is because their initial
7323      read of a new request uses a 256 byte buffer. We check the bytes written
7324      so far and, if we are about to tickle the bug, we instead insert a
7325      padding header of eminent bogosity. [Roy Fielding and Dean Gaudet] PR#232
7326
7327   *) Fixed SIGSEGV problem when a DirectoryIndex file is also the source
7328      of an external redirection.  [Roy Fielding and Paul Sutton]
7329
7330   *) Configure would create a broken Makefile if the configuration file
7331      contained a commented-out Rule.  [Roy Fielding]
7332
7333   *) Promote per_dir_config and subprocess_env from the subrequest to the
7334      main request in mod_negotiation.  In particular this fixes a bug
7335      where <Files> sections wouldn't properly apply to negotiated content.
7336      [Dean Gaudet]
7337
7338   *) Fix a potential deadlock in mod_cgi script_err handling.
7339      [Ralf S. Engelschall]
7340
7341   *) rotatelogs zero-pads the logfile names to improve alphabetic sorting.
7342      [Mitchell Blank Jr]
7343
7344   *) Updated mod_rewrite to 3.0.4: Fixes HTTP redirects from within
7345      .htaccess files because the RewriteBase was not replaced correctly.
7346      Updated mod_rewrite to 3.0.5: Fixes problem with rewriting inside
7347      <Directory> sections missing a trailing /.  [Ralf S. Engelschall]
7348
7349   *) Clean up Linux settings in conf.h by detecting 2.x versus 1.x.  For
7350      1.x the settings are those of pre-1.2b8.  For 2.x we include
7351      USE_SHMGET_SCOREBOARD (scoreboard in shared memory rather than file) and
7352      HAVE_SYS_RESOURCE_H (enable the RLimit commands).
7353      [Dean Gaudet] PR#336, PR#340
7354
7355   *) Redirect did not preserve ?query_strings when present in the client's
7356      request.  [Dean Gaudet]
7357
7358   *) Configure was finding non-modules on EXTRA_LIBS. [Frank Cringle] PR#380
7359
7360   *) Use /bin/sh5 on ULTRIX.  [P. Alejandro Lopez-Valencia] PR#369
7361
7362   *) Add UnixWare compile/install instructions.  [Chuck Murcko]
7363
7364   *) Add mod_example (illustration of API techniques).  [Ken Coar]
7365
7366   *) Add macro for memmove to conf.h for SUNOS4. [Marc Slemko]
7367
7368   *) Improve handling of directories when filenames have spaces in them.
7369      [Chuck Murcko]
7370
7371   *) For hosts with multiple IP addresses, try all additional addresses if
7372      necessary to get a connect. Fail only if hostent address list is
7373      exhausted. [Chuck Murcko]
7374
7375   *) More signed/unsigned port fixes.  [Dean Gaudet]
7376
7377   *) HARD_SERVER_LIMIT can be defined in the Configuration file now.
7378      [Dean Gaudet]
7379
7380 Changes with Apache 1.2b8
7381
7382   *) suexec.c doesn't close the log file, allowing CGIs to continue writing
7383      to it.  [Marc Slemko]
7384
7385   *) The addition of <Location> and <File> directives made the
7386      sub_req_lookup_simple() function bogus, so we now handle
7387      the special cases directly.  [Dean Gaudet]
7388
7389   *) We now try to log where the server is dumping core when a fatal
7390      signal is received.  [Ken Coar]
7391
7392   *) Improved lingering_close by adding a special timeout, removing the
7393      spurious log messages, removing the nonblocking settings (they
7394      are not needed with the better timeout), and adding commentary
7395      about the NO_LINGCLOSE and USE_SO_LINGER issues.  NO_LINGCLOSE is
7396      now the default for SunOS4, UnixWare, NeXT, and IRIX.  [Roy Fielding]
7397
7398   *) Send error messages about setsockopt failures to the server error
7399      log instead of stderr.  [Roy Fielding]
7400
7401   *) Fix loopholes in proxy cache expiry vis a vis alarms. [Brian Moore]
7402
7403   *) Stopgap solution for CGI 3-second delay with server-side includes: if
7404      processing a subrequest, allocate memory from r->main->pool instead
7405      of r->pool so that we can avoid waiting for free_proc_chain to cleanup
7406      in the middle of an SSI request.  [Dean Gaudet] PR #122
7407
7408   *) Fixed status of response when POST is received for a nonexistent URL
7409      (was sending 405, now 404) and when any method is sent with a
7410      full-URI that doesn't match the server and the server is not acting
7411      as a proxy (was sending 501, now 403).  [Roy Fielding]
7412
7413   *) Host port changed to unsigned short. [Ken Coar] PR #276
7414
7415   *) Fix typo in command definition of AuthAuthoritative. [Ken Coar] PR #246
7416
7417   *) Defined USE_SHMGET_SCOREBOARD for shared memory on Linux.  [Dean Gaudet]
7418
7419   *) Report extra info from errno with many errors that cause httpd to exit.
7420      spawn_child, popenf, and pclosef now have valid errno returns in the
7421      event of an error.  Correct problems where errno was stomped on
7422      before being reported.  [Dean Gaudet]
7423
7424   *) In the proxy, if the cache filesystem was full, garbage_coll() was
7425      never called, and thus the filesystem would remain full indefinitely.
7426      We now also remove incomplete cache files left if the origin server
7427      didn't send a Content-Length header and either the client has aborted
7428      transfer or bwrite() to client has failed. [Petr Lampa]
7429
7430   *) Fixed the handling of module and script-added header fields.
7431      Improved the interface for sending header fields and reduced
7432      the duplication of code between sending okay responses and errors.
7433      We now always send both headers_out and err_headers_out, and
7434      ensure that the server-reserved fields are not being overridden,
7435      while not overriding those that are not reserved.  [Roy Fielding]
7436
7437   *) Moved transparent content negotiation fields to err_headers_out
7438      to reflect above changes.  [Petr Lampa]
7439
7440   *) Fixed the determination of whether or not we should make the
7441      connection persistent for all of the cases where some other part
7442      of the server has already indicated that we should not.  Also
7443      improved the ordering of the test so that chunked encoding will
7444      be set whenever it is desired instead of only when KeepAlive
7445      is enabled. Added persistent connection capability for most error
7446      responses (those that do not indicate a bad input stream) when
7447      accessed by an HTTP/1.1 client. [Roy Fielding]
7448
7449   *) Added missing timeouts for sending header fields, error responses,
7450      and the last chunk of chunked encoding, each of which could have
7451      resulted in a process being stuck in write forever.  Using soft_timeout
7452      requires that the sender check for an aborted connection rather than
7453      continuing after an EINTR.  Timeouts that used to be initiated before
7454      send_http_header (and never killed) are now initiated only within or
7455      around the routines that actually do the sending, and not allowed to
7456      propagate above the caller.  [Roy Fielding]
7457
7458   *) mod_auth_anon required an @ or a . in the email address, not both.
7459      [Dirk vanGulik]
7460
7461   *) per_dir_defaults weren't set correctly until directory_walk for
7462      name-based vhosts.  This fixes an obscure bug with the wrong config
7463      info being used for vhosts that share the same ip as the server.
7464      [Dean Gaudet]
7465
7466   *) Improved generation of modules/Makefile to be more generic for
7467      new module directories. [Ken Coar, Chuck Murcko, Roy Fielding]
7468
7469   *) Generate makefile dependency for Configuration based on the actual
7470      name given when running the Configure process.  [Dean Gaudet]
7471
7472   *) Fixed problem with vhost error log not being set prior to
7473      initializing virtual hosts. [Dean Gaudet]
7474
7475   *) Fixed infinite loop when a trailing slash is included after a type map
7476      file URL (extra path info). [Petr Lampa]
7477
7478   *) Fixed server status updating of per-connection counters. [Roy Fielding]
7479
7480   *) Add documentation for DNS issues (reliability and security), and try
7481      to explain the virtual host matching process.  [Dean Gaudet]
7482
7483   *) Try to continue gracefully by disabling the vhost if a DNS lookup
7484      fails while parsing the configuration file.  [Dean Gaudet]
7485
7486   *) Improved calls to setsockopt.  [Roy Fielding]
7487
7488   *) Negotiation changes: Don't output empty content-type in variant list;
7489      Output charset in variant list; Return sooner from handle_multi() if
7490      no variants found; Add handling of '*' wildcard in Accept-Charset.
7491      [Petr Lampa and Paul Sutton]
7492
7493   *) Fixed overlaying of request/sub-request notes and headers in
7494      mod_negotiation.  [Dean Gaudet]
7495
7496   *) If two variants' charset quality are equal and one is the default
7497      charset (iso-8859-1), then prefer the variant that was specifically
7498      listed in Accept-Charset instead of the default.  [Petr Lampa]
7499
7500   *) Memory allocation problem in push_array() -- it would corrupt memory
7501      when nalloc==0.  [Kai Risku <krisku@tf.hut.fi> and Roy Fielding]
7502
7503   *) invoke_handler() doesn't handle mime arguments in content-type
7504      [Petr Lampa] PR#160
7505
7506   *) Reduced IdentityCheck timeout to 30 seconds, as per RFC 1413 minimum.
7507      [Ken Coar]
7508
7509   *) Fixed problem with ErrorDocument not working for virtual hosts
7510      due to one of the performance changes in 1.2b7. [Dean Gaudet]
7511
7512   *) Log an error message if we get a request header that is too long,
7513      since it may indicate a buffer overflow attack. [Marc Slemko]
7514
7515   *) Made is_url() allow "[-.+a-zA-Z0-9]+:" as a valid scheme and
7516      not reject URLs without a double-slash, as per RFC2068 section 3.2.
7517      [Ken Coar] PR #146, #187
7518
7519   *) Added table entry placeholder for new header_parser callback
7520      in all of the distributed modules. [Ken Coar] PR #191
7521
7522   *) Allow for cgi files without the .EXE extension on them under OS/2.
7523      [Garey Smiley] PR #59
7524
7525   *) Fixed error message when resource is not found and URL contains
7526      path info. [Petr Lampa and Dean Gaudet] PR #40
7527
7528   *) Fixed user and server confusion over what should be a virtual host
7529      and what is the main server, resulting in access to something
7530      other than the name defined in the virtualhost directive (but
7531      with the same IP address) failing. [Dean Gaudet]
7532
7533   *) Updated mod_rewrite to version 3.0.2, which: fixes compile error on
7534      AIX; improves the redirection stuff to enable the users to generally
7535      redirect to http, https, gopher and ftp; added TIME variable for
7536      RewriteCond which expands to YYYYMMDDHHMMSS strings and added the
7537      special patterns >STRING, <STRING and =STRING to RewriteCond, which
7538      can be used in conjunction with %{TIME} or other variables to create
7539      time-dependent rewriting rules. [Ralf S. Engelschall]
7540
7541   *) bpushfd() no longer notes cleanups for the file descriptors it is handed.
7542      Module authors may need to adjust their code for proper cleanup to take
7543      place (that is, call note_cleanups_for_fd()). This change fixes problems
7544      with file descriptors being erroneously closed when the proxy module was
7545      in use. [Ben Laurie]
7546
7547   *) Fix bug in suexec reintroduced by changes in 1.2b7 which allows
7548      initgroups() to hose the group information needed for later
7549      comparisons. [Randy Terbush]
7550
7551   *) Remove unnecessary call to va_end() in create_argv() which
7552      caused a SEGV on some systems.
7553
7554   *) Use proper MAXHOSTNAMELEN symbol for limiting length of server name.
7555      [Dean Gaudet]
7556
7557   *) Clear memory allocated for listeners. [Randy Terbush]
7558
7559   *) Improved handling of IP address as a virtualhost address and
7560      introduced "_default_" as a synonym for the default vhost config.
7561      [Dean Gaudet] PR #212
7562
7563 Changes with Apache 1.2b7
7564
7565   *) Port to  UXP/DS(V20) [Toshiaki Nomura <nom@yk.fujitsu.co.jp>]
7566
7567   *) unset Content-Length if chunked (RFC-2068) [Petr Lampa]
7568
7569   *) mod_negotiation fixes [Petr Lampa] PR#157, PR#158, PR#159
7570      - replace protocol response numbers with symbols
7571      - save variant-list into main request notes
7572      - free allocated memory from subrequests
7573      - merge notes, headers_out and err_headers_out
7574
7575   *) changed status check mask in proxy_http.c from "HTTP/#.# ### *" to
7576      "HTTP/#.# ###*" to be more lenient about what we accept.
7577      [Chuck Murcko]
7578
7579   *) more proxy FTP bug fixes:
7580      - Changed send_dir() to remove user/passwd from displayed URL.
7581      - Changed login error messages to be more descriptive.
7582      - remove setting of SO_DEBUG socket option
7583      - Make ftp_getrc() more lenient about multiline responses,
7584        specifically, 230 responses which don't have continuation 230-
7585        on each line). These seem to be all NT FTP servers, and while
7586        perhaps questionable, they appear to be legal by RFC 959.
7587      - Add missing kill_timeout() after transfer to user completes.
7588      [Chuck Murcko]
7589
7590   *) Fixed problem where a busy server could hang when restarting
7591      after being sent a SIGHUP due to child processes not exiting.
7592      [Marc Slemko]
7593
7594   *) Modify mod_include escaping so a '\' only signifies an escaped
7595      character if the next character is one that needs
7596      escaping.  [Ben Laurie]
7597
7598   *) Eliminated possible infinite loop in mod_imap when relative URLs are
7599      used with a 'base' directive that does not have a '/' in it.
7600      [Marc Slemko, reported by Onno Witvliet <onno@tc.hsa.nl>]
7601
7602   *) Reduced the default timeout from 1200 seconds to 300, and the
7603      one in the sample configfile from 400 to 300.  [Marc Slemko]
7604
7605   *) Stop vbprintf from crashing if given a NULL string pointer;
7606      print (null) instead.  [Ken Coar]
7607
7608   *) Don't disable Nagle algorithm if system doesn't have TCP_NODELAY.
7609      [Marc Slemko and Roy Fielding]
7610
7611   *) Fixed problem with mod_cgi-generated internal redirects trying to
7612      read the request message-body twice. [Archie Cobbs and Roy Fielding]
7613
7614   *) Reduced timeout on lingering close, removed possibility of a blocked
7615      read causing the child to hang, and stopped logging of errors if
7616      the socket is not connected (reset by client).  [Roy Fielding]
7617
7618   *) Rearranged main child loop to remove duplication of code in
7619      select/accept and keep-alive requests, fixed several bugs regarding
7620      checking scoreboard_image for exit indication and failure to
7621      account for all success conditions and trap all error conditions,
7622      prevented multiple flushes before closing the socket; close the entire
7623      socket buffer instead of just one descriptor, prevent logging of
7624      EPROTO and ECONNABORTED on platforms where supported, and generally
7625      improved readability.  [Roy Fielding]
7626
7627   *) Extensive performance improvements. Cleaned up inefficient use of
7628      auto initializers, multiple is_matchexp calls on a static string,
7629      and excessive merging of response_code_strings. [Dean Gaudet]
7630
7631   *) Added double-buffering to mod_include to improve performance on
7632      server-side includes. [Marc Slemko]
7633
7634   *) Several fixes for suexec wrapper. [Randy Terbush]
7635      - Make wrapper work for files on NFS filesystem.
7636      - Fix portability problem of MAXPATHLEN.
7637      - Fix array overrun problem in clean_env().
7638      - Fix allocation of PATH environment variable
7639
7640   *) Removed extraneous blank line is description of mod_status chars.
7641      [Kurt Kohler]
7642
7643   *) Logging of errors from the call_exec routine simply went nowhere,
7644      since the logfile fd has been closed, so now we send them to stderr.
7645      [Harald T. Alvestrand]
7646
7647   *) Fixed core dump when DocumentRoot is a CGI.
7648      [Ben Laurie, reported by geddis@tesserae.com]
7649
7650   *) Fixed potential file descriptor leak in mod_asis; updated it and
7651      http_core to use pfopen/pfclose instead of fopen/fclose.
7652      [Randy Terbush and Roy Fielding]
7653
7654   *) Fixed handling of unsigned ints in ap_snprintf() on some chips such
7655      as the DEC Alpha which is 64-bit but uses 32-bit ints.
7656      [Dean Gaudet and Ken Coar]
7657
7658   *) Return a 302 response code to the client when sending a redirect
7659      due to a missing trailing '/' on a directory instead of a 301; now
7660      it is cacheable. [Markus Gyger]
7661
7662   *) Fix condition where, if a bad directive occurs in .htaccess, and
7663      sub_request() goes first to this directory, then log_reason() will
7664      SIGSEGV because it doesn't have initialized r->per_dir_config.
7665      [PR#162 from Petr Lampa, fix by Marc Slemko and Dean Gaudet]
7666
7667   *) Fix handling of lang_index in is_variant_better().  This was
7668      causing problems which resulted in the server sending the
7669      wrong language document in some cases. [Petr Lampa]
7670
7671   *) Remove free() from clean_env() in suexec wrapper. This was nuking
7672      the clean environment on some systems.
7673
7674   *) Tweak byteserving code (e.g. serving PDF files) to work around
7675      bugs in Netscape Navigator and Microsoft Internet Explorer.
7676      Emit Content-Length header when sending multipart/byteranges.
7677      [Alexei Kosut]
7678
7679   *) Port to HI-UX/WE2. [Nick Maclaren]
7680
7681   *) Port to HP MPE operating system for HP 3000 machines
7682      [Mark Bixby <markb@cccd.edu>]
7683
7684   *) Fixed bug which caused a segmentation fault if only one argument
7685      given to RLimit* directives. [Ed Korthof]
7686
7687   *) Continue persistent connection after 204 or 304 response. [Dean Gaudet]
7688
7689   *) Improved buffered output to the client by delaying the flush decision
7690      until the BUFF code is actually about to read the next request.
7691      This fixes a problem introduced in 1.2b5 with clients that send
7692      an extra CRLF after a POST request. Also improved chunked output
7693      performance by combining writes using writev() and removing as
7694      many bflush() calls as possible.  NOTE: Platforms without writev()
7695      must add -DNO_WRITEV to the compiler CFLAGS, either in Configuration
7696      or Configure, unless we have already done so.  [Dean Gaudet]
7697
7698   *) Fixed mod_rewrite bug which truncated the rewritten URL [Marc Slemko]
7699
7700   *) Fixed mod_info output corruption bug introduced by buffer overflow
7701      fixes. [Dean Gaudet]
7702
7703   *) Fixed http_protocol to correctly output all HTTP/1.1 headers, including
7704      for the special case of a 304 response.  [Paul Sutton]
7705
7706   *) Improved handling of TRACE method by bypassing normal method handling
7707      and header parsing routines; fixed Allow response to always allow TRACE.
7708      [Dean Gaudet]
7709
7710   *) Fixed compiler warnings in the regex library. [Dean Gaudet]
7711
7712   *) Cleaned-up some of the generated HTML. [Ken Coar]
7713
7714 Changes with Apache 1.2b6
7715
7716   *) Allow whitespace in imagemap mapfile coordinates. [Marc Slemko]
7717
7718   *) Fix typo introduced in fix for potential infinite loop around
7719      accept() in child_main(). This change caused the rev to 1.2b6.
7720      1.2b5 was never a public beta.
7721
7722 Changes with Apache 1.2b5
7723
7724   *) Change KeepAlive semantics (On|Off instead of a number), add
7725      MaxKeepAliveRequests directive. [Alexei Kosut]
7726
7727   *) Various NeXT compilation patches, as well as a change in
7728      regex/regcomp.c since that file also used a NEXT define.
7729      [Andreas Koenig]
7730
7731   *) Allow * to terminate the end of a directory match in mod_dir.
7732      Allows /~* to match for both /~joe and /~joe/. [David Bronder]
7733
7734   *) Don't call can_exec() if suexec_enabled. Calling this requires
7735      scripts executed by the suexec wrapper to be world executable, which
7736      defeats one of the advantages of running the wrapper. [Randy Terbush]
7737
7738   *) Portability Fix: IRIX complained with 'make clean' about *pure* (removed)
7739      [Jim Jagielski]
7740
7741   *) Migration from sprintf() to snprintf() to avoid buffer
7742      overflows. [Marc Slemko]
7743
7744   *) Provide portable snprintf() implementation (ap_snprintf)
7745      as well as *cvt family. [Jim Jagielski]
7746
7747   *) Portability Fix: NeXT lacks unistd.h so we wrap it's inclusion
7748      [Jim Jagielski]
7749
7750   *) Remove mod_fastcgi.c from the distribution. This module appears
7751      to be maintained more through the Open Market channels and should
7752      continue to be easily available at http://www.fastcgi.com/
7753
7754   *) Fixed bug in modules/Makefile that wouldn't allow building in more
7755      than one subdirectory (or cleaning, either). [Jeremy Laidman]
7756
7757   *) mod_info assumed that the config files were relative to ServerRoot.
7758      [Ken the Rodent]
7759
7760   *) CGI scripts called as an error document resulting from failed
7761      CGI execution would hang waiting for POST'ed data. [Rob Hartill]
7762
7763   *) Log reason when mod_dir returns access HTTP_FORBIDDEN
7764      [Ken the Rodent]
7765
7766   *) Properly check errno to prevent display of a directory index
7767      when server receives a long enough URL to confuse stat().
7768      [Marc Slemko]
7769
7770   *) Several security enhancements to suexec wrapper. It is _highly_
7771      recommended that previously installed versions of the wrapper
7772      be replaced with this version.  [Randy Terbush, Jason Dour]
7773
7774         - ~user execution now properly restricted to ~user's home
7775           directory and below.
7776         - execution restricted to UID/GID > 100
7777         - restrict passed environment to known variables
7778         - call setgid() before initgroups() (portability fix)
7779         - remove use of setenv() (portability fix)
7780
7781   *) Add HTTP/1.0 response forcing. [Ben Laurie]
7782
7783   *) Add access control via environment variables. [Ben Laurie]
7784
7785   *) Add rflush() function. [Alexei Kosut]
7786
7787   *) remove duplicate pcalloc() call in new_connection().
7788
7789   *) Fix incorrect comparison which could allow number of children =
7790      MaxClients + 1 if less than HARD_SERVER_LIMIT. Also fix potential
7791      problem if StartServers > HARD_SERVER_LIMIT. [Ed Korthof]
7792
7793   *) Updated support for OSes (MachTen, ULTRIX, Paragon, ISC, OpenBSD
7794      AIX PS/2, CONVEXOS. [Jim Jagielski]
7795
7796   *) Replace instances of inet_ntoa() with inet_addr() for ProxyBlock.
7797      It's more portable. [Martin Kraemer]
7798
7799   *) Replace references to make in Makefile.tmpl with $(MAKE).
7800      [Chuck Murcko]
7801
7802   *) Add ProxyBlock directive w/IP address caching. Add IP address
7803      caching to NoCache directive as well. ProxyBlock works with all
7804      handlers; NoCache now also works with FTP for anonymous logins.
7805      Still more code cleanup. [Chuck Murcko]
7806
7807   *) Add "header parse" API hook [Ben Laurie]
7808
7809   *) Fix byte ordering problems for REMOTE_PORT [Chuck Murcko]
7810
7811   *) suEXEC wrapper was freeing memory that had not been malloc'ed.
7812
7813   *) Correctly allow access and auth directives in <Files> sections in
7814      server config files. [Alexei Kosut]
7815
7816   *) Fix bug with ServerPath that could cause certain files to be not
7817      found by the server. [Alexei Kosut]
7818
7819   *) Fix handling of ErrorDocument so that it doesn't remove a trailing
7820      double-quote from text and so that it properly checks for unsupported
7821      status codes using the new index_of_response interface. [Roy Fielding]
7822
7823   *) Multiple fixes to the lingering_close code in order to avoid being
7824      interrupted by a stray timeout, to avoid lingering on a connection
7825      that has already been aborted or never really existed, to ensure that
7826      we stop lingering as soon as any error condition is received, and to
7827      prevent being stuck indefinitely if the read blocks.  Also improves
7828      reporting of error conditions.  [Marc Slemko and Roy Fielding]
7829
7830   *) Fixed initialization of parameter structure for sigaction.
7831      [mgyger@itr.ch, Adrian Filipi-Martin]
7832
7833   *) Fixed reinitializing the parameters before each call to accept and
7834      select, and removed potential for infinite loop in accept.
7835      [Roy Fielding, after useful PR from adrian@virginia.edu]
7836
7837   *) Fixed condition where, if a child fails to fork, the scoreboard would
7838      continue to say SERVER_STARTING forever. Eventually, the main process
7839      would refuse to start new children because count_idle_servers() will
7840      count those SERVER_STARTING entries and will always report that there
7841      are enough idle servers. [Phillip Vandry]
7842
7843   *) Fixed bug in bcwrite regarding failure to account for partial writes.
7844      Avoided calling bflush() when the client is pipelining requests.
7845      Removed unnecessary flushes from http_protocol. [Dean Gaudet]
7846
7847   *) Added description of "." mode in server-status [Jim Jagielski]
7848
7849 Changes with Apache 1.2b4
7850
7851   *) Fix possible race condition in accept_mutex_init() that
7852      could leave a small security hole open allowing files to be
7853      overwritten in cases where the server UID has write permissions.
7854      [Marc Slemko]
7855
7856   *) Fix awk compatibilty problem in Configure. [Jim Jagielski]
7857
7858   *) Fix portablity problem in util_script where ARG_MAX may not be
7859      defined for some systems.
7860
7861   *) Add changes to allow compilation on Machten 4.0.3 for PowerPC.
7862      [Randal Schwartz]
7863
7864   *) OS/2 changes to support an MMAP style scoreboard file and UNIX
7865      style magic #! token for better script portability. [Garey Smiley]
7866
7867   *) Fix bug in suexec wrapper introduced in b3 that would cause failed
7868      execution for ~userdir CGI. [Jason Dour]
7869
7870   *) Fix initgroups() business in suexec wrapper. [Jason Dour]
7871
7872   *) Fix month off by one in suexec wrapper logging.
7873
7874 Changes with Apache 1.2b3:
7875
7876   *) Fix error in mod_cgi which could cause resources not to be properly
7877      freed, or worse. [Dean Gaudet]
7878
7879   *) Fix find_string() NULL pointer dereference. [Howard Fear]
7880
7881   *) Add set_flag_slot() at the request of Dirk and others.
7882      [Dirk vanGulik]
7883
7884   *) Sync mod_rewrite with patch level 10. [Ralf Engelschall]
7885
7886   *) Add changes to improve the error message given for invalid
7887      ServerName parameters. [Dirk vanGulik]
7888
7889   *) Add "Authoritative" directive for Auth modules that don't
7890      currently have it. This gives admin control to assign authoritative
7891      control to an authentication scheme and allow "fall through" for
7892      those authentication modules that aren't "Authoritative" thereby
7893      allowing multiple authentication mechanisms to be chained.
7894      [Dirk vanGulik]
7895
7896   *) Remove requirement for ResourceConfig/AccessConfig if not using
7897      the three config file layout. [Randy Terbush]
7898
7899   *) Add PASV mode to mod_proxy FTP handler. [Chuck Murcko]
7900
7901   *) Changes to suexec wrapper to fix the following problems:
7902      1.  symlinked homedirs will kill ~userdirs.
7903      2.  initgroups() on Linux 2.0.x clobbers gr->grid.
7904      3.  CGI command lines paramters problems
7905      4.  pw-pwdir for "docroot check" still the httpd user's pw record.
7906     [Randy Terbush, Jason Dour]
7907
7908   *) Change create_argv() to accept variable arguments. This fixes
7909      a problem where arguments were not getting passed to the CGI via
7910      argv[] when the suexec wrapper was active. [Randy Terbush, Jake Buchholz]
7911
7912   *) Collapse multiple slashes in path URLs to properly apply
7913      handlers defined by <Location>. [Alexei Kosut]
7914
7915   *) Define a sane set of DEFAULT_USER and DEFAULT_GROUP values for AIX.
7916
7917   *) Improve the accuracy of request duration timings by setting
7918      r->request_time in read_request_line() instead of read_request().
7919      [Dean Gaudet]
7920
7921   *) Reset timeout while reading via get_client_block() in mod_cgi.c
7922      Fixes problem with timed out transfers of large files. [Rasmus Lerdorf]
7923
7924   *) Add the ability to pass different Makefile.tmpl files to Configure
7925      using the -make flag. [Rob Hartill]
7926
7927   *) Fix coredump triggered when sending a SIGHUP to the server caused
7928      by an assertion failure, in turn caused by an uninitialised field in a
7929      listen_rec.
7930      [Ben Laurie]
7931
7932   *) Add FILEPATH_INFO variable to CGI environment, which is equal to
7933      PATH_INFO from previous versions of Apache (in certain situations,
7934      Apache 1.2's PATH_INFO will be different than 1.1's). [Alexei Kosut]
7935      [later removed in 1.2b11]
7936
7937   *) Add rwrite() function to API to allow for sending strings of
7938      arbitrary length. [Doug MacEachern]
7939
7940   *) Remove rlim_t typedef for NetBSD. Do older versions need this?
7941
7942   *) Defined rlim_t and WANTHSREGEX=yes and fixed waitpid() substitute for
7943      NeXT. [Jim Jagielski]
7944
7945   *) Removed recent modification to promote the status code on internal
7946      redirects, since the correct fix was to change the default log format
7947      in mod_log_config so that it outputs the original status. [Rob Hartill]
7948
7949 Changes with Apache 1.2b2:
7950
7951   *) Update set_signals() to use sigaction() for setting handlers.
7952      This appears to fix a re-entrant problem in the seg_fault()
7953      bus_error() handlers. [Randy Terbush]
7954
7955   *) Changes to allow mod_status compile for OS/2 [Garey Smiley]
7956
7957   *) changes for DEC AXP running OSF/1 v3.0. [Marc Evans]
7958
7959   *) proxy_http.c bugfixes:  [Chuck Murcko]
7960         1) fixes possible NULL pointer reference w/NoCache
7961         2) fixes NoCache behavior when using ProxyRemote (ProxyRemote
7962            host would cache nothing if it was in the local domain,
7963            and the local domain was in the NoCache list)
7964         3) Adds Host: header when not available
7965         4) Some code cleanup and clarification
7966
7967   *) mod_include.c bugfixes:
7968         1) Fixed an ommission that caused include variables to not
7969            be parsed in config errmsg directives [Howard Fear]
7970         2) Remove HAVE_POSIX_REGEX cruft [Alexei Kosut]
7971         3) Patch to fix compiler warnings [perrot@lal.in2p3.fr]
7972         4) Allow backslash-escaping to all quoted text
7973            [Ben Yoshino <ben@wiliki.eng.hawaii.edu>]
7974         5) Pass variable to command line if not set in XSSI's env
7975            [Howard Fear]
7976
7977   *) Fix infinite loop when processing Content-language lines in
7978      type-map files. [Alexei Kosut]
7979
7980   *) Closed file-globbing hole in test-cgi script. [Brian Behlendorf]
7981
7982   *) Fixed problem in set_[user|group] that prevented CGI execution
7983      for non-virtualhosts when suEXEC was enabled. [Randy Terbush]
7984
7985   *) Added PORTING information file.  [Jim Jagielski]
7986
7987   *) Added definitions for S_IWGRP and S_IWOTH to conf.h [Ben Laurie]
7988
7989   *) Changed default group to "nogroup" instead of "nobody" [Randy Terbush]
7990
7991   *) Fixed define typo of FCNTL_SERIALIZED_ACCEPT where
7992      USE_FCNTL_SERIALIZED_ACCEPT was intended.
7993
7994   *) Fixed additional uses of 0xffffffff where INADDR_NONE was intended,
7995      which caused problems of systems where socket s_addr is >32bits.
7996
7997   *) Added comment to explain (r->chunked = 1) side-effect in
7998      http_protocol.c [Roy Fielding]
7999
8000   *) Replaced use of index() in mod_expires.c with more appropriate
8001      and portable isdigit() test.  [Ben Laurie]
8002
8003   *) Updated Configure for ...
8004         OS/2          (DEF_WANTHSREGEX=yes, other code changes)
8005         *-dg-dgux*    (bad pattern match)
8006         QNX           (DEF_WANTHSREGEX=yes)
8007         *-sunos4*     (DEF_WANTHSREGEX=yes, -DUSEBCOPY)
8008         *-ultrix      (new)
8009         *-unixware211 (new)
8010      and added some user diagnostic info.  [Ben Laurie]
8011
8012   *) In helpers/CutRule, replaced "cut" invocation with "awk" invocation
8013      for better portability. [Jim Jagielski]
8014
8015   *) Updated helpers/GuessOS for ...
8016         SCO 5            (recognize minor releases)
8017         SCO UnixWare     (braindamaged uname, whatever-whatever-unixware2)
8018         SCO UnixWare 2.1.1      (requires a separate set of #defines in conf.h)
8019         IRIX64           (-sgi-irix64)
8020         ULTRIX           (-unknown-ultrix)
8021         SINIX            (-whatever-sysv4)
8022         NCR Unix         (-ncr-sysv4)
8023      and fixed something in helpers/PrintPath  [Ben Laurie]
8024
8025 Changes with Apache 1.2b1
8026
8027   *) Not listed. See <http://www.apache.org/docs/new_features_1_2.html>
8028
8029 Changes with Apache 1.1.1
8030
8031   *) Fixed bug where Cookie module would make two entries in the
8032      logfile for each access [Mark Cox]
8033
8034   *) Fixed bug where Redirect in .htaccess files would cause memory
8035      leak. [Nathan Neulinger]
8036
8037   *) MultiViews now works correctly with AddHandler [Alexei Kosut]
8038
8039   *) Problems with mod_auth_msql fixed [Dirk vanGulik]
8040
8041   *) Fix misspelling of "Anonymous_Authorative" directive in mod_auth_anon.
8042
8043 Changes with Apache 1.1.0
8044
8045   *) Bring NeXT support up to date. [Takaaki Matsumoto]
8046
8047   *) Bring QNX support up to date. [Ben Laurie]
8048
8049   *) Make virtual hosts default to main server keepalive parameters.
8050      [Alexei Kosut, Ben Laurie]
8051
8052   *) Allow ScanHTMLTitles to work with lowercase <title> tags. [Alexei Kosut]
8053
8054   *) Fix missing address family for connect, also remove unreachable statement
8055      in mod_proxy. [Ben Laurie]
8056
8057   *) mod_env now turned on by default in Configuration.tmpl.
8058
8059   *) Bugs which were fixed:
8060         a) yet more mod_proxy bugs [Ben Laurie]
8061         b) CGI works again with inetd [Alexei Kosut]
8062         c) Leading colons were stripped from passwords [osm@interguide.com]
8063         d) Another fix to multi-method Limit problem [jk@tools.de]
8064
8065 Changes with Apache 1.1b4
8066
8067   *) r->bytes_sent variable restored. [Robert Thau]
8068
8069   *) Previously broken multi-method <Limit> parsing fixed. [Robert Thau]
8070
8071   *) More possibly unsecure programs removed from the support directory.
8072
8073   *) More mod_auth_msql authentication improvements.
8074
8075   *) VirtualHosts based on Host: headers no longer conflict with the
8076      Listen directive.
8077
8078   *) OS/2 compatibility enhancements. [Gary Smiley]
8079
8080   *) POST now allowed to directory index CGI scripts.
8081
8082   *) Actions now work with files of the default type.
8083
8084   *) Bugs which were fixed:
8085         a) more mod_proxy bugs
8086         b) early termination of inetd requests
8087         c) compile warnings on several systems
8088         d) problems when scripts stop reading output early
8089
8090 Changes with Apache 1.1b3
8091
8092   *) Much of cgi-bin and all of cgi-src has been removed, due to
8093      various security holes found and that we could no longer support
8094      them.
8095
8096   *) The "Set-Cookie" header is now special-cased to not merge multiple
8097      instances, since certain popular browsers can not handle multiple
8098      Set-Cookie instructions in a single header. [Paul Sutton]
8099
8100   *) rprintf() added to buffer code, occurrences of sprintf removed.
8101      [Ben Laurie]
8102
8103   *) CONNECT method for proxy module, which means tunneling SSL should work.
8104      (No crypto needed)  Also a NoCache config directive.
8105
8106   *) Several API additions: pstrndup(), table_unset() and get_token()
8107      functions now available to modules.
8108
8109   *) mod_imap fixups, in particular Location: headers are now complete
8110      URL's.
8111
8112   *) New "info" module which reports on installed module set through a
8113      special URL, a la mod_status.
8114
8115   *) "ServerPath" directive added - allows for graceful transition
8116      for Host:-header-based virtual hosts.
8117
8118   *) Anonymous authentication module improvements.
8119
8120   *) MSQL authentication module improvements.
8121
8122   *) Status module design improved - output now table-based. [Ben Laurie]
8123
8124   *) htdigest utility included for use with digest authentication
8125      module.
8126
8127   *) mod_negotiation: Accept values with wildcards to be treated with
8128      less priority than those without wildcards at the same quality
8129      value. [Alexei Kosut]
8130
8131   *) Bugs which were fixed:
8132         a) numerous mod_proxy bugs
8133         b) CGI early-termination bug [Ben Laurie]
8134         c) Keepalives not working with virtual hosts
8135         d) RefererIgnore problems
8136         e) closing fd's twice in mod_include (causing core dumps on
8137            Linux and elsewhere).
8138
8139 Changes with Apache 1.1b2
8140
8141   *) Bugfixes:
8142         a) core dumps in mod_digest
8143         b) truncated hostnames/ip address in the logs
8144         c) relative URL's in mod_imap map files
8145
8146 Changes with Apache 1.1b1
8147
8148   *) Not listed. See <http://www.apache.org/docs/new_features_1_1.html>
8149
8150 Changes with Apache 1.0.3
8151
8152   *) Internal redirects which occur in mod_dir.c now preserve the
8153      query portion of a request (the bit after the question mark).
8154      [Adam Sussman]
8155
8156   *) Escape active characters '<', '>' and '&' in html output in
8157      directory listings, error messages and redirection links.
8158      [David Robinson]
8159
8160   *) Apache will now work with LynxOS 2.3 and later [Steven Watt]
8161
8162   *) Fix for POSIX compliance in waiting for processes in alloc.c.
8163      [Nick Williams]
8164
8165   *) setsockopt no longer takes a const declared argument [Martijn Koster]
8166
8167   *) Reset timeout timer after each successful fwrite() to the network.
8168      This patch adds a reset_timeout() procedure that is called by
8169      send_fd() to reset the timeout ever time data is written to the net.
8170      [Nathan Schrenk]
8171
8172   *) timeout() signal handler now checks for SIGPIPE and reports
8173      lost connections in a more user friendly way. [Rob Hartill]
8174
8175   *) Location of the "scoreboard" file which used to live in /tmp is
8176      now configurable (for OSes that can't use mmap) via ScoreBoardFile
8177      which works similar to PidFile (in httpd.conf) [Rob Hartill]
8178
8179   *) Include sys/resource.h in the correct place for SunOS4 [Sameer Parekh]
8180
8181   *) the pstrcat call in mod_cookies.c didn't have an ending NULL,
8182      which caused a SEGV with cookies enabled
8183
8184   *) Output warning when MinSpareServers is set to <= 0 and change it to 1
8185      [Rob Hartill]
8186
8187   *) Log the UNIX textual error returned by some system calls, in
8188      particular errors from accept() [David Robinson]
8189
8190   *) Add strerror function to util.c for SunOS4 [Randy Terbush]
8191
8192 Changes with Apache 1.0.2
8193
8194   *) patch to get Apache compiled on UnixWare 2.x, recommended as
8195      a temporary measure, pending rewrite of rfc931.c. [Chuck Murcko]
8196
8197   *) Fix get_basic_auth_pw() to set the auth_type of the request.
8198      [David Robinson]
8199
8200   *) past changes to http_config.c to only use the
8201      setrlimit function on systems defining RLIMIT_NOFILE
8202      broke the feature on SUNOS4. Now defines HAVE_RESOURCE
8203      for SUNOS and prototypes the needed functions.
8204
8205   *) Remove uses of MAX_STRING_LEN/HUGE_STRING_LEN from several routines.
8206      [David Robinson]
8207
8208   *) Fix use of pointer to scratch memory. [Cliff Skolnick]
8209
8210   *) Merge multiple headers from CGI scripts instead of taking last
8211      one. [David Robinson]
8212
8213   *) Add support for SCO 5. [Ben Laurie]
8214
8215 Changes with Apache 1.0.1
8216
8217   *) Silence mod_log_referer and mod_log_agent if not configured
8218      [Randy Terbush]
8219
8220   *) Recursive includes can occur if the client supplies PATH_INFO data
8221      and the server provider uses relative links; as file.html
8222      relative to /doc.shtml/pathinfo is /doc.shtml/file.html. [David Robinson]
8223
8224   *) The replacement for initgroups() did not call {set,end}grent(). This
8225      had two implications: if anything else used getgrent(), then
8226      initgroups() would fail, and it was consuming a file descriptor.
8227      [Ben Laurie]
8228
8229   *) On heavily loaded servers it was possible for the scoreboard to get
8230      out of sync with reality, as a result of a race condition.
8231      The observed symptoms are far more Apaches running than should
8232      be, and heavy system loads, generally followed by catastrophic
8233      system failure. [Ben Laurie]
8234
8235   *) Fix typo in license. [David Robinson]
8236
8237 Changes with Apache 1.0.0                                        23 Nov 1995
8238
8239   *) Not listed. See <http://www.apache.org/docs/new_features_1_0.html>
8240
8241 Changes with Apache 0.8.16                                       05 Nov 1995
8242
8243   *) New man page for 'httpd' added to support directory [David Robinson]
8244
8245   *) .htgroup files can have more than one line giving members for a
8246      given group (each must have the group name in front), for NCSA
8247      back-compatibility [Robert Thau]
8248
8249   *) Mutual exclusion around accept() is on by default for SVR4 systems
8250      generally, since they generally can't handle multiple processes in
8251      accept() on the same socket.  This should cure flaky behavior on
8252      a lot of those systems.  [David Robinson]
8253
8254   *) AddType, AddEncoding, and AddLanguage directives take multiple
8255      extensions on a single command line [David Robinson]
8256
8257   *) UserDir can be disabled for a given virtual host by saying
8258      "UserDir disabled" in the <VirtualHost> section --- it was a bug
8259      that this didn't work.  [David Robinson]
8260
8261   *) Compiles on QNX [Ben Laurie]
8262
8263   *) Corrected parsing of ctime time format [David Robinson]
8264
8265   *) httpd does a perror() before exiting if it can't log its pid
8266      to the PidFile, to make diagnosing the error a bit easier.
8267      [David Robinson]
8268
8269   *) <!--#include file="..."--> can no longer include files in the
8270      parent directory, for NCSA back-compatibility.  [David Robinson]
8271
8272   *) '~' is *not* escaped in URIs generated for directory listings
8273      [Roy Fielding]
8274
8275   *) Eliminated compiler warning in the imagemap module [Randy Terbush]
8276
8277   *) Fixed bug involving handling URIs with escaped %-characters
8278      in redirects [David Robinson]
8279
8280 Changes with Apache 0.8.15                                       14 Oct 1995
8281
8282   *) Switched to new, simpler license
8283
8284   *) Eliminated core dumps with improperly formatted DBM group files [Mark Cox]
8285
8286   *) Don't allow requests for ordinary files to have PATH_INFO [Ben Laurie]
8287
8288   *) Reject paths containing %-escaped '%' or null characters [David Robinson]
8289
8290   *) Correctly handles internal redirects to files with names containing '%'
8291      [David Robinson]
8292
8293   *) Repunctuated some error messages [Aram Mirzadeh, Andrew Wilson]
8294
8295   *) Use geteuid() rather than getuid() to see if we have root privilege,
8296      so that server correctly resets privilege if run setuid root.  [Andrew
8297      Wilson]
8298
8299   *) Handle ftp: and telnet: URLs correctly in imagemaps (built-in module)
8300      [Randy Terbush]
8301
8302   *) Fix relative URLs in imagemap files [Randy Terbush]
8303
8304   *) Somewhat better fix for the old "Alias /foo/ /bar/" business
8305      [David Robinson]
8306
8307   *) Don't repeatedly open the ErrorLog if a bunch of <VirtualHost>
8308      entries all name the same one. [David Robinson]
8309
8310   *) Fix directory listings with filenames containing unusual characters
8311      [David Robinson]
8312
8313   *) Better URI-escaping for generated URIs in directories with filenames
8314      containing unusual characters [Ben Laurie]
8315
8316   *) Fixed potential FILE* leak in http_main.c [Ben Laurie]
8317
8318   *) Unblock alarms on error return from spawn_child() [David Robinson]
8319
8320   *) Sample Config files have extra note for SCO users [Ben Laurie]
8321
8322   *) Configuration has note for HP-UX users [Rob Hartill]
8323
8324   *) Eliminated some bogus Linux-only #defines in conf.h [Aram Mirzadeh]
8325
8326   *) Nuked bogus #define in httpd.h [David Robinson]
8327
8328   *) Better test for whether a system has setrlimit() [David Robinson]
8329
8330   *) Calls update_child_status() after reopen_scoreboard() [David Robinson]
8331
8332   *) Doesn't send itself SIGHUP on startup when run in the -X debug-only mode
8333      [Ben Laurie]
8334
8335 Changes with Apache 0.8.14                                       19 Sep 1995
8336
8337   *) Compiles on SCO ODT 3.0 [Ben Laurie]
8338
8339   *) AddDescription works (better) [Ben Laurie]
8340
8341   *) Leaves an intelligible error diagnostic when it can't set group
8342      privileges on standalone startup [Andrew Wilson]
8343
8344   *) Compiles on NeXT again --- the 0.8.13 RLIMIT patch was failing on
8345      that machine, which claims to be BSD but does not support RLIMIT.
8346      [Randy Terbush]
8347
8348   *) gcc -Wall no longer complains about an unused variable when util.c
8349      is compiled with -DMINIMAL_DNS [Andrew Wilson]
8350
8351   *) Nuked another compiler warning for -Wall on Linux [Aram Mirzadeh]
8352
8353 Changes with Apache 0.8.13                                       07 Sep 1995
8354
8355   *) Make IndexIgnore *work* (ooops) [Jarkko Torppa]
8356
8357   *) Have built-in imagemap code recognize & honor Point directive [James
8358      Cloos]
8359
8360   *) Generate cleaner directory listings in directories with a mix of
8361      long and short filenames [Rob Hartill]
8362
8363   *) Properly initialize dynamically loaded modules [Royston Shufflebotham]
8364
8365   *) Properly default ServerName for virtual servers [Robert Thau]
8366
8367   *) Rationalize handling of BSD in conf.h and elsewhere [Randy Terbush,
8368      Paul Richards and a cast of thousands...]
8369
8370   *) On self-identified BSD systems (we don't try to guess any more),
8371      allocate a few extra file descriptors per virtual host with setrlimit,
8372      if we can, to avoid running out. [Randy Terbush]
8373
8374   *) Write 22-character lock file name into buffer with enough space
8375      on startup [Konstantin Olchanski]
8376
8377   *) Use archaic setpgrp() interface on NeXT, which requires it [Brian
8378      Pinkerton]
8379
8380   *) Suppress -Wall warning by casting const away in util.c [Aram Mirzadeh]
8381
8382   *) Suppress -Wall warning by initializing variable in negotiation code
8383      [Tobias Weingartner]
8384
8385 Changes with Apache 0.8.12                                       31 Aug 1995
8386
8387   *) Doesn't pause three seconds after including a CGI script which is
8388      too slow to die off (this is done by not even trying to kill off
8389      subprocesses, including the SIGTERM/pause/SIGKILL routine, until
8390      after the entire document has been processed).  [Robert Thau]
8391
8392   *) Doesn't do SSI if Options Includes is off.  (Ooops).  [David Robinson]
8393
8394   *) Options IncludesNoExec allows inclusion of at least text/* [Roy Fielding]
8395
8396   *) Allows .htaccess files to override <Directory> sections naming the
8397      same directory [David Robinson]
8398
8399   *) Removed an efficiency hack in sub_req_lookup_uri which was
8400      causing certain extremely marginal cases (e.g., ScriptAlias of a
8401      *particular* index.html file) to fail.  [David Robinson]
8402
8403   *) Doesn't log an error when the requested URI requires
8404      authentication, but no auth header line was supplied by the
8405      client; this is a normal condition (the client doesn't no auth is
8406      needed here yet).  [Robert Thau]
8407
8408   *) Behaves more sanely when the name server loses its mind [Sean Welch]
8409
8410   *) RFC931 code compiles cleanly on old BSDI releases [Randy Terbush]
8411
8412   *) RFC931 code no longer passes out name of prior clients on current
8413      requests if the current request came from a server that doesn't
8414      do RFC931.  [David Robinson]
8415
8416   *) Configuration script accepts "Module" lines with trailing whitespace.
8417      [Robert Thau]
8418
8419   *) Cleaned up compiler warning from mod_access.c [Robert Thau]
8420
8421   *) Cleaned up comments in mod_cgi.c [Robert Thau]
8422
8423 Changes with Apache 0.8.11                                       24 Aug 1995
8424
8425   *) Wildcard <Directory> specifications work.  [Robert Thau]
8426
8427   *) Doesn't loop for buggy CGI on Solaris [Cliff Skolnick]
8428
8429   *) Symlink checks (FollowSymLinks off, or SymLinkIfOwnerMatch) always check
8430      the file being requested itself, in addition to the directories leading
8431      up to it. [Robert Thau]
8432
8433   *) Logs access failures due to symlink checks or invalid client address
8434      in the error log [Roy Fielding, Robert Thau]
8435
8436   *) Symlink checks deal correctly with systems where lstat of
8437      "/path/to/some/link/" follows the link.  [Thau, Fielding]
8438
8439   *) Doesn't reset DirectoryIndex to 'index.html' when
8440      other directory options are set in a .htaccess file.  [Robert Thau]
8441
8442   *) Clarified init code and nuked bogus warning in mod_access.c
8443      [Florent Guillaume]
8444
8445   *) Corrected several directives in sample srm.conf
8446      --- includes corrections to directory indexing icon-related directives
8447      (using unknown.gif rather than unknown.xbm as the DefaultIcon, doing
8448      icons for encodings right, and turning on AddEncoding by default).
8449      [Roy Fielding]
8450
8451   *) Corrected descriptions of args to AddIcon and AddAlt in command table
8452      [James Cloos]
8453
8454   *) INSTALL & README mention "contributed modules" directory [Brian
8455      Behlendorf]
8456
8457   *) Fixed English in the license language...  "for for" --> "for".
8458      [Roy Fielding]
8459
8460   *) Fixed ScriptAlias/Alias interaction by moving ScriptAlias handling to
8461      mod_alias.c, merging it almost completely with handling of Alias, and
8462      adding a 'notes' field to the request_rec which allows the CGI module
8463      to discover whether the Alias module has put this request through
8464      ScriptAlias (which it needs to know for back-compatibility, as the old
8465      NCSA code did not check Options ExecCGI in ScriptAlias directories).
8466      [Robert Thau]
8467
8468 Changes with Apache 0.8.10                                       18 Aug 1995
8469
8470   *) AllowOverride applies to the named directory, and not just
8471      subdirectories.  [David Robinson]
8472
8473   *) Do locking for accept() exclusion (on systems that need it)
8474      using a special file created for the purpose in /usr/tmp, and
8475      not the error log; using the error log causes real problems
8476      if it's NFS-mounted; this is known to be the cause of a whole
8477      lot of "server hang" problems with Solaris.  [David Robinson;
8478      thanks to Merten Schumann for help diagnosing the problem].
8479
8480 Changes with Apache 0.8.9                                        12 Aug 1995
8481
8482   *) Compiles with -DMAXIMUM_DNS ---- ooops! [Henrik Mortensen]
8483
8484   *) Nested includes see environment variables of the including document,
8485      for NCSA bug-compatibility (some sites have standard footer includes
8486      which try to print out the last-modified date).  [Eric Hagberg/Robert
8487      Thau]
8488
8489   *) <!--exec cgi="/some/uri/here"--> always treats the item named by the
8490      URI as a CGI script, even if it would have been treated as something
8491      else if requested directly, for NCSA back-compatibility.  (Note that
8492      this means that people who know the name of the script can see the
8493      code just by asking for it).  [Robert Thau]
8494
8495   *) New version of dbmmanage script included in support directory as
8496      dbmmanage.new.
8497
8498   *) Check if scoreboard file couldn't be opened, and say so, rather
8499      then going insane [David Robinson]
8500
8501   *) POST to CGI works on A/UX [Jim Jagielski]
8502
8503   *) AddIcon and AddAlt commands work properly [Rob Hartill]
8504
8505   *) NCSA server push works properly --- the Arena bug compatibility
8506      workaround, which broke it, is gone (use -DARENA_BUG_WORKAROUND
8507      if you still want the workaround).  [Rob Hartill]
8508
8509   *) If client didn't submit any Accept-encodings, ignore encodings in
8510      content negotiation.  (NB this will all have to be reworked anyway
8511      for the new HTTP draft).  [Florent Guillaume]
8512
8513   *) Don't dump core when trying to log timed-out requests [Jim Jagielski]
8514
8515   *) Really honor CacheNegotiatedDocs [Florent Guillaume]
8516
8517   *) Give Redirect priority over Alias, for NCSA bug compatibility
8518      [David Robinson]
8519
8520   *) Correctly set PATH_TRANSLATED in all cases from <!--#exec cmd=""-->,
8521      paralleling earlier bug fix for CGI [David Robinson]
8522
8523   *) If DBM auth is improperly configured, report a server error and don't
8524      dump core.
8525
8526   *) Deleted FCNTL_SERIALIZED_ACCEPTS from conf.h entry for A/UX;
8527      it seems to work well enough without it (even in a 10 hits/sec
8528      workout), and the overhead for the locking under A/UX is
8529      alarmingly high (though it is very low on other systems).
8530      [Eric Hagberg, Jim Jagielski]
8531
8532   *) Fixed portability problems with mod_cookies.c [Cliff Skolnick]
8533
8534   *) Further de-Berklize mod_cookies.c; change the bogus #include.  [Brian
8535      Behlendorf/Eric Hagberg]
8536
8537   *) More improvements to default Configuration for A/UX [Jim Jagielski]
8538
8539   *) Compiles clean on NEXT [Rob Hartill]
8540
8541   *) Compiles clean on SGI [Robert Thau]
8542
8543 Changes with Apache 0.8.8                                        08 Aug 1995
8544
8545   *) SunOS library prototypes now never included unless explicitly
8546      requested in the configuration (via -DSUNOS_LIB_PROTOTYPES);
8547      people using GNU libc on SunOS are screwed by prototypes for the
8548      standard library.
8549
8550      (Those who wish to compile clean with gcc -Wall on a standard
8551      SunOS setup need the prototypes, and may obtain them using
8552      -DSUNOS_LIB_PROTOTYPES.  Those wishing to use -Wall on a system
8553      with nonstandard libraries are presumably competent to make their
8554      own arrangements).
8555
8556   *) Strips trailing '/' characters off both args to the Alias command,
8557      to make 'Alias /foo/ /bar/' work.
8558
8559 Changes with Apache 0.8.7                                        03 Aug 1995
8560
8561   *) Don't hang when restarting with a child from 'TransferLog "|..."' running
8562      [reported by David Robinson]
8563
8564   *) Compiles clean on OSF/1 [David Robinson]
8565
8566   *) Added some of the more recent significant changes (AddLanguage stuff,
8567      experimental LogFormat support) to CHANGES file in distribution root
8568      directory
8569
8570 Changes with Apache 0.8.6                                        02 Aug 1995
8571
8572   *) Deleted Netscape reload workaround --- it's in violation of HTTP specs.
8573      (If you actually wanted a conditional GET which bypassed the cache, you
8574      couldn't get it). [Reported by Roy Fielding]
8575
8576   *) Properly terminate headers on '304 Not Modified' replies to conditional
8577      GETs --- no browser we can find cares much, but the CERN proxy chokes.
8578      [Reported by Cliff Skolnick; fix discovered independently by Rob Hartill]
8579
8580   *) httpd -v doesn't call itself "Shambhala".  [Reported by Chuck Murcko]
8581
8582   *) SunOS lib-function prototypes in conf.h conditionalized on __GNUC__,
8583      not __SUNPRO_C (they're needed to quiet gcc -Wall, but acc chokes on 'em,
8584      and older versions don't set the __SUNPRO_C preprocessor variable).  On
8585      all other systems, these are never used anyway.  [Reported by Mark Cox].
8586
8587   *) Scoreboard file (/tmp/htstatus.*) no longer publically writable.
8588
8589 Changes with Apache 0.8.5                                        01 Aug 1995
8590
8591   *) Added last-minute configurable log experiment, as optional module
8592
8593   *) Correctly set r->bytes_sent for HTTP/0.9 requests, so they get logged
8594      properly.  (One-line fix to http_protocol.c).
8595
8596   *) Work around bogus behavior when reloading from Netscape.
8597      It's Netscape's bug --- for some reason they expect a request with
8598      If-modified-since: to not function as a conditional GET if it also
8599      comes with Pragma: no-cache, which is way out of line with the HTTP
8600      spec (according to Roy Fielding, the redactor).
8601
8602   *) Added parameter to set maximum number of server processes.
8603
8604   *) Added patches to make it work on A/UX.  A/UX is *weird*.  [Eric Hagberg,
8605      Jim Jagielski]
8606
8607   *) IdentityCheck bugfix [Chuck Murcko].
8608
8609   *) Corrected cgi-src/Makefile entry for new imagemap script.  [Alexei Kosut]
8610
8611   *) More sample config file corrections; add extension to AddType for
8612      *.asis, move AddType generic description to its proper place, and
8613      fix miscellaneous typos. [ Alexei Kosut ]
8614
8615   *) Deleted the *other* reference to the regents from the Berkeley
8616      legal disclaimer (everyplace).
8617
8618   *) Nuked Shambhala name from src/README; had already cleaned it out
8619      of everywhere else.
8620
8621 Changes with Apache 0.8.4
8622
8623   *) Changes to server-pool management parms --- renamed current
8624      StartServers to MinSpareServers, created separate StartServers
8625      parameter which means what it says, and renamed MaxServers to
8626      MaxSpareServers (though the old name still works, for NCSA 1.4
8627      back-compatibility).  The old names were generally regarded as
8628      too confusing.  Also altered "docs" in sample config files.
8629
8630   *) More improvements to default config files ---
8631      sample directives (commented out) for XBitHack, BindAddress,
8632      CacheNegotiatedDocs, VirtualHost; decent set of AddLanguage
8633      defaults, AddTypes for send-as-is and imagemap magic types, and
8634      improvements to samples for DirectoryIndex [Alexei Kosut]
8635
8636   *) Yet more improvements to default config files --- changes to
8637      Alexei's sample AddLanguage directives, and sample LanguagePriority
8638      [ Florent Guillaume ]
8639
8640   *) Set config file locations properly if not set in httpd.conf
8641      [ David Robinson ]
8642
8643   *) Don't escape URIs in internal redirects multiple times; don't
8644      do that when translating PATH_INFO to PATH_TRANSLATED either.
8645      [ David Robinson ]
8646
8647   *) Corrected spelling of "Required" in 401 error reports [Andrew Wilson]
8648
8649 Changes with Apache 0.8.3
8650
8651   *) Edited distribution README to *briefly* summarize installation
8652      procedures, and give a pointer to the INSTALL file in the src/
8653      directory.
8654
8655   *) Upgraded imagemap script in cgi-bin to 1.8 version from more
8656      recent NCSA distributions.
8657
8658   *) Bug fix to previous bug fix --- if .htaccess file and <Directory>
8659      exist for the same directory, use both and don't segfault.  [Reported
8660      by David Robinson]
8661
8662   *) Proper makefile dependencies [David Robinson]
8663
8664   *) Note (re)starts in error log --- reported by Rob Hartill.
8665
8666   *) Only call no2slash() after get_path_info() has been done, to
8667      preserve multiple slashes in the PATH_INFO [NCSA compatibility,
8668      reported by Andrew Wilson, though this one is probably a real bug]
8669
8670   *) Fixed mod_imap.c --- relative paths with base_uri referer don't
8671      dump core when Referer is not supplied. [Randy Terbush]
8672
8673   *) Lightly edited sample config files to refer people to our documentation
8674      instead of NCSA's, and to list Rob McCool as *original* author (also
8675      deleted his old, and no doubt non-functional email address).  Would be
8676      nice to have examples of new features...
8677
8678 Changes with Apache 0.8.2                                        19 Jul 1995
8679
8680   *) Added AddLanuage code [Florent Guillaume]
8681
8682   *) Don't say "access forbidden" when a CGI script is not found.  [Mark Cox]
8683
8684   *) All sorts of problems when MultiViews finds a directory.  It would
8685      be nice if mod_dir.c was robust enough to handle that, but for now,
8686      just punt.  [reported by Brian Behlendorf]
8687
8688   *) Wait for all children on restart, to make sure that the old socket
8689      is gone and we can reopen it.  [reported by Randy Terbush]
8690
8691   *) Imagemap module is enabled in default Configuration
8692
8693   *) RefererLog and UserAgentLog modules properly default the logfile
8694      [Randy Terbush]
8695
8696   *) Mark Cox's mod_cookies added to the distribution as an optional
8697      module (commented out in the default Configuration, and noted as
8698      an experiment, along with mod_dld). [Mark Cox]
8699
8700   *) Compiles on ULTRIX (a continuing battle...). [Robert Thau]
8701
8702   *) Fixed nasty bug in SIGTERM handling [reported by Randy Terbush]
8703
8704   *) Changed "Shambhala" to "Apache" in API docs. [Robert Thau]
8705
8706   *) Added new, toothier legal disclaimer. [Robert Thau; copied from BSD
8707      license]
8708
8709 Changes with Apache 0.8.1
8710
8711   *) New imagemap module [Randy Terbush]
8712
8713   *) Replacement referer log module with NCSA-compatible RefererIgnore
8714      [Matthew Gray again]
8715
8716   *) Don't mung directory listings with very long filenames.
8717      [Florent Guillaume]
8718
8719 Changes with Apache 0.8.0 (nee Shambhala 0.6.2)                  16 Jul 1995
8720
8721   *) New config script.  See INSTALL for info.  [Robert Thau]
8722
8723   *) Scoreboard mechanism for regulating the number of extant server
8724      processes.  MaxServers and StartServers defaults are the same as
8725      for NCSA, but the meanings are slightly different.  (Actually,
8726      I should probably lower the MaxServers default to 10).
8727
8728      Before asking for a new connection, each server process checks
8729      the number of other servers which are also waiting for a
8730      connection.  If there are more than MaxServers, it quietly dies
8731      off.  Conversely, every second, the root, or caretaker, process
8732      looks to see how many servers are waiting for a new connection;
8733      if there are fewer than StartServers, it starts a new one.  This
8734      does not depend on the number of server processes already extant.
8735      The accounting is arranged through a "scoreboard" file, named
8736      /tmp/htstatus.*, on which each process has an independent file
8737      descriptor (they need to seek without interference).
8738
8739      The end effect is that MaxServers is the maximum number of
8740      servers on an *inactive* server machine, but more will be forked
8741      off to handle unusually heavy loads (or unusually slow clients);
8742      these will die off when they are no longer needed --- without
8743      reverting to the overhead of full forking operation.  There is a
8744      hard maximum of 150 server processes compiled in, largely to
8745      avoid forking out of control and dragging the machine down.
8746      (This is arguably too high).
8747
8748      In my server endurance tests, this mechanism did not appear to
8749      impose any significant overhead, even after I forced it to put the
8750      scoreboard file on a normal filesystem (which might have more
8751      overhead than tmpfs).  [Robert Thau]
8752
8753   *) Set HTTP_FOO variables for SSI <!--#exec cmd-->s, not just CGI scripts.
8754      [Cliff Skolnick]
8755
8756   *) Read .htaccess files even in directory with <Directory> section.
8757      (Former incompatibility noted on mailing list, now fixed). [Robert
8758      Thau]
8759
8760   *) "HEAD /" gives the client a "Bad Request" error message, rather
8761      than trying to send no body *and* no headers.  [Cliff Skolnick].
8762
8763   *) Don't produce double error reports for some very obscure cases
8764      mainly involving auth configuration (the "all modules decline to
8765      handle" case which is a sure sign of a server bug in most cases,
8766      but also happens when authentication is badly misconfigured).
8767      [Robert Thau]
8768
8769   *) Moved FCNTL_SERIALIZED_ACCEPT defines into conf.h (that's what
8770      it's *for*, and this sort of thing really shouldn't be cluttering
8771      up the Makefile). [Robert Thau]
8772
8773   *) Incidental code cleanups in http_main.c --- stop dragging
8774      sa_client around; just declare it where used.  [Robert Thau]
8775
8776   *) Another acc-related fix.  (It doesn't like const char
8777      in some places...). [Mark Cox]
8778
8779 Changes with Shambhala 0.6.1                                     13 Jul 1995
8780
8781   *) Fixed auth_name-related typos in http_core.c [Brian Behlendorf]
8782      Also, fixed auth typo in http_protocol.c unmasked by this fix.
8783
8784   *) Compiles clean with acc on SunOS [Paul Sutton]
8785
8786   *) Reordered modules in modules.c so that Redirect takes priority
8787      over ScriptAlias, for NCSA bug-compatibility [Rob Hartill] ---
8788      believe it or not, he has an actual site with a ScriptAlias and
8789      a Redirect declared for the *exact same directory*.  Even *my*
8790      compatibility fetish wouldn't motivate me to fix this if the fix
8791      required any effort, but it doesn't, so what the hey.
8792
8793   *) Fixed to properly default several server_rec fields for virtual
8794      servers from the corresponding fields in the main server_rec.
8795      [Cliff Skolnick --- 'port' was a particular irritant].
8796
8797   *) No longer kills off nph- child processes before they are
8798      finished sending output. [Matthew Gray]
8799
8800 Changes with Shambhala 0.6.0                                     10 Jul 1995
8801
8802   *) Two styles of timeout --- hard and soft.  soft_timeout()s just put
8803      the connection to the client in an "aborted" state, but otherwise
8804      allow whatever handlers are running to clean up.  hard_timeout()s
8805      abort the request in progress completely; anything not tied to some
8806      resource pool cleanup will leak.  They're still around because I
8807      haven't yet come up with a more elegant way of handling
8808      timeouts when talking to something that isn't the client.  The
8809      default_handler and the dir_handler now use soft timeouts, largely
8810      so I can test the feature.  [Robert Thau]
8811
8812   *) TransferLog "| my_postprocessor ..." seems to be there.  Note that
8813      the case of log handlers dying prematurely is probably handled VERY
8814      gracelessly at this point, and if the logger stops reading input,
8815      the server will hang.  (It is known to correctly restart the
8816      logging process on server restart; this is (should be!) going through
8817      the same SIGTERM/pause/SIGKILL routine used to ding an errant CGI
8818      script).  [Robert Thau]
8819
8820   *) asis files supported (new module).  [Robert Thau]
8821
8822   *) IdentityCheck code is compiled in, but has not been tested.  (I
8823      don't know anyone who runs identd). [Robert Thau]
8824
8825   *) PATH_INFO and PATH_TRANSLATED are not set unless some real PATH_INFO
8826      came in with the request, for NCSA bug-compatibility. [Robert Thau]
8827
8828   *) Don't leak the DIR * on HEAD request for a directory. [Robert Thau]
8829
8830   *) Deleted the block_alarms() stuff from dbm_auth; no longer necessary,
8831      as timeouts are not in scope. [Robert Thau]
8832
8833   *) quoted-string args in config files now handled correctly (doesn't drop
8834      the last character). [Robert Thau; reported by Randy Terbush]
8835
8836   *) Fixed silly typo in http_main.c which was suddenly fatal in HP-UX.
8837      How the hell did it ever work? [Robert Thau; reported by Rob Hartill]
8838
8839   *) mod_core.c --- default_type returns DEFAULT_TYPE (the compile-time
8840      default default type); the former default default behavior when all
8841      type-checkers defaulted had been a core dump.  [Paul Sutton]
8842
8843   *) Copy filenames out of the struct dirent when indexing
8844      directories.  (On Linux, readdir() returns a pointer to the same
8845      memory area every time).  Fix is in mod_dir.c.  [Paul Sutton]
8846
8847 Changes with Shambhala 0.5.3 [not released]
8848
8849   *) Default response handler notes "file not found" in the error log,
8850      if the file was not found.  [Cliff Skolnick].
8851
8852   *) Another Cliff bug --- "GET /~user" now properly redirects (the userdir
8853      code no longer sets up bogus PATH_INFO which fakes out the directory
8854      handler). [Cliff Skolnick]
8855
8856 Changes with Shambhala 0.5.2                                     06 Jul 1995
8857
8858   *) Changes to http_main.c --- root server no longer plays silly
8859      games with SIGCHLD, and so now detects and replaces dying
8860      children.  Child processes just die on SIGTERM, without taking
8861      the whole process group with them.  Potential problem --- if any
8862      child process refuses to die, we hang in restart.
8863      MaxRequestsPerChild may still not work, but it certainly works
8864      better than it did before this!  [Robert Thau]
8865
8866   *) mod_dir.c bug fixes: ReadmeName and HeaderName
8867      work (or work better, at least); over-long description lines
8868      properly terminated. [Mark Cox]
8869
8870   *) http_request.c now calls unescape_url() more places where it
8871      should [Paul Sutton].
8872
8873   *) More directory handling bugs (reported by Cox)
8874      Parent Directory link is now set correctly. [Robert Thau]
8875
8876 Changes with Shambhala 0.5.1                                     04 Jul 1995
8877
8878   *) Generalized cleanup interface in alloc.c --- any function can be
8879      registered with alloc.c as a cleanup for a resource pool;
8880      tracking of files and file descriptors has been reimplemented in
8881      terms of this interface, so I can give it some sort of a test.
8882      [Robert Thau]
8883
8884   *) More changes in alloc.c --- new cleanup_for_exec() function,
8885      which tracks down and closes all file descriptors which have been
8886      registered with the alloc.c machinery before the server exec()s a
8887      child process for CGI or <!--#exec-->.  CGI children now get
8888      started with exactly three file descriptors open.  Hopefully,
8889      this cures the problem Rob H. was having with overly persistent
8890      CGI connections. [Robert Thau]
8891
8892   *) Mutual exclusion around the accept() in child_main() --- this is
8893      required on at least SGI, Solaris and Linux, and is #ifdef'ed in
8894      by default on those systems only (-DFCNTL_SERIALIZED_ACCEPT).
8895      This uses fcntl(F_SETLK,...) on the error log descriptor because
8896      flock() on that descriptor won't work on systems which have BSD
8897      flock() semantics, including (I think) Linux 1.3 and Solaris.
8898
8899      This does work on SunOS (when the server is idle, only one
8900      process in the pool is waiting on accept()); it *ought* to work
8901      on the other systems. [Robert Thau]
8902
8903   *) FreeBSD and BSDI portability tweaks [Chuck Murcko]
8904
8905   *) sizeof(*sa_client) bugfix from [Rob Hartill]
8906
8907   *) pstrdup(..., NULL) returns NULL, [Randy Terbush]
8908
8909   *) block_alarms() to avoid leaking the DBM* in dbm auth (this should
8910      be unnecessary if I go to the revised timeout-handling scheme).
8911      [Robert Thau]
8912
8913   *) For NCSA bug-compatibility, set QUERY_STRING env var (to a null
8914      string) even if none came in with the request.  [Robert Thau]
8915
8916   *) CHANGES file added to distribution ;-).
8917
8918 Changes with Shambhala 0.4.5
8919
8920   *) mod_dld --- early dynamic loading support [rst]
8921   *) Add wildcard content handlers for XBITHACK; default_hander now
8922      invoked with that mechanism (as a handler hanging off mod_core) [rst]
8923   *) XBITHACK supported as a wildcard content-handler, and 
8924      configurable at run-time (not just at compile time, as in the
8925      "patchy server" releases) [rst]
8926
8927 Changes with Shambhala 0.4.4                                     30 Jun 1995
8928
8929   *) Fixed basic thinkos in mod_dbm_auth.c [rst, reported by Mark Cox]
8930   *) Handle Addtype x/y .z [rst, reported by Cox]
8931
8932 Changes with Shambhala 0.4.3
8933
8934   *) Fixed very dumb bug in mod_alias; "Alias" and "Redirect" are not
8935      synonymous [rst, terbush]
8936
8937 Changes with Shambhala 0.4.1                                     28 Jun 1995
8938
8939   *) First-cut virtual host implementation; some refit in the config
8940      reading code, and log management, was necessary to support this [rst]
8941   *) Sub-pool machinery, originally added to avoid excessive storage
8942      allocation on listings of large directories (which turned out to
8943      be the problem that the 0.3 storage accounting was added to
8944      find).  Subrequests and mod_dir changed to use subpools.  [rst]
8945   *) More memory debugging --- free list consistency checks. [rst]
8946   *) Added err_headers to request_rec, with support elsewhere [rst]
8947   *) Other fixes to minor bugs in mod_dir and mod_includes [rst, terbush]
8948
8949 Changes with Shambhala 0.3                                       19 Jun 1995
8950
8951   *) Switch ONE_PROCESS to a runtime command-line option (-X)
8952   *) Don't compile in mod_ai_backcompat by default
8953   *) Switch name of server from Apache to Shambhala in Makefile
8954   *) Add some accounting routines to track memory usage in the pools,
8955      for debugging
8956
8957 Changes with Shambhala 0.2
8958
8959   *) Set DOCUMENT_ROOT CGI variable
8960   *) Add single-process debugging, as a compile-time option (ONE_PROCESS)
8961   *) Add critical section protection to handling of cleanup structures 
8962      in alloc.c [rst]
8963   *) Significant code reorg within the server core to group related
8964      functions together [rst]
8965   *) Correctly handle clients that hang up before sending any request
8966      [rst]
8967   *) Replace dying child processes. [rst]
8968
8969 Changes with Shambhala 0.1                                       12 Jun 1995
8970
8971    Major rewrite of the pre-existing "patchy server" codebase, by
8972    Robert Thau (rst).  Significant portions of the server code, such
8973    as configuration-file handling and HTTP authentication support,
8974    were ripped out and rewritten from scratch.  Code that was not
8975    completely rewritten was significantly altered.
8976
8977    Major changes with this release include:
8978
8979    *) Introduction of the module API; in request handling, the central 
8980       machinery just dispatches to various modules, which actually do
8981       most of the work.  Configuration handling is similar --- modules
8982       declare their own commands, and the central machinery just
8983       dispatches to them.  
8984
8985       API features from shambhala/0.1 were substantially unchanged in
8986       Apache 1.0 and 1.1.  (1.0 API features not yet present in this
8987       release, such as wildcard handlers and subpools, were added in
8988       subsequent Shambhala releases, and were also generally rst's
8989       work). 
8990
8991    *) This release included the following modules:
8992
8993       mod_access      (access control --- allow and deny directives),
8994       mod_alias       (Alias and Redirect commands),
8995       mod_auth        (straight HTTP authentication, based on flat-files)
8996       mod_auth_dbm    (same, with dbm files)
8997       mod_cgi         (CGI scripts and, in this release, ScriptAlias)
8998       mod_common_log  (CLF access logs; later renamed mod_log_common)
8999       mod_dir         (directory indexing)
9000       mod_include     (server-side includes)
9001       mod_mime        (AddType directives)
9002       mod_negotiation (content negotiation)
9003       mod_userdir     (support for users' public_html directories)
9004
9005       It also included a mod_ai_backcompat, which was a private hack
9006       for back-compatibility with rst's own AI-lab servers.
9007
9008       All of these modules were substantially complete, and functional 
9009       or nearly so (a few, which implemented features not in use at
9010       Thau's site, required patches of a few lines).
9011
9012    *) sub-request machinery, to allow modules to determine how other
9013       modules would assign MIME types to a given file, or optionally
9014       serve its content (this is heavily used by mod_dir, mod_include
9015       and mod_negotiation).
9016
9017    *) Resource pool system for keeping track of memory allocated and
9018       files opened in service of a particular request.  Much of the
9019       code in the modules (when they weren't rewrites) was adjusted to 
9020       replace a pervasive convention of using fixed-size buffers on
9021       the stack with an equally pervasive convention of using memory
9022       allocated with palloc().
9023
9024    *) Reorganization of data structures associated with a given
9025       request to eliminate use of global variables and the troublesome 
9026       unmunge_name function (used in NCSA and early Apache releases to 
9027       attempt to determine the URI which mapped to a given filename
9028       --- a difficult proposition, given that it is easy to produce
9029       setups in which multiple URIs map to the same file).
9030
9031    *) Source files renamed and rearranged
9032
9033    *) Very simple pre-forking behavior --- parent process forked off a 
9034       fixed number of children, and then just waited for SIGHUP.
9035
9036    *) Other more minor changes too numerous to list.
9037
9038    This release included modified versions of a lot of code from the
9039    Apache 0.6.4 public release, plus an early pre-forking patch
9040    codeveloped by Robert Thau and Rob Hartill.
9041
9042 Changes with Apache 0.7.3                                        20 Jun 1995
9043
9044    *) There were a bunch of changes between Apache 0.6.4 and 0.7.3 that
9045       were incorporated by Rob Hartill on the main branch while Robert Thau
9046       worked on the Shambhala rewrite above.  Most were merged into the
9047       Shambala architecture after Apache 0.8.0.
9048
9049 Changes with Apache 0.6.4                                        13 May 1995
9050
9051    *) Patches by Rob Hartill, Cliff Skolnick, Randy Terbush, Robert Thau,
9052       and others.
9053
9054 Changes with Apache 0.5.1                                        10 Apr 1995
9055
9056 Changes with Apache 0.4                                          02 Apr 1995
9057
9058   *) Patches by Brian Behlendorf, Andrew Wilson, Robert Thau,
9059      and Rob Hartill.
9060
9061 Changes with Apache 0.3                                          24 Mar 1995
9062
9063   *) Patches by Robert Thau, David Robinson, Rob Hartill, and
9064      Carlos Varela.
9065
9066 Changes with Apache 0.2                                          18 Mar 1995
9067
9068   *) Based on NCSA httpd 1.3 by Rob McCool and patches by CERT,
9069      Roy Fielding, Robert Thau, Nicolas Pioch, David Robinson,
9070      Brian Behlendorf, Rob Hartill, and Cliff Skolnick.