Re: mod_ftp trunk

2008-04-07 Thread Tom Donovan
Whoops! I forgot - there's one more bug - 44653, for a total of three bugs. Making these 3 changes should let you build mod_ftp trunk to use with httpd trunk. If you are building mod_ftp to use with httpd 2.2, you only need to fix 44653. -tom- Tom Donovan wrote: Jorge Schrauwen wrote: I'l a

Re: mod_ftp trunk

2008-04-07 Thread Tom Donovan
Jorge Schrauwen wrote: I'l actually not sure if mod_ftp has a separate list... so I'll send it here. On the page it says to fetch the trunk and build it. But the trunk doesn't build! Adding a message saying it won't build or maybe keep a prelease branch that does compile and work on trunk so th

Re: AuthzMergeRules directive

2008-04-07 Thread Brad Nicholes
>>> On 4/4/2008 at 5:43 PM, in message <[EMAIL PROTECTED]>, "Paul J. Reder" <[EMAIL PROTECTED]> wrote: > Perhaps it would make more sense to provide this as an explicit value rather > than > On vs. Off and set the default to the previous behavior. Perhaps something > like: > > AuthzMergeRules [A

Re: AuthzMergeRules directive

2008-04-07 Thread Brad Nicholes
>>> On 4/4/2008 at 4:33 PM, in message <[EMAIL PROTECTED]>, Chris Darroch <[EMAIL PROTECTED]> wrote: > Brad Nicholes wrote: > >> So here was the thinking behind it when AuthzMergeRules was introduced. >> Maybe there is still a bug here that needs to be addressed. >> >> > http://mail-archives.apa

mod_ftp trunk

2008-04-07 Thread Jorge Schrauwen
I'l actually not sure if mod_ftp has a separate list... so I'll send it here. On the page it says to fetch the trunk and build it. But the trunk doesn't build! Adding a message saying it won't build or maybe keep a prelease branch that does compile and work on trunk so there is a working or atlea

Re: Problems with mod_dbd and prepared statements

2008-04-07 Thread Chris Darroch
Graham Leggett wrote: Is that prior to or up to? If it's up to, it would help me a lot... So long as you ensure you run before mod_dbd's hook in the post_config phase, you should be able to register statements to be prepared (I think). Once mod_dbd's post_config hook runs, it has an internal

Re: Apache support for form authentication

2008-04-07 Thread Chris Darroch
Graham Leggett wrote: The session modules are all designed to go exclusively inside Directory and Location sections, which allow you to precisely target which URL space your session is valid for, and this can be repeated as many times as you like creating as many individual sessions as you lik

Re: svn commit: r645395 - /httpd/httpd/trunk/server/request.c

2008-04-07 Thread Chris Darroch
[EMAIL PROTECTED] wrote: Make it compile on pre-C99 compilers (Move decls to beginning of func) Joe Orton wrote: The ap_clear_auth_internal() definition doesn't match the way it's called. Thanks, both. Joe's checks in the past have taught me to use -Wall religiously but apparently this

Re: mod_session_* compiler warnings

2008-04-07 Thread Graham Leggett
Joe Orton wrote: mod_session_cookie.c:59: warning: no previous prototype for 'ap_session_cookie_save' I just checked for any unchecked in files, and found a change to Makefile.in that hadn't been checked in. Can you try and svn update and confirm whether it fixes it? Regards, Graham --

Re: Problems with mod_dbd and prepared statements

2008-04-07 Thread Graham Leggett
Chris Darroch wrote: You have to register statements to be prepared prior to the post_config phase ... that's the main one I can think of. Does that help? Is that prior to or up to? If it's up to, it would help me a lot... Regards, Graham -- smime.p7s Description: S/MIME Cryptographic Si

Re: Problems with mod_dbd and prepared statements

2008-04-07 Thread Chris Darroch
Graham Leggett wrote: Are there any special requirements necessary before mod_dbd will successfully register a prepared statement? You have to register statements to be prepared prior to the post_config phase ... that's the main one I can think of. Does that help? Chris. -- GPG Key ID: 36

Re: svn commit: r645437 - in /httpd/httpd/trunk: include/ server/mpm/beos/ server/mpm/experimental/event/ server/mpm/experimental/leader/ server/mpm/mpmt_os2/ server/mpm/netware/ server/mpm/prefork/ s

2008-04-07 Thread Paul Querna
Takashi Sato wrote: On Mon, 07 Apr 2008 10:00:34 - [EMAIL PROTECTED] wrote: Author: pquerna Date: Mon Apr 7 03:00:32 2008 New Revision: 645437 URL: http://svn.apache.org/viewvc?rev=645437&view=rev Log: Remove ap_graceful_stop_signalled from all MPMs. (snip) Doesn't this require a

mod_session_* compiler warnings

2008-04-07 Thread Joe Orton
The code on the trunk gives a bunch of warnings: Building shared: mod_session.la mod_session_cookie.la mod_session_crypto.la mod_session_dbd.la mod_session_cookie.c:59: warning: no previous prototype for 'ap_session_cookie_save' mod_session_cookie.c:108: warning: no previous prototype for 'ap_s

Re: svn commit: r645437 - in /httpd/httpd/trunk: include/ server/mpm/beos/ server/mpm/experimental/event/ server/mpm/experimental/leader/ server/mpm/mpmt_os2/ server/mpm/netware/ server/mpm/prefork/ s

2008-04-07 Thread Takashi Sato
On Mon, 07 Apr 2008 10:00:34 - [EMAIL PROTECTED] wrote: > Author: pquerna > Date: Mon Apr 7 03:00:32 2008 > New Revision: 645437 > > URL: http://svn.apache.org/viewvc?rev=645437&view=rev > Log: > Remove ap_graceful_stop_signalled from all MPMs. (snip) > Modified: httpd/httpd/trunk/include/ap

Re: svn commit: r644525 - in /httpd/httpd/trunk: ./ include/ modules/aaa/ modules/examples/ modules/ssl/ server/

2008-04-07 Thread Joe Orton
On Thu, Apr 03, 2008 at 09:51:09PM -, [EMAIL PROTECTED] wrote: > Author: chrisd > Date: Thu Apr 3 14:51:07 2008 > New Revision: 644525 > > URL: http://svn.apache.org/viewvc?rev=644525&view=rev > Log: > Avoid calling access control hooks for internal requests with > configurations which match

Re: absolute minimal API for an MPM

2008-04-07 Thread William A. Rowe, Jr.
Paul Querna wrote: Okay, I've changed the two places that call it in the HTTP module to use the MPM Query API instead in r645434. That's the ticket. +1

Re: absolute minimal API for an MPM

2008-04-07 Thread Paul Querna
Paul Querna wrote: The only one that seems really out of place, is ap_graceful_stop_signalled. Its name.. is wrong. Okay, I've changed the two places that call it in the HTTP module to use the MPM Query API instead in r645434. I've now removed ap_graceful_stop_signalled from all MPMs

absolute minimal API for an MPM

2008-04-07 Thread Paul Querna
Incase anyone was wondering, to make httpd -V work, this is the minimal API that you must implement in a new MPM: Variables: ap_generation_t volatile ap_my_generation = 0; server_rec *ap_server_conf = NULL; module AP_MODULE_DECLARE_DATA mpm_mympm_module; Functions: int ap_mpm_run(apr_pool_t *p