]> granicus.if.org Git - apache/log
apache
22 years agoget mod_deflate to compile with compilers that care about the
Jeff Trawick [Wed, 29 May 2002 14:26:00 +0000 (14:26 +0000)]
get mod_deflate to compile with compilers that care about the
signed-ness of char *

it looks like it should work fine, but it is untested

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

22 years agohot
Jeff Trawick [Wed, 29 May 2002 11:41:10 +0000 (11:41 +0000)]
hot

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

22 years agoUpdate URL to mirror finding script.
Yoshiki Hayashi [Wed, 29 May 2002 11:01:22 +0000 (11:01 +0000)]
Update URL to mirror finding script.

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

22 years agoInput filter support for mod_deflate.
Justin Erenkrantz [Wed, 29 May 2002 10:27:05 +0000 (10:27 +0000)]
Input filter support for mod_deflate.

Highly experimental, but known to work for some tests.

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

22 years agoAdd a note indicating what it would take to get MTIME field populated.
Justin Erenkrantz [Wed, 29 May 2002 07:23:10 +0000 (07:23 +0000)]
Add a note indicating what it would take to get MTIME field populated.
(I did this locally, but didn't figure it was worth committing, but it's
still worth noting.)

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

22 years agoProperly detect overflow when reading the hex chunk lines.
Aaron Bannert [Wed, 29 May 2002 06:42:58 +0000 (06:42 +0000)]
Properly detect overflow when reading the hex chunk lines.

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

22 years agoImplement flushing support for mod_deflate.
Justin Erenkrantz [Wed, 29 May 2002 06:40:23 +0000 (06:40 +0000)]
Implement flushing support for mod_deflate.
(Review of RFC 1952 indicates that this is indeed easily allowable.)

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

22 years agomod_bucketeer has been tried, convicted, and sentenced in the style courts.
Justin Erenkrantz [Wed, 29 May 2002 06:19:26 +0000 (06:19 +0000)]
mod_bucketeer has been tried, convicted, and sentenced in the style courts.
(No functional changes, just style changes, so I can read the darn thing.)

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

22 years agoAllow mod_deflate to be more tolerant of multiple content-encodings.
Justin Erenkrantz [Wed, 29 May 2002 05:48:57 +0000 (05:48 +0000)]
Allow mod_deflate to be more tolerant of multiple content-encodings.

- Tighten scope of a few affected variables (accepts, token).
- Look for gzip in r->headers_out (!) - if there, we've already compressed.
  (Previously, we'd look at r->headers_in which was bogus - we're output.)
- Switch the Accept-Encoding check to be case-insensitive per RFC 2616.
- Remove commented-out code.
- If C-E wasn't present or it was just "identity," set C-E to "gzip",
  otherwise, merge "gzip" onto the C-E list.

This patch was originally submitted by Ian and cleaned up and tested by
Justin.

Submitted by: Ian Holsman
Reviewed by: Justin Erenkrantz

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

22 years agoSimplify ap_read_pid and make it more portable.
Justin Erenkrantz [Wed, 29 May 2002 04:39:07 +0000 (04:39 +0000)]
Simplify ap_read_pid and make it more portable.

- Switch to using apr_file_read_full()
- Stop checking for \n (non-portable)
- Error if we read the entire buffer or the first digit isn't a number

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

22 years agoError out a bit more nicely if the RewriteMap prg: is not found. We
Cliff Woolley [Wed, 29 May 2002 04:38:59 +0000 (04:38 +0000)]
Error out a bit more nicely if the RewriteMap prg: is not found.  We
can't just apr_stat in the first init round because we haven't run
apr_tokenize_to_argv() yet, and it would be a relatively ugly hack to run
it twice just for that.  Well, I suppose we could store the argv in the
rewritemap structure, but ... nah.  With this, we shutdown (cleanly, as
opposed to the old exit(1) method) if we go to execute a rewritemap
and discover it doesn't exist, and log a nice descriptive message at the
end of the error_log.

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

22 years agoUpdate transformations.
Joshua Slive [Wed, 29 May 2002 03:49:52 +0000 (03:49 +0000)]
Update transformations.

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

22 years agoUpdate the content negotiation docs to incorporate some of the new stuff in 2.0.
Joshua Slive [Wed, 29 May 2002 03:42:32 +0000 (03:42 +0000)]
Update the content negotiation docs to incorporate some of the new stuff in 2.0.
This could use review!

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

22 years agoFix RewriteMap prg:'s that have command-line args.
Cliff Woolley [Wed, 29 May 2002 03:27:01 +0000 (03:27 +0000)]
Fix RewriteMap prg:'s that have command-line args.

PR: 8464
Submitted by: James Tait <JTait@wyrddreams.demon.co.uk>

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

22 years agoSwitch the limit directive enforcement error paths to match the error handling
Justin Erenkrantz [Tue, 28 May 2002 23:55:53 +0000 (23:55 +0000)]
Switch the limit directive enforcement error paths to match the error handling
code for invalid chunk sizes.

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

22 years agoCorrectly return 413 when an invalid chunk size is given on input.
Justin Erenkrantz [Tue, 28 May 2002 23:38:31 +0000 (23:38 +0000)]
Correctly return 413 when an invalid chunk size is given on input.

- If get_chunk_size() returns a negative number, that probably implies
  an overflow.  So, create a 413 error and pass it to the output filters.
- Modify ap_discard_request_body() to return OK quickly if we're a subreq
  or our status code implies that we will be dropping the connection.
- Modify ap_die() so that if the new status implies that we will drop
  the connection, that we correctly indicate that we can not keepalive
  this connection.  (Without this, the error is returned, but the connection
  is not closed.)

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

22 years agoshowstoppers--;
Cliff Woolley [Tue, 28 May 2002 23:16:57 +0000 (23:16 +0000)]
showstoppers--;

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

22 years agoFix http redirecting for UserDir. Before this patch, the directive:
Ryan Bloom [Tue, 28 May 2002 23:14:15 +0000 (23:14 +0000)]
Fix http redirecting for UserDir.  Before this patch, the directive:

UserDir http://www.foo.com/~*/

The code would ignore the http:// and instead use the user's home directory

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

22 years agowhy do I keep forgetting to commit CHANGES with the code change itself?
Cliff Woolley [Tue, 28 May 2002 21:51:13 +0000 (21:51 +0000)]
why do I keep forgetting to commit CHANGES with the code change itself?
ugh.

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

22 years agoAPR-ize the localtime() fooness, since localtime() is not always
Cliff Woolley [Tue, 28 May 2002 21:47:31 +0000 (21:47 +0000)]
APR-ize the localtime() fooness, since localtime() is not always
threadsafe.

PR: 9469

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

22 years agojust in case anybody cares
Cliff Woolley [Tue, 28 May 2002 21:26:44 +0000 (21:26 +0000)]
just in case anybody cares

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

22 years agovote++; (cheer)
Justin Erenkrantz [Tue, 28 May 2002 21:14:28 +0000 (21:14 +0000)]
vote++;         (cheer)
showstopper++;  (groan)

Cliff can revoke this as a showstopper, but I think this'll get fixed as soon
as I (or someone else) figures out how to return HTTP errors from a filter.

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

22 years agoshowstoppers--;
Cliff Woolley [Tue, 28 May 2002 21:07:58 +0000 (21:07 +0000)]
showstoppers--;

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

22 years agoThe lock should have already been released when the connection was closed.
Bradley Nicholes [Tue, 28 May 2002 19:32:30 +0000 (19:32 +0000)]
The lock should have already been released when the connection was closed.
If it was then releasing it again causes a "releasing an unheld lock" warning
on NetWare.  To avoid the warning, first try to get the lock before releasing
it.  The other alternative would be to just assume that the lock has been
released when the connection was closed so do nothing.

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

22 years agoNeed to destroy the global cache during module shutdown that was created
Bradley Nicholes [Tue, 28 May 2002 19:28:13 +0000 (19:28 +0000)]
Need to destroy the global cache during module shutdown that was created
when the module what initialized.  This eliminates a memory leak.

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

22 years agoNeed to also free the cache node itself when destroying the cache. The
Bradley Nicholes [Tue, 28 May 2002 19:26:26 +0000 (19:26 +0000)]
Need to also free the cache node itself when destroying the cache.  The
eliminates a memory leak on shutdown

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

22 years agoshowstoppers--;
Cliff Woolley [Tue, 28 May 2002 18:06:06 +0000 (18:06 +0000)]
showstoppers--;

Thanks, Bill!

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

22 years agoFix problem where mod_cache/mod_disk_cache was setting content_type to
Bill Stoddard [Tue, 28 May 2002 18:04:43 +0000 (18:04 +0000)]
Fix problem where mod_cache/mod_disk_cache was setting content_type to
text/plain for all cached remote responses.

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

22 years agoMostly harmless.
Cliff Woolley [Tue, 28 May 2002 15:22:55 +0000 (15:22 +0000)]
Mostly harmless.

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

22 years agoRegenerate HTML files with latest common.xsl.
Yoshiki Hayashi [Tue, 28 May 2002 07:35:00 +0000 (07:35 +0000)]
Regenerate HTML files with latest common.xsl.

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

22 years agoAdd nowrap attribute to the column showing description, status,
Yoshiki Hayashi [Tue, 28 May 2002 07:34:10 +0000 (07:34 +0000)]
Add nowrap attribute to the column showing description, status,
module identifier etc.

This change is mainly for the sake of Japanese translation.  Because
Japanese words are not whitespace separated, web browser can wrap it
anywhere it wants.  This change prevent "module identifier" etc from
being wrapped.

Suggested by: Hiroaki KAWAI <hawk@bcl.t.u-tokyo.ac.jp>

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

22 years agoAdd link to howto/auth.html.
Yoshiki Hayashi [Tue, 28 May 2002 07:14:37 +0000 (07:14 +0000)]
Add link to howto/auth.html.

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

22 years agoFix typo.
Yoshiki Hayashi [Tue, 28 May 2002 07:13:48 +0000 (07:13 +0000)]
Fix typo.

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

22 years agoUpdate the proxy docs a little bit. Still lots of work needed.
Joshua Slive [Tue, 28 May 2002 01:36:44 +0000 (01:36 +0000)]
Update the proxy docs a little bit.  Still lots of work needed.

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

22 years agoremove a vote which was resolved
Ian Holsman [Mon, 27 May 2002 14:00:46 +0000 (14:00 +0000)]
remove a vote which was resolved
PR:
Obtained from:
Submitted by:
Reviewed by:

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

22 years agosimplified apachectl...
Jeff Trawick [Mon, 27 May 2002 11:46:01 +0000 (11:46 +0000)]
simplified apachectl...

. it now uses "httpd -k verb" support for start/restart/etc.
. it now can pass through any httpd option, so apachectl
  can be used as a replacement for invoking httpd directly
  (this practice ensures that any necessary environment
  variables are set up)

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

22 years agofix a char signed-ness mismatc in the call to apr_table_set()
Jeff Trawick [Mon, 27 May 2002 10:28:17 +0000 (10:28 +0000)]
fix a char signed-ness mismatc in the call to apr_table_set()

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

22 years agoDocument the --with-suexec-bin configure flag.
Aaron Bannert [Mon, 27 May 2002 04:07:32 +0000 (04:07 +0000)]
Document the --with-suexec-bin configure flag.
PR: 9038

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

22 years agoReorder these directives to match the output from ./configure --help
Aaron Bannert [Mon, 27 May 2002 02:38:51 +0000 (02:38 +0000)]
Reorder these directives to match the output from ./configure --help

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

22 years agoA bunch of small corrections, mostly to <description>s and <override>s.
Joshua Slive [Mon, 27 May 2002 02:22:09 +0000 (02:22 +0000)]
A bunch of small corrections, mostly to <description>s and <override>s.

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

22 years agoUpdate transformations.
Joshua Slive [Mon, 27 May 2002 02:20:38 +0000 (02:20 +0000)]
Update transformations.

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

22 years agoA bunch of small corrections, mostly to shorten <description>s and add
Joshua Slive [Mon, 27 May 2002 02:20:17 +0000 (02:20 +0000)]
A bunch of small corrections, mostly to shorten <description>s and add
<override>s.

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

22 years agoAdd a couple cross-references to the modules that send headers.
Joshua Slive [Mon, 27 May 2002 01:25:22 +0000 (01:25 +0000)]
Add a couple cross-references to the modules that send headers.

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

22 years agoUpdate transformations.
Joshua Slive [Mon, 27 May 2002 00:44:32 +0000 (00:44 +0000)]
Update transformations.

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

22 years agoSmall fixes to mod_include and mod_so docs.
Joshua Slive [Mon, 27 May 2002 00:44:06 +0000 (00:44 +0000)]
Small fixes to mod_include and mod_so docs.

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

22 years agoA little refactoring of the mod_setenvif docs. In particular, consolidate the
Joshua Slive [Sun, 26 May 2002 23:10:15 +0000 (23:10 +0000)]
A little refactoring of the mod_setenvif docs.  In particular, consolidate the
details in the SetEnvIf directive and let the others simply reference that one.

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

22 years agostyle police take 2
Cliff Woolley [Sun, 26 May 2002 23:00:19 +0000 (23:00 +0000)]
style police take 2

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

22 years agostyle police
Cliff Woolley [Sun, 26 May 2002 22:56:45 +0000 (22:56 +0000)]
style police

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

22 years agoUpdated the release showstoppers section to reflect the
Brian Pane [Sun, 26 May 2002 22:28:06 +0000 (22:28 +0000)]
Updated the release showstoppers section to reflect the
completion of the critical suexec fixes

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

22 years agoFix for suexec invocation of CGIs under user dirs when using cgid
Brian Pane [Sun, 26 May 2002 22:10:55 +0000 (22:10 +0000)]
Fix for suexec invocation of CGIs under user dirs when using cgid
PR: 7810
Submitted by: Colm MacCarthaigh <colmmacc@redbrick.dcu.ie>
Reviewed by: Brian Pane

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

22 years agoSmall mod doc updates.
Joshua Slive [Sun, 26 May 2002 22:08:58 +0000 (22:08 +0000)]
Small mod doc updates.

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

22 years agoFix for suexec execution of CGI scripts from mod_include
Brian Pane [Sun, 26 May 2002 08:27:10 +0000 (08:27 +0000)]
Fix for suexec execution of CGI scripts from mod_include
(including security patch to ensure that <!--#include file="name.cgi"-->
is run as the suexec user rather than the httpd user)
PR: 7791, 8291
Submitted by: Colm MacCarthaigh <colmmacc@redbrick.dcu.ie>
Reviewed by: Brian Pane

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

22 years agoI *think* I tracked down all the issues that have come up on list in the
Cliff Woolley [Sun, 26 May 2002 05:45:07 +0000 (05:45 +0000)]
I *think* I tracked down all the issues that have come up on list in the
last week or so and remain unresolved or needing consensus.  If I missed
something, PLEASE BE SURE TO ADD IT HERE.

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

22 years agoAdd support for ${AUTOHEADER} and ${AUTOCONF} in buildconf
Justin Erenkrantz [Sat, 25 May 2002 22:32:40 +0000 (22:32 +0000)]
Add support for ${AUTOHEADER} and ${AUTOCONF} in buildconf
(apr and apr-util already support this convention.)

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

22 years agoFix the rest of the apr_pool_userdata_setn() bogosity w.r.t. DSO modules.
Cliff Woolley [Sat, 25 May 2002 20:10:55 +0000 (20:10 +0000)]
Fix the rest of the apr_pool_userdata_setn() bogosity w.r.t. DSO modules.
It's totally unsafe to use apr_pool_userdata_setn() in the post_config
phase of a module, since on some platforms when the DSO gets reloaded
between phases, the data segment will be at a different address on the
second phase and the userdata_get() call will fail.

PR: 9413
Submitted by: Tsuyoshi Sasamoto <nazonazo@super.win.ne.jp>

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

22 years ago Simple fix for possibly unterminated REG_SZ data
William A. Rowe Jr [Sat, 25 May 2002 20:09:24 +0000 (20:09 +0000)]
  Simple fix for possibly unterminated REG_SZ data

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

22 years ago Small chance we have an unterminated or single null terminated list.
William A. Rowe Jr [Sat, 25 May 2002 20:06:32 +0000 (20:06 +0000)]
  Small chance we have an unterminated or single null terminated list.
  Simple workaround to protect our sizing functions from walking past
  the end of allocation.

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

22 years ago nelts returned from a registry key may be zero... make it so.
William A. Rowe Jr [Sat, 25 May 2002 20:02:16 +0000 (20:02 +0000)]
  nelts returned from a registry key may be zero... make it so.
  [We previously would return an array of one empty element.]

PR: 9410
Submitted by: Vasiliy Gagin <vasiliy@gazooc.com>

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

22 years agoUpdate transformations.
Joshua Slive [Sat, 25 May 2002 16:59:34 +0000 (16:59 +0000)]
Update transformations.

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

22 years agoCorrect the tag name for "This module provides no directives."
Joshua Slive [Sat, 25 May 2002 16:57:17 +0000 (16:57 +0000)]
Correct the tag name for "This module provides no directives."

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

22 years agoGet rid of the mod/index-bytype.html file. Now that we have better
Joshua Slive [Sat, 25 May 2002 16:47:20 +0000 (16:47 +0000)]
Get rid of the mod/index-bytype.html file.  Now that we have better
cross-referencing and unifying documentation it isn't necessary.

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

22 years ago Bug one of two, INIT_FLAG better pair with set_flag_slot.
William A. Rowe Jr [Sat, 25 May 2002 15:31:27 +0000 (15:31 +0000)]
  Bug one of two, INIT_FLAG better pair with set_flag_slot.

Submitted by: Sebastian Hantsch <Sebastian.Hantsch@t-online.de>

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

22 years agoAdded EnableMMAP to performance tuning guide
Brian Pane [Sat, 25 May 2002 06:58:39 +0000 (06:58 +0000)]
Added EnableMMAP to performance tuning guide

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

22 years agoRemoved extraneous "{} \;" from some xargs calls
Brian Pane [Sat, 25 May 2002 04:14:51 +0000 (04:14 +0000)]
Removed extraneous "{} \;" from some xargs calls
Submitted by: Joe Orton <jorton@redhat.com>
Reviewed by: Brian Pane

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

22 years agoFix for mod_include's parsing of "/regexp/" expressions in
Brian Pane [Sat, 25 May 2002 04:06:35 +0000 (04:06 +0000)]
Fix for mod_include's parsing of "/regexp/" expressions in
<!--#if directives
Submitted by: Julius Gawlas <julius_gawlas@hp.com>
Reviewed by: Brian Pane

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

22 years agotweak "requests currently being processed". It is confusing to not have
Greg Ames [Fri, 24 May 2002 20:15:07 +0000 (20:15 +0000)]
tweak "requests currently being processed".  It is confusing to not have
old generation requests included after a graceful restart.  But we
shouldn't count workers who are starting up.

OTOH, the "ready" counter needs to pay attention to the generation, so it
stays in sync with how p_i_s_m counts idle workers.

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

22 years ago71 degrees F and sunny, with scattered clouds and an increased
Brian Pane [Fri, 24 May 2002 20:03:50 +0000 (20:03 +0000)]
71 degrees F and sunny, with scattered clouds and an increased
chance of a 2.0.37 release

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

22 years agoFix for the worker deadlock problem
Brian Pane [Fri, 24 May 2002 19:50:58 +0000 (19:50 +0000)]
Fix for the worker deadlock problem

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

22 years agothe "-k startssl" parameter is reverted by popular demand
Jeff Trawick [Fri, 24 May 2002 18:48:10 +0000 (18:48 +0000)]
the "-k startssl" parameter is reverted by popular demand

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

22 years agoWin32: Shutdown the listeners before telling the accept threads to quit.
Bill Stoddard [Fri, 24 May 2002 16:58:23 +0000 (16:58 +0000)]
Win32: Shutdown the listeners before telling the accept threads to quit.

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

22 years agoWin32: Use atomic increment/decrement on counters touched by multiple threads.
Bill Stoddard [Fri, 24 May 2002 16:56:39 +0000 (16:56 +0000)]
Win32: Use atomic increment/decrement on counters touched by multiple threads.
I intentionally did not use atomic operators on the Win9* code paths.

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

22 years agoExporting a missing API for NetWare
Bradley Nicholes [Fri, 24 May 2002 15:34:53 +0000 (15:34 +0000)]
Exporting a missing API for NetWare
Submitted by: Jean-Jacques Clar [JJCLAR@Novell.com]

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

22 years ago We appear to never have had any complaints about copy srcname dstname
William A. Rowe Jr [Fri, 24 May 2002 15:16:53 +0000 (15:16 +0000)]
  We appear to never have had any complaints about copy srcname dstname
  not overwriting dstname ... this flavor is certain not to emit a file
  exists error [with the obvious caviat - if it's write protected, your
  problem.]  Much simpler than /y, <.y or set copycmd fooness.

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

22 years agoExpose a new cache_hash function to free the hash table.
Bill Stoddard [Fri, 24 May 2002 14:41:08 +0000 (14:41 +0000)]
Expose a new cache_hash function to free the hash table.

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

22 years agoVeto rescinded: <20020523141308.A22513@lyra.org>
Cliff Woolley [Thu, 23 May 2002 21:35:08 +0000 (21:35 +0000)]
Veto rescinded:  <20020523141308.A22513@lyra.org>

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

22 years agoI think the recent flury of garbage flying out of docs/manual/style
Joshua Slive [Thu, 23 May 2002 20:00:28 +0000 (20:00 +0000)]
I think the recent flury of garbage flying out of docs/manual/style
and docs/manual/mod warrants a CHANGES entry.

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

22 years agoSunny in c-ville...
Cliff Woolley [Thu, 23 May 2002 19:46:09 +0000 (19:46 +0000)]
Sunny in c-ville...

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

22 years agoissue the usage message if there are extraneous arguments on
Jeff Trawick [Thu, 23 May 2002 18:52:26 +0000 (18:52 +0000)]
issue the usage message if there are extraneous arguments on
the command line

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

22 years agofix data initialization problem in new Unix -k option processing
Jeff Trawick [Thu, 23 May 2002 18:31:02 +0000 (18:31 +0000)]
fix data initialization problem in new Unix -k option processing

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

22 years agoUpdate transformation after fixing stylesheet.
Joshua Slive [Thu, 23 May 2002 15:10:43 +0000 (15:10 +0000)]
Update transformation after fixing stylesheet.

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

22 years agoA test block snuck in sometime.
Joshua Slive [Thu, 23 May 2002 15:06:42 +0000 (15:06 +0000)]
A test block snuck in sometime.

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

22 years agoFix a file permissions problem which prevented mod_disk_cache
Jeff Trawick [Thu, 23 May 2002 14:56:11 +0000 (14:56 +0000)]
Fix a file permissions problem which prevented mod_disk_cache
from working on Unix.

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

22 years agoUpdate the stylesheet reference.
Joshua Slive [Thu, 23 May 2002 14:51:03 +0000 (14:51 +0000)]
Update the stylesheet reference.

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

22 years agoUpdate the stylesheet reference to the new language-specific version.
Joshua Slive [Thu, 23 May 2002 14:50:12 +0000 (14:50 +0000)]
Update the stylesheet reference to the new language-specific version.

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

22 years agoFix the ja.jis file. I hadn't cvs uped the manual.ja.xsl before transforming this.
Joshua Slive [Thu, 23 May 2002 14:44:25 +0000 (14:44 +0000)]
Fix the ja.jis file.  I hadn't cvs uped the manual.ja.xsl before transforming this.

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

22 years agoA little too fast on the fingers. I didn't mean to remove these.
Joshua Slive [Thu, 23 May 2002 14:38:48 +0000 (14:38 +0000)]
A little too fast on the fingers.  I didn't mean to remove these.

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

22 years agoFirst proper (I hope!) japanese transformation.
Joshua Slive [Thu, 23 May 2002 14:28:50 +0000 (14:28 +0000)]
First proper (I hope!) japanese transformation.

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

22 years agoNo change here except the filename extensions. Sorry for the massic commit.
Joshua Slive [Thu, 23 May 2002 14:23:51 +0000 (14:23 +0000)]
No change here except the filename extensions.  Sorry for the massic commit.

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

22 years agoBuild file updated to work with modified ant to get us the proper extension
Joshua Slive [Thu, 23 May 2002 14:22:17 +0000 (14:22 +0000)]
Build file updated to work with modified ant to get us the proper extension
substitution.

Submitted by: Yoshiki Hayashi, Joshua Slive

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

22 years agoThanks to Yoshiki, we seem to have an (at least temporary) solution to our
Joshua Slive [Thu, 23 May 2002 14:21:19 +0000 (14:21 +0000)]
Thanks to Yoshiki, we seem to have an (at least temporary) solution to our
doc transformation problem.

As the first step, I'm removing all the .html files.  They will be replaced
by language-specific files.

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

22 years agoAdd "-k start|startssl|restart|graceful|stop" support to httpd
Jeff Trawick [Thu, 23 May 2002 12:58:37 +0000 (12:58 +0000)]
Add "-k start|startssl|restart|graceful|stop" support to httpd
for the Unix MPMs.  These have semantics very similar to the
old apachectl commands of the same name.

The use of stderr/stdout and exit status for error conditions
needs to be revisited.  For now it matches apachectl behavior.

Justin Erenkrantz got the ball rolling with this feature.  Some
of his support code was used unchanged.  Other code was shuffled
around and modified or rewritten.

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

22 years agofix a spelling error in a comment
Jeff Trawick [Thu, 23 May 2002 12:20:56 +0000 (12:20 +0000)]
fix a spelling error in a comment

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

22 years agoadd ap_log_pid() for reading an Apache pid file
Jeff Trawick [Thu, 23 May 2002 12:19:09 +0000 (12:19 +0000)]
add ap_log_pid() for reading an Apache pid file

Submitted by: Justin Erenkrantz

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

22 years agoUpdate.
Yoshiki Hayashi [Thu, 23 May 2002 12:14:26 +0000 (12:14 +0000)]
Update.

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

22 years agoUpdate translation.
Yoshiki Hayashi [Thu, 23 May 2002 12:13:20 +0000 (12:13 +0000)]
Update translation.

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

22 years agoNew Japanese translation.
Yoshiki Hayashi [Thu, 23 May 2002 07:55:32 +0000 (07:55 +0000)]
New Japanese translation.

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

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

22 years agoAdd comment to note corresponding revision in English document for
Yoshiki Hayashi [Thu, 23 May 2002 07:52:47 +0000 (07:52 +0000)]
Add comment to note corresponding revision in English document for
easier change tracking in the future.

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

22 years agoRename mod_suexex.ja.xml to mod_suexec.xml.ja.
Yoshiki Hayashi [Thu, 23 May 2002 07:51:38 +0000 (07:51 +0000)]
Rename mod_suexex.ja.xml to mod_suexec.xml.ja.

This is a simple add and remove operation because there was no change to
old file and preserving history is not important.

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

22 years agoFix typo.
Yoshiki Hayashi [Thu, 23 May 2002 07:47:36 +0000 (07:47 +0000)]
Fix typo.

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

22 years agoOops. I overlooked this typo yesterday.
Yoshiki Hayashi [Thu, 23 May 2002 07:10:37 +0000 (07:10 +0000)]
Oops.  I overlooked this typo yesterday.

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