Re: 2.2.4 windows binary w/ssl?

2007-03-23 Thread Joe Orton
On Thu, Mar 22, 2007 at 09:14:32PM +0100, Mladen Turk wrote: Guenter Knauf wrote: Hi, Should we add a cert-creation .sh and .vbs script to support/ for this purpose (on any platform)? Sounds like a great idea to me! +1 from me. If you find my vbs useful then I will contribute it. I've

DAV and lazy evaluation

2007-03-23 Thread Nick Kew
I'm developing a DBD-based DAV backend. I've been trying to use lazy evaluation for efficiency. But there are obstacles in the way. I've just added an SQL query to my get_resource method just to determine whether the resource is a collection. I don't think that should be necessary: not every

Re: 2.2.4 windows binary w/ssl?

2007-03-23 Thread Mladen Turk
Joe Orton wrote: Drop an eye on: http://svn.apache.org/viewvc/tomcat/connectors/trunk/jni/examples/mkcerts?view=markup - auto-generating dummy certs which claim to be issued by or to the ASF doesn't seem like a good idea at all It is an example, so anyone is entitled to change it for its

Re: [RFC] Guide to writing output filters

2007-03-23 Thread Joe Orton
On Mon, Mar 19, 2007 at 10:15:03PM +0100, Ruediger Pluem wrote: [on passing empty brigades and mod_cache] Once we detect that we have a fresh content entity in the cache, the quick handler of mod_cache starts the filter chain by calling ap_pass_brigade(r-output_filters, out); where out is

Re: mime-types

2007-03-23 Thread Joshua Slive
On 3/23/07, System Support [EMAIL PROTECTED] wrote: Randomly the mime-type of my .css files changes from text/css to text/plain. There were a couple of similar bugs reported against caching, but they are shown as being fixed. I did try disabling caching, but it did not seem to help. I

Re: load data at server startup - is ap_hook_post_config() the right place?

2007-03-23 Thread David Wortham
Daniel, I believe (I am a module programmer with only novice Apache API experience) that there are quite a few server configs created. From my experiments with my module, there appear to be at least two running all the time (what appears to be a global server config and one server config for

mod_ftp, status and progress?

2007-03-23 Thread Niklas Edmundsson
Hi all! What is the current status/progress on mod_ftp? I haven't seen much on [EMAIL PROTECTED] about it since the graduation... In any case, we'd really like to get mod_ftp in a usable state so we can use it on our anonftp frontends. We currently use vsftpd and are really happy with it,

Re: load data at server startup - is ap_hook_post_config() the right place?

2007-03-23 Thread Danie Qian
- Original Message - From: David Wortham [EMAIL PROTECTED] To: modules-dev@httpd.apache.org; Danie Qian [EMAIL PROTECTED] Sent: Friday, March 23, 2007 11:34 AM Subject: Re: load data at server startup - is ap_hook_post_config() the right place? Daniel, I believe (I am a module

Re: load data at server startup - is ap_hook_post_config() the right place?

2007-03-23 Thread David Wortham
Daniel, AFAIK, mutex refers to mutual exclusion. It is commonly referred to in relation to multi-threading but can apply to an inter-process scheme too. I would assume that only one thread of one (child) process can access a given resource at a given time, but you should refer to the

Re: PATCH: support utilities should enable crypt() , current htdbm checks broken

2007-03-23 Thread David Jones
ok here's the simple patch at the 2.0.x level that just checks platforms for htdbm.c Also appended is the semi-related patch for htpasswd.c that adds TPF to the platforms checked in 2 cases where its missed, which seems like an oversight.

Re: load data at server startup - is ap_hook_post_config() the right place?

2007-03-23 Thread Danie Qian
- Original Message - From: David Wortham [EMAIL PROTECTED] To: modules-dev@httpd.apache.org; Danie Qian [EMAIL PROTECTED] Sent: Friday, March 23, 2007 2:39 PM Subject: Re: load data at server startup - is ap_hook_post_config() the right place? Daniel, AFAIK, mutex refers to

Re: mod_ftp, status and progress?

2007-03-23 Thread William A. Rowe, Jr.
Niklas Edmundsson wrote: * Play well with mod_cache, if a file has been requested with HTTP a FTP request should reuse the cached copy. Last time I checked mod_ftp only did subrequests which mod_cache didn't act on. In terms of using 'top level' requests in lieu of subrequests, it's not

Re: PATCH: support utilities should enable crypt() , current htdbm checks broken

2007-03-23 Thread William A. Rowe, Jr.
David Jones wrote: ok here's the simple patch at the 2.0.x level that just checks platforms for htdbm.c Also appended is the semi-related patch for htpasswd.c that adds TPF to the platforms checked in 2 cases where its missed, which seems like an oversight. +1

Re: mod_ftp, status and progress?

2007-03-23 Thread Ruediger Pluem
On 03/23/2007 04:59 PM, Niklas Edmundsson wrote: * Play well with mod_cache, if a file has been requested with HTTP a FTP request should reuse the cached copy. Last time I checked mod_ftp only did subrequests which mod_cache didn't act on. Of mod_cache works with subrequests as well.

Re: load data at server startup - is ap_hook_post_config() the right place?

2007-03-23 Thread David Wortham
Daniel, My recommendations (some of which are off topic for this list): (1) If you are almost done with the module, why not go ahead and test to see if each child process is getting a unique copy of the server_config_struct? It is possible that if you never try to write to that data after