[jira] Reopened: (MODPYTHON-103) Implement req.add_output_filter().

2006-05-07 Thread Graham Dumpleton (JIRA)
[ http://issues.apache.org/jira/browse/MODPYTHON-103?page=all ] Graham Dumpleton reopened MODPYTHON-103: Reopened because using PythonInterpPerDirective in conjunction with dynamically registered filters causes mod_python to crash. Problem

[jira] Work started: (MODPYTHON-103) Implement req.add_output_filter().

2006-05-07 Thread Graham Dumpleton (JIRA)
[ http://issues.apache.org/jira/browse/MODPYTHON-103?page=all ] Work on MODPYTHON-103 started by Graham Dumpleton Implement req.add_output_filter(). -- Key: MODPYTHON-103 URL: http://issues.apache.org/jira/browse/MODPYTHON-103

[jira] Created: (MODPYTHON-171) Assignment to req.filename and POSIX style pathnames.

2006-05-07 Thread Graham Dumpleton (JIRA)
Assignment to req.filename and POSIX style pathnames. - Key: MODPYTHON-171 URL: http://issues.apache.org/jira/browse/MODPYTHON-171 Project: mod_python Type: Bug Components: core Versions: 3.2.8

Re: [jira] Created: (MODPYTHON-171) Assignment to req.filename and POSIX style pathnames.

2006-05-07 Thread Jim Gallacher
Graham Dumpleton (JIRA) wrote: The actual function in Apache which can be used to normalise paths and which outputs the POSIX style path required is apr_filepath_merge(). The question is, should this be exposed in some way so that it is useable from mod_python, or for the req.filename case,

Re: svn commit: r404776 - in /httpd/httpd/branches/2.2.x: CHANGES STATUS

2006-05-07 Thread Ruediger Pluem
On 05/07/2006 04:52 PM, wrote: Author: niq *) core: Prevent reading uninitialized memory while reading a line of - protocol input. PR 39282. [Davi Arnaut davi haxent.com.br] + protocol input. PR 39282. [Davi Arnaut davi haxent com br] Just curious: Why did you remove the

Re: svn commit: r404776 - in /httpd/httpd/branches/2.2.x: CHANGES STATUS

2006-05-07 Thread Nick Kew
On Sunday 07 May 2006 16:08, Ruediger Pluem wrote: On 05/07/2006 04:52 PM, wrote: Author: niq *) core: Prevent reading uninitialized memory while reading a line of - protocol input. PR 39282. [Davi Arnaut davi haxent.com.br] + protocol input. PR 39282. [Davi Arnaut davi

Re: [PATCH 4/6] fork() failure handling

2006-05-07 Thread Nick Kew
On Thursday 04 May 2006 18:48, Chris Darroch wrote: -/* fork didn't succeed. Fix the scoreboard or else - * it will say SERVER_STARTING forever and ever +/* fork didn't succeed. There's no need to touch the scoreboard; + * if we were trying to replace a failed

Re: [PATCH 5/6] hard restart on Linux #38737

2006-05-07 Thread Nick Kew
On Thursday 04 May 2006 19:16, Chris Darroch wrote: +#ifdef HAVE_PTHREAD_KILL +unblock_signal(WORKER_SIGNAL); +apr_signal(WORKER_SIGNAL, dummy_signal_handler); +#endif + OK, unblock a signal. This happens after child_init, but presumably won't interfere with existing modules 'cos a

Re: [PATCH 1/6] scoreboard over-sized

2006-05-07 Thread Colm MacCarthaigh
On Fri, May 05, 2006 at 11:20:14PM +0100, Nick Kew wrote: Looks right for ap_init_scoreboard, and there's nothing else relevant in scoreboard.c. A quick grep suggests it's globally right, so +1. Same here, afaict the patch gets it right. -- Colm MacCárthaighPublic

Re: svn commit: r404850 - in /httpd/httpd/trunk/server/mpm: experimental/event/event.c worker/worker.c

2006-05-07 Thread Jeff Trawick
On 5/7/06, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Author: niq Date: Sun May 7 14:03:39 2006 New Revision: 404850 URL: http://svn.apache.org/viewcvs?rev=404850view=rev Log: Initialise server generation (Chris Darroch) Modified: httpd/httpd/trunk/server/mpm/experimental/event/event.c

Re: svn commit: r404849 - /httpd/httpd/trunk/include/scoreboard.h

2006-05-07 Thread Jeff Trawick
On 5/7/06, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Author: niq Date: Sun May 7 14:01:48 2006 New Revision: 404849 URL: http://svn.apache.org/viewcvs?rev=404849view=rev Log: Tidy up scoreboard.h (Chris Darroch) cool; forgot to +1 this and a couple of others

Re: svn commit: r404851 - /httpd/httpd/trunk/CHANGES

2006-05-07 Thread Jeff Trawick
On 5/7/06, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Author: niq Date: Sun May 7 14:07:14 2006 New Revision: 404851 URL: http://svn.apache.org/viewcvs?rev=404851view=rev Log: Note scoreboard stuff in changes; leave the 'difficult' patches to see if they attract any more review. Modified:

Re: [PATCH 5/6] hard restart on Linux #38737

2006-05-07 Thread Garrett Rooney
On 5/7/06, Nick Kew [EMAIL PROTECTED] wrote: Now, what about a platform that HAS_PTHREAD_KILL, but which uses some other form of threading in its APR (isn't that at least an option on some FreeBSD versions?) Wouldn't this break horribly when it pthread_kills a non-pthread? Couldn't it even

Bug report for Apache httpd-1.3 [2006/05/07]

2006-05-07 Thread bugzilla
+---+ | Bugzilla Bug ID | | +-+ | | Status: UNC=Unconfirmed NEW=New ASS=Assigned

Bug report for Apache httpd-2 [2006/05/07]

2006-05-07 Thread bugzilla
+---+ | Bugzilla Bug ID | | +-+ | | Status: UNC=Unconfirmed NEW=New ASS=Assigned

Re: svn commit: r404851 - /httpd/httpd/trunk/CHANGES

2006-05-07 Thread Nick Kew
On Sunday 07 May 2006 22:35, Jeff Trawick wrote: Remove some obsolete declarations and comments from scoreboard.h. [...] ? The scoreboard looks the same AFAICT ;) (Some programmers may care.) There's the memory fix too. But it's also a placeholder for the two remaining patches, which are

Re: [PATCH 5/6] hard restart on Linux #38737

2006-05-07 Thread Nick Kew
On Sunday 07 May 2006 23:07, Garrett Rooney wrote: On 5/7/06, Nick Kew [EMAIL PROTECTED] wrote: Now, what about a platform that HAS_PTHREAD_KILL, but which uses some other form of threading in its APR (isn't that at least an option on some FreeBSD versions?) Wouldn't this break horribly

Re: svn commit: r404851 - /httpd/httpd/trunk/CHANGES

2006-05-07 Thread Jeff Trawick
On 5/7/06, Nick Kew [EMAIL PROTECTED] wrote: On Sunday 07 May 2006 22:35, Jeff Trawick wrote: Remove some obsolete declarations and comments from scoreboard.h. [...] ? The scoreboard looks the same AFAICT ;) (Some programmers may care.) There's the memory fix too. so extra memory was

Re: [PATCH 5/6] hard restart on Linux #38737

2006-05-07 Thread Garrett Rooney
On 5/7/06, Nick Kew [EMAIL PROTECTED] wrote: On Sunday 07 May 2006 23:07, Garrett Rooney wrote: On 5/7/06, Nick Kew [EMAIL PROTECTED] wrote: Now, what about a platform that HAS_PTHREAD_KILL, but which uses some other form of threading in its APR (isn't that at least an option on some