Re: svn commit: r822094 - /httpd/mod_fcgid/trunk/modules/fcgid/fcgid_conf.c

2009-10-07 Thread Chris Darroch
Jeff Trawick wrote: FCGIDOutputBufferSize - FCGIDResponseBufferSize FCGIDBusyTimeout - FCGIDRequestTimeout FCGIDBusyScanInterval - FCGIDRequestTimeoutScanInterval (unfortunate name for unfortunate concept) Hmm ... can't say I have any opinion on those, really. I suppose Response is

Re: svn commit: r822094 - /httpd/mod_fcgid/trunk/modules/fcgid/fcgid_conf.c

2009-10-07 Thread Jeff Trawick
On Wed, Oct 7, 2009 at 10:05 AM, Chris Darroch chr...@pearsoncmg.com wrote: Jeff Trawick wrote: FCGIDOutputBufferSize - FCGIDResponseBufferSize FCGIDBusyTimeout - FCGIDRequestTimeout FCGIDBusyScanInterval - FCGIDRequestTimeoutScanInterval (unfortunate name for unfortunate concept)  Hmm

Re: svn commit: r822094 - /httpd/mod_fcgid/trunk/modules/fcgid/fcgid_conf.c

2009-10-06 Thread William A. Rowe, Jr.
traw...@apache.org wrote: Author: trawick Date: Mon Oct 5 23:58:34 2009 New Revision: 822094 URL: http://svn.apache.org/viewvc?rev=822094view=rev Log: consolidate/improve reporting of bogus files in the configuration My quick evaluation of the state of the code suggests we are ready for

Re: svn commit: r822094 - /httpd/mod_fcgid/trunk/modules/fcgid/fcgid_conf.c

2009-10-06 Thread Jeff Trawick
On Tue, Oct 6, 2009 at 4:07 AM, William A. Rowe, Jr. wr...@rowe-clan.netwrote: traw...@apache.org wrote: Author: trawick Date: Mon Oct 5 23:58:34 2009 New Revision: 822094 URL: http://svn.apache.org/viewvc?rev=822094view=rev Log: consolidate/improve reporting of bogus files in the

Re: svn commit: r822094 - /httpd/mod_fcgid/trunk/modules/fcgid/fcgid_conf.c

2009-10-06 Thread Rainer Jung
On 06.10.2009 14:56, Jeff Trawick wrote: On Tue, Oct 6, 2009 at 4:07 AM, William A. Rowe, Jr. wr...@rowe-clan.net mailto:wr...@rowe-clan.net wrote: traw...@apache.org mailto:traw...@apache.org wrote: Author: trawick Date: Mon Oct 5 23:58:34 2009 New Revision: 822094

Re: svn commit: r822094 - /httpd/mod_fcgid/trunk/modules/fcgid/fcgid_conf.c

2009-10-06 Thread William A. Rowe, Jr.
Rainer Jung wrote: On 06.10.2009 14:56, Jeff Trawick wrote: On Tue, Oct 6, 2009 at 4:07 AM, William A. Rowe, Jr. wr...@rowe-clan.net mailto:wr...@rowe-clan.net wrote: traw...@apache.org mailto:traw...@apache.org wrote: Author: trawick Date: Mon Oct 5 23:58:34 2009 New

Re: svn commit: r822094 - /httpd/mod_fcgid/trunk/modules/fcgid/fcgid_conf.c

2009-10-06 Thread Rainer Jung
On 06.10.2009 18:26, William A. Rowe, Jr. wrote: Rainer Jung wrote: On 06.10.2009 14:56, Jeff Trawick wrote: (hoping that includes building on Windows to see the more obvious Jeff-breakage :( ) Neither obvious nor non-obvious: I tried building on Windows right now (against 2.2.14). It

Re: svn commit: r822094 - /httpd/mod_fcgid/trunk/modules/fcgid/fcgid_conf.c

2009-10-06 Thread William A. Rowe, Jr.
Rainer Jung wrote: I used trunk and the modules/ftp/*.mak file. The Makefile*-win for fcgid and for ftp first did not work for me. It turns out the reason is, that I build out of tree. Then you have to use the .mak file accordingly (current path, don't do something as absurd as

Re: svn commit: r822094 - /httpd/mod_fcgid/trunk/modules/fcgid/fcgid_conf.c

2009-10-06 Thread Rainer Jung
On 06.10.2009 20:11, William A. Rowe, Jr. wrote: Both Makefiles check against httpd.vcproj in the main directory which is not present when building out of tree. Now I see what you mean, both for .vcproj and .mak tests, something like the last commit, right? Yes, I missed the .mak one.

Re: svn commit: r822094 - /httpd/mod_fcgid/trunk/modules/fcgid/fcgid_conf.c

2009-10-06 Thread Chris Darroch
Jeff Trawick wrote: Beyond beta, I think we have something that is clearly better than the 2007 mod_fcgid 2.2 release and should get out the door soon as a GA (as long as testing doesn't show any regression). I just made what I hope are uncontroversial changes to the directive names. I'll

Re: svn commit: r822094 - /httpd/mod_fcgid/trunk/modules/fcgid/fcgid_conf.c

2009-10-06 Thread Jeff Trawick
On Tue, Oct 6, 2009 at 3:40 PM, Chris Darroch chr...@pearsoncmg.com wrote: Jeff Trawick wrote: Beyond beta, I think we have something that is clearly better than the 2007 mod_fcgid 2.2 release and should get out the door soon as a GA (as long as testing doesn't show any regression).  I

Re: svn commit: r822094 - /httpd/mod_fcgid/trunk/modules/fcgid/fcgid_conf.c

2009-10-06 Thread Jeff Trawick
On Tue, Oct 6, 2009 at 4:00 PM, Jeff Trawick traw...@gmail.com wrote: FCGIDBusyTimeout - FCGIDRequestTimeout FCGIDBusyScanInterval - FCGIDRequestTimeoutScanInterval (unfortunate name for unfortunate concept) Maybe just plain FCGIDRequestScanInterval isn't so bad.

Re: svn commit: r822094 - /httpd/mod_fcgid/trunk/modules/fcgid/fcgid_conf.c

2009-10-06 Thread William A. Rowe, Jr.
Rainer Jung wrote: Another thing is being able to split INSTDIR from APACHE2_HOME. The first is where the module should go to, the other one where httpd is. A simple tweak to the Makefile allows that. Then there's also an unconditional INSTDIR=\Apache22 near the beginning of both

Re: svn commit: r822094 - /httpd/mod_fcgid/trunk/modules/fcgid/fcgid_conf.c

2009-10-06 Thread Rainer Jung
On 06.10.2009 22:31, William A. Rowe, Jr. wrote: Rainer Jung wrote: Another thing is being able to split INSTDIR from APACHE2_HOME. The first is where the module should go to, the other one where httpd is. A simple tweak to the Makefile allows that. Then there's also an unconditional

Re: svn commit: r822094 - /httpd/mod_fcgid/trunk/modules/fcgid/fcgid_conf.c

2009-10-06 Thread Roy T. Fielding
On Oct 6, 2009, at 1:00 PM, Jeff Trawick wrote: On Tue, Oct 6, 2009 at 3:40 PM, Chris Darroch chr...@pearsoncmg.com wrote: Jeff Trawick wrote: Beyond beta, I think we have something that is clearly better than the 2007 mod_fcgid 2.2 release and should get out the door soon as a GA (as

Re: svn commit: r822094 - /httpd/mod_fcgid/trunk/modules/fcgid/fcgid_conf.c

2009-10-06 Thread William A. Rowe, Jr.
Roy T. Fielding wrote: On Oct 6, 2009, at 1:00 PM, Jeff Trawick wrote: On Tue, Oct 6, 2009 at 3:40 PM, Chris Darroch chr...@pearsoncmg.com wrote: Jeff Trawick wrote: Beyond beta, I think we have something that is clearly better than the 2007 mod_fcgid 2.2 release and should get out the

Re: svn commit: r822094 - /httpd/mod_fcgid/trunk/modules/fcgid/fcgid_conf.c

2009-10-06 Thread Jeff Trawick
On Tue, Oct 6, 2009 at 9:40 PM, William A. Rowe, Jr. wr...@rowe-clan.net wrote: Roy T. Fielding wrote: On Oct 6, 2009, at 1:00 PM, Jeff Trawick wrote: On Tue, Oct 6, 2009 at 3:40 PM, Chris Darroch chr...@pearsoncmg.com wrote: Jeff Trawick wrote: Beyond beta, I think we have something that