ANNOUNCE: Bricolage 1.6.8

2003-11-29 Thread David Wheeler
I'm pleased to announce the release of Bricolage 1.6.8. This maintenance release addresses a few issues discovered since the release of version 1.6.7. Here is the complate list of chnages for this release: * Custom select fields now correctly pay attention to the size attribute. Repor

Re: connection monitoring

2003-11-29 Thread Tom Schindl
Am Sa, 2003-11-29 um 09.49 schrieb John Michael: > But This: > > if ($h->r->connection->aborted) { > > would not be called until this > > $h->r->send_fd($fh); > > were already through. For a large file, wouldn't that it too late. > or would a real aborted connection cause send_fd($fh) to go a

Re: mod_perl and Apache::Registry

2003-11-29 Thread Randy Kobes
On Thu, 27 Nov 2003, Stas Bekman wrote: > Randy Kobes wrote: > [...] > > I think it is a ModPerl::BuildMM thing - this patch [ .. ] > > arranges for everything to be put under an Apache2/. > > Cool. Though, it's probably easier to read: > >$v =~ s{(blib([/\\])lib)}{$1$2Apache2}; > > or even:

Re: connection monitoring still

2003-11-29 Thread Ged Haywood
Hi there, On Sat, 29 Nov 2003, John Michael wrote: > I'm trying to limit users to a certain folder to only 1 connection at a time. You've read the stuff that Randal's done I take it? http://www.stonehenge.com/merlyn/LinuxMag/col17.html There have also been several thread on this List which tou

connection monitoring still

2003-11-29 Thread John Michael
I think I may have it.  I'm trying to limit users to a certain folder to only 1 connection at a time.  I'm going to keep a list of active connections.   DO I just write the access handler and at some point in the handler add the cleanuphandler   sub handler {     # code to check for active c

Re: connection monitoring

2003-11-29 Thread Thomas Klausner
Hi! On Sat, Nov 29, 2003 at 02:49:20AM -0600, John Michael wrote: > But This: > > if ($h->r->connection->aborted) { > > would not be called until this > > $h->r->send_fd($fh); > > were already through. For a large file, wouldn't that it too late. > or would a real aborted connection cause se

Re: connection monitoring

2003-11-29 Thread John Michael
But This: if ($h->r->connection->aborted) { would not be called until this $h->r->send_fd($fh); were already through. For a large file, wouldn't that it too late. or would a real aborted connection cause send_fd($fh) to go ahead and stop sending the file. I've been reading through the cookbo

Re: connection monitoring

2003-11-29 Thread Thomas Klausner
Hi! On Sat, Nov 29, 2003 at 02:00:18AM -0600, John Michael wrote: > Someone pointed me to checking the connection class for an abort. I found > info on this in the modperl cookbook..That seems useful if you want to > server your own files, but would take a lot of overhead if you had to > continue

connection monitoring

2003-11-29 Thread John Michael
Someone pointed me to checking the connection class for an abort.  I found info on this in the modperl cookbook..That seems useful if you want to server your own files, but would take a lot of overhead if you had to continue to check it for a large file.  It would not really do me any good t