]> granicus.if.org Git - apache/log
apache
22 years agoIt isn't valid to check errno without setting it first, unless an
Roy T. Fielding [Tue, 18 Jun 2002 00:14:21 +0000 (00:14 +0000)]
It isn't valid to check errno without setting it first, unless an
error return value already indicated that errno was set.  Also, we might
as well accept any error or junk remaining in the field as a parse error.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95743 13f79535-47bb-0310-9956-ffa450edef68

22 years agoDo not use atol() for the Content-Length parsing as its handling of error
Justin Erenkrantz [Mon, 17 Jun 2002 22:46:30 +0000 (22:46 +0000)]
Do not use atol() for the Content-Length parsing as its handling of error
cases is undetermined by the ANSI C standard.

Instead, use strtol() with a check for the ERANGE error condition.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95740 13f79535-47bb-0310-9956-ffa450edef68

22 years ago Ooops... newline. Caught it
William A. Rowe Jr [Mon, 17 Jun 2002 22:45:09 +0000 (22:45 +0000)]
  Ooops... newline.  Caught it

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95739 13f79535-47bb-0310-9956-ffa450edef68

22 years ago Quiet emits for win32 folks building with zlib for mod_deflate
William A. Rowe Jr [Mon, 17 Jun 2002 22:44:37 +0000 (22:44 +0000)]
  Quiet emits for win32 folks building with zlib for mod_deflate

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95738 13f79535-47bb-0310-9956-ffa450edef68

22 years agoEliminate segfault we were seeing in mod_mem_cache when collecting an expired
Bill Stoddard [Mon, 17 Jun 2002 22:39:09 +0000 (22:39 +0000)]
Eliminate segfault we were seeing in mod_mem_cache when collecting an expired
entry from the cache. Ian?

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95737 13f79535-47bb-0310-9956-ffa450edef68

22 years ago These emits occur mainline, outside of the pphrase_callback, so we never
William A. Rowe Jr [Mon, 17 Jun 2002 19:39:19 +0000 (19:39 +0000)]
  These emits occur mainline, outside of the pphrase_callback, so we never
  opened readtty or writetty.  But they are absolute failures, nothing the
  user could do to deal with them.  They are logged in the ssl vhost's error
  log.

  In this case, I forgot my SSLCertificateKeyFile, so the server never
  tried the callback.  writetty wasn't initialized, so we segfaulted.

  This segfault is due to misconfig, not to the dialog with the user.
  This is the easiest fix (easier to read, too), but we shouldn't need
  to worry too much that the release is tagged.  If we retag, fine, then
  grab it, but it only addresses a config problem.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95734 13f79535-47bb-0310-9956-ffa450edef68

22 years ago Show the 'Disconnect' button to detach ourselves from another computer's
William A. Rowe Jr [Mon, 17 Jun 2002 18:37:11 +0000 (18:37 +0000)]
  Show the 'Disconnect' button to detach ourselves from another computer's
  services on Win32.

Submitted by: Mladen Turk <mturk@mappingsoft.com>

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95732 13f79535-47bb-0310-9956-ffa450edef68

22 years agobump after the tag
Cliff Woolley [Mon, 17 Jun 2002 16:11:06 +0000 (16:11 +0000)]
bump after the tag

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95726 13f79535-47bb-0310-9956-ffa450edef68

22 years agohere goes nothing
Cliff Woolley [Mon, 17 Jun 2002 16:06:06 +0000 (16:06 +0000)]
here goes nothing

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95725 13f79535-47bb-0310-9956-ffa450edef68

22 years agoGetting ready for 2.0.39. Here we go again
Cliff Woolley [Mon, 17 Jun 2002 16:01:53 +0000 (16:01 +0000)]
Getting ready for 2.0.39.  Here we go again

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95724 13f79535-47bb-0310-9956-ffa450edef68

22 years agoGet this to work on win32 :(
Cliff Woolley [Mon, 17 Jun 2002 14:51:17 +0000 (14:51 +0000)]
Get this to work on win32 :(

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95723 13f79535-47bb-0310-9956-ffa450edef68

22 years agoClarify CHANGES message
Justin Erenkrantz [Mon, 17 Jun 2002 05:13:12 +0000 (05:13 +0000)]
Clarify CHANGES message

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95722 13f79535-47bb-0310-9956-ffa450edef68

22 years agoRewrite ap_get_client_block to rely on assumptions that have been
Justin Erenkrantz [Mon, 17 Jun 2002 05:09:45 +0000 (05:09 +0000)]
Rewrite ap_get_client_block to rely on assumptions that have been
solidified after this code was originally written.  Namely:

- AP_MODE_READBYTES will only return a brigade representing AT MOST bytes
  of data.  It can NOT return MORE than requested.
- APR_BLOCK_READ is respected - it is considered a design error of a filter
  if it returns without reading something.
- apr_brigade_flatten is available to do the heavy lifting of the copying
  into a flat buffer (as hinted at by the removed comment).

Tested with httpd-test.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95721 13f79535-47bb-0310-9956-ffa450edef68

22 years agoremove a redundant piece of code
Ian Holsman [Mon, 17 Jun 2002 01:59:32 +0000 (01:59 +0000)]
remove a redundant piece of code

Submitted By: Wayne Pascoe <wayne@pengiunpowered.org.uk>

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95720 13f79535-47bb-0310-9956-ffa450edef68

22 years agoMore changes to bring the performance tuning guide closer to compatibility
Brian Pane [Sun, 16 Jun 2002 22:55:11 +0000 (22:55 +0000)]
More changes to bring the performance tuning guide closer to compatibility
with httpd-2.0:
 - Updated the sample system call trace with a 2.0/worker example
 - Removed the section on the preforking model

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95719 13f79535-47bb-0310-9956-ffa450edef68

22 years agomoving on. :)
Cliff Woolley [Sun, 16 Jun 2002 19:44:45 +0000 (19:44 +0000)]
moving on.  :)

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95718 13f79535-47bb-0310-9956-ffa450edef68

22 years agoUpdate before the tag
Cliff Woolley [Sun, 16 Jun 2002 19:41:09 +0000 (19:41 +0000)]
Update before the tag

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95716 13f79535-47bb-0310-9956-ffa450edef68

22 years agobump before the tag
Cliff Woolley [Sun, 16 Jun 2002 19:40:04 +0000 (19:40 +0000)]
bump before the tag

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95715 13f79535-47bb-0310-9956-ffa450edef68

22 years ago Formating, whitespace, following {} rules, 80 char lines, etc. The only
William A. Rowe Jr [Sun, 16 Jun 2002 19:02:58 +0000 (19:02 +0000)]
  Formating, whitespace, following {} rules, 80 char lines, etc.  The only
  significant variation from the general Apache rules is the construct:

  switch ()
  {
  case foo:
      case_fns();
  }

  indentation, since win32 switches are very common, but it's impossible
  to follow that rule and maintain legible 80 character line limits.  This
  is a common enough exception that I don't expect vocal objections.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95714 13f79535-47bb-0310-9956-ffa450edef68

22 years agoFinish the htpasswd port to APR. This brings the file checking code to
Ryan Bloom [Sun, 16 Jun 2002 15:52:15 +0000 (15:52 +0000)]
Finish the htpasswd port to APR.  This brings the file checking code to
APR.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95713 13f79535-47bb-0310-9956-ffa450edef68

22 years agoFirst pass at cleaning up htpasswd. This removes the tmpnam call in
Ryan Bloom [Sun, 16 Jun 2002 15:14:41 +0000 (15:14 +0000)]
First pass at cleaning up htpasswd.  This removes the tmpnam call in
favor of apr_file_mktemp.  This also APR-izes most of the code.  The
file access code is still not using APR, but that will be fixed next.

I also re-organized some of the code to make it a little cleaner, and
to use functions where I could.

PR: 7764

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95712 13f79535-47bb-0310-9956-ffa450edef68

22 years agoThere's already a program distributed with Apache that does this.
Rich Bowen [Sun, 16 Jun 2002 12:17:18 +0000 (12:17 +0000)]
There's already a program distributed with Apache that does this.
Thanks, Joshua, for pointing this out. Do folks with binary
distributions (RPM or whatever) get this program installed somewhere
accessible?

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95711 13f79535-47bb-0310-9956-ffa450edef68

22 years agoOS/2: Stop a bunch of error messages while doing a make install.
Brian Havard [Sun, 16 Jun 2002 07:43:14 +0000 (07:43 +0000)]
OS/2: Stop a bunch of error messages while doing a make install.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95710 13f79535-47bb-0310-9956-ffa450edef68

22 years ago For debug builds, toss the .pdb's alongside the binaries for debugging
William A. Rowe Jr [Sun, 16 Jun 2002 03:25:36 +0000 (03:25 +0000)]
  For debug builds, toss the .pdb's alongside the binaries for debugging
  in the install tree [note: you still need some sources handy, at least
  this solves the 80/20 headache.]

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95709 13f79535-47bb-0310-9956-ffa450edef68

22 years agoFix the build on BSDi machines. The bsd_makefile trick didn't completely
David Reid [Sat, 15 Jun 2002 21:48:53 +0000 (21:48 +0000)]
Fix the build on BSDi machines. The bsd_makefile trick didn't completely
work as autoconf may run config.status and remove the fixes we've just
applied, so this allows us to workaround that problem.

Initailly suggested by Cliff, this is a modified version.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95708 13f79535-47bb-0310-9956-ffa450edef68

22 years agoForward-port a change from 1.3
Cliff Woolley [Sat, 15 Jun 2002 20:35:14 +0000 (20:35 +0000)]
Forward-port a change from 1.3

Reminded by:  Joshua Slive

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95707 13f79535-47bb-0310-9956-ffa450edef68

22 years agoDavid Reid is testing on BSDi for me and then off we go....
Cliff Woolley [Sat, 15 Jun 2002 20:28:10 +0000 (20:28 +0000)]
David Reid is testing on BSDi for me and then off we go....

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95706 13f79535-47bb-0310-9956-ffa450edef68

22 years agoRemoved spurious "Setup:" hanging on at the bottom of the page for no
Rich Bowen [Sat, 15 Jun 2002 20:20:35 +0000 (20:20 +0000)]
Removed spurious "Setup:" hanging on at the bottom of the page for no
apparent reason.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95705 13f79535-47bb-0310-9956-ffa450edef68

22 years agoCorrected HTML oops.
Rich Bowen [Sat, 15 Jun 2002 20:19:40 +0000 (20:19 +0000)]
Corrected HTML oops.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95704 13f79535-47bb-0310-9956-ffa450edef68

22 years agos/http/httpd/ in the title and page head.
Rich Bowen [Sat, 15 Jun 2002 20:15:39 +0000 (20:15 +0000)]
s/http/httpd/ in the title and page head.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95703 13f79535-47bb-0310-9956-ffa450edef68

22 years agoA little clarification of the command line which is to be typed. People
Rich Bowen [Sat, 15 Jun 2002 20:11:41 +0000 (20:11 +0000)]
A little clarification of the command line which is to be typed. People
seem to like to have an example of EXACTLY what they are supposed to
type.
Also, added a "subtitle" for the File Descriptor Limits page, to reflect
some of the material that I just added to it.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95702 13f79535-47bb-0310-9956-ffa450edef68

22 years agoAdded configuration example, code example, and a little explanation, to
Rich Bowen [Sat, 15 Jun 2002 20:09:08 +0000 (20:09 +0000)]
Added configuration example, code example, and a little explanation, to
facilitate logging all of your virtual hosts to a single file, and then
splitting them back up after. Note that if Apache has problems with this
many file handles, Perl might also. I'm not sure.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95701 13f79535-47bb-0310-9956-ffa450edef68

22 years agoImprove on some of the documentary comments in the request_rec.
Aaron Bannert [Sat, 15 Jun 2002 19:19:42 +0000 (19:19 +0000)]
Improve on some of the documentary comments in the request_rec.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95700 13f79535-47bb-0310-9956-ffa450edef68

22 years agoClose race condition cleaning up cache entry.
Bill Stoddard [Sat, 15 Jun 2002 16:49:19 +0000 (16:49 +0000)]
Close race condition cleaning up cache entry.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95698 13f79535-47bb-0310-9956-ffa450edef68

22 years agoNew Korean translations
Joshua Slive [Sat, 15 Jun 2002 15:34:06 +0000 (15:34 +0000)]
New Korean translations

Submitted by: Jeon Jeongho <mahajjh@myscan.org>
Reviewed by: Choi Kyusic

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95697 13f79535-47bb-0310-9956-ffa450edef68

22 years agoNot to pick nits, but I think that the "add this back in" phrasing will
Rich Bowen [Sat, 15 Jun 2002 11:43:11 +0000 (11:43 +0000)]
Not to pick nits, but I think that the "add this back in" phrasing will
confuse people, and leave them unsure what they are actually supposed to
do, in the unlikely event that they want to turn this back on. Made it a
little clearer what they actually need to do. Tested.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95696 13f79535-47bb-0310-9956-ffa450edef68

22 years agoThe '-@' seems to be more portable than '- @'. FreeBSD complained
Cliff Woolley [Sat, 15 Jun 2002 09:41:03 +0000 (09:41 +0000)]
The '-@' seems to be more portable than '- @'.  FreeBSD complained
about the latter.

Tested on: Linux, FreeBSD, Solaris, HP/UX, Darwin

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95695 13f79535-47bb-0310-9956-ffa450edef68

22 years agoWe not only want to avoid displaying it, we want to avoid sending it
Cliff Woolley [Sat, 15 Jun 2002 08:02:38 +0000 (08:02 +0000)]
We not only want to avoid displaying it, we want to avoid sending it
to the client entirely.  We need a mod_include conditional for that.

Submitted by:  Justin Erenkrantz

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95694 13f79535-47bb-0310-9956-ffa450edef68

22 years agoWe must set the MIME-type for .shtml files to text/html if we want them
Ryan Bloom [Sat, 15 Jun 2002 07:20:59 +0000 (07:20 +0000)]
We must set the MIME-type for .shtml files to text/html if we want them
to be parsed for SSI tags.  Add the config for that to the default
config file so that it is easier to enable .shtml parsing.

PR: 9787
Submitted by: Dave Dyer <ddyer@real-me.net>

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95693 13f79535-47bb-0310-9956-ffa450edef68

22 years agoComment out the SERVER_STRING variable from our default error documents.
Ryan Bloom [Sat, 15 Jun 2002 07:01:25 +0000 (07:01 +0000)]
Comment out the SERVER_STRING variable from our default error documents.
Some people do not like having this information in their error pages, and
it makes sense to not do it by default.  If users want this back, they
can uncomment it.

PR: 9319

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95692 13f79535-47bb-0310-9956-ffa450edef68

22 years agoFixed a problem with 'make install' on one of the tarballs (which
Cliff Woolley [Sat, 15 Jun 2002 06:11:45 +0000 (06:11 +0000)]
Fixed a problem with 'make install' on one of the tarballs (which
have the CVS dirs removed already) with ReliantUnix's rm:

Installing configuration files
Installing HTML documents
Usage: rm [-firR] file ...
make[1]: *** [install-htdocs] Error 2
make[1]: Leaving directory `/home1/apache20/httpd-2.0.37'
make: *** [install-recursive] Error 1

Submitted by: Jean-frederic Clere <jfrederic.clere@fujitsu-siemens.com>

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95691 13f79535-47bb-0310-9956-ffa450edef68

22 years agoMake the default_handler catch all requests that aren't served by
Ryan Bloom [Sat, 15 Jun 2002 05:49:06 +0000 (05:49 +0000)]
Make the default_handler catch all requests that aren't served by
another handler.  This also gets us to return a 404 if a directory
is requested, there is no DirectoryIndex, and mod_autoindex isn't
loaded.

PR: 8045
Submitted by: Justin Erenkrantz

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95690 13f79535-47bb-0310-9956-ffa450edef68

22 years agoFixed a bug in the handling of nested if-statements in shtml files
Brian Pane [Sat, 15 Jun 2002 05:41:48 +0000 (05:41 +0000)]
Fixed a bug in the handling of nested if-statements in shtml files
PR: 9866

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95687 13f79535-47bb-0310-9956-ffa450edef68

22 years agoAllow 'make install DESTDIR=/path'. This allows packagers to install
Ryan Bloom [Sat, 15 Jun 2002 04:41:52 +0000 (04:41 +0000)]
Allow 'make install DESTDIR=/path'.  This allows packagers to install
into a directory different from the one that was configured.  This
also mirrors the root= feature from 1.3.  We cannot use prefix=,
because both APR and APR-util resolve their installation paths at
configuration time.  This means that there is no variable prefix
to replace.

PR: 7803
Submitted by: Andreas Hasenack <andreas@netbank.com.br>

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95686 13f79535-47bb-0310-9956-ffa450edef68

22 years agoCorrected typo, and added note about Directory sections applying to
Rich Bowen [Sat, 15 Jun 2002 02:48:16 +0000 (02:48 +0000)]
Corrected typo, and added note about Directory sections applying to
files accessed via a different path, such as via symlinks.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95685 13f79535-47bb-0310-9956-ffa450edef68

22 years agoAdded example for SuexecUserGroup directive
Rich Bowen [Sat, 15 Jun 2002 02:36:57 +0000 (02:36 +0000)]
Added example for SuexecUserGroup directive

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95684 13f79535-47bb-0310-9956-ffa450edef68

22 years agoAdded examples to all mod_include directives.
Rich Bowen [Sat, 15 Jun 2002 02:34:29 +0000 (02:34 +0000)]
Added examples to all mod_include directives.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95683 13f79535-47bb-0310-9956-ffa450edef68

22 years agoStyle cleanups
Bill Stoddard [Sat, 15 Jun 2002 01:04:40 +0000 (01:04 +0000)]
Style cleanups

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95682 13f79535-47bb-0310-9956-ffa450edef68

22 years ago Fix serious brokenness... we abused prog_type rather than cmd_type on
William A. Rowe Jr [Sat, 15 Jun 2002 00:36:05 +0000 (00:36 +0000)]
  Fix serious brokenness... we abused prog_type rather than cmd_type on
  Win32 when handling APR_PROGRAM_PATH and APR_SHELLCMD style invocations.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95679 13f79535-47bb-0310-9956-ffa450edef68

22 years agoOn hold for now.
Cliff Woolley [Fri, 14 Jun 2002 22:31:08 +0000 (22:31 +0000)]
On hold for now.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95678 13f79535-47bb-0310-9956-ffa450edef68

22 years agothe TCP guy in Austin (AIX-land) swears that 4.3.2 GA had the fix for
Jeff Trawick [Fri, 14 Jun 2002 17:49:28 +0000 (17:49 +0000)]
the TCP guy in Austin (AIX-land) swears that 4.3.2 GA had the fix for
thundering herd, so tweak the prior change just a bit

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95677 13f79535-47bb-0310-9956-ffa450edef68

22 years ago Clean up a signedness emit
William A. Rowe Jr [Fri, 14 Jun 2002 17:16:59 +0000 (17:16 +0000)]
  Clean up a signedness emit

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95676 13f79535-47bb-0310-9956-ffa450edef68

22 years ago Cleanup some type mismatch emits and consistify to our new apr time helpers
William A. Rowe Jr [Fri, 14 Jun 2002 17:16:03 +0000 (17:16 +0000)]
  Cleanup some type mismatch emits and consistify to our new apr time helpers

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95675 13f79535-47bb-0310-9956-ffa450edef68

22 years ago Cleanup proxy timeouts a bit to remove emits and make consistent to
William A. Rowe Jr [Fri, 14 Jun 2002 17:14:57 +0000 (17:14 +0000)]
  Cleanup proxy timeouts a bit to remove emits and make consistent to
  vhost timeout.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95674 13f79535-47bb-0310-9956-ffa450edef68

22 years agoAIX 4.3.3 and above: Define SINGLE_LISTEN_UNSERIALIZED_ACCEPT.
Jeff Trawick [Fri, 14 Jun 2002 16:38:07 +0000 (16:38 +0000)]
AIX 4.3.3 and above: Define SINGLE_LISTEN_UNSERIALIZED_ACCEPT.
These levels of AIX don't have a thundering herd problem with
accept().

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95673 13f79535-47bb-0310-9956-ffa450edef68

22 years agoAdded <seealso> for AddHandler to the SetHandler doc
Rich Bowen [Fri, 14 Jun 2002 11:28:22 +0000 (11:28 +0000)]
Added <seealso> for AddHandler to the SetHandler doc

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95671 13f79535-47bb-0310-9956-ffa450edef68

22 years agoAdded (slightly redundant) pointer from SetEnvIf directive docs to
Rich Bowen [Fri, 14 Jun 2002 11:23:41 +0000 (11:23 +0000)]
Added (slightly redundant) pointer from SetEnvIf directive docs to
../env.html for more examples.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95670 13f79535-47bb-0310-9956-ffa450edef68

22 years agoFix typo.
Yoshiki Hayashi [Fri, 14 Jun 2002 09:32:42 +0000 (09:32 +0000)]
Fix typo.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95669 13f79535-47bb-0310-9956-ffa450edef68

22 years agoLooks like a cut and paste error.
Yoshiki Hayashi [Fri, 14 Jun 2002 09:32:26 +0000 (09:32 +0000)]
Looks like a cut and paste error.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95668 13f79535-47bb-0310-9956-ffa450edef68

22 years ago Don't pass args at StartService, there is no point.
William A. Rowe Jr [Fri, 14 Jun 2002 08:04:14 +0000 (08:04 +0000)]
  Don't pass args at StartService, there is no point.

PR:9858
Submitted by: Mladen Turk <mturk@mappingsoft.com>

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95667 13f79535-47bb-0310-9956-ffa450edef68

22 years agoModify the deflate input filter so that it should always return data on a
Justin Erenkrantz [Fri, 14 Jun 2002 07:58:34 +0000 (07:58 +0000)]
Modify the deflate input filter so that it should always return data on a
blocking read.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95666 13f79535-47bb-0310-9956-ffa450edef68

22 years agoprefork MPM: Ignore mutex errors during graceful restart. For
Jeff Trawick [Fri, 14 Jun 2002 03:11:43 +0000 (03:11 +0000)]
prefork MPM: Ignore mutex errors during graceful restart.  For
certain types of mutexes (particularly SysV semaphores), we
should expect to occasionally fail to obtain or release the
mutex during restart processing.

These mutex failures seem to be a pretty rare occurrence, but
it was fatal.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95665 13f79535-47bb-0310-9956-ffa450edef68

22 years agoAdd some information about reverse proxying to the url mapping document.
Joshua Slive [Fri, 14 Jun 2002 02:57:00 +0000 (02:57 +0000)]
Add some information about reverse proxying to the url mapping document.

Also, while I'm in there, make some of the user-matching regexes more restrictive.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95664 13f79535-47bb-0310-9956-ffa450edef68

22 years agoRemove some directive docs from mpm_netware and point them at mpm_common, plus
Joshua Slive [Fri, 14 Jun 2002 02:31:01 +0000 (02:31 +0000)]
Remove some directive docs from mpm_netware and point them at mpm_common, plus
update the mpm_common docs to deal with multiple meanings for the same directives.

In the future, it would be a wise idea not to use the same directive name as
another MPM unless the directive really does exactly the same thing in both
MPMs.

Problem pointed out by: Rich Bowen

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95663 13f79535-47bb-0310-9956-ffa450edef68

22 years agoScriptSock example
Rich Bowen [Thu, 13 Jun 2002 21:54:53 +0000 (21:54 +0000)]
ScriptSock example

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95662 13f79535-47bb-0310-9956-ffa450edef68

22 years agoDay is done,
Cliff Woolley [Thu, 13 Jun 2002 21:30:15 +0000 (21:30 +0000)]
Day is done,
gone the sun,
From the hills,
from the lake,
From the skies.
All is well,
safely rest,
God is nigh.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95661 13f79535-47bb-0310-9956-ffa450edef68

22 years agoIs this a new bug? NO. Let's get a release out for the fixes we have.
Aaron Bannert [Thu, 13 Jun 2002 21:16:32 +0000 (21:16 +0000)]
Is this a new bug? NO. Let's get a release out for the fixes we have.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95660 13f79535-47bb-0310-9956-ffa450edef68

22 years agoThis has magically gone away, and prefork's graceful now passes my
Cliff Woolley [Thu, 13 Jun 2002 21:10:39 +0000 (21:10 +0000)]
This has magically gone away, and prefork's graceful now passes my
torture test.

Things I changed:
  1) make extraclean and rebuild after cvs up (it was not *that* old though)
  2) removed mod_pop3, mod_ldap, mod_auth_ldap, and mod_php4

Shrug.  On to check worker while I'm at it.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95659 13f79535-47bb-0310-9956-ffa450edef68

22 years agothis comment is way bogus
Cliff Woolley [Thu, 13 Jun 2002 20:30:09 +0000 (20:30 +0000)]
this comment is way bogus

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95656 13f79535-47bb-0310-9956-ffa450edef68

22 years agougggggghhhhh
Cliff Woolley [Thu, 13 Jun 2002 20:28:20 +0000 (20:28 +0000)]
ugggggghhhhh

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95655 13f79535-47bb-0310-9956-ffa450edef68

22 years agoSend output to the next filter even on header_only requests in mod_status
Brian Pane [Thu, 13 Jun 2002 19:54:52 +0000 (19:54 +0000)]
Send output to the next filter even on header_only requests in mod_status
and mod_info

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95654 13f79535-47bb-0310-9956-ffa450edef68

22 years agoPass the brigade even on header_only requests
Brian Pane [Thu, 13 Jun 2002 19:41:17 +0000 (19:41 +0000)]
Pass the brigade even on header_only requests

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95653 13f79535-47bb-0310-9956-ffa450edef68

22 years agoFix install-bindist.sh so that it finds any perl instead of just
Jeff Trawick [Thu, 13 Jun 2002 18:46:28 +0000 (18:46 +0000)]
Fix install-bindist.sh so that it finds any perl instead of just
early perl 5.x versions.  This is consistent with a build/install
from source, and it allows the perl scripts installed by a bindist
to work on systems with perl 5.6.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95651 13f79535-47bb-0310-9956-ffa450edef68

22 years agoEnabled Server-Side Includes by default in the /manual directory so that all
Bradley Nicholes [Thu, 13 Jun 2002 18:39:04 +0000 (18:39 +0000)]
Enabled Server-Side Includes by default in the /manual directory so that all
headers and footers will be included correctly in the documentation pages.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95650 13f79535-47bb-0310-9956-ffa450edef68

22 years agoAdd a note on the overall problem with HEAD requests generating wrong headers.
Justin Erenkrantz [Thu, 13 Jun 2002 18:37:00 +0000 (18:37 +0000)]
Add a note on the overall problem with HEAD requests generating wrong headers.
Again, I believe this is a showstopper, but no one seems to agree with me.

Point at patch for 500/501 problem - I don't plan on testing or committing it.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95649 13f79535-47bb-0310-9956-ffa450edef68

22 years agoThese are not showstoppers. Let's get a release out the door that includes
Aaron Bannert [Thu, 13 Jun 2002 18:07:58 +0000 (18:07 +0000)]
These are not showstoppers. Let's get a release out the door that includes
fixes for all the bugs that have been fixed since dot-36.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95648 13f79535-47bb-0310-9956-ffa450edef68

22 years agomoving on.
Cliff Woolley [Thu, 13 Jun 2002 18:00:18 +0000 (18:00 +0000)]
moving on.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95647 13f79535-47bb-0310-9956-ffa450edef68

22 years agoavoid a non-portable shell construct ("builddir=$(shell pwd)") so that the
Jeff Trawick [Thu, 13 Jun 2002 17:06:04 +0000 (17:06 +0000)]
avoid a non-portable shell construct ("builddir=$(shell pwd)") so that the
makefile created by apxs -g works on more systems

it was broken on at least AIX and Tru64

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95646 13f79535-47bb-0310-9956-ffa450edef68

22 years agoJust quiet an annoying warning.
Ryan Bloom [Thu, 13 Jun 2002 16:36:54 +0000 (16:36 +0000)]
Just quiet an annoying warning.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95645 13f79535-47bb-0310-9956-ffa450edef68

22 years agoAt least get perchild to compile, getting it working is next.
Ryan Bloom [Thu, 13 Jun 2002 16:36:19 +0000 (16:36 +0000)]
At least get perchild to compile, getting it working is next.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95644 13f79535-47bb-0310-9956-ffa450edef68

22 years agofix the type of cache_pq_set_null so that it compiles with non-gcc/non-MSC
Jeff Trawick [Thu, 13 Jun 2002 14:40:11 +0000 (14:40 +0000)]
fix the type of cache_pq_set_null so that it compiles with non-gcc/non-MSC
(I hit the breakage with xlc on AIX)

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95642 13f79535-47bb-0310-9956-ffa450edef68

22 years agoAdd STATUS note on a newly discovered RFC violation, and add an update on the
Justin Erenkrantz [Thu, 13 Jun 2002 07:48:22 +0000 (07:48 +0000)]
Add STATUS note on a newly discovered RFC violation, and add an update on the
other one we know about.

I firmly believe any known violation of the appropriate RFCs is a showstopper.
So, I kindly ask for votes so I may know which way the group feels.

(Showstopper == 'you will not vote positively for a release until fixed.')

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95641 13f79535-47bb-0310-9956-ffa450edef68

22 years agoNew Japanese translations. Forward port from 1.3.
Yoshiki Hayashi [Thu, 13 Jun 2002 07:46:30 +0000 (07:46 +0000)]
New Japanese translations.  Forward port from 1.3.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95640 13f79535-47bb-0310-9956-ffa450edef68

22 years agoPrevent browsers from wrapping "description", "status" and "module
Yoshiki Hayashi [Thu, 13 Jun 2002 07:37:38 +0000 (07:37 +0000)]
Prevent browsers from wrapping "description", "status" and "module
identitfier" (and their translations).

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95639 13f79535-47bb-0310-9956-ffa450edef68

22 years agoNew Japanese translation.
Yoshiki Hayashi [Thu, 13 Jun 2002 07:22:37 +0000 (07:22 +0000)]
New Japanese translation.

Submitted by: Hiroaki KAWAI <hawk@bcl.t.u-tokyo.ac.jp>
Reviewed by: Yoshiki Hayashi

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95638 13f79535-47bb-0310-9956-ffa450edef68

22 years agoUpdate Japanese translation.
Yoshiki Hayashi [Thu, 13 Jun 2002 07:20:34 +0000 (07:20 +0000)]
Update Japanese translation.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95637 13f79535-47bb-0310-9956-ffa450edef68

22 years agoUpdate transformations.
Yoshiki Hayashi [Thu, 13 Jun 2002 07:14:42 +0000 (07:14 +0000)]
Update transformations.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95636 13f79535-47bb-0310-9956-ffa450edef68

22 years agoAdd missing description for AddDescription directive.
Yoshiki Hayashi [Thu, 13 Jun 2002 07:13:55 +0000 (07:13 +0000)]
Add missing description for AddDescription directive.
Fix typo.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95635 13f79535-47bb-0310-9956-ffa450edef68

22 years agoGrammer police came through.
Yoshiki Hayashi [Thu, 13 Jun 2002 07:12:20 +0000 (07:12 +0000)]
Grammer police came through.

Also, remove empty compatibility tag and use directive tag for
directives.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95634 13f79535-47bb-0310-9956-ffa450edef68

22 years agoPer RFC 2616 section 9.4, we SHOULD return the content-length if possible on
Justin Erenkrantz [Thu, 13 Jun 2002 06:36:40 +0000 (06:36 +0000)]
Per RFC 2616 section 9.4, we SHOULD return the content-length if possible on
HEAD requests (even for CGI requests).  Also do it because it fixes the cause
of .37's demise.

This also fixes a condition seen on FreeBSD-4.6 where HEAD requests on CGI
scripts would hang because the OS would return EAGAIN in log_script_err
(via apr_file_gets).  Since we never read the script output, this caused
FreeBSD to not let us read stderr.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95633 13f79535-47bb-0310-9956-ffa450edef68

22 years agoExample for ServerRoot directive
Rich Bowen [Thu, 13 Jun 2002 02:46:04 +0000 (02:46 +0000)]
Example for ServerRoot directive

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95632 13f79535-47bb-0310-9956-ffa450edef68

22 years agoExample for ScriptLog
Rich Bowen [Thu, 13 Jun 2002 02:35:57 +0000 (02:35 +0000)]
Example for ScriptLog

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95631 13f79535-47bb-0310-9956-ffa450edef68

22 years agoExample for ScoreBoardFile
Rich Bowen [Thu, 13 Jun 2002 02:35:18 +0000 (02:35 +0000)]
Example for ScoreBoardFile

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95630 13f79535-47bb-0310-9956-ffa450edef68

22 years agoExamples for HeaderName, ReadmeName
Rich Bowen [Thu, 13 Jun 2002 02:13:30 +0000 (02:13 +0000)]
Examples for HeaderName, ReadmeName

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95629 13f79535-47bb-0310-9956-ffa450edef68

22 years agoExamples for (Add|Remove)OutputFilter, and see also sections for each.
Rich Bowen [Thu, 13 Jun 2002 02:12:38 +0000 (02:12 +0000)]
Examples for (Add|Remove)OutputFilter, and see also sections for each.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95628 13f79535-47bb-0310-9956-ffa450edef68

22 years agoExample of PidFile directive
Rich Bowen [Thu, 13 Jun 2002 01:32:26 +0000 (01:32 +0000)]
Example of PidFile directive

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95627 13f79535-47bb-0310-9956-ffa450edef68

22 years agoAdded example of Using * as argument to NameVirtualHost. Added note that
Rich Bowen [Thu, 13 Jun 2002 01:07:09 +0000 (01:07 +0000)]
Added example of Using * as argument to NameVirtualHost. Added note that
arg to NameVirtualHost is supposed to match the arg to VirtualHost, as
this seems to come up several times a week on #apache

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95626 13f79535-47bb-0310-9956-ffa450edef68

22 years agoXML->HTML conversion of earlier commit. Slight clarification.
Rich Bowen [Thu, 13 Jun 2002 00:26:33 +0000 (00:26 +0000)]
XML->HTML conversion of earlier commit. Slight clarification.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95625 13f79535-47bb-0310-9956-ffa450edef68

22 years agoExample for MimeMagicFile.
Rich Bowen [Thu, 13 Jun 2002 00:02:58 +0000 (00:02 +0000)]
Example for MimeMagicFile.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95624 13f79535-47bb-0310-9956-ffa450edef68

22 years ago Solve the 80/20 by initializing and storing server_rec->timeout and
William A. Rowe Jr [Wed, 12 Jun 2002 23:59:31 +0000 (23:59 +0000)]
  Solve the 80/20 by initializing and storing server_rec->timeout and
  server_rec->keep_alive_timeout in apr_time_interval_t format (in apr
  units, whatever they be), as both values exist to pass into APR, and
  all APR timeouts are in apr_time_t.

Reviewed by: Cliff Woolley

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95623 13f79535-47bb-0310-9956-ffa450edef68