]> granicus.if.org Git - apache/log
apache
16 years agoEliminate an XXX; apr-based file logging isn't available to report
William A. Rowe Jr [Wed, 22 Aug 2007 22:40:04 +0000 (22:40 +0000)]
Eliminate an XXX; apr-based file logging isn't available to report
failures of apr_app_initialize() nor the very first apr_create_pool.

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

16 years agobuildfluff
Vincent Bray [Wed, 22 Aug 2007 20:13:49 +0000 (20:13 +0000)]
buildfluff

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

16 years agoDocument 'see other' style deprecation. Thanks to Joshua and Ruediger for pointing...
Vincent Bray [Wed, 22 Aug 2007 20:11:50 +0000 (20:11 +0000)]
Document 'see other' style deprecation. Thanks to Joshua and Ruediger for pointing out the easy out

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

16 years agoNote changes.
William A. Rowe Jr [Wed, 22 Aug 2007 07:02:06 +0000 (07:02 +0000)]
Note changes.

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

16 years agoClean up leaking pipes, and resolve pipe issues later when
William A. Rowe Jr [Wed, 22 Aug 2007 06:50:24 +0000 (06:50 +0000)]
Clean up leaking pipes, and resolve pipe issues later when
opening a stdout handle of a service.  (Services have no std
handles by default).

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

16 years agoRefactor r452431, because this should not be fatal to starting
William A. Rowe Jr [Tue, 21 Aug 2007 23:28:32 +0000 (23:28 +0000)]
Refactor r452431, because this should not be fatal to starting
the server if it's horribly broken.  The alternative of returing
'rc' in this case would be to open /dev/null as the error stream
for this generation of the server; and even more useless result.

Also the parent-file was never necessary; we can pass only the
child handle using apr_procattr_child_err_set() and have no extra
file to clean up afterwards.

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

16 years agoupdate transformation
Chris Darroch [Tue, 21 Aug 2007 23:26:23 +0000 (23:26 +0000)]
update transformation

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

16 years agoadd merge option to avoid duplicate values within the same header
Chris Darroch [Tue, 21 Aug 2007 23:22:00 +0000 (23:22 +0000)]
add merge option to avoid duplicate values within the same header

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

16 years agoThis message was confusing during debugging, make it unique.
William A. Rowe Jr [Tue, 21 Aug 2007 23:21:44 +0000 (23:21 +0000)]
This message was confusing during debugging, make it unique.

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

16 years agoFix some typos, whitespace, and formatting. Make sure all options are
Chris Darroch [Tue, 21 Aug 2007 21:05:46 +0000 (21:05 +0000)]
Fix some typos, whitespace, and formatting.  Make sure all options are
listed in appropriate locations.  Deprecate "add" in favour of "set"
throughout.

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

16 years agoDBDPersist takes On or Off
Chris Darroch [Tue, 21 Aug 2007 18:16:36 +0000 (18:16 +0000)]
DBDPersist takes On or Off
reported by Phil Endecott

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

16 years agoOnly cleanup new_bb, if it isn't NULL, fixing a crash in the event MPM when write...
Paul Querna [Tue, 21 Aug 2007 17:27:31 +0000 (17:27 +0000)]
Only cleanup new_bb, if it isn't NULL, fixing a crash in the event MPM when write compeltion is active and a client disconnects.

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

16 years agoRemove the Perl txt-to-dbm translation script, and replace it
Rich Bowen [Tue, 21 Aug 2007 01:36:39 +0000 (01:36 +0000)]
Remove the Perl txt-to-dbm translation script, and replace it
with a reference to the httxt2dbm utility.

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

16 years agoRework locking on timeout_mutex. We now drop (and reaquire) the lock inside the...
Paul Querna [Mon, 20 Aug 2007 22:11:00 +0000 (22:11 +0000)]
Rework locking on timeout_mutex.  We now drop (and reaquire) the lock inside the while loops.  This is the least line of code changes to stop a dead lock between the queue in push2worker (a blocking function) and the timeout_mutex.  These two timeout list iterations should be rewritten with better locking rules, but for now this should fix the bug, without rewriting the entire function.
PR: 41712

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

16 years agoUse APR_STATUS_IS_NOTFOUND() rather than comparing against NOTFOUND directly.
Paul Querna [Mon, 20 Aug 2007 21:46:53 +0000 (21:46 +0000)]
Use APR_STATUS_IS_NOTFOUND() rather than comparing against NOTFOUND directly.

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

16 years agoFix svn:keywords and svn:eol-style
Vincent Bray [Mon, 20 Aug 2007 07:34:00 +0000 (07:34 +0000)]
Fix svn:keywords and svn:eol-style

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

16 years agoAdd missing id attribute to second section of new password formats page, fix missing...
Vincent Bray [Mon, 20 Aug 2007 07:21:41 +0000 (07:21 +0000)]
Add missing id attribute to second section of new password formats page, fix missing newline and buildfluff

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

16 years agoA better solution than /wd4996 to disable "depreciated posix" garbage.
William A. Rowe Jr [Mon, 20 Aug 2007 02:19:09 +0000 (02:19 +0000)]
A better solution than /wd4996 to disable "depreciated posix" garbage.
This solution doesn't emit warnings under VC 6.

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

16 years agoclarify impact of http://svn.apache.org/viewvc?view=rev&rev=567091 in CHANGES entry
Eric Covener [Sun, 19 Aug 2007 23:11:45 +0000 (23:11 +0000)]
clarify impact of http://svn.apache.org/viewvc?view=rev&rev=567091 in CHANGES entry
based on email discussion

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

16 years agoDescription of password formats copied from Tom Donovan's work on the wiki
Vincent Bray [Sun, 19 Aug 2007 18:18:17 +0000 (18:18 +0000)]
Description of password formats copied from Tom Donovan's work on the wiki

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

16 years agoRemove reference to /manual/ appearing on the default page, which it doesn't since...
Vincent Bray [Sun, 19 Aug 2007 17:38:51 +0000 (17:38 +0000)]
Remove reference to /manual/ appearing on the default page, which it doesn't since 2.2. (preunpostbackport from 2.2)

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

16 years agobuildfluff
Vincent Bray [Sun, 19 Aug 2007 16:49:27 +0000 (16:49 +0000)]
buildfluff

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

16 years agos/Domain/Path/ per Lucien GENTIS on docs@
Vincent Bray [Sun, 19 Aug 2007 16:47:29 +0000 (16:47 +0000)]
s/Domain/Path/ per Lucien GENTIS on docs@

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

16 years agoset eol-style properly
André Malo [Fri, 17 Aug 2007 23:30:15 +0000 (23:30 +0000)]
set eol-style properly

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

16 years agofix transformation
André Malo [Fri, 17 Aug 2007 21:18:00 +0000 (21:18 +0000)]
fix transformation

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

16 years agoSync anchor href alt titles
William A. Rowe Jr [Fri, 17 Aug 2007 20:42:56 +0000 (20:42 +0000)]
Sync anchor href alt titles

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

16 years agoPedantic corrections
William A. Rowe Jr [Fri, 17 Aug 2007 20:24:19 +0000 (20:24 +0000)]
Pedantic corrections

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

16 years agoSync, mostly side effects of addition of korean language pages.
William A. Rowe Jr [Fri, 17 Aug 2007 20:14:16 +0000 (20:14 +0000)]
Sync, mostly side effects of addition of korean language pages.

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

16 years agoFix </p> tag, disk space requirements from 2.2.4 build.
William A. Rowe Jr [Fri, 17 Aug 2007 20:12:49 +0000 (20:12 +0000)]
Fix </p> tag, disk space requirements from 2.2.4 build.

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

16 years agoRefresh the win_compiling instructions for 2.2 generation, where
William A. Rowe Jr [Fri, 17 Aug 2007 19:56:13 +0000 (19:56 +0000)]
Refresh the win_compiling instructions for 2.2 generation, where
we've changed several steps.

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

16 years agoAFAICT, LDAP_CACHE_LOCK was a no-op when virtualhosts were used
Eric Covener [Fri, 17 Aug 2007 17:33:11 +0000 (17:33 +0000)]
AFAICT, LDAP_CACHE_LOCK was a no-op when virtualhosts were used

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

16 years agoTranslation submitted by Vincent Deffontaines.
Jean-Frederic Clere [Thu, 16 Aug 2007 08:06:54 +0000 (08:06 +0000)]
Translation submitted by Vincent Deffontaines.

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

16 years agoupdate transformation
André Malo [Wed, 15 Aug 2007 17:25:52 +0000 (17:25 +0000)]
update transformation

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

16 years agoTranslation submitted by Vincent Deffontaines.
Jean-Frederic Clere [Wed, 15 Aug 2007 16:46:57 +0000 (16:46 +0000)]
Translation submitted by Vincent Deffontaines.

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

16 years agoTranslation submitted by Vincent Deffontaines.
Jean-Frederic Clere [Wed, 15 Aug 2007 16:31:14 +0000 (16:31 +0000)]
Translation submitted by Vincent Deffontaines.

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

16 years agoTranslation submitted by Vincent Deffontaines.
Jean-Frederic Clere [Wed, 15 Aug 2007 16:23:31 +0000 (16:23 +0000)]
Translation submitted by Vincent Deffontaines.

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

16 years agoImprove the translation. Submitted by submitted by Vincent Deffontaines.
Jean-Frederic Clere [Wed, 15 Aug 2007 16:05:35 +0000 (16:05 +0000)]
Improve the translation. Submitted by submitted by Vincent Deffontaines.

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

16 years agoTranslation submitted by Vincent Deffontaines.
Jean-Frederic Clere [Wed, 15 Aug 2007 15:45:40 +0000 (15:45 +0000)]
Translation submitted by Vincent Deffontaines.

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

16 years agoImprove the wording.
Jean-Frederic Clere [Wed, 15 Aug 2007 15:09:32 +0000 (15:09 +0000)]
Improve the wording.
submitted by Vincent Deffontaines.

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

16 years agomod_negotiation: preserve Query String in resolving a type map
Nick Kew [Tue, 14 Aug 2007 09:22:15 +0000 (09:22 +0000)]
mod_negotiation: preserve Query String in resolving a type map
PR 33112.  Report with patch by Jørgen Thomsen.
Attention called to it by Per Jessen.

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

16 years agoComplete the various flags. I'd like to see more examples here, and
Rich Bowen [Tue, 14 Aug 2007 01:32:07 +0000 (01:32 +0000)]
Complete the various flags. I'd like to see more examples here, and
perhaps some of the examples that are given in the main doc can be
expanded on somewhat, here, in a rather less confusing manner.

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

16 years agoupdate transformation
André Malo [Mon, 13 Aug 2007 20:07:52 +0000 (20:07 +0000)]
update transformation

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

16 years agoCorrect two syntactical errors in examples given for the flags - CO and
Rich Bowen [Mon, 13 Aug 2007 00:35:50 +0000 (00:35 +0000)]
Correct two syntactical errors in examples given for the flags - CO and
H, specifically. Also adds an example for the [NE] flag.

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

16 years agoexport BASEDIR only if its not already set from outside.
Guenter Knauf [Sat, 11 Aug 2007 02:25:17 +0000 (02:25 +0000)]
export BASEDIR only if its not already set from outside.

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

16 years agoexport the BASEDIR var so that APR can use it.
Guenter Knauf [Sat, 11 Aug 2007 01:32:54 +0000 (01:32 +0000)]
export the BASEDIR var so that APR can use it.

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

16 years agoNo longer try to sync CHANGES with older versions. Instead
Jim Jagielski [Fri, 10 Aug 2007 11:32:49 +0000 (11:32 +0000)]
No longer try to sync CHANGES with older versions. Instead
provide SVN pointer.

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

16 years agoA few quick updates on what has happened in the last 2 years or so.
Joshua Slive [Thu, 9 Aug 2007 15:04:09 +0000 (15:04 +0000)]
A few quick updates on what has happened in the last 2 years or so.

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

16 years agowhitespace change
Jim Jagielski [Wed, 8 Aug 2007 19:13:20 +0000 (19:13 +0000)]
whitespace change

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

16 years agoUpdate transforms
Jim Jagielski [Wed, 8 Aug 2007 19:08:39 +0000 (19:08 +0000)]
Update transforms

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

16 years agoDocument ProxyStatus
Jim Jagielski [Wed, 8 Aug 2007 19:08:19 +0000 (19:08 +0000)]
Document ProxyStatus

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

16 years agoadd httxt2dbm.exe
Allan K. Edwards [Wed, 8 Aug 2007 16:56:01 +0000 (16:56 +0000)]
add httxt2dbm.exe

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

16 years agoadded check for minimum APR version.
Guenter Knauf [Wed, 8 Aug 2007 13:08:52 +0000 (13:08 +0000)]
added check for minimum APR version.

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

16 years agosync 2.2.5 changes... bah. See post on dev@httpd regarding
Jim Jagielski [Wed, 8 Aug 2007 12:41:21 +0000 (12:41 +0000)]
sync 2.2.5 changes... bah. See post on dev@httpd regarding
this waste of time :)

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

16 years agoCorrecting defects in r563317: fix to PR 42993
Nick Kew [Wed, 8 Aug 2007 10:39:23 +0000 (10:39 +0000)]
Correcting defects in r563317: fix to PR 42993

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

16 years agofixed version string for dev builds.
Guenter Knauf [Wed, 8 Aug 2007 03:09:51 +0000 (03:09 +0000)]
fixed version string for dev builds.

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

16 years agochanged distribution basedir to separate from Apache2.
Guenter Knauf [Wed, 8 Aug 2007 00:47:52 +0000 (00:47 +0000)]
changed distribution basedir to separate from Apache2.

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

16 years agocommit Eric's patch for bugzilla 42549 - build httxt2dbm.exe on windows
Allan K. Edwards [Tue, 7 Aug 2007 19:40:21 +0000 (19:40 +0000)]
commit Eric's patch for bugzilla 42549 - build httxt2dbm.exe on windows

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

16 years agoPR 42572: crash in Windows MPM
Nick Kew [Tue, 7 Aug 2007 13:03:03 +0000 (13:03 +0000)]
PR 42572: crash in Windows MPM
Davi Arnauts simple patch confirmed as working.
(typo in my last commit)

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

16 years agoPR 42572: crash in Windows MPM
Nick Kew [Tue, 7 Aug 2007 13:01:53 +0000 (13:01 +0000)]
PR 42572: crash in Windows MPM
Davi Arnauts simple patch confirmed as working.

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

16 years agoUpdate xforms
Jim Jagielski [Tue, 7 Aug 2007 12:58:50 +0000 (12:58 +0000)]
Update xforms

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

16 years agoMinimal ProxySet directive documentation :)
Jim Jagielski [Tue, 7 Aug 2007 12:58:38 +0000 (12:58 +0000)]
Minimal ProxySet directive documentation :)

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

16 years agoAdd comments that make it clear that we are using
Jim Jagielski [Tue, 7 Aug 2007 12:22:19 +0000 (12:22 +0000)]
Add comments that make it clear that we are using
the 32bit add/inc atomics in an "unsure" method (although
I would assume if they were NOT working, then the various
testing and usage of event for trunk and 2.2.x would have shown
this by now).

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

16 years agorequire apr build which is needed for prebuild target.
Guenter Knauf [Mon, 6 Aug 2007 23:25:15 +0000 (23:25 +0000)]
require apr build which is needed for prebuild target.

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

16 years agoCheck all sources of Content-Encoding in inflate_out filter
Nick Kew [Mon, 6 Aug 2007 22:45:39 +0000 (22:45 +0000)]
Check all sources of Content-Encoding in inflate_out filter
PR 42993
Reasoning: http://marc.info/?l=apache-httpd-dev&m=118643107831358&w=2

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

16 years agodetabify
Jim Jagielski [Mon, 6 Aug 2007 20:02:27 +0000 (20:02 +0000)]
detabify

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

16 years agominor cosmetic changes.
Guenter Knauf [Mon, 6 Aug 2007 19:28:49 +0000 (19:28 +0000)]
minor cosmetic changes.

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

16 years ago* Also unset Content-MD5 in the deflate_out_filter
Ruediger Pluem [Mon, 6 Aug 2007 19:24:10 +0000 (19:24 +0000)]
* Also unset Content-MD5 in the deflate_out_filter

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

16 years ago* We already unset Content-Length in the inflate_out_filter. So move the
Ruediger Pluem [Mon, 6 Aug 2007 19:22:23 +0000 (19:22 +0000)]
* We already unset Content-Length in the inflate_out_filter. So move the
  comment and unsetting of Content-MD5 in the right place.

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

16 years agoadded two more files to the dist target.
Guenter Knauf [Mon, 6 Aug 2007 17:58:15 +0000 (17:58 +0000)]
added two more files to the dist target.

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

16 years agoDon't try to compress/decompress where there's a Content-Range.
Nick Kew [Mon, 6 Aug 2007 14:37:42 +0000 (14:37 +0000)]
Don't try to compress/decompress where there's a Content-Range.
According to RFC2616, the range would have to apply *after*
applying content-encoding, so anything that's been set before
running the deflate filter is going to be broken.

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

16 years agoThese atomics expect apr_uint32_t *... The expectation, of course,
Jim Jagielski [Mon, 6 Aug 2007 14:20:24 +0000 (14:20 +0000)]
These atomics expect apr_uint32_t *... The expectation, of course,
is that the add/inc still works "as expected" even though we
are using signed values.

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

16 years agoAha! This explains some of the weird things I was seeing.
Jim Jagielski [Mon, 6 Aug 2007 14:08:37 +0000 (14:08 +0000)]
Aha! This explains some of the weird things I was seeing.
Pull down and fold in patch from r109510 for event.c

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

16 years agomod_deflate - discussion on dev@
Nick Kew [Mon, 6 Aug 2007 13:53:35 +0000 (13:53 +0000)]
mod_deflate - discussion on dev@
Postpone unsetting of headers until after first get_brigade from upstream

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

16 years ago* Avoid that relative changes to Options change the settings for FileETag.
Ruediger Pluem [Sun, 5 Aug 2007 12:47:44 +0000 (12:47 +0000)]
* Avoid that relative changes to Options change the settings for FileETag.
  This does NOT address the remaining issues with relative settings and
  FileETag mentioned in PR 42027, but at least it isolates the problem
  to them. Currently these issues can be worked around with absolute
  settings.

PR: 42027
Submitted by: Rici Lake <rici ricilake.net>
Reviewed by: rpluem

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

16 years agoTrying to fill in some of the flags here, complete with detailed
Rich Bowen [Sun, 5 Aug 2007 12:24:31 +0000 (12:24 +0000)]
Trying to fill in some of the flags here, complete with detailed
explanations and examples.

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

16 years ago *) mod_proxy: Improve network performance by setting APR_TCP_NODELAY
Jim Jagielski [Fri, 3 Aug 2007 15:57:27 +0000 (15:57 +0000)]
  *) mod_proxy: Improve network performance by setting APR_TCP_NODELAY
     (disable Nagle algorithm) on sockets if implemented.
     PR 42871 [Christian BOITEL <christian_boitel yahoo.fr>, Jim Jagielski]

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

16 years agoGeneralise the content encoding detection and protocol:
Nick Kew [Fri, 3 Aug 2007 15:42:30 +0000 (15:42 +0000)]
Generalise the content encoding detection and protocol:
so it aslo works in inflate out filter, as suggested by rpluem.

NOTE: this fails with some generators (cgi, asis) due to a deeper bug:
content-encoding is set later than mod_deflate sees it.  This has always
been the case, and could use a separate fix if anyone wants inflate_out
other than in a proxy situation.  And it's not mod_deflate's problem.

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

16 years agoPR 42847.
Jim Jagielski [Fri, 3 Aug 2007 15:26:34 +0000 (15:26 +0000)]
PR 42847.

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

16 years agoSync with 2.2.5-dev
Jim Jagielski [Fri, 3 Aug 2007 15:24:37 +0000 (15:24 +0000)]
Sync with 2.2.5-dev

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

16 years agoFormat changes
Jim Jagielski [Fri, 3 Aug 2007 15:22:54 +0000 (15:22 +0000)]
Format changes

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

16 years agoNon-functional change. Simple cleanup.
Jim Jagielski [Fri, 3 Aug 2007 14:54:40 +0000 (14:54 +0000)]
Non-functional change. Simple cleanup.
PR: 42805

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

16 years agoUpdate doccos w/ latest xforms
Jim Jagielski [Fri, 3 Aug 2007 12:38:17 +0000 (12:38 +0000)]
Update doccos w/ latest xforms

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

16 years agoremove BOM character. If using vim, add "set nobomb" to ~/.vimrc
Roy T. Fielding [Thu, 2 Aug 2007 21:25:03 +0000 (21:25 +0000)]
remove BOM character.  If using vim, add "set nobomb" to ~/.vimrc

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

16 years agoNote mime.types updates
Nick Kew [Thu, 2 Aug 2007 20:22:01 +0000 (20:22 +0000)]
Note mime.types updates

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

16 years agoA couple of cleanups to the nested group code based on review comments.
Paul J. Reder [Thu, 2 Aug 2007 16:17:17 +0000 (16:17 +0000)]
A couple of cleanups to the nested group code based on review comments.

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

16 years agoUpdated ad per PR 38698.
Tony Stevenson [Thu, 2 Aug 2007 11:34:22 +0000 (11:34 +0000)]
Updated ad per PR 38698.

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

16 years agoPatched, as per PR 41793. Issue raised by Joel Nelson.
Tony Stevenson [Thu, 2 Aug 2007 11:02:36 +0000 (11:02 +0000)]
Patched, as per PR 41793. Issue raised by Joel Nelson.

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

16 years agoImprovement suggested by rpluem to proxy_date fix
Nick Kew [Thu, 2 Aug 2007 10:17:25 +0000 (10:17 +0000)]
Improvement suggested by rpluem to proxy_date fix

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

16 years agoChange the flag list to a <dl> instead of <ul>. Seems much more readable to me.
Joshua Slive [Wed, 1 Aug 2007 19:04:21 +0000 (19:04 +0000)]
Change the flag list to a <dl> instead of <ul>. Seems much more readable to me.

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

16 years agoNote the L doesn't necessarily mean no more rewriting.
Joshua Slive [Wed, 1 Aug 2007 18:50:43 +0000 (18:50 +0000)]
Note the L doesn't necessarily mean no more rewriting.

PR: 40004

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

16 years agoR flag to mod_rewrite can set any status code
Joshua Slive [Wed, 1 Aug 2007 18:39:04 +0000 (18:39 +0000)]
R flag to mod_rewrite can set any status code

PR: 25917

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

16 years agoFix DNS load balancing example.
Joshua Slive [Wed, 1 Aug 2007 17:52:15 +0000 (17:52 +0000)]
Fix DNS load balancing example.

Submitted by: Takashi Sato <serai lans-tv.com>
PR: 23501

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

16 years agoSome updates to the RewriteRule docs, mostly focusing on clearly
Joshua Slive [Wed, 1 Aug 2007 15:21:31 +0000 (15:21 +0000)]
Some updates to the RewriteRule docs, mostly focusing on clearly
describing what can be in the substitution string. Included is
a description of how mod_rewrite decides whether to treat the
substitution as a file-system or URL-path.

PR: 22529

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

16 years agoA couple small fixes suggested by Vincent.
Joshua Slive [Wed, 1 Aug 2007 13:54:06 +0000 (13:54 +0000)]
A couple small fixes suggested by Vincent.

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

16 years agocreate the brigate outside ap_proxygetline and reuse it.
Jean-Frederic Clere [Wed, 1 Aug 2007 12:20:34 +0000 (12:20 +0000)]
create the brigate outside ap_proxygetline and reuse it.
correct the overflow handling. (returning APR_ENOSPC was
changing the behaviour).

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

16 years agoFix buffer overflow in date handling
Nick Kew [Wed, 1 Aug 2007 00:58:20 +0000 (00:58 +0000)]
Fix buffer overflow in date handling
PR 41144 (Davi Arnaut)

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

16 years agoUpdate the generated man page for -D change.
Joshua Slive [Tue, 31 Jul 2007 20:23:38 +0000 (20:23 +0000)]
Update the generated man page for -D change.

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

16 years agoDocument some -D magic.
Joshua Slive [Tue, 31 Jul 2007 20:21:45 +0000 (20:21 +0000)]
Document some -D magic.

PR: 41148

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

16 years agoDocuemnt the x- headers added by mod_proxy_http.
Joshua Slive [Tue, 31 Jul 2007 20:13:50 +0000 (20:13 +0000)]
Docuemnt the x- headers added by mod_proxy_http.

PR: 41097

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

16 years agoRemove the date from the multi-language error pages
Joshua Slive [Tue, 31 Jul 2007 19:49:08 +0000 (19:49 +0000)]
Remove the date from the multi-language error pages
because it is unlocalizable and generally useless.

PR: 40432

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