Re: [PATCH] mod_deflate

2002-02-18 Thread Igor Sysoev
On Sun, 17 Feb 2002, Graham Leggett wrote: Igor Sysoev wrote: The main problem is proxies, especially Squid (~70% of all proxies) Proxies can store compressed response and return it to browser that does not understand gzipped content. Is this verified behavior? If a proxy returns

Re: building 2.0.32 on Darwin

2002-02-18 Thread Pier Fumagalli
Sander Temme [EMAIL PROTECTED] wrote: Ran into the quoting problem that Pier also encountered. This affects building SO modules on Darwin. Quick fix: --- httpd-2.0.32/srclib/apr/configure.bak Thu Feb 14 00:14:57 2002 +++ httpd-2.0.32/srclib/apr/configure Sat Feb 16 14:20:08 2002

Re: Apache 2.0.32 beta is available

2002-02-18 Thread Jeroen Massar
On Sun, 17 Feb 2002, Justin Erenkrantz wrote: SNIP Apache 2.0 offers numerous enhancements, improvements and performance boosts over the 1.3 codebase. The most visible and noteworthy addition is the ability to run Apache in a hybrid thread/process mode on any platform that supports both

Exporting of group information to modules...

2002-02-18 Thread Pier Fumagalli
For a little thing I'm doing, it would be so cool to have (if possible) the groups in which a user is into somewhere in the request_rec structure (something like ap_table_get(r-notes,auth_groups) returns a list of all groups in which the user is authenticated... It's a pretty straightforward

Trying to do a staged install with httpd2

2002-02-18 Thread David Hill
Hi, I am trying to do a "staged install", that is build, then install into a location other than the intended final directory. This means that I want to build with prefix=/mypath, to install into /elsewhere/mypath, and then at a later time, copy the bits into place on the tacget machine

Re: Exporting of group information to modules...

2002-02-18 Thread dirkx
On Mon, 18 Feb 2002, Pier Fumagalli wrote: Does it make any sense? Is it already there (meaning, am I stupid not to see it?), and is something someone else wants/requires Makes perfect sense - and blame me for not putting it in there - I've done exactly this for customers abusing the

Re: [PATCH] Add content-type specific filters

2002-02-18 Thread Justin Erenkrantz
On Mon, Feb 18, 2002 at 12:16:39AM -0800, Brian Pane wrote: This reminds me: mod_mime needs some performance work. Probably. One other thing that would be nice is if we could retrieve the filter handle from the ap_filter_t structure. That would make it easy to add filters to another request

Re: Apache 2.0.32 beta is available

2002-02-18 Thread Bill Stoddard
On Sun, 17 Feb 2002, Justin Erenkrantz wrote: SNIP Apache 2.0 offers numerous enhancements, improvements and performance boosts over the 1.3 codebase. The most visible and noteworthy addition is the ability to run Apache in a hybrid thread/process mode on any platform that supports

Re: Trying to do a staged install with httpd2

2002-02-18 Thread Thom May
* David Hill ([EMAIL PROTECTED]) wrote : Hi, I am trying to do a staged install, that is build, then install into a location other than the intended final directory. This means that I want to build with prefix=/mypath, to install into /elsewhere/mypath, and then at a later time,

Re: [PATCH] Add content-type specific filters

2002-02-18 Thread Justin Erenkrantz
) bump for pre_config hook change + * 20020218 (2.0.33-dev) bump for AddOutputFilterByType directive */ #define MODULE_MAGIC_COOKIE 0x41503230UL /* AP20 */ #ifndef MODULE_MAGIC_NUMBER_MAJOR -#define MODULE_MAGIC_NUMBER_MAJOR 20020128 +#define MODULE_MAGIC_NUMBER_MAJOR 20020218 #endif #define

[PATCH] ap_internal_fast_redirect

2002-02-18 Thread Justin Erenkrantz
Not that I'm advocating committing this, but this is what I'm using locally in order to get the AddOutputFilterByType directive to work with mod_dir/mod_negotiation internal redirects. -- justin Index: modules/http/http_request.c

Re: [PATCH] Add content-type specific filters

2002-02-18 Thread Justin Erenkrantz
On Mon, Feb 18, 2002 at 04:43:01PM -0800, Justin Erenkrantz wrote: +while (f) { +if (!strcasecmp(base_info-name, f-name)) { +found = 1; +} +f = f-next; Oh, there should be a break right after found = 1; -- justin

Re: Request for comments: leader/follower MPM design

2002-02-18 Thread Brian Pane
Greg Ames wrote: Brian Pane wrote: Relative to the current worker MPM design, the potential advantages of this new design are: * Better cache utilization, because the stack makes it more likely that a recently active thread will serve the next request * An implementation that uses

Re: [PATCH] ap_internal_fast_redirect

2002-02-18 Thread Justin Erenkrantz
On Mon, Feb 18, 2002 at 09:06:08PM -0600, William A. Rowe, Jr. wrote: Interesting patch :) Of course it does not address the output headers issue, if I understand that report. For me, it does. It simply ensures that any filters that were added to the subreq are in the main request. So, that

Re: cvs commit: httpd-2.0/server core.c

2002-02-18 Thread William A. Rowe, Jr.
From: [EMAIL PROTECTED] Sent: Monday, February 18, 2002 10:45 PM jerenkrantz02/02/18 20:45:53 Modified:.CHANGES include ap_mmn.h http_core.h server core.c Log: Introduce AddOutputFilterByType directive. AddOutputFilterByType

Re: problem with AddOutputFilterByType directive

2002-02-18 Thread Justin Erenkrantz
On Mon, Feb 18, 2002 at 09:17:19PM -0800, Ian Holsman wrote: it doesn't do what it is supposed to do ALL the time. for example.. take mod-status. inside the handler it decides what type of content-type the program will return. bad module, fix module. this filterconfig won't be able to

Re: other/9871: Server presents wrong certificate with NameVirtualHost

2002-02-18 Thread Aaron Bannert
On Tue, Feb 19, 2002 at 06:31:35AM -, George Mitchell wrote: With multiple virtual hosts sharing one IP address (named virtual hosts), the SSL module always presents the certificate from the first NameVirtualHost regardless of the Host: in the request from the client. However, the data