- Jun 03, 2000
-
-
William A. Rowe Jr authored
PR: Obtained from: Submitted by: Reviewed by: Plaster some big fat warnings about alpha releases for win32 users. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85388 13f79535-47bb-0310-9956-ffa450edef68
-
Jeff Trawick authored
documentation. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85387 13f79535-47bb-0310-9956-ffa450edef68
-
- Jun 02, 2000
-
-
William A. Rowe Jr authored
PR: Obtained from: Submitted by: Reviewed by: Making his list... checking it twice... git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85385 13f79535-47bb-0310-9956-ffa450edef68
-
Ryan Bloom authored
the TODO back in. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85383 13f79535-47bb-0310-9956-ffa450edef68
-
Ryan Bloom authored
that the function exists again. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85381 13f79535-47bb-0310-9956-ffa450edef68
-
Jeff Trawick authored
We must zap the Content-length header (if any). Otherwise, the browser will be seriously confused :) The header is zapped in ap_set_keepalive() right before we look for Content-length, transfer encoding, HTTP level, etc. to decide, among other issues, whether or not to turn on chunked encoding. For HTTP 1.1, if we don't send Content-length, we need to use chunked encoding, so we have to zap the header before that decision. Interestingly, in Russian Apache the Content-length header is zapped after ap_set_keepalive() is called, so with HTTP 1.1 they break the content-length-or-chunked rule. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85379 13f79535-47bb-0310-9956-ffa450edef68
-
Ryan Bloom authored
server tokens code that is coming soon. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85378 13f79535-47bb-0310-9956-ffa450edef68
-
Jeff Trawick authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85376 13f79535-47bb-0310-9956-ffa450edef68
-
- Jun 01, 2000
-
-
Ryan Bloom authored
Submitted by: John Travis <jtravis@covalent.net> git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85374 13f79535-47bb-0310-9956-ffa450edef68
-
Jeff Trawick authored
when you have ContentDigest enabled and we can't/don't mmap the file. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85373 13f79535-47bb-0310-9956-ffa450edef68
-
David Reid authored
for future additions. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85372 13f79535-47bb-0310-9956-ffa450edef68
-
Ryan Bloom authored
command line but the cache had DSO off, we used to turn DSO off. This has been fixed with this patch. Also, if we specify ANY Apache module as being compiled shared, then we automatically turn on mod_so. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85366 13f79535-47bb-0310-9956-ffa450edef68
-
William A. Rowe Jr authored
PR: Obtained from: Submitted by: Reviewed by: Ick. A message to make one's head spin in infinite recursion. Fixed. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85365 13f79535-47bb-0310-9956-ffa450edef68
-
Ronald Tschalar authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85364 13f79535-47bb-0310-9956-ffa450edef68
-
William A. Rowe Jr authored
PR: Obtained from: Submitted by: Reviewed by: Just a few error cleanups for tonight. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85363 13f79535-47bb-0310-9956-ffa450edef68
-
Ryan Bloom authored
compiled for shared support then APR_HAS_DSO is enabled and -ldl is added to the LIBS variable. -ldl may need to be modified based on platform. If no modules are designated as shared then APR_HAS_DSO is disabled and nothing is added to LIBS. In basic testing this compiled without errors or warnings. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85362 13f79535-47bb-0310-9956-ffa450edef68
-
- May 31, 2000
-
-
Ryan Bloom authored
process_rec should just be storing argv the same way that getopt expects it. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85361 13f79535-47bb-0310-9956-ffa450edef68
-
William A. Rowe Jr authored
PR: Obtained from: Submitted by: Reviewed by: Fix my (very) minor nit with the .dsp's... not sure how I missed this when I first reworked these. Echo a success message and suppress the cp output. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85360 13f79535-47bb-0310-9956-ffa450edef68
-
William A. Rowe Jr authored
PR: Obtained from: Submitted by: Reviewed by: Quick patch to accomodate the mpm's rename to mpm_winnt.c/.h At least in the short term. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85359 13f79535-47bb-0310-9956-ffa450edef68
-
William A. Rowe Jr authored
PR: Obtained from: Submitted by: Reviewed by: First checkin of Win32 service control structure merged into the mpm. Project files to be updated with this 'experimental' implementation once peer review is complete and the module maintainer accepts the patch. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85358 13f79535-47bb-0310-9956-ffa450edef68
-
Brian Havard authored
This patch covers os/2, unix & win32. Other platforms still need some adjustment (BeOS, AIX). Reviewed by: rbb, gstein git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85357 13f79535-47bb-0310-9956-ffa450edef68
-
Jeff Trawick authored
of the translation handle to before we process ErrorDocument strings. The previous placement of this logic only handled the hard-coded response documents. When ErrorDocument specifies a redirection, we don't get here. When the error response is headers only, we don't need to set the handle for content. Thus, all paths through ap_send_error_response() should be handled now. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85356 13f79535-47bb-0310-9956-ffa450edef68
-
- May 30, 2000
-
-
William A. Rowe Jr authored
PR: Obtained from: Submitted by: Reviewed by: Ugh, sorry bout that... reversing out the last dsp6->dsp5 commit. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85355 13f79535-47bb-0310-9956-ffa450edef68
-
William A. Rowe Jr authored
PR: Obtained from: Submitted by: Reviewed by: How, precisely, was Apache going to do anything with rewritten args ;-? +1 on my personal oh-duh tally for the weekend. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85354 13f79535-47bb-0310-9956-ffa450edef68
-
Ryan Bloom authored
Submitted by: Jon Travis <jtravis@covalent.net> git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85353 13f79535-47bb-0310-9956-ffa450edef68
-
Ryan Bloom authored
saferead. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85352 13f79535-47bb-0310-9956-ffa450edef68
-
Jeff Trawick authored
ap_set_content_xlate() takes care of that detail. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85351 13f79535-47bb-0310-9956-ffa450edef68
-
Jeff Trawick authored
sending the canned response document to the client. Otherwise, the client may get garbage depending on the translation in effect. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85350 13f79535-47bb-0310-9956-ffa450edef68
-
Jeff Trawick authored
files, so remove the associated status item. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85349 13f79535-47bb-0310-9956-ffa450edef68
-
Jeff Trawick authored
files. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85348 13f79535-47bb-0310-9956-ffa450edef68
-
- May 29, 2000
-
-
Jeff Trawick authored
Ames' mod_mmap_static patch. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85343 13f79535-47bb-0310-9956-ffa450edef68
-
Brian Havard authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85342 13f79535-47bb-0310-9956-ffa450edef68
-
Ronald Tschalar authored
bugs, and changed shmem/locking to use apr API. Shared-mem is currently disabled, however, because of problems with graceful restarts. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85341 13f79535-47bb-0310-9956-ffa450edef68
-
William A. Rowe Jr authored
PR: Obtained from: Submitted by: Reviewed by: One last precursor to the common code base for Win32 rewrite_args from it's MPM. Since we need to walk the arg list... why maintain it in several places. This patch adds the AP_SERVER_BASEARGS definition to the header, so any mpm (and mod_info, for example) can know what args are legitimate, even when they plan to ignore them. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85340 13f79535-47bb-0310-9956-ffa450edef68
-
- May 28, 2000
-
-
William A. Rowe Jr authored
PR: Obtained from: Submitted by: Reviewed by: Remove any possiblity of having multiple tags to correct as the version changes. Split httpd.h's version into tokens. Roll these tokens into registry.c TODO: Remove registry.c from the list of files to touch when rolling git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85338 13f79535-47bb-0310-9956-ffa450edef68
-
Brian Havard authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85335 13f79535-47bb-0310-9956-ffa450edef68
-
Brian Havard authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85334 13f79535-47bb-0310-9956-ffa450edef68
-
Brian Havard authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85333 13f79535-47bb-0310-9956-ffa450edef68
-
http://www.apache.org/httpdhttp://www.apache.org/Jeff Trawick authored
the link to Apache Web server. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85332 13f79535-47bb-0310-9956-ffa450edef68
-
Jeff Trawick authored
isn't used (as in 1.3), except that on Unix it is now logged via ap_log_rerror() instead of by the child having STDERR_FILENO refer to the error log. Submitted by: Greg Ames Reviewed by: Jeff Trawick git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85331 13f79535-47bb-0310-9956-ffa450edef68
-