[Announce] Apache::Dispatch 0.09

2001-01-31 Thread Geoffrey Young
The URL http://morpheus.laserlink.net/~gyoung/modules/Apache-Dispatch-0.09.tar.gz has entered CPAN as file: $CPAN/authors/id/G/GE/GEOFF/Apache-Dispatch-0.09.tar.gz size: 15436 bytes md5: 5f385b684da72573d5a6d7b463a8ed22 Changes: 0.09 01.31.2001 - added DispatchLocation - now

[ANNOUNCE] Apache::Dispatch-0.08

2000-12-04 Thread Geoffrey Young
The URL http://morpheus.laserlink.net/~gyoung/modules/Apache-Dispatch-0.08.tar.gz has entered CPAN as file: $CPAN/authors/id/G/GE/GEOFF/Apache-Dispatch-0.08.tar.gz size: 13499 bytes md5: 10f5b985b84aa98beb24807868e02851 This is a minor release - unless you need to use .htaccess

[ANNOUNCE] Apache::Dispatch 0.07

2000-11-09 Thread Geoffrey Young
The URL http://morpheus.laserlink.net/~gyoung/modules/Apache-Dispatch-0.07.tar.gz has entered CPAN as file: $CPAN/authors/id/G/GE/GEOFF/Apache-Dispatch-0.07.tar.gz size: 13251 bytes md5: 0ad206303d1138e70615a9763a762e3b excerpt from the README: NAME Apache::Dispatch - call

[ANNOUNCE] Apache-Dispatch-0.06

2000-08-29 Thread Geoffrey Young
The URL http://morpheus.laserlink.net/~gyoung/modules/Apache-Dispatch-0.06.tar.gz has entered CPAN as file: $CPAN/authors/id/G/GE/GEOFF/Apache-Dispatch-0.06.tar.gz size: 7452 bytes md5: 1546415d4d9aa380567b961d395827d6 DESCRIPTION Apache::Dispatch translates $r-uri into a class and

Re: [ANNOUNCE] Apache::Dispatch-0.03

2000-08-09 Thread Barrie Slaymaker
Roger Espel Llima wrote: @{"${class}::ISA"} Incidentally, does anyone know of a way to do this that works under strict? The above requires a "no strict 'refs'" to work. Something like this we3nt by on p5p a while ago (IIRCC): @{$main::{"$class\::"}-{ISA}} but that's a lot more

RE: [ANNOUNCE] Apache::Dispatch-0.03

2000-08-08 Thread Matt Sergeant
On Mon, 7 Aug 2000, Geoffrey Young wrote: ok, here's a pre-PAN http://morpheus.laserlink.net/~gyoung/modules/Apache-Dispatch-0.04.tar.gz I borrowed some code from Apache::StatINC to add a single module reload. Unfortunately, this doesn't cover inherited circumstances, although I

[ANNOUNCE] Apache-Dispatch-0.04

2000-08-08 Thread Geoffrey Young
The URL http://morpheus.laserlink.net/~gyoung/modules/Apache-Dispatch-0.04.tar.gz has entered CPAN as file: $CPAN/authors/id/G/GE/GEOFF/Apache-Dispatch-0.04.tar.gz size: 6903 bytes md5: 42e7d4c530b60b9096ad2750eab2f81a Changes: 0.04 8.8.2000 - fixed bug to allow null

Re: [ANNOUNCE] Apache::Dispatch-0.03

2000-08-08 Thread Roger Espel Llima
Matt Sergeant wrote: I really wanted to have DispatchStat be On, Off, or ISA, where ISA reloaded the asked for module and all it's parents - since given Class-method(), method() might not actually be in Class. Basically, I wasn't able to find a way to get to @Class::ISA where Class is

RE: [ANNOUNCE] Apache::Dispatch-0.03

2000-08-08 Thread Geoffrey Young
-Original Message- From: Roger Espel Llima [mailto:[EMAIL PROTECTED]] Sent: Tuesday, August 08, 2000 12:52 PM To: [EMAIL PROTECTED] Subject: Re: [ANNOUNCE] Apache::Dispatch-0.03 [snip] Yep, that's one weird bit of syntax. I just needed this recently to write a test.pl

Re: [ANNOUNCE] Apache::Dispatch-0.03

2000-08-08 Thread ___cliff rayman___
Geoffrey Young wrote: -Original Message- From: Roger Espel Llima [mailto:[EMAIL PROTECTED]] Sent: Tuesday, August 08, 2000 12:52 PM To: [EMAIL PROTECTED] Subject: Re: [ANNOUNCE] Apache::Dispatch-0.03 [snip] Yep, that's one weird bit of syntax. I just needed

Re: [ANNOUNCE] Apache::Dispatch-0.03

2000-08-08 Thread Matt Sergeant
On Tue, 8 Aug 2000, Roger Espel Llima wrote: @{"${class}::ISA"} Yep, that's one weird bit of syntax. I just needed this recently to write a test.pl, and it took quite a bit of testing to get it working. :) Incidentally, does anyone know of a way to do this that works under strict?

RE: [ANNOUNCE] Apache::Dispatch-0.03

2000-08-07 Thread Geoffrey Young
for anyone who is interested (apparently not many :) I ran a quick "hello world" LWP::Simple based benchmark using Apache::Registry (with RegistryLoader), a normal PerlHandler, and Apache::Dispatch... Benchmark: timing 5000 iterations of dispatch, handler, registry... dispatch: 108 wallclock

RE: [ANNOUNCE] Apache::Dispatch-0.03

2000-08-07 Thread Matt Sergeant
On Mon, 7 Aug 2000, Geoffrey Young wrote: for anyone who is interested (apparently not many :) I ran a quick "hello world" LWP::Simple based benchmark using Apache::Registry (with RegistryLoader), a normal PerlHandler, and Apache::Dispatch... Benchmark: timing 5000 iterations of dispatch,

RE: [ANNOUNCE] Apache::Dispatch-0.03

2000-08-07 Thread Geoffrey Young
-Original Message- From: Matt Sergeant [mailto:[EMAIL PROTECTED]] Sent: Monday, August 07, 2000 8:57 AM To: Geoffrey Young Cc: '[EMAIL PROTECTED]' Subject: RE: [ANNOUNCE] Apache::Dispatch-0.03 On Mon, 7 Aug 2000, Geoffrey Young wrote: for anyone who is interested

RE: [ANNOUNCE] Apache::Dispatch-0.03

2000-08-07 Thread Matt Sergeant
On Mon, 7 Aug 2000, Geoffrey Young wrote: Does Dispatch stat() the module on every hit? It might be useful to provide a switch to turn that off, if so. which I would guess is just apache doing apache translation things, right? Yes, as the guide says, you could install an Apache::OK

RE: [ANNOUNCE] Apache::Dispatch-0.03

2000-08-07 Thread Geoffrey Young
-Original Message- From: Matt Sergeant [mailto:[EMAIL PROTECTED]] Sent: Monday, August 07, 2000 9:29 AM To: Geoffrey Young Cc: '[EMAIL PROTECTED]' Subject: RE: [ANNOUNCE] Apache::Dispatch-0.03 On Mon, 7 Aug 2000, Geoffrey Young wrote: Does Dispatch stat() the module

RE: [ANNOUNCE] Apache::Dispatch-0.03

2000-08-07 Thread Matt Sergeant
On Mon, 7 Aug 2000, Geoffrey Young wrote: Assuming you're in a development stage, I might expect Dispatch to stat the module that it's loading, like StatINC does, to check if it needs reloading again. And I'd turn that off for development. This gives you the advantage that

RE: [ANNOUNCE] Apache::Dispatch-0.03

2000-08-07 Thread Geoffrey Young
-Original Message- From: Matt Sergeant [mailto:[EMAIL PROTECTED]] Sent: Monday, August 07, 2000 9:45 AM To: Geoffrey Young Cc: '[EMAIL PROTECTED]' Subject: RE: [ANNOUNCE] Apache::Dispatch-0.03 so, you are desiring a StatINC like feature within Dispatch itself? sounds

RE: [ANNOUNCE] Apache::Dispatch-0.03

2000-08-07 Thread Geoffrey Young
ok, here's a pre-PAN http://morpheus.laserlink.net/~gyoung/modules/Apache-Dispatch-0.04.tar.gz I borrowed some code from Apache::StatINC to add a single module reload. Unfortunately, this doesn't cover inherited circumstances, although I don't know how important that is going to be to

[ANNOUNCE] Apache::Dispatch-0.03

2000-08-04 Thread Geoffrey Young
The URL http://morpheus.laserlink.net/~gyoung/modules/Apache-Dispatch-0.03.tar.gz has entered CPAN as file: $CPAN/authors/id/G/GE/GEOFF/Apache-Dispatch-0.03.tar.gz size: 5735 bytes md5: 91eacb0aeff8e751ebc8c7156426fbfb Changes: 0.03 8.4.2000 - complete API and internal

RE: [ANNOUNCE] Apache::Dispatch-0.02

2000-08-02 Thread Geoffrey Young
-Original Message- From: Matt Sergeant [mailto:[EMAIL PROTECTED]] Sent: Tuesday, August 01, 2000 9:46 AM To: Geoffrey Young Cc: '[EMAIL PROTECTED]' Subject: Re: [ANNOUNCE] Apache::Dispatch-0.02 You're gonna hate me for this... Can you add pre and post methods

[ANNOUNCE] Apache::Dispatch-0.02

2000-08-01 Thread Geoffrey Young
The URL http://morpheus.laserlink.net/~gyoung/modules/Apache-Dispatch-0.02.tar.gz has entered CPAN as file: $CPAN/authors/id/G/GE/GEOFF/Apache-Dispatch-0.02.tar.gz size: 6362 bytes md5: 922a0064a77148d72aa29d3a9cc5db25 Revision history for Perl extension Apache::Dispatch 0.01

Re: [ANNOUNCE] Apache::Dispatch-0.02

2000-08-01 Thread Matt Sergeant
On Tue, 1 Aug 2000, Geoffrey Young wrote: The URL http://morpheus.laserlink.net/~gyoung/modules/Apache-Dispatch-0.02.tar.gz has entered CPAN as file: $CPAN/authors/id/G/GE/GEOFF/Apache-Dispatch-0.02.tar.gz size: 6362 bytes md5: 922a0064a77148d72aa29d3a9cc5db25 Revision

RE: [ANNOUNCE] Apache::Dispatch-0.02

2000-08-01 Thread Geoffrey Young
-Original Message- From: Matt Sergeant [mailto:[EMAIL PROTECTED]] Sent: Tuesday, August 01, 2000 9:46 AM To: Geoffrey Young Cc: '[EMAIL PROTECTED]' Subject: Re: [ANNOUNCE] Apache::Dispatch-0.02 You're gonna hate me for this... Can you add pre and post methods

RE: [ANNOUNCE] Apache::Dispatch

2000-07-31 Thread Geoffrey Young
-Original Message- From: Matt Sergeant [mailto:[EMAIL PROTECTED]] Sent: Saturday, July 29, 2000 6:16 AM To: Geoffrey Young Cc: [EMAIL PROTECTED] Subject: Re: [ANNOUNCE] Apache::Dispatch On Fri, 28 Jul 2000, Geoffrey Young wrote: hi Matt... I can't access my normal

RE: [ANNOUNCE] Apache::Dispatch

2000-07-31 Thread Matt Sergeant
On Mon, 31 Jul 2000, Geoffrey Young wrote: I'll remove Foolish (the name was a dead givaway that it would be gone soon :), but I think that Brave would greatly enhance the development process by allowing you to test handlers without having to stop and start the server to add location tags

RE: [ANNOUNCE] Apache::Dispatch

2000-07-31 Thread Geoffrey Young
-Original Message- From: Matt Sergeant [mailto:[EMAIL PROTECTED]] Sent: Monday, July 31, 2000 10:35 AM To: Geoffrey Young Cc: [EMAIL PROTECTED] Subject: RE: [ANNOUNCE] Apache::Dispatch On Mon, 31 Jul 2000, Geoffrey Young wrote: I'll remove Foolish (the name was a dead

RE: [ANNOUNCE] Apache::Dispatch

2000-07-31 Thread Matt Sergeant
On Mon, 31 Jul 2000, Geoffrey Young wrote: Of course, but thats not likely to happen too often :) I don't think DispatchClass is a great name though. It implies that you'll always be calling methods in that class. Prefix sounded better to me... But you're the boss :) Because you

Re: [ANNOUNCE] Apache::Dispatch

2000-07-29 Thread Matt Sergeant
On Fri, 28 Jul 2000, Geoffrey Young wrote: hi Matt... I can't access my normal email from home, so forgive the non-quoting of your message... :) the way I set it up, when running in DispatchMode = Safe (the default, which I didn't mention in the docs), you wouldn't be able to call

[ANNOUNCE] Apache::Dispatch

2000-07-28 Thread Geoffrey Young
The URL http://morpheus.laserlink.net/~gyoung/modules/Apache-Dispatch-0.01.tar.gz has entered CPAN as file: $CPAN/authors/id/G/GE/GEOFF/Apache-Dispatch-0.01.tar.gz size: 5170 bytes md5: acee515fc8d19223f017c8380cae5b26 well, after the conference, I felt motivated to do some stuff.

Re: [ANNOUNCE] Apache::Dispatch

2000-07-28 Thread Matt Sergeant
On Fri, 28 Jul 2000, Geoffrey Young wrote: The URL http://morpheus.laserlink.net/~gyoung/modules/Apache-Dispatch-0.01.tar.gz has entered CPAN as file: $CPAN/authors/id/G/GE/GEOFF/Apache-Dispatch-0.01.tar.gz size: 5170 bytes md5: acee515fc8d19223f017c8380cae5b26 well,

Re: [ANNOUNCE] Apache::Dispatch

2000-07-28 Thread Geoffrey Young
hi Matt... I can't access my normal email from home, so forgive the non-quoting of your message... :) the way I set it up, when running in DispatchMode = Safe (the default, which I didn't mention in the docs), you wouldn't be able to call /File/Find/find without explitily allowing File or