]> granicus.if.org Git - apache/log
apache
13 years agoAdd detailed information about how to use
Rainer Jung [Thu, 30 Sep 2010 16:09:05 +0000 (16:09 +0000)]
Add detailed information about how to use
session stickyness.

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

13 years agoFix flex and bison usage when building out of tree.
Rainer Jung [Thu, 30 Sep 2010 13:37:34 +0000 (13:37 +0000)]
Fix flex and bison usage when building out of tree.

Usually these make targets are not executed because
buildconf fixes the timestamps accordingly.

But in case people want to experiment with the files
it's nice to still support out of tree build.

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

13 years agoUpdate transformations.
Graham Leggett [Wed, 29 Sep 2010 21:36:17 +0000 (21:36 +0000)]
Update transformations.

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

13 years agohtcacheclean: Allow the option to round up file sizes to a given
Graham Leggett [Wed, 29 Sep 2010 21:34:48 +0000 (21:34 +0000)]
htcacheclean: Allow the option to round up file sizes to a given
block size, improving the accuracy of disk usage.

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

13 years agoAdd authz providers for use with mod_authz_core and its RequireAny/RequireAll
Stefan Fritsch [Wed, 29 Sep 2010 20:32:23 +0000 (20:32 +0000)]
Add authz providers for use with mod_authz_core and its RequireAny/RequireAll
containers:

'ssl' (equivalent to SSLRequireSSL)
'ssl-verify-client' (for use with 'SSLVerifyClient optional')
'ssl-require' (expressions with same syntax as SSLRequire)

We may decide to axe 'ssl-require' again in favor of the generic 'expr'
provider, depending on the development of the ap_expr parser.

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

13 years agomod_disk_cache: Instead of creating an empty data file when the body is
Graham Leggett [Wed, 29 Sep 2010 20:00:11 +0000 (20:00 +0000)]
mod_disk_cache: Instead of creating an empty data file when the body is
empty, don't create a file at all, saving inodes.

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

13 years agoMake the ssl expression parser thread-safe. It now requires bison instead of
Stefan Fritsch [Wed, 29 Sep 2010 19:42:03 +0000 (19:42 +0000)]
Make the ssl expression parser thread-safe. It now requires bison instead of
yacc.

Also change the make file magic so that the real source file name is
embedded in the debug info.

The generated files have been created with flex 2.5.35/bison 2.4.1. The two
'no previous prototype' warnings are supposed to be fixed with the next flex
version.

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

13 years agohtcacheclean: If the cache file format is unrecognised, remove the entry
Graham Leggett [Wed, 29 Sep 2010 15:41:15 +0000 (15:41 +0000)]
htcacheclean: If the cache file format is unrecognised, remove the entry
from the cache.

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

13 years agoAdding #logging link.
Igor Galić [Wed, 29 Sep 2010 14:21:25 +0000 (14:21 +0000)]
Adding #logging link.

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

13 years agomod_disk_cache: Change on-disk header file format to support the
Graham Leggett [Wed, 29 Sep 2010 14:17:52 +0000 (14:17 +0000)]
mod_disk_cache: Change on-disk header file format to support the
link of the device/inode of the data file to the matching header
file, and to support the option of not writing a data file when
the data file is empty. Refactor the mod_disk_cache code so that
headers are written as late as possible (on commit), allowing the
device and inode of the body to be written to the header. At this
point, writes to the cache are now atomic, without locks.

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

13 years agoadd comment about change to ap_expr_eval()
Stefan Fritsch [Wed, 29 Sep 2010 10:34:07 +0000 (10:34 +0000)]
add comment about change to ap_expr_eval()

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

13 years agoDocumentation for r1002415.
Igor Galić [Wed, 29 Sep 2010 00:23:31 +0000 (00:23 +0000)]
Documentation for r1002415.

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

13 years agoAdd "IN" operator to expression parser, to evaluate membership of
Nick Kew [Tue, 28 Sep 2010 23:26:44 +0000 (23:26 +0000)]
Add "IN" operator to expression parser, to evaluate membership of
a list of tokens.  Couldn't resist after sf's comment on r1002363!

This means expressions like
<If %{REQUEST_METHOD} IN GET,HEAD,OPTIONS,...>
will work as a drop-in substitute for <Limit>

Also fix off-by-one bug in variable evaluation

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

13 years agoThis is just too easy to not do it: Add an 'expr' authz provider that allows
Stefan Fritsch [Tue, 28 Sep 2010 21:33:44 +0000 (21:33 +0000)]
This is just too easy to not do it: Add an 'expr' authz provider that allows
arbitrary expressions in Require lines.

The main issue I wanted to fix was that the env provider only allows to
check for the existance of an envvar but not the contents.

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

13 years agosave some memory by using cmd->temp_pool instead of cmd->pool in some places
Stefan Fritsch [Tue, 28 Sep 2010 13:19:33 +0000 (13:19 +0000)]
save some memory by using cmd->temp_pool instead of cmd->pool in some places

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

13 years agoAdd generate_log_id hook to allow to use the ID generated by mod_unique_id as
Stefan Fritsch [Tue, 28 Sep 2010 11:53:17 +0000 (11:53 +0000)]
Add generate_log_id hook to allow to use the ID generated by mod_unique_id as
error log ID for requests.

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

13 years agoA few minor nitpicks. Removal of a double negative. Alteration of example
Rich Bowen [Tue, 28 Sep 2010 11:29:30 +0000 (11:29 +0000)]
A few minor nitpicks. Removal of a double negative. Alteration of example
using AllowOverride All in <Directory /> to use something less awful.

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

13 years agonitpick: Remove mention of obsolete directive.
Rich Bowen [Tue, 28 Sep 2010 10:52:49 +0000 (10:52 +0000)]
nitpick: Remove mention of obsolete directive.

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

13 years agoupdate for sync with English docs.
Nilgun Belma Buguner [Tue, 28 Sep 2010 09:16:59 +0000 (09:16 +0000)]
update for sync with English docs.

Translated by: Nilgün Belma Bugüner <nilgun belgeler.org>
Reviewed by:  Orhan Berent <berent belgeler.org>

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

13 years agofix validation error
Nilgun Belma Buguner [Tue, 28 Sep 2010 09:14:10 +0000 (09:14 +0000)]
fix validation error

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

13 years agomod_cache: Make sure that we never allow a 304 Not Modified response
Graham Leggett [Mon, 27 Sep 2010 19:28:40 +0000 (19:28 +0000)]
mod_cache: Make sure that we never allow a 304 Not Modified response
that we asked for to leak to the client should the 304 response be
uncacheable. PR45341

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

13 years agoaxe extra ";", fixing this messages from Sun Studio:
Jeff Trawick [Mon, 27 Sep 2010 18:41:33 +0000 (18:41 +0000)]
axe extra ";", fixing this messages from Sun Studio:

  warning: syntax error:  empty declaration

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

13 years agoAllow for non-persist of shared mem
Jim Jagielski [Mon, 27 Sep 2010 17:37:33 +0000 (17:37 +0000)]
Allow for non-persist of shared mem

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

13 years agoUpdate doccos and explain clear/clean of shared mem
Jim Jagielski [Mon, 27 Sep 2010 17:22:58 +0000 (17:22 +0000)]
Update doccos and explain clear/clean of shared mem
as well as persist

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

13 years agoNo leakie
Jim Jagielski [Mon, 27 Sep 2010 17:10:18 +0000 (17:10 +0000)]
No leakie

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

13 years agoSplit ENV: handling between the request_rec section and the
Stefan Fritsch [Mon, 27 Sep 2010 16:07:55 +0000 (16:07 +0000)]
Split ENV: handling between the request_rec section and the
non-request_rec/conn_rec section. This makes the code fit the
comments.

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

13 years agofix another null pointer dereference found by clang
Stefan Fritsch [Mon, 27 Sep 2010 14:34:29 +0000 (14:34 +0000)]
fix another null pointer dereference found by clang

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

13 years agoAvoid potential segfault (found by clang/scan-build).
Stefan Fritsch [Mon, 27 Sep 2010 14:32:33 +0000 (14:32 +0000)]
Avoid potential segfault (found by clang/scan-build).

This is r791409 from mod_slotmem_shm.c applied to mod_slotmem_plain.c

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

13 years agoRebuild generated files - new mod_cache directives and changes to the
Rich Bowen [Mon, 27 Sep 2010 12:35:16 +0000 (12:35 +0000)]
Rebuild generated files - new mod_cache directives and changes to the
env var documentation.

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

13 years agomod_cache: Add the cache_status hook to register the final cache
Graham Leggett [Mon, 27 Sep 2010 09:20:40 +0000 (09:20 +0000)]
mod_cache: Add the cache_status hook to register the final cache
decision hit/miss/revalidate. Add optional support for an X-Cache
and/or an X-Cache-Detail header to add the cache status to the
response. PR48241

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

13 years agoRebuild generated files.
Rich Bowen [Sun, 26 Sep 2010 15:42:50 +0000 (15:42 +0000)]
Rebuild generated files.

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

13 years agoSmall cleanup and macro rename to make clearer for what it is.
Guenter Knauf [Sun, 26 Sep 2010 10:04:39 +0000 (10:04 +0000)]
Small cleanup and macro rename to make clearer for what it is.

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

13 years agoIn ErrorLogFormat, make it possible to log an item only if the loglevel
Stefan Fritsch [Sun, 26 Sep 2010 07:40:15 +0000 (07:40 +0000)]
In ErrorLogFormat, make it possible to log an item only if the loglevel
of the message is higher than a specified value. This allows to achive
the old behaviour for the source file name/line number of being only
logged for debug and higher.

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

13 years agoSpelling errors
Stefan Fritsch [Sat, 25 Sep 2010 19:36:53 +0000 (19:36 +0000)]
Spelling errors

PR: 49983, 49967
Submitted by: Chris Matthews <chris bbd co za>,
              Angelo Babudro <tech support donsdirectory com>

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

13 years agodon't use data allocated from ptemp when parsing .htaccess
Stefan Fritsch [Sat, 25 Sep 2010 17:46:52 +0000 (17:46 +0000)]
don't use data allocated from ptemp when parsing .htaccess

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

13 years agoA note about per-module logging.
Rich Bowen [Sat, 25 Sep 2010 15:57:41 +0000 (15:57 +0000)]
A note about per-module logging.

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

13 years agoRebuilding generated files.
Rich Bowen [Sat, 25 Sep 2010 15:40:13 +0000 (15:40 +0000)]
Rebuilding generated files.

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

13 years agoMissed a few mentions of mod_rewrite that shouldn't be in here any more.
Rich Bowen [Sat, 25 Sep 2010 15:39:06 +0000 (15:39 +0000)]
Missed a few mentions of mod_rewrite that shouldn't be in here any more.

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

13 years agoRewriteLog is no more. This doc could probably do with a major overhaul,
Rich Bowen [Sat, 25 Sep 2010 15:26:51 +0000 (15:26 +0000)]
RewriteLog is no more. This doc could probably do with a major overhaul,
in light of the new changes to logging.

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

13 years agoin 'ip' authz provider, parse subnets only once on startup instead of once per
Stefan Fritsch [Sat, 25 Sep 2010 15:16:16 +0000 (15:16 +0000)]
in 'ip' authz provider, parse subnets only once on startup instead of once per
request

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

13 years agoMake a note about RewriteLog for folks that are looking for it. Probably
Rich Bowen [Sat, 25 Sep 2010 15:07:49 +0000 (15:07 +0000)]
Make a note about RewriteLog for folks that are looking for it. Probably
should leave this here for a couple years until folks get used to the
new stuff.

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

13 years agoAdd 'local' authz provider that matches connections originating
Stefan Fritsch [Sat, 25 Sep 2010 13:17:49 +0000 (13:17 +0000)]
Add 'local' authz provider that matches connections originating
on the local host.  PR 19938.

Also remove some cruft from mod_authz_host (we don't need a per-dir config)

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

13 years agoExpand authz provider entry
Stefan Fritsch [Sat, 25 Sep 2010 12:18:55 +0000 (12:18 +0000)]
Expand authz provider entry

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

13 years agoUpdate transformations
Stefan Fritsch [Sat, 25 Sep 2010 12:01:59 +0000 (12:01 +0000)]
Update transformations

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

13 years agoMove all, env, and method authz providers from mod_authz_host to mod_authz_core
Stefan Fritsch [Sat, 25 Sep 2010 12:01:14 +0000 (12:01 +0000)]
Move all, env, and method authz providers from mod_authz_host to mod_authz_core

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

13 years agoclarify wording about regexp
Stefan Fritsch [Sat, 25 Sep 2010 11:15:51 +0000 (11:15 +0000)]
clarify wording about regexp

Submitted by: Arvind Srinivasan

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

13 years agoupdate transformations
Stefan Fritsch [Sat, 25 Sep 2010 11:14:13 +0000 (11:14 +0000)]
update transformations

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

13 years agoAdd some more items
Stefan Fritsch [Sat, 25 Sep 2010 11:12:44 +0000 (11:12 +0000)]
Add some more items
Add section about how to handle logging changes

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

13 years agoFix crash accessing pollset on worker thread when child process is exiting.
Jeff Trawick [Fri, 24 Sep 2010 11:25:25 +0000 (11:25 +0000)]
Fix crash accessing pollset on worker thread when child process is exiting.

The timeout mutex and pollset were allocated from the listener thread
pool.  During child process shutdown, the listener thread exits first
while any outstanding requests finish.  These objects need to be allocated
from pchild since the lifetime extends until the last worker thread has
finished.

Switch to pchild, and move init of these objects to the same place as
other thread-independent objects.

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

13 years agoAdded util_regex.c to NetWare makefile.
Guenter Knauf [Fri, 24 Sep 2010 08:58:21 +0000 (08:58 +0000)]
Added util_regex.c to NetWare makefile.
Reported by normw At gknw.net.

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

13 years agoFixed NetWare import/export list for cache modules.
Guenter Knauf [Fri, 24 Sep 2010 08:49:49 +0000 (08:49 +0000)]
Fixed NetWare import/export list for cache modules.
Reported by normw AT gknw.net.

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

13 years agoAnother user identifiable change, new behavior feature.
William A. Rowe Jr [Thu, 23 Sep 2010 19:56:45 +0000 (19:56 +0000)]
Another user identifiable change, new behavior feature.

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

13 years agoTag a user identifiable change. Thanks to rbowen for docs help.
William A. Rowe Jr [Thu, 23 Sep 2010 19:53:20 +0000 (19:53 +0000)]
Tag a user identifiable change.  Thanks to rbowen for docs help.

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

13 years agoBecause PATH and the library path are closely interrelated, and the cause
William A. Rowe Jr [Thu, 23 Sep 2010 19:50:14 +0000 (19:50 +0000)]
Because PATH and the library path are closely interrelated, and the cause
of most confusion over cgi or fcgid failures, or even starting rotatelogs,
etc, when the server binaries have been relocated, pass the library path
as paired with the system PATH.

Of course, PATH and platform-specific library path(s) may be modified as
needed with mod_env, so there is no loss of functionality with this change.

The days of monolithic binaries are long gone, even on 1970's architectures,
and PATH should not be decoupled from the library path.

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

13 years agofix Sun Studio type mismatch warnings
Jeff Trawick [Thu, 23 Sep 2010 19:21:43 +0000 (19:21 +0000)]
fix Sun Studio type mismatch warnings

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

13 years agogenerated files only
Jeff Trawick [Thu, 23 Sep 2010 14:01:50 +0000 (14:01 +0000)]
generated files only

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

13 years agofollow up r956069 and r1000130 with additional corrections
Jeff Trawick [Thu, 23 Sep 2010 14:01:02 +0000 (14:01 +0000)]
follow up r956069 and r1000130 with additional corrections
and clarifications

Deemphasize and re-document min and smax, which are only to be
used in special circumstances.

Stop using the terms "Hard maximum" and "Soft maximum" since they
imply incorrectly that max and smax are closely related parameters
which should be considered in tandem.  That may be true from the
apr_reslist perspective, but not from that of the httpd admin.

Thanks, Rüdiger (but of course all bugs are mine)

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

13 years agoRemove a relic from the original error code, and fix segfaults in the
Graham Leggett [Thu, 23 Sep 2010 10:17:07 +0000 (10:17 +0000)]
Remove a relic from the original error code, and fix segfaults in the
process.

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

13 years agoBump the MMN to take into account changes to the mod_cache API.
Graham Leggett [Wed, 22 Sep 2010 22:02:33 +0000 (22:02 +0000)]
Bump the MMN to take into account changes to the mod_cache API.

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

13 years agoMove mod_cache-private includes and defines from the public mod_cache.h
Graham Leggett [Wed, 22 Sep 2010 21:55:27 +0000 (21:55 +0000)]
Move mod_cache-private includes and defines from the public mod_cache.h
interface into the private cache_util.h interface.

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

13 years agoMake cache_provider_list and cache_request_rec private by moving them
Graham Leggett [Wed, 22 Sep 2010 21:35:38 +0000 (21:35 +0000)]
Make cache_provider_list and cache_request_rec private by moving them
out of mod_cache.h.

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

13 years agoMake cache_server_conf, cache_enable and cache_disable private. Remove
Graham Leggett [Wed, 22 Sep 2010 20:44:50 +0000 (20:44 +0000)]
Make cache_server_conf, cache_enable and cache_disable private. Remove
public prefixes from ap_cache_accept_headers, ap_cache_try_lock and
ap_cache_get_providers.

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

13 years agoMake ap_cache_accept_headers, ap_cache_accept_headers, ap_cache_try_lock and
Graham Leggett [Wed, 22 Sep 2010 20:28:11 +0000 (20:28 +0000)]
Make ap_cache_accept_headers, ap_cache_accept_headers, ap_cache_try_lock and
ap_cache_check_freshness private.

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

13 years agoTrim legacy structure from removed mod_mem_cache.
Graham Leggett [Wed, 22 Sep 2010 19:56:06 +0000 (19:56 +0000)]
Trim legacy structure from removed mod_mem_cache.

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

13 years agoRemove deprecated ap_cache_cacheable_hdrs_out.
Graham Leggett [Wed, 22 Sep 2010 19:52:25 +0000 (19:52 +0000)]
Remove deprecated ap_cache_cacheable_hdrs_out.

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

13 years agoRemove the MOD_CACHE_REQUEST_REC hack, and pass the cache_request_rec
Graham Leggett [Wed, 22 Sep 2010 19:35:26 +0000 (19:35 +0000)]
Remove the MOD_CACHE_REQUEST_REC hack, and pass the cache_request_rec
structure through mod_cache's function parameters in the usual way.

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

13 years ago- add blocker for GA: review example config
Stefan Fritsch [Wed, 22 Sep 2010 19:04:48 +0000 (19:04 +0000)]
- add blocker for GA: review example config
- remove old votes:
  * "what to do if parent dies" went nowhere after many years
  * we now have event MPM as default

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

13 years agogenerated files only
Jeff Trawick [Wed, 22 Sep 2010 18:38:44 +0000 (18:38 +0000)]
generated files only

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

13 years agofollow up r956069 with additional clarifications
Jeff Trawick [Wed, 22 Sep 2010 18:37:16 +0000 (18:37 +0000)]
follow up r956069 with additional clarifications
about the connection pool and related parameters
(yes, and fix part of those earlier "clarifications")

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

13 years agoOne more linguistic nit
William A. Rowe Jr [Wed, 22 Sep 2010 18:29:08 +0000 (18:29 +0000)]
One more linguistic nit

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

13 years agoRemove duplicated word.
Rich Bowen [Wed, 22 Sep 2010 18:25:57 +0000 (18:25 +0000)]
Remove duplicated word.

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

13 years agoRevert breakage in 2.2.4 introduced in r450055, by offering a CacheStoreExpired
William A. Rowe Jr [Wed, 22 Sep 2010 17:54:39 +0000 (17:54 +0000)]
Revert breakage in 2.2.4 introduced in r450055, by offering a CacheStoreExpired
directive to allow the user to override this questionable change.

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

13 years agoAdd ap_rxplus to new_api docs
Nick Kew [Wed, 22 Sep 2010 12:38:42 +0000 (12:38 +0000)]
Add ap_rxplus to new_api docs

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

13 years agoFakeBasicAuth, not FakeBasic
Mads Toftum [Wed, 22 Sep 2010 09:35:03 +0000 (09:35 +0000)]
FakeBasicAuth, not FakeBasic

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

13 years agoaxe an unnecessary call to sscanf() when parsing the response line
Jeff Trawick [Wed, 22 Sep 2010 00:07:52 +0000 (00:07 +0000)]
axe an unnecessary call to sscanf() when parsing the response line
from the origin server

apr_date_checkmask() already verified the expected text and digit
positions; all that is needed is to cheaply find which digits

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

13 years agoMove private cache_* declarations out of the public mod_cache.h file.
Graham Leggett [Tue, 21 Sep 2010 22:55:22 +0000 (22:55 +0000)]
Move private cache_* declarations out of the public mod_cache.h file.

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

13 years agoUpdate mod_disk_cache to comply with the new create_entity() interface.
Graham Leggett [Tue, 21 Sep 2010 22:47:14 +0000 (22:47 +0000)]
Update mod_disk_cache to comply with the new create_entity() interface.

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

13 years agoAdd an MMN bump for create_entity in mod_cache.h.
Graham Leggett [Tue, 21 Sep 2010 20:51:05 +0000 (20:51 +0000)]
Add an MMN bump for create_entity in mod_cache.h.

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

13 years agomod_cache: Give the cache provider the opportunity to choose to cache
Graham Leggett [Tue, 21 Sep 2010 20:43:44 +0000 (20:43 +0000)]
mod_cache: Give the cache provider the opportunity to choose to cache
or not cache based on the buckets present in the brigade, such as the
presence of a FILE bucket.

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

13 years agoMinor MMN bump for ap_rxplus API
Nick Kew [Tue, 21 Sep 2010 20:31:31 +0000 (20:31 +0000)]
Minor MMN bump for ap_rxplus API

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

13 years agoRemove cruft that accidentally got into r999533
Nick Kew [Tue, 21 Sep 2010 18:52:03 +0000 (18:52 +0000)]
Remove cruft that accidentally got into r999533

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

13 years agoIntroduce ap_rxplus class: higher-level regexps supporting perl-style
Nick Kew [Tue, 21 Sep 2010 18:42:20 +0000 (18:42 +0000)]
Introduce ap_rxplus class: higher-level regexps supporting perl-style
regexp operations.

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

13 years agoReformat these <pre> tables as actual HTML tables
Rich Bowen [Tue, 21 Sep 2010 13:49:25 +0000 (13:49 +0000)]
Reformat these <pre> tables as actual HTML tables

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

13 years agoRemoves the completely unecessary .* on several examples where it only
Rich Bowen [Tue, 21 Sep 2010 13:28:01 +0000 (13:28 +0000)]
Removes the completely unecessary .* on several examples where it only
serves to slow down the match process.

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

13 years agoAdds the -le, -lt, -eq, -ge, and -gt test flags added by wrowe.
Rich Bowen [Tue, 21 Sep 2010 13:23:57 +0000 (13:23 +0000)]
Adds the -le, -lt, -eq, -ge, and -gt test flags added by wrowe.

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

13 years agoAdd descriptions of the new RewriteCond test flags, -L, -h, and the new
Rich Bowen [Tue, 21 Sep 2010 13:02:02 +0000 (13:02 +0000)]
Add descriptions of the new RewriteCond test flags, -L, -h, and the new
>= and <= syntax, added by wrowe in r997553.

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

13 years ago* LimitRequestBody does not affect Proxy requests (Should it?).
Ruediger Pluem [Tue, 21 Sep 2010 09:23:39 +0000 (09:23 +0000)]
* LimitRequestBody does not affect Proxy requests (Should it?).
  Let it take effect if we decide to store the body in a
  temporary file on disk.

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

13 years agoRemoving ``FAQs'' which are *really* out of date.
Igor Galić [Tue, 21 Sep 2010 07:38:17 +0000 (07:38 +0000)]
Removing ``FAQs'' which are *really* out of date.
Updating others to remotely match current pratice (i.e.: current Ciphers used, 1024 -> 2048 bits, etc)

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

13 years agoFold in possible use of FNV if desired
Jim Jagielski [Mon, 20 Sep 2010 14:51:19 +0000 (14:51 +0000)]
Fold in possible use of FNV if desired

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

13 years agosimplify walking through array of returned apr_pollfd_t
Jeff Trawick [Sun, 19 Sep 2010 20:54:34 +0000 (20:54 +0000)]
simplify walking through array of returned apr_pollfd_t

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

13 years agofix one error message, eliminate another that will never
Jeff Trawick [Sun, 19 Sep 2010 20:47:38 +0000 (20:47 +0000)]
fix one error message, eliminate another that will never
be issued (since !n occurs when status != APR_SUCCESS)

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

13 years agoUpdate transformations
Stefan Fritsch [Sun, 19 Sep 2010 18:28:53 +0000 (18:28 +0000)]
Update transformations

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

13 years agoFix typos
Stefan Fritsch [Sun, 19 Sep 2010 18:27:10 +0000 (18:27 +0000)]
Fix typos

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

13 years agoFix lots of cut'n'paste errors and an xml validation error in French
Stefan Fritsch [Sun, 19 Sep 2010 18:24:03 +0000 (18:24 +0000)]
Fix lots of cut'n'paste errors and an xml validation error in French
translation. It would be nice if you could run './build.sh validate-xml'
before commiting.

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

13 years agoAdd method authz provider as potential Limit/LimitExcept replacement.
Stefan Fritsch [Sun, 19 Sep 2010 18:09:18 +0000 (18:09 +0000)]
Add method authz provider as potential Limit/LimitExcept replacement.

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

13 years agoAllow authz providers to check args while reading the config and allow
Stefan Fritsch [Sun, 19 Sep 2010 17:55:47 +0000 (17:55 +0000)]
Allow authz providers to check args while reading the config and allow
them to cache parsed args.

Use this to check that argument to 'all' provider is 'granted' or 'denied'.

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

13 years agoShorten the changes entries.
Graham Leggett [Sun, 19 Sep 2010 17:17:12 +0000 (17:17 +0000)]
Shorten the changes entries.

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

13 years agomod_include: Move the request_rec within mod_include to be
Graham Leggett [Sun, 19 Sep 2010 17:11:45 +0000 (17:11 +0000)]
mod_include: Move the request_rec within mod_include to be
exposed within include_ctx_t.

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

13 years agoUpdates.
Lucien Gentis [Sun, 19 Sep 2010 13:56:08 +0000 (13:56 +0000)]
Updates.

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

13 years agoUpdate transformations.
Graham Leggett [Sun, 19 Sep 2010 13:04:44 +0000 (13:04 +0000)]
Update transformations.

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