- Nov 16, 2000
-
-
Jeff Trawick authored
Submitted by: "Victor J. Orlikowski" <v.j.orlikowski@gte.net> git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86980 13f79535-47bb-0310-9956-ffa450edef68
-
Greg Stein authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86979 13f79535-47bb-0310-9956-ffa450edef68
-
Ryan Bloom authored
back-end communication, but BUFF has been removed from the communication with the client. The headers are not working correctly yet, but we are making progress. The most important part of this commit is that we are able to actually filter data coming from the proxy. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86978 13f79535-47bb-0310-9956-ffa450edef68
-
Greg Stein authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86977 13f79535-47bb-0310-9956-ffa450edef68
-
- Nov 15, 2000
-
-
Ryan Bloom authored
the content-length is 0. The problem is that the C-L on a HEAD response has to be the correct C-L, but if a handler returns saying the handled the request without sending data, the core sends an EOS down the filter stack, and we compute a 0 C-L. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86976 13f79535-47bb-0310-9956-ffa450edef68
-
Joshua Slive authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86975 13f79535-47bb-0310-9956-ffa450edef68
-
Tony Finch authored
with no VirtualScriptAlias directives. PR: 6829 git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86974 13f79535-47bb-0310-9956-ffa450edef68
-
Greg Stein authored
mod_dav. The patch applied and compiled cleanly, so I'm committing. Any necessary changes from a review will come later, so that we can easily track what needed to change (and can be back-ported to mod_dav 1.1). Submitted by: John Vasta <jvasta@rational.com> git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86972 13f79535-47bb-0310-9956-ffa450edef68
-
Joshua Slive authored
page that were not in the 1.3 version. Bring these up to date with the new name for the http server web site. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86969 13f79535-47bb-0310-9956-ffa450edef68
-
Joshua Slive authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86968 13f79535-47bb-0310-9956-ffa450edef68
-
- Nov 14, 2000
-
-
Ryan Bloom authored
of the proxy, meaning that it has proxied a page. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86967 13f79535-47bb-0310-9956-ffa450edef68
-
Ryan Bloom authored
big commit of the other day, a few !r->proxyreq's were changed to r->proxyreq, which made the proxy decline requests when it shouldn't have. Submitted by: Cliff Woolley <cliffwoolley@yahoo.com> Reviewed by: Ryan Bloom git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86966 13f79535-47bb-0310-9956-ffa450edef68
-
Joshua Slive authored
PR: 6836 Submitted by: Joakim Forsberg <forsberg@usa.net> git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86965 13f79535-47bb-0310-9956-ffa450edef68
-
Allan K. Edwards authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86964 13f79535-47bb-0310-9956-ffa450edef68
-
Chuck Murcko authored
PR: Obtained from: Submitted by: Reviewed by: git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86963 13f79535-47bb-0310-9956-ffa450edef68
-
Ryan Bloom authored
proxied a page from perl.apache.org. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86962 13f79535-47bb-0310-9956-ffa450edef68
-
Chuck Murcko authored
PR: Obtained from: Submitted by: Reviewed by: git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86961 13f79535-47bb-0310-9956-ffa450edef68
-
Jeff Trawick authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86960 13f79535-47bb-0310-9956-ffa450edef68
-
Jeff Trawick authored
With Tru64, make picks up a bad status from the child shell process when it evaluates the "`echo ($static) | grep 'mod_so'` (see below), causing make to bail out. But that grep should always fail when "make install" runs in modules/extra and unless we have mod_so it will fail when "make install" runs in modules/standard. The work-around is to explicitly ignore the exit status from the grep. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86959 13f79535-47bb-0310-9956-ffa450edef68
-
Ryan Bloom authored
0. Submitted by: Roy Fielding git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86956 13f79535-47bb-0310-9956-ffa450edef68
-
Ryan Bloom authored
this, the content-length filter can determine the C-L before we send the response, and we get a better response. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86955 13f79535-47bb-0310-9956-ffa450edef68
-
Ryan Bloom authored
chance to compute the proper content-length before we try to send a set of headers. If a handler wants to ignore the HEAD method, then it can either just return from the handler function or pass an EOS bucket down the filter stack. Either method will still get the headers sent to the client. This change allows handlers to actually run the request like it is a GET request. The core itself will then ensure that no body is sent. This allows us to get more information about the request before sending out the headers for the HEAD request. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86954 13f79535-47bb-0310-9956-ffa450edef68
-
Ryan Bloom authored
header file. The only time that the C-L should be zero is if there is no body. Zero is a valid content-length, but the only time that we ever really send it is on a HEAD request right now, and that is incorrect. The HEAD response should have the actual content's length. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86953 13f79535-47bb-0310-9956-ffa450edef68
-
Ryan Bloom authored
purpose. This also moves the create_pool function outside of an if to decrease complexity. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86952 13f79535-47bb-0310-9956-ffa450edef68
-
Ryan Bloom authored
PR: 73 Submitted by: Markus Gyger <mgyger@itr.ch> git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86951 13f79535-47bb-0310-9956-ffa450edef68
-
Jeff Trawick authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86950 13f79535-47bb-0310-9956-ffa450edef68
-
Jeff Trawick authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86949 13f79535-47bb-0310-9956-ffa450edef68
-
Ryan Bloom authored
config tree instead of re-reading the config file. As a part of this change, the config tree needs to be exposed to modules as ap_conftree. Submitted by: Ryan Morgan <rmorgan@covalent.net> Reviewed by: Ryan Bloom git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86948 13f79535-47bb-0310-9956-ffa450edef68
-
Ryan Bloom authored
The basic problem is that when the pool is destroyed, the data will go away unless it is in a pool bucket. If it is in a pool bucket, then the data will be copied into a heap bucket when the pool is destroyed. This becomes a real issue when we set some data off to the side to deal with pipelined requests. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86947 13f79535-47bb-0310-9956-ffa450edef68
-
Jeff Trawick authored
cc: Info: mod_vhost_alias.c, line 469: Extraneous semicolon. (extrasemi) }; -^ git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86946 13f79535-47bb-0310-9956-ffa450edef68
-
- Nov 13, 2000
-
-
Ryan Bloom authored
from traveling down the stack multiple time for a static page. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86944 13f79535-47bb-0310-9956-ffa450edef68
-
Bill Stoddard authored
mod_autoindex funky chunking behaviour until the ap_r* routines are reimplemented, at which time this filter should probably go away. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86943 13f79535-47bb-0310-9956-ffa450edef68
-
Ryan Bloom authored
and byteranges. Submitted by: Ryan Bloom and Will Rowe git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86942 13f79535-47bb-0310-9956-ffa450edef68
-
Ryan Bloom authored
Submitted by: Victor J. Orlikowski <v.j.orlikowski@gte.net> git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86941 13f79535-47bb-0310-9956-ffa450edef68
-
William A. Rowe Jr authored
Win32 symlink (NTFS Junction) support for mod_rewrite git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86940 13f79535-47bb-0310-9956-ffa450edef68
-
Ryan Bloom authored
Submitted by: Victor J. Orlikowski <v.j.orlikowski@gte.net> git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86939 13f79535-47bb-0310-9956-ffa450edef68
-
Ryan Bloom authored
sent the file yet. This also removes the send_http_headers call, because that's a no-op so it doesn't make much sense to leave it in. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86938 13f79535-47bb-0310-9956-ffa450edef68
-
Ryan Bloom authored
working on linux 2.2. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86936 13f79535-47bb-0310-9956-ffa450edef68
-
Jeff Trawick authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86935 13f79535-47bb-0310-9956-ffa450edef68
-
Jeff Trawick authored
the recent apr_ssize_t->apr_size_t changes. The problem in mod_cgid was an int function which didn't have a return statement. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86934 13f79535-47bb-0310-9956-ffa450edef68
-