]>
git.ipfire.org Git - thirdparty/apache/httpd.git/log
William A. Rowe Jr [Mon, 8 Aug 2005 03:03:56 +0000 (03:03 +0000)]
Commit a comment from trunk/, this brings spool_reqbody_cl in sync
with trunk/.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/proxy-reqbody-2.0.x@230737
13f79535 -47bb-0310-9956-
ffa450edef68
William A. Rowe Jr [Mon, 8 Aug 2005 03:01:39 +0000 (03:01 +0000)]
Backport r230735, we need not look at the first bucket for EOS,
because the outer while loop protected us from that case.
Backport the header brigade changes as it's impossible to have
a body request waiting for a final send. Look at seen_eos to
flush us in the request body loop, and handle the only exception,
(header_brigade), outside of that loop.
This brings stream_reqbody_cl in sync with the trunk.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/proxy-reqbody-2.0.x@230736
13f79535 -47bb-0310-9956-
ffa450edef68
William A. Rowe Jr [Mon, 8 Aug 2005 01:44:46 +0000 (01:44 +0000)]
Backport the fix to handling Connection: close. The existing code
was impossible to follow; the new code sets up p_conn->close correctly,
and uses that evaluated value to inject the appropriate choice immediately
before passing the request to the backend server.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/proxy-reqbody-2.0.x@230729
13f79535 -47bb-0310-9956-
ffa450edef68
William A. Rowe Jr [Mon, 8 Aug 2005 01:39:14 +0000 (01:39 +0000)]
Backport the corrected C-L streamed, v.s. spooled, v.s. T-E: chunked
selection logic from httpd trunk/. This now correctly chooses the
most portable mechanism (e.g. C-L) when we can see the entire body,
even for chunked bodies from the client, falls back on spool cl when
it's necessary, and uses chunked when we have faith in it.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/proxy-reqbody-2.0.x@230728
13f79535 -47bb-0310-9956-
ffa450edef68
William A. Rowe Jr [Mon, 8 Aug 2005 01:31:02 +0000 (01:31 +0000)]
Backport the rejection of non-'chunked' values in the transfer
encoding; we simply don't know what, exactly to do with them.
Backport the reporting of 'both C-L and T-E' when we encounter
this edge case, setting the connection up to close down once
we finish (perhaps we were victims of a request splitting attack).
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/proxy-reqbody-2.0.x@230727
13f79535 -47bb-0310-9956-
ffa450edef68
William A. Rowe Jr [Mon, 8 Aug 2005 01:28:14 +0000 (01:28 +0000)]
Backport the fix to an edge case, it's now possible for a primary
request which has a body in spite of what was determined by the
header parsing; this would usually be due to an input filter between
the client request and mod_proxy. Add another consideration, and
force the C-L determination if we saw bytes in already.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/proxy-reqbody-2.0.x@230726
13f79535 -47bb-0310-9956-
ffa450edef68
William A. Rowe Jr [Mon, 8 Aug 2005 01:26:34 +0000 (01:26 +0000)]
Backport the fix to an edge case; it's now much more efficient to
entirely skip request body determinations for subrequests, stuff
in an EOS and we are off to the races, ready to create a body-less
proxied subrequest.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/proxy-reqbody-2.0.x@230725
13f79535 -47bb-0310-9956-
ffa450edef68
William A. Rowe Jr [Mon, 8 Aug 2005 01:22:17 +0000 (01:22 +0000)]
Backport the body pre-fetch code from trunk/, modifying the three
stream_te / stream_cl / spool_cl functions to presume an input_brigade
before fighting with fetching additional body content.
We will be using the bytes_read in a later commit to make a better
decision about choosing to send a C-L or chunked body to the backend.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/proxy-reqbody-2.0.x@230724
13f79535 -47bb-0310-9956-
ffa450edef68
William A. Rowe Jr [Mon, 8 Aug 2005 01:10:20 +0000 (01:10 +0000)]
Backport yet another security fix; if stream_cl exceeds the 'stated'
CL which proxy_request_body asked us to send, then we have to quit
forwarding any more bytes (we won't even pass the header if we
hadn't yet.)
Closes an HTTP Request splitting edge case.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/proxy-reqbody-2.0.x@230722
13f79535 -47bb-0310-9956-
ffa450edef68
William A. Rowe Jr [Mon, 8 Aug 2005 01:03:09 +0000 (01:03 +0000)]
Fix a buglett in backport 230718; get our selection of brigades correct.
(tis what happens when our code is this far out-of-sync with trunk, sorry.)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/proxy-reqbody-2.0.x@230720
13f79535 -47bb-0310-9956-
ffa450edef68
William A. Rowe Jr [Mon, 8 Aug 2005 00:59:40 +0000 (00:59 +0000)]
Backport fix r230718; a soon-to-be impossible edge case; we are always
sending a body (even an 'empty' body) using stream_chunked, so we must
always send the trailing "0" end of body marker.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/proxy-reqbody-2.0.x@230719
13f79535 -47bb-0310-9956-
ffa450edef68
William A. Rowe Jr [Mon, 8 Aug 2005 00:30:27 +0000 (00:30 +0000)]
Finish up the header brigades up-front; we simply know ahead of time if
they are necessary or not. This changes one behavior; the stream_chunked
now always sends a transfer encoded body; even if it's nothing but an
empty body.
Also, Fix a bugglet in backporting the input_brigade argument; need the
bucket_alloc already.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/proxy-reqbody-2.0.x@230716
13f79535 -47bb-0310-9956-
ffa450edef68
William A. Rowe Jr [Sun, 7 Aug 2005 23:45:54 +0000 (23:45 +0000)]
Pre-commit a simple bit from r219224, pass an initialized input_brigade
off to the spool/stream functions. Effectively a no-op so far, but in
a couple of patches, the reason becomes obvious.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/proxy-reqbody-2.0.x@230714
13f79535 -47bb-0310-9956-
ffa450edef68
William A. Rowe Jr [Sun, 7 Aug 2005 23:32:36 +0000 (23:32 +0000)]
Backport a logging change to make things clearer; includes jorton's r224721 fix.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/proxy-reqbody-2.0.x@230712
13f79535 -47bb-0310-9956-
ffa450edef68
William A. Rowe Jr [Sun, 7 Aug 2005 23:23:38 +0000 (23:23 +0000)]
Backport part of r216156 and very minor bits of r218978;
Collapse the handling of Content-Length / Transfer-Encoding header
values into the headers loop saving a bit of cpu and making the
results clearer, handle the (r->main) subrequest case a bit more
efficiently as well, cutting out some duplicate tests, and a mild
whitespace issue in the If-Unmodified-Since test line.
Fixes a subrequest bug where subrequests *still* would attempt to
read Transfer-Encoding: chunked request bodies.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/proxy-reqbody-2.0.x@230711
13f79535 -47bb-0310-9956-
ffa450edef68
William A. Rowe Jr [Sun, 7 Aug 2005 22:55:37 +0000 (22:55 +0000)]
Backport part of r216156;
send_request_body makes it very difficult to follow all the mistakes
in this code. Fold send_request_body into ap_proxy_http_request
so that proxy_http_request makes all of the elections.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/proxy-reqbody-2.0.x@230709
13f79535 -47bb-0310-9956-
ffa450edef68
William A. Rowe Jr [Sun, 7 Aug 2005 22:22:41 +0000 (22:22 +0000)]
End apr_natstrcasecmp, backporting part of r216111 (there may remain
other apr_natstrcasecmp abuse in other files).
Still unsure if apr_strnatcasecmp of the hostname is deliberate to
handle leading 0's in ip addresses, so leaving that single use case.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/proxy-reqbody-2.0.x@230708
13f79535 -47bb-0310-9956-
ffa450edef68
William A. Rowe Jr [Sun, 7 Aug 2005 22:00:54 +0000 (22:00 +0000)]
Now backport whitespace-only changes from r209836, making the rest of
the patches more legible, and the resulting code comparable to httpd/trunk/modules/proxy/mod_proxy_http.c.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/proxy-reqbody-2.0.x@230706
13f79535 -47bb-0310-9956-
ffa450edef68
William A. Rowe Jr [Sun, 7 Aug 2005 21:57:56 +0000 (21:57 +0000)]
Prepare to backport r209836 whitespace changes; this is the one
minor code change to declare *buf once, obliterating the need for
a number of code blocks throughout this function.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/proxy-reqbody-2.0.x@230704
13f79535 -47bb-0310-9956-
ffa450edef68
William A. Rowe Jr [Sun, 7 Aug 2005 21:09:38 +0000 (21:09 +0000)]
Create proxy-reqbody patch evaluation branch.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/proxy-reqbody-2.0.x@230703
13f79535 -47bb-0310-9956-
ffa450edef68
Joe Orton [Fri, 5 Aug 2005 14:06:46 +0000 (14:06 +0000)]
Merge r225753 from trunk:
* modules/ldap/util_ldap_cache.c (util_ldap_cache_init): Use the
actual available size of the shm segment not the requested size.
Ensure the requested size is aligned. Check errors from apr_rmm_init.
Reviewed by: jorton, minfrin, bnicholes
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.0.x@230474
13f79535 -47bb-0310-9956-
ffa450edef68
Joe Orton [Fri, 5 Aug 2005 13:58:56 +0000 (13:58 +0000)]
Reference the PR filed against 2.0 not the one filed against 1.3.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.0.x@230472
13f79535 -47bb-0310-9956-
ffa450edef68
Joe Orton [Fri, 5 Aug 2005 12:39:18 +0000 (12:39 +0000)]
Found a PR reference for the piped logger fd leak.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.0.x@230455
13f79535 -47bb-0310-9956-
ffa450edef68
Bradley Nicholes [Thu, 4 Aug 2005 23:59:34 +0000 (23:59 +0000)]
vote
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.0.x@227521
13f79535 -47bb-0310-9956-
ffa450edef68
Jim Jagielski [Thu, 4 Aug 2005 17:07:57 +0000 (17:07 +0000)]
mod_proxy: Fix over-eager handling of '%' for reverse proxies. PR 29554.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.0.x@227435
13f79535 -47bb-0310-9956-
ffa450edef68
Jesus Blanco Izquierdo [Thu, 4 Aug 2005 16:02:56 +0000 (16:02 +0000)]
html doc for auth.xml rebuilt
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.0.x@227423
13f79535 -47bb-0310-9956-
ffa450edef68
Jesus Blanco Izquierdo [Thu, 4 Aug 2005 16:01:18 +0000 (16:01 +0000)]
html docs for auth.xml rebuilt
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.0.x@227422
13f79535 -47bb-0310-9956-
ffa450edef68
Jesus Blanco Izquierdo [Thu, 4 Aug 2005 15:59:32 +0000 (15:59 +0000)]
Translation into Spanish of the Authentication, Authorization and Access Control tutorial.
Translation made by Gustavo Nerea (informatica.gustavo @ gmail.com)
Translation reviewed by Jesus Blanco (blanco @ bitrock.com)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.0.x@227421
13f79535 -47bb-0310-9956-
ffa450edef68
Joe Orton [Thu, 4 Aug 2005 09:42:43 +0000 (09:42 +0000)]
Merge r225746 from trunk:
* modules/ldap/util_ldap_cache_mgr.c (util_ald_cache_insert): Fix a
cache corruption case: ensure that there is room in the cache for a
copy of the payload before inserting the node.
PR: 34209
Reviewed by: jorton, bnicholes, minfrin
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.0.x@227332
13f79535 -47bb-0310-9956-
ffa450edef68
Joe Orton [Thu, 4 Aug 2005 09:35:38 +0000 (09:35 +0000)]
Merge r170441, r170573, r170719 from trunk:
* server/log.c (piped_log_spawn): Return the APR error code,
as expected by piped_log_maintenance (and fixing "Unknown
error" messages in error path there).
(ap_open_piped_log): Expect an APR error code.
* server/log.c (ap_open_piped_log): Remove errno handling.
* server/log.c (piped_log_spawn): Don't leak an fd for each
invocation.
Reviewed by: jorton, trawick, wrowe
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.0.x@227329
13f79535 -47bb-0310-9956-
ffa450edef68
Graham Leggett [Wed, 3 Aug 2005 21:37:05 +0000 (21:37 +0000)]
Review some backports.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.0.x@227269
13f79535 -47bb-0310-9956-
ffa450edef68
Joe Orton [Wed, 3 Aug 2005 20:01:32 +0000 (20:01 +0000)]
* modules/experimental/util_ldap.c (util_ldap_connection_open): Set
connection timeout on the connection, not globally, avoiding segfaults
in older version of OpenLDAP (ITS #3487).
Submitted by: Brad Nicholes
Reviewed by: jorton, wrowe
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.0.x@227253
13f79535 -47bb-0310-9956-
ffa450edef68
Joe Orton [Wed, 3 Aug 2005 12:53:08 +0000 (12:53 +0000)]
- propose a different OpenLDAP workaround
- propose two more mod_ldap fixes
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.0.x@227213
13f79535 -47bb-0310-9956-
ffa450edef68
Bradley Nicholes [Tue, 2 Aug 2005 16:51:07 +0000 (16:51 +0000)]
vote
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.0.x@227040
13f79535 -47bb-0310-9956-
ffa450edef68
Joe Orton [Thu, 28 Jul 2005 14:45:58 +0000 (14:45 +0000)]
Propose to mod_ldap fixes.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.0.x@225786
13f79535 -47bb-0310-9956-
ffa450edef68
Joe Orton [Wed, 27 Jul 2005 10:06:12 +0000 (10:06 +0000)]
Note the mod_ssl/OpenSSL 0.9.8 fix.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.0.x@225488
13f79535 -47bb-0310-9956-
ffa450edef68
William A. Rowe Jr [Tue, 19 Jul 2005 21:59:17 +0000 (21:59 +0000)]
Vetoed the first attempt at a 2.1-dev mod_proxy_http request body
backport - so note this as a showstopper rather than reverting the code.
Also note the RFC bug that the -trace.patch corrects.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.0.x@219782
13f79535 -47bb-0310-9956-
ffa450edef68
Jesus Blanco Izquierdo [Tue, 19 Jul 2005 18:45:34 +0000 (18:45 +0000)]
abc.com reverted to abc.dom
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.0.x@219752
13f79535 -47bb-0310-9956-
ffa450edef68
André Malo [Tue, 19 Jul 2005 12:36:41 +0000 (12:36 +0000)]
use utf-8 for the changelog
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.0.x@219670
13f79535 -47bb-0310-9956-
ffa450edef68
Joe Orton [Mon, 18 Jul 2005 14:39:01 +0000 (14:39 +0000)]
Attempt to review the proxy patch...
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.0.x@219501
13f79535 -47bb-0310-9956-
ffa450edef68
William A. Rowe Jr [Mon, 18 Jul 2005 14:14:43 +0000 (14:14 +0000)]
New fixes yesterday; slightly revised patch to match.
The -3.patch now covers every one of my test cases flawlessly,
please ruthlessly test/abuse/review this final(?) patch.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.0.x@219496
13f79535 -47bb-0310-9956-
ffa450edef68
André Malo [Sun, 17 Jul 2005 10:33:34 +0000 (10:33 +0000)]
Add Serbian error message translation
Translated by: Nikola Smolenski <smolensk eunet.yu>
Reviewed by: Danilo Šegan <danilo gnome.org>
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.0.x@219385
13f79535 -47bb-0310-9956-
ffa450edef68
Jim Jagielski [Fri, 15 Jul 2005 21:01:57 +0000 (21:01 +0000)]
Ack
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.0.x@219249
13f79535 -47bb-0310-9956-
ffa450edef68
William A. Rowe Jr [Fri, 15 Jul 2005 18:46:40 +0000 (18:46 +0000)]
Ok, next patch.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.0.x@219233
13f79535 -47bb-0310-9956-
ffa450edef68
William A. Rowe Jr [Thu, 14 Jul 2005 23:16:59 +0000 (23:16 +0000)]
I misread the report; Watchfire applies to the fix I've committed
to httpd-2.1 trunk, but has nothing to do with responses.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.0.x@219132
13f79535 -47bb-0310-9956-
ffa450edef68
William A. Rowe Jr [Thu, 14 Jul 2005 21:22:49 +0000 (21:22 +0000)]
Note two patches available for 2.0.55
There is low hanging fruit here, if anyone's up to committing a few
backports in the next day before a release candidate is tagged ;-)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.0.x@219103
13f79535 -47bb-0310-9956-
ffa450edef68
William A. Rowe Jr [Thu, 14 Jul 2005 16:51:55 +0000 (16:51 +0000)]
core: strip C-L from any request with a T-E header
resolves external origin CAN-2005-2088 issues, does not
address internal origin C-L/T-E discrepancies within proxy_http
Security: CVE CAN-2005-2088
Submitted by: Joe Orton
Reviewed by: Jeff Trawick, Will Rowe
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.0.x@219061
13f79535 -47bb-0310-9956-
ffa450edef68
William A. Rowe Jr [Thu, 14 Jul 2005 16:47:30 +0000 (16:47 +0000)]
proxy HTTP - ignore C-L and disable keepalive to origin server
Submitted by: trawick
Reviewed by: jorton, wrowe
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.0.x@219059
13f79535 -47bb-0310-9956-
ffa450edef68
William A. Rowe Jr [Mon, 11 Jul 2005 16:34:04 +0000 (16:34 +0000)]
Propupdate to ignore win32 gen_test_char.exe
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.0.x@210154
13f79535 -47bb-0310-9956-
ffa450edef68
William A. Rowe Jr [Fri, 8 Jul 2005 15:55:51 +0000 (15:55 +0000)]
Resolve 0.9.6/0.9.7/0.9.8 OpenSSL const discrepancies
Reviewed by: jorton, bnichols, wrowe
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.0.x@209825
13f79535 -47bb-0310-9956-
ffa450edef68
William A. Rowe Jr [Thu, 7 Jul 2005 19:16:00 +0000 (19:16 +0000)]
A no-op, these variables are simply unused on branches/2.0.x
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.0.x@209637
13f79535 -47bb-0310-9956-
ffa450edef68
Paul Querna [Wed, 6 Jul 2005 23:17:59 +0000 (23:17 +0000)]
Propose backporting of httxt2dbm.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.0.x@209541
13f79535 -47bb-0310-9956-
ffa450edef68
William A. Rowe Jr [Wed, 6 Jul 2005 15:10:36 +0000 (15:10 +0000)]
Accomodate API changes to OpenSSL 0.9.8 (now in beta).
For all currently building platforms, this is a noop.
Submitted by: Georg v. Zezschwitz <gzv 2scale.de>
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.0.x@209468
13f79535 -47bb-0310-9956-
ffa450edef68
Jeff Trawick [Fri, 1 Jul 2005 11:38:13 +0000 (11:38 +0000)]
vote for showstopper patch
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.0.x@208747
13f79535 -47bb-0310-9956-
ffa450edef68
Joe Orton [Fri, 1 Jul 2005 11:03:23 +0000 (11:03 +0000)]
- add the appropriate patch to complete the fix for CAN-2005-2088
- random mod_proxy bugs are not showstoppers
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.0.x@208744
13f79535 -47bb-0310-9956-
ffa450edef68
Mark J. Cox [Fri, 1 Jul 2005 10:36:00 +0000 (10:36 +0000)]
Note the CVE name so we rememeber to put it into CHANGES
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.0.x@208742
13f79535 -47bb-0310-9956-
ffa450edef68
William A. Rowe Jr [Tue, 28 Jun 2005 18:44:46 +0000 (18:44 +0000)]
Commit a trivial patch which permits Apache 2.0's ApacheMonitor
to browse Apache 1.3, 2.0 and now, 2.1+ installed httpd services.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.0.x@202265
13f79535 -47bb-0310-9956-
ffa450edef68
Jeff Trawick [Tue, 28 Jun 2005 12:01:43 +0000 (12:01 +0000)]
a 2.0.x proxy patch to shut down some request smuggling
attempts is available
several fixes have been merged from trunk
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.0.x@202162
13f79535 -47bb-0310-9956-
ffa450edef68
Jeff Trawick [Tue, 28 Jun 2005 11:59:21 +0000 (11:59 +0000)]
merge this fix from trunk:
Prevent hangs of child processes when writing to piped loggers at
the time of graceful restart.
PR: 26467
Reviewed by: jorton, pquerna
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.0.x@202161
13f79535 -47bb-0310-9956-
ffa450edef68
Jeff Trawick [Tue, 28 Jun 2005 10:45:52 +0000 (10:45 +0000)]
merge this fix from trunk:
fix minor annoyance on z/OS: __FILE__ is set to
"./foo.c" instead of simply "foo.c", so filter
out all but the basename before logging it with
debug messages
Reviewed by: pquerna, wrowe
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.0.x@202154
13f79535 -47bb-0310-9956-
ffa450edef68
Jeff Trawick [Tue, 28 Jun 2005 10:32:25 +0000 (10:32 +0000)]
Merge from trunk:
Downgrade the log level of a worker MPM apr_proc_mutex_foo error
message when it occurs during restart (as we already do for a couple
of other calls).
Reviewed by: jorton, pquerna
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.0.x@202152
13f79535 -47bb-0310-9956-
ffa450edef68
Joe Orton [Mon, 27 Jun 2005 14:07:19 +0000 (14:07 +0000)]
Two proposals.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.0.x@201996
13f79535 -47bb-0310-9956-
ffa450edef68
Rich Bowen [Sun, 26 Jun 2005 23:31:49 +0000 (23:31 +0000)]
Slightly more detail in the RewriteMap rnd: example, as well as
rewriting text that makes the feature sound less useful than it actually
is.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.0.x@201922
13f79535 -47bb-0310-9956-
ffa450edef68
William A. Rowe Jr [Fri, 24 Jun 2005 16:52:23 +0000 (16:52 +0000)]
Just more cleanup, and re-add the /docs/STATUS removed by my prior commit
(it wasn't quite obvious enough, now it's called out.)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.0.x@201648
13f79535 -47bb-0310-9956-
ffa450edef68
William A. Rowe Jr [Fri, 24 Jun 2005 16:29:05 +0000 (16:29 +0000)]
--Unmaintained Binaries section
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.0.x@201642
13f79535 -47bb-0310-9956-
ffa450edef68
William A. Rowe Jr [Fri, 24 Jun 2005 16:28:30 +0000 (16:28 +0000)]
Open up the file with some whitespace, and add our showstoppers
(will find time to be more specific this weekend, Trawick's patch
for one doesn't backport cleanly due to proxy_http.c restructuring.)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.0.x@201641
13f79535 -47bb-0310-9956-
ffa450edef68
William A. Rowe Jr [Fri, 24 Jun 2005 15:08:49 +0000 (15:08 +0000)]
Accept a few patches, and split ACCEPTED from PROPOSED to help
folks looking for low-hanging fruit to chip in.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.0.x@201628
13f79535 -47bb-0310-9956-
ffa450edef68
Joe Orton [Fri, 24 Jun 2005 14:26:57 +0000 (14:26 +0000)]
Add two redirect-carefully's from the trunk.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.0.x@201623
13f79535 -47bb-0310-9956-
ffa450edef68
André Malo [Thu, 23 Jun 2005 05:21:53 +0000 (05:21 +0000)]
* Rewritemaps use the ${map:key} notation
* `build all`
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.0.x@193076
13f79535 -47bb-0310-9956-
ffa450edef68
Rich Bowen [Thu, 23 Jun 2005 01:02:13 +0000 (01:02 +0000)]
A small example of RewriteMap.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.0.x@193034
13f79535 -47bb-0310-9956-
ffa450edef68
Rich Bowen [Thu, 23 Jun 2005 01:01:12 +0000 (01:01 +0000)]
Correct the location for this resource.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.0.x@193033
13f79535 -47bb-0310-9956-
ffa450edef68
Paul Querna [Mon, 20 Jun 2005 05:47:52 +0000 (05:47 +0000)]
- Add more votes.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.0.x@191397
13f79535 -47bb-0310-9956-
ffa450edef68
Paul Querna [Mon, 20 Jun 2005 05:42:49 +0000 (05:42 +0000)]
- Update vote on graceful-restart-of-piped-loggers fix, now that it is under CORE_PRIVATE.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.0.x@191396
13f79535 -47bb-0310-9956-
ffa450edef68
Jesus Blanco Izquierdo [Sun, 19 Jun 2005 00:37:24 +0000 (00:37 +0000)]
typo corrected
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.0.x@191315
13f79535 -47bb-0310-9956-
ffa450edef68
Jesus Blanco Izquierdo [Sat, 18 Jun 2005 13:43:02 +0000 (13:43 +0000)]
Spanish translation updated
Patch traslated by Jesus Blanco (blanco AT apache DOT org)
and reviewed by Daniel Lopez (ridruejo AT apache DOT org)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.0.x@191288
13f79535 -47bb-0310-9956-
ffa450edef68
Rich Bowen [Thu, 16 Jun 2005 12:40:37 +0000 (12:40 +0000)]
Changed "Files ~" to "FilesMatch" in the config files. People seem to
have a hard time noticing the ~ in there, which then leads to confusion
about how Files works.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.0.x@190904
13f79535 -47bb-0310-9956-
ffa450edef68
Joe Orton [Tue, 14 Jun 2005 14:06:51 +0000 (14:06 +0000)]
Update remaining 2004 copyright notices.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.0.x@190593
13f79535 -47bb-0310-9956-
ffa450edef68
Rich Bowen [Mon, 13 Jun 2005 17:58:31 +0000 (17:58 +0000)]
Include "Indexes" in the AllowOverride comment in the default
configuration
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.0.x@190450
13f79535 -47bb-0310-9956-
ffa450edef68
André Malo [Sun, 12 Jun 2005 11:35:52 +0000 (11:35 +0000)]
update German translation; update transformation
Reviewed by: Kess
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.0.x@190249
13f79535 -47bb-0310-9956-
ffa450edef68
André Malo [Sun, 12 Jun 2005 09:49:34 +0000 (09:49 +0000)]
update German translation; update transformation
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.0.x@190233
13f79535 -47bb-0310-9956-
ffa450edef68
Jesus Blanco Izquierdo [Sat, 11 Jun 2005 18:56:06 +0000 (18:56 +0000)]
update Spanish translation to English Revison 178522
Translated by Jesus Blanco (blanco AT apache DOT org)
Reviwed by Daniel Lopez (ridruejo AT apache DOT org)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.0.x@190161
13f79535 -47bb-0310-9956-
ffa450edef68
Joe Orton [Fri, 10 Jun 2005 15:23:49 +0000 (15:23 +0000)]
Propose.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.0.x@189974
13f79535 -47bb-0310-9956-
ffa450edef68
Joe Orton [Wed, 8 Jun 2005 13:44:57 +0000 (13:44 +0000)]
Add redirect-carefully BrowserMatch for FrontPage.
PR: 32842
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.0.x@189579
13f79535 -47bb-0310-9956-
ffa450edef68
Joe Orton [Wed, 8 Jun 2005 09:08:09 +0000 (09:08 +0000)]
Merge r179781 from trunk:
* modules/ssl/ssl_engine_kernel.c (ssl_callback_SSLVerify_CRL): Fix
off-by-one.
PR: 35081
Submitted by: Marc Stern <mstern csc.com>
Reviewed by: jorton, trawick, pquerna
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.0.x@189562
13f79535 -47bb-0310-9956-
ffa450edef68
Joe Orton [Wed, 8 Jun 2005 09:00:24 +0000 (09:00 +0000)]
Merge r165151 from trunk:
* modules/mappers/mod_userdir.c (get_suexec_id_doer): Fix allocation
size.
PR: 34588
Reviewed by: jorton, bnicholes, trawick
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.0.x@189561
13f79535 -47bb-0310-9956-
ffa450edef68
Jesus Blanco Izquierdo [Tue, 7 Jun 2005 16:42:10 +0000 (16:42 +0000)]
update transformation
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.0.x@188812
13f79535 -47bb-0310-9956-
ffa450edef68
Jesus Blanco Izquierdo [Tue, 7 Jun 2005 16:40:43 +0000 (16:40 +0000)]
Spanish Translation for env.xml.es
Translated by Jesus Blanco (blanco at apache dot org)
Reviewed by Daniel Lopez (ridruejo at apache dot org)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.0.x@188811
13f79535 -47bb-0310-9956-
ffa450edef68
Paul Querna [Mon, 6 Jun 2005 16:58:51 +0000 (16:58 +0000)]
vote for mod_ssl fix, add mod_cache backport for Vary: *.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.0.x@180342
13f79535 -47bb-0310-9956-
ffa450edef68
Jesus Blanco Izquierdo [Sun, 5 Jun 2005 20:44:23 +0000 (20:44 +0000)]
add svn:eol-style properties
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.0.x@180147
13f79535 -47bb-0310-9956-
ffa450edef68
Jesus Blanco Izquierdo [Sun, 5 Jun 2005 19:51:25 +0000 (19:51 +0000)]
update transformation
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.0.x@180140
13f79535 -47bb-0310-9956-
ffa450edef68
Jesus Blanco Izquierdo [Sun, 5 Jun 2005 19:44:04 +0000 (19:44 +0000)]
Spanish translation for dns-caveats.html.en
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.0.x@180139
13f79535 -47bb-0310-9956-
ffa450edef68
Jesus Blanco Izquierdo [Sun, 5 Jun 2005 19:41:53 +0000 (19:41 +0000)]
Spanish translation for dns-caveats.xml
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.0.x@180138
13f79535 -47bb-0310-9956-
ffa450edef68
André Malo [Sun, 5 Jun 2005 06:13:35 +0000 (06:13 +0000)]
add svn:eol-style properties and `build all`
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.0.x@180076
13f79535 -47bb-0310-9956-
ffa450edef68
Jesus Blanco Izquierdo [Sun, 5 Jun 2005 00:43:41 +0000 (00:43 +0000)]
Initial build from sections.xml.es
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.0.x@180042
13f79535 -47bb-0310-9956-
ffa450edef68
Jesus Blanco Izquierdo [Sat, 4 Jun 2005 21:59:57 +0000 (21:59 +0000)]
Spanish translation for sections.xml
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.0.x@180030
13f79535 -47bb-0310-9956-
ffa450edef68
Jeff Trawick [Fri, 3 Jun 2005 19:37:00 +0000 (19:37 +0000)]
vote for one
provide 2.0-ized patch for another
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.0.x@179868
13f79535 -47bb-0310-9956-
ffa450edef68
Joe Orton [Fri, 3 Jun 2005 12:57:51 +0000 (12:57 +0000)]
propose
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.0.x@179782
13f79535 -47bb-0310-9956-
ffa450edef68
Joe Orton [Fri, 3 Jun 2005 12:03:42 +0000 (12:03 +0000)]
vote+note
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.0.x@179776
13f79535 -47bb-0310-9956-
ffa450edef68
Jeff Trawick [Fri, 3 Jun 2005 08:28:13 +0000 (08:28 +0000)]
backport a couple more easy fixes pretty please
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.0.x@179747
13f79535 -47bb-0310-9956-
ffa450edef68
Jeff Trawick [Wed, 1 Jun 2005 00:00:18 +0000 (00:00 +0000)]
propose backport of small fix to log level
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.0.x@179318
13f79535 -47bb-0310-9956-
ffa450edef68