]> granicus.if.org Git - apache/log
apache
18 years agoThe string comming from TC is in ASCII and the string returned by apr_psprintf isn't.
Jean-Frederic Clere [Thu, 15 Dec 2005 14:44:39 +0000 (14:44 +0000)]
The string comming from TC is in ASCII and the string returned by apr_psprintf isn't.

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

18 years ago Mirror Makefile.win from the GUI environment. The path here must be
William A. Rowe Jr [Wed, 14 Dec 2005 20:16:52 +0000 (20:16 +0000)]
  Mirror Makefile.win from the GUI environment.  The path here must be
  explicit to help point the debugger at the resulting, installed binaries.

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

18 years ago Revert 1/2 of my last commit, keep Apache2 as the default name so we don't
William A. Rowe Jr [Wed, 14 Dec 2005 20:14:46 +0000 (20:14 +0000)]
  Revert 1/2 of my last commit, keep Apache2 as the default name so we don't
  need to keep syncing this with releases.

  Retain the other 1/2 - a better message since apr's must be in the build
  tree srclib/ not the install target srclib/.

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

18 years ago Keep default INSTDIR out of a 2.0, 2.2 tree when working in svn trunk
William A. Rowe Jr [Wed, 14 Dec 2005 20:07:37 +0000 (20:07 +0000)]
  Keep default INSTDIR out of a 2.0, 2.2 tree when working in svn trunk

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

18 years agoupdate transformation
André Malo [Wed, 14 Dec 2005 16:39:01 +0000 (16:39 +0000)]
update transformation

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

18 years agofix that paste error and properties
André Malo [Wed, 14 Dec 2005 16:34:19 +0000 (16:34 +0000)]
fix that paste error and properties

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

18 years ago* include/ap_config.h: Fix the macro name.
Joe Orton [Mon, 12 Dec 2005 11:14:10 +0000 (11:14 +0000)]
* include/ap_config.h: Fix the macro name.

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

18 years ago* include/ap_config.h: Define AP_HAVE_DESIGNATED_INITIALIZER for GCC
Joe Orton [Mon, 12 Dec 2005 10:10:33 +0000 (10:10 +0000)]
* include/ap_config.h: Define AP_HAVE_DESIGNATED_INITIALIZER for GCC
(but not G++) or any compiler which claims C99 support.

* configure.in: Don't define AP_HAVE_DESIGNATED_INITIALIZER here.

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

18 years agoOK, while we ponder how best to reuse conn pools for workers,
Jim Jagielski [Sun, 11 Dec 2005 21:36:27 +0000 (21:36 +0000)]
OK, while we ponder how best to reuse conn pools for workers,
clean this section up.

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

18 years agoDetails about changing auth provider.
Rich Bowen [Sun, 11 Dec 2005 20:40:56 +0000 (20:40 +0000)]
Details about changing auth provider.

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

18 years agoA few additional seealso links
Rich Bowen [Sun, 11 Dec 2005 18:25:59 +0000 (18:25 +0000)]
A few additional seealso links

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

18 years ago* revert r355823 and r355837
Ruediger Pluem [Sun, 11 Dec 2005 01:28:13 +0000 (01:28 +0000)]
* revert r355823 and r355837

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

18 years ago* Let the proxy handler know that the backend connection broke after we have
Ruediger Pluem [Sun, 11 Dec 2005 00:50:21 +0000 (00:50 +0000)]
* Let the proxy handler know that the backend connection broke after we have
  sent the headers.

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

18 years ago* Move handling of backends that broke after the headers have been sent
Ruediger Pluem [Sun, 11 Dec 2005 00:15:27 +0000 (00:15 +0000)]
* Move handling of backends that broke after the headers have been sent
  into the proxy handler of mod_proxy.

  This patch still sets r->connection->aborted to 1 which is currently
  vetoed by Roy. Moving it from the scheme handler to the proxy handler
  should ease the reimplementation of this, as the scheme handlers only
  needs to return PROXY_BACKEND_BROKEN to signal the above situation to
  the proxy handler.

  mod_proxy.h: Add define for PROXY_BACKEND_BROKEN
  mod_proxy.c: Handle PROXY_BACKEND_BROKEN in proxy handler
  mod_proxy_http.c: Sent back PROXY_BACKEND_BROKEN if backend broke
  after we sent the headers.

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

18 years agoSplit the Access Control stuff off into it's own howto, because I wanted
Rich Bowen [Sat, 10 Dec 2005 19:39:24 +0000 (19:39 +0000)]
Split the Access Control stuff off into it's own howto, because I wanted
to do some stuff that really isn't auth related.

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

18 years agoupdate transformation
André Malo [Sat, 10 Dec 2005 15:52:24 +0000 (15:52 +0000)]
update transformation

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

18 years agofix xml validation error
André Malo [Sat, 10 Dec 2005 15:45:41 +0000 (15:45 +0000)]
fix xml validation error

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

18 years agoMention that digest can also be used with authn_dbd
Rich Bowen [Sat, 10 Dec 2005 14:00:05 +0000 (14:00 +0000)]
Mention that digest can also be used with authn_dbd

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

18 years agoAdd required AuthName directive
Rich Bowen [Fri, 9 Dec 2005 02:41:20 +0000 (02:41 +0000)]
Add required AuthName directive

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

18 years ago* include/httpd.h (conn_state_e): Remove trailing comma from enum.
Joe Orton [Thu, 8 Dec 2005 17:12:36 +0000 (17:12 +0000)]
* include/httpd.h (conn_state_e): Remove trailing comma from enum.

Submitted by: Per Olausson <pao darkheim.freeserve.co.uk>
PR: 37840

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

18 years agoAdd a comment and use proper grammar for another comment.
Justin Erenkrantz [Wed, 7 Dec 2005 00:44:13 +0000 (00:44 +0000)]
Add a comment and use proper grammar for another comment.
(No functional changes.)

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

18 years agoIf a connection aborts while waiting for a chunked line, flag the connection as
Justin Erenkrantz [Wed, 7 Dec 2005 00:21:38 +0000 (00:21 +0000)]
If a connection aborts while waiting for a chunked line, flag the connection as
errored out and send errors upwards.

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

18 years agoIf we get an error reading the upstream response, we should bail.
Justin Erenkrantz [Wed, 7 Dec 2005 00:18:58 +0000 (00:18 +0000)]
If we get an error reading the upstream response, we should bail.

Reported by: Brian Akins

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

18 years agoAdd the mod_dbd exports to the NetWare make file
Bradley Nicholes [Tue, 6 Dec 2005 16:48:48 +0000 (16:48 +0000)]
Add the mod_dbd exports to the NetWare make file

Submitted by: Guenter Knauf <fuankg apache.org>

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

18 years agoImprove defaults from 'test' values (and get meaningful errors on
Nick Kew [Tue, 6 Dec 2005 10:54:57 +0000 (10:54 +0000)]
Improve defaults from 'test' values (and get meaningful errors on
startup if database is down); trivial tidyups.

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

18 years ago* modules/ssl/ssl_engine_kernel.c (ssl_hook_Access): Omit further
Joe Orton [Tue, 6 Dec 2005 10:21:41 +0000 (10:21 +0000)]
* modules/ssl/ssl_engine_kernel.c (ssl_hook_Access): Omit further
access control checks if SSL is not in use regardless of vhost
settings.

Submitted by: Rüdiger Plüm, Joe Orton
PR: 37791

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

18 years ago* os/unix/unixd.h: Use extern "C" linkage.
Joe Orton [Tue, 6 Dec 2005 09:48:19 +0000 (09:48 +0000)]
* os/unix/unixd.h: Use extern "C" linkage.

PR: 37357

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

18 years agoFix documentation bugs
Nick Kew [Tue, 6 Dec 2005 00:54:29 +0000 (00:54 +0000)]
Fix documentation bugs

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

18 years agoGive a clue about what event really does, and some
Joshua Slive [Mon, 5 Dec 2005 20:35:24 +0000 (20:35 +0000)]
Give a clue about what event really does, and some
small improvements to the leader and worker docs.

Submitted by: Noirin Plunkett <firebird nerdchic.net>, Joshua Slive

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

18 years agoPR 36090
Nick Kew [Mon, 5 Dec 2005 18:22:29 +0000 (18:22 +0000)]
PR 36090
Fix recursive ErrorDocument handling

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

18 years agoFix for Bug 37790 (hangs on error return from post_read_request)
Nick Kew [Mon, 5 Dec 2005 15:30:15 +0000 (15:30 +0000)]
Fix for Bug 37790 (hangs on error return from post_read_request)

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

18 years agoupdate transformation
André Malo [Sat, 3 Dec 2005 21:56:02 +0000 (21:56 +0000)]
update transformation

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

18 years agofix remaining mod_imap occurences
André Malo [Sat, 3 Dec 2005 21:39:50 +0000 (21:39 +0000)]
fix remaining mod_imap occurences

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

18 years ago* Fix PR37753. Off by one bug in get_path_param eats up too much of the string
Ruediger Pluem [Sat, 3 Dec 2005 20:17:11 +0000 (20:17 +0000)]
* Fix PR37753. Off by one bug in get_path_param eats up too much of the string
  such that session identifier for sticky sessions is never found in URL.

Submitted by: Kazuhiro Osawa <ko yappo.ne.jp>
Reviewed by: Ruediger Pluem

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

18 years agoOnly define sendfile_nonblocking if APR_HAS_SENDFILE is true.
Paul Querna [Sat, 3 Dec 2005 18:22:25 +0000 (18:22 +0000)]
Only define sendfile_nonblocking if APR_HAS_SENDFILE is true.

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

18 years agoPoint the breadcrump links to the new docs index page.
Joshua Slive [Fri, 2 Dec 2005 19:45:19 +0000 (19:45 +0000)]
Point the breadcrump links to the new docs index page.

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

18 years ago Recover text
William A. Rowe Jr [Fri, 2 Dec 2005 13:46:07 +0000 (13:46 +0000)]
  Recover text

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

18 years ago Style nit - alpha order is slightly easier to later review
William A. Rowe Jr [Fri, 2 Dec 2005 12:34:40 +0000 (12:34 +0000)]
  Style nit - alpha order is slightly easier to later review

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

18 years agorebuild.
Paul Querna [Thu, 1 Dec 2005 17:51:23 +0000 (17:51 +0000)]
rebuild.

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

18 years agoNuke really old version recommendation on GCC. Any modern version should be acceptable.
Paul Querna [Thu, 1 Dec 2005 17:40:17 +0000 (17:40 +0000)]
Nuke really old version recommendation on GCC. Any modern version should be acceptable.

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

18 years agoUntil we determine whether we should dip into the connection
Jim Jagielski [Thu, 1 Dec 2005 13:50:11 +0000 (13:50 +0000)]
Until we determine whether we should dip into the connection
pool each time, rearrange the logic to avoid a double
check which is unneeded. No matter what (if it's reusable or
not) a null conn->hostname needs to be set. At that
point it doesn't matter if we're not reusing it or
if the string comparison happens, since what we
would do in that case has already been done.

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

18 years agominor doc changes already on 2.2 branch
Roy T. Fielding [Thu, 1 Dec 2005 07:51:52 +0000 (07:51 +0000)]
minor doc changes already on 2.2 branch

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

18 years agoCheck that conn->hostname is valid before we do the string
Jim Jagielski [Wed, 30 Nov 2005 18:40:05 +0000 (18:40 +0000)]
Check that conn->hostname is valid before we do the string
comparison

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

18 years agoEscape the dots in the regular expression.
Colm MacCarthaigh [Wed, 30 Nov 2005 10:11:35 +0000 (10:11 +0000)]
Escape the dots in the regular expression.

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

18 years agoFix SSL Protocol hexdumps for EBCDIC systems
Martin Kraemer [Wed, 30 Nov 2005 08:01:35 +0000 (08:01 +0000)]
Fix SSL Protocol hexdumps for EBCDIC systems

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

18 years agoRemove the problematic block which is causing problems with the latest versions
Colm MacCarthaigh [Tue, 29 Nov 2005 23:34:28 +0000 (23:34 +0000)]
Remove the problematic block which is causing problems with the latest versions
of MSVS. Sacrifice some borland options which don't really work anyway, and for
Borland to work, we'e really going to need a Makefile.bor.

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

18 years agoupdate transformation
André Malo [Tue, 29 Nov 2005 18:54:35 +0000 (18:54 +0000)]
update transformation

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

18 years agoupgrading.html.fr no longer exists, but the the entry commented for reference
André Malo [Tue, 29 Nov 2005 18:46:23 +0000 (18:46 +0000)]
upgrading.html.fr no longer exists, but the the entry commented for reference

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

18 years agoAdding mod_authn_dbd to the Windows build environments.
Colm MacCarthaigh [Tue, 29 Nov 2005 18:12:33 +0000 (18:12 +0000)]
Adding mod_authn_dbd to the Windows build environments.

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

18 years agoFix a mixed-up module reference and document (carefully)
Joshua Slive [Tue, 29 Nov 2005 18:11:41 +0000 (18:11 +0000)]
Fix a mixed-up module reference and document (carefully)
how to turn off require in a subdirectory.

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

18 years agoFirst stab at a build environment for mod_authn_dbd
Colm MacCarthaigh [Tue, 29 Nov 2005 17:58:10 +0000 (17:58 +0000)]
First stab at a build environment for mod_authn_dbd

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

18 years agoUpdate to reflect the mod_dbd inclusion
Colm MacCarthaigh [Tue, 29 Nov 2005 17:48:35 +0000 (17:48 +0000)]
Update to reflect the mod_dbd inclusion

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

18 years agoAdd mod_dbd to the windows build environment
Colm MacCarthaigh [Tue, 29 Nov 2005 17:43:53 +0000 (17:43 +0000)]
Add mod_dbd to the windows build environment

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

18 years agoOptional functions are of __cdecl the kind on win32, due to "APU_DECLARE_NONSTD
Colm MacCarthaigh [Tue, 29 Nov 2005 17:27:02 +0000 (17:27 +0000)]
Optional functions are of __cdecl the kind on win32, due to "APU_DECLARE_NONSTD
apr_dynamic_fn_register" from apr-util, so we can't use __stdcall. Declare our
functions as non-std.

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

18 years agoA first stab at a win32 build environment for mod_dbd.
Colm MacCarthaigh [Tue, 29 Nov 2005 16:48:04 +0000 (16:48 +0000)]
A first stab at a win32 build environment for mod_dbd.

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

18 years agoKill a very old html-only translation.
Joshua Slive [Tue, 29 Nov 2005 16:40:18 +0000 (16:40 +0000)]
Kill a very old html-only translation.

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

18 years agoMove closing tag to proper location.
Joshua Slive [Tue, 29 Nov 2005 16:38:51 +0000 (16:38 +0000)]
Move closing tag to proper location.

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

18 years agoGive DBD a set of _DECLARE macros consistent with other modules, so that
Colm MacCarthaigh [Tue, 29 Nov 2005 16:37:49 +0000 (16:37 +0000)]
Give DBD a set of _DECLARE macros consistent with other modules, so that
_EXPORT and _STATIC and be turned on/off more easily.

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

18 years agoSome config file changes:
Joshua Slive [Tue, 29 Nov 2005 16:08:01 +0000 (16:08 +0000)]
Some config file changes:

- Make the <Files> section safer by
  adding Satisfy all (as is already present in 1.3)

- Remove some handler examples that almost nobody will
  use (the config file is not the documentation)

- Remove some win32 specific stuff from the default
  config, since win32 uses its own config file

- Remove the config section for the perchild mpm

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

18 years agoNote dbd/windows problem
Nick Kew [Tue, 29 Nov 2005 15:38:44 +0000 (15:38 +0000)]
Note dbd/windows problem

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

18 years agoFix case where a shared keepalive connection results in
Jim Jagielski [Tue, 29 Nov 2005 15:05:16 +0000 (15:05 +0000)]
Fix case where a shared keepalive connection results in
different workers from being accessed. Try to be wise and
fast about the tests before we do the expensive string
comparison.

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

18 years agoCorrect a syntax error detected by MSVC2005
Colm MacCarthaigh [Tue, 29 Nov 2005 12:37:03 +0000 (12:37 +0000)]
Correct a syntax error detected by MSVC2005

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

18 years agorebuild docs
Paul Querna [Mon, 28 Nov 2005 20:44:08 +0000 (20:44 +0000)]
rebuild docs

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

18 years ago- try to add a note to explain the behaviour of clients use a pipelined
David Reid [Mon, 28 Nov 2005 19:41:42 +0000 (19:41 +0000)]
- try to add a note to explain the behaviour of clients use a pipelined
  connection wrt to MaxRequestsPerChild and KeepAlive.

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

18 years ago* modules/ssl/ssl_scache_dc.c (ssl_scache_dc_retrieve): Fix warning
Joe Orton [Mon, 28 Nov 2005 16:16:21 +0000 (16:16 +0000)]
* modules/ssl/ssl_scache_dc.c (ssl_scache_dc_retrieve): Fix warning
with OpenSSL 0.9.8a.

* support/ab.c (ssl_print_cb, ssl_print_cert_info): Fix warnings with
OpenSSL 0.9.8a.

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

18 years agoWhen computing the timeouts for keepalives and write completion,
Brian Pane [Sun, 27 Nov 2005 07:34:15 +0000 (07:34 +0000)]
When computing the timeouts for keepalives and write completion,
get the current time _after_ processing the event that led to the
timeout, rather than before.
[forward-port of commit 349189 from the async-read-dev branch]

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

18 years agoSmall description change to indicate which socket library the NLM in built for
Bradley Nicholes [Tue, 22 Nov 2005 00:37:51 +0000 (00:37 +0000)]
Small description change to indicate which socket library the NLM in built for

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

18 years agoPR#37553
Nick Kew [Mon, 21 Nov 2005 23:41:44 +0000 (23:41 +0000)]
PR#37553
Redesign of pools handling in mod_dbd
Submitted: Chris Darroch, Reviewed: Nick Kew

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

18 years agoFix a problem with the HTTPS CGI variable not getting set for secure requests. Needed...
Bradley Nicholes [Mon, 21 Nov 2005 23:25:44 +0000 (23:25 +0000)]
Fix a problem with the HTTPS CGI variable not getting set for secure requests. Needed to readd the port and address on every restart whether or not the listen port is being created or resused.

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

18 years agoWrap exported functions in AP_DECLARE
Nick Kew [Mon, 21 Nov 2005 23:01:49 +0000 (23:01 +0000)]
Wrap exported functions in AP_DECLARE

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

18 years ago* Sync with 2.2.x CHANGES
Ruediger Pluem [Sun, 20 Nov 2005 10:22:04 +0000 (10:22 +0000)]
* Sync with 2.2.x CHANGES

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

18 years agoremove an obsolete comment
Brian Pane [Sun, 20 Nov 2005 07:40:49 +0000 (07:40 +0000)]
remove an obsolete comment

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

18 years agorebuild
Paul Querna [Sun, 20 Nov 2005 02:02:09 +0000 (02:02 +0000)]
rebuild

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

18 years agoFix program name
Paul Querna [Sun, 20 Nov 2005 01:57:58 +0000 (01:57 +0000)]
Fix program name

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

18 years agorebuild.
Paul Querna [Sun, 20 Nov 2005 01:36:27 +0000 (01:36 +0000)]
rebuild.

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

18 years agoAdd a mention of the new httxt2dbm program
Paul Querna [Sun, 20 Nov 2005 01:33:27 +0000 (01:33 +0000)]
Add a mention of the new httxt2dbm program

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

18 years ago* Minor performance tweak by reusing already calculated strlen in get_body.
Ruediger Pluem [Sat, 19 Nov 2005 20:59:16 +0000 (20:59 +0000)]
* Minor performance tweak by reusing already calculated strlen in get_body.

Submitted by: Christophe Jaillet <christophe.jaillet wanadoo.fr>
Reviewed by: Ruediger Pluem

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

18 years agofix eol-style
André Malo [Fri, 18 Nov 2005 20:03:51 +0000 (20:03 +0000)]
fix eol-style

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

18 years agoupdate transformation
André Malo [Fri, 18 Nov 2005 19:43:42 +0000 (19:43 +0000)]
update transformation

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

18 years agofix properties
André Malo [Fri, 18 Nov 2005 19:38:21 +0000 (19:38 +0000)]
fix properties

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

18 years agoAdd typemap file to mod_authz_dbd docs (oops!)
Nick Kew [Fri, 18 Nov 2005 00:48:16 +0000 (00:48 +0000)]
Add typemap file to mod_authz_dbd docs (oops!)

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

18 years agoNote mod_authz_dbd in CHANGES
Nick Kew [Fri, 18 Nov 2005 00:46:11 +0000 (00:46 +0000)]
Note mod_authz_dbd in CHANGES

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

18 years agoDocumentation for mod_authz_dbd
Nick Kew [Fri, 18 Nov 2005 00:43:41 +0000 (00:43 +0000)]
Documentation for mod_authz_dbd

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

18 years agomod_authz_dbd: SQL authz with Login/Session support
Nick Kew [Fri, 18 Nov 2005 00:42:08 +0000 (00:42 +0000)]
mod_authz_dbd: SQL authz with Login/Session support

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

18 years agoRemove redundant link.
Joshua Slive [Thu, 17 Nov 2005 18:31:47 +0000 (18:31 +0000)]
Remove redundant link.

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

18 years ago* Deprecate AddOutputFilterByType
Joshua Slive [Thu, 17 Nov 2005 18:29:41 +0000 (18:29 +0000)]
* Deprecate AddOutputFilterByType

* Link up Require and AuthType to the relevant aaa modules.

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

18 years agoA few markup and spelling fixes.
Joshua Slive [Thu, 17 Nov 2005 18:24:09 +0000 (18:24 +0000)]
A few markup and spelling fixes.

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

18 years agoAdd defaults and comments for better robustness against misuse
Nick Kew [Wed, 16 Nov 2005 21:20:33 +0000 (21:20 +0000)]
Add defaults and comments for better robustness against misuse
(based on comments from Chris Darroch).

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

18 years agoupdate transformation
André Malo [Wed, 16 Nov 2005 17:38:52 +0000 (17:38 +0000)]
update transformation

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

18 years agoProvide at least a basic roadmap to the aaa modules as part of the tutorial.
Joshua Slive [Wed, 16 Nov 2005 17:24:48 +0000 (17:24 +0000)]
Provide at least a basic roadmap to the aaa modules as part of the tutorial.

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

18 years agoRemove on/off arguments from AuthDigestProvider.
Joshua Slive [Wed, 16 Nov 2005 17:23:46 +0000 (17:23 +0000)]
Remove on/off arguments from AuthDigestProvider.

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

18 years agoRemove on/off from the argument list for AuthBasicProvider,
Joshua Slive [Wed, 16 Nov 2005 16:40:57 +0000 (16:40 +0000)]
Remove on/off from the argument list for AuthBasicProvider,
attempt to clarify the discussion of AuthBasicAuthoritative,
and add some extra clarifications in a few places.

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

18 years agoRemove support for 'On' and 'Off' for AuthBasicProvider and AuthDigestProvider
Justin Erenkrantz [Wed, 16 Nov 2005 16:35:49 +0000 (16:35 +0000)]
Remove support for 'On' and 'Off' for AuthBasicProvider and AuthDigestProvider
as it doesn't actually work as advertised.

Reviewed by: Joshua Slive (concept)

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

18 years agoNo functional change: remove "internal" tab spacing/formatting.
Jim Jagielski [Wed, 16 Nov 2005 16:31:25 +0000 (16:31 +0000)]
No functional change: remove "internal" tab spacing/formatting.

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

18 years agoUpdate transformations.
Colm MacCarthaigh [Wed, 16 Nov 2005 15:56:13 +0000 (15:56 +0000)]
Update transformations.

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

18 years agoFix (Chris Darroch) to register cleanup for persistent connection
Nick Kew [Wed, 16 Nov 2005 15:30:32 +0000 (15:30 +0000)]
Fix (Chris Darroch) to register cleanup for persistent connection
in the no-threads case.

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

18 years agoCorrect an XML validation error.
Colm MacCarthaigh [Wed, 16 Nov 2005 10:25:30 +0000 (10:25 +0000)]
Correct an XML validation error.

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

18 years agoMake references to 2.1 and later consistent with each other.
Colm MacCarthaigh [Wed, 16 Nov 2005 10:23:56 +0000 (10:23 +0000)]
Make references to 2.1 and later consistent with each other.

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

18 years agoFix typo in ProxyStatus syntax error message.
Jeff Trawick [Wed, 16 Nov 2005 01:31:44 +0000 (01:31 +0000)]
Fix typo in ProxyStatus syntax error message.

Submitted by: Christophe Jaillet <christophe.jaillet wanadoo.fr>
Reviewed by:  trawick

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

18 years agoFix wrong link
Nick Kew [Wed, 16 Nov 2005 00:07:30 +0000 (00:07 +0000)]
Fix wrong link

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