Re: [Catalyst] Attribute::Handlers wont work in own classes under catalyst

2007-09-03 Thread Matt S Trout
On Thu, Aug 30, 2007 at 11:54:10AM +0200, Felix Antonius Wilhelm Ostmann wrote: i found this bug ... Attribute::Handles has a CHECK {} block ... and under catalyst this block wont be executed ... but Attribute::Handlers need that ... what is to do? CHECK and INIT blocks don't work properly.

Re: [Catalyst] Attribute::Handlers wont work in own classes under catalyst

2007-08-31 Thread Matt Rosin
Brian said you were reinventing Moose.. if so then maybe you have the same problem with attributes in Catalyst as mentioned in Moose::Cookbook::WTF (Why don't inherited attributes work). Of course you don't have Moose' extends statement... ___ List:

Re: [Catalyst] Attribute::Handlers wont work in own classes under catalyst

2007-08-30 Thread Felix Antonius Wilhelm Ostmann
Nilson Santos Figueiredo Junior schrieb: On 8/29/07, Felix Antonius Wilhelm Ostmann [EMAIL PROTECTED] wrote: after a few tests we gone use this classes under catalyst ... and ... dont work :-/ under catalyst our classes dont use Attribute::Handlers :-/ we declare UNIVERSAL::Property and then

Re: [Catalyst] Attribute::Handlers wont work in own classes under catalyst

2007-08-30 Thread Felix Antonius Wilhelm Ostmann
i found this bug ... Attribute::Handles has a CHECK {} block ... and under catalyst this block wont be executed ... but Attribute::Handlers need that ... what is to do? Felix Antonius Wilhelm Ostmann schrieb: Nilson Santos Figueiredo Junior schrieb: On 8/29/07, Felix Antonius Wilhelm Ostmann

Re: [Catalyst] Attribute::Handlers wont work in own classes under catalyst

2007-08-30 Thread Felix Antonius Wilhelm Ostmann
workaround: the skript: xyz_server.pl make a 'require xyz;' changing this to 'use xyz'; will couse in working code :) just 5 hours worktime for this :-/ why there is a 'require xyz' and not 'use xyz'? what other new bugs i produce with my hack? :) the xzy_fastcgi.pl have the right 'use

Re: [Catalyst] Attribute::Handlers wont work in own classes under catalyst

2007-08-30 Thread John Napiorkowski
--- Nilson Santos Figueiredo Junior [EMAIL PROTECTED] wrote: On 8/29/07, Felix Antonius Wilhelm Ostmann [EMAIL PROTECTED] wrote: after a few tests we gone use this classes under catalyst ... and ... dont work :-/ under catalyst our classes dont use Attribute::Handlers :-/ we declare

[Catalyst] Attribute::Handlers wont work in own classes under catalyst

2007-08-29 Thread Felix Antonius Wilhelm Ostmann
OK, first the problem: we have build some classes with Attribute::Handlers (was inspired from Attribute::Property) This works realy fine! after a few tests we gone use this classes under catalyst ... and ... dont work :-/ under catalyst our classes dont use Attribute::Handlers :-/ we

Re: [Catalyst] Attribute::Handlers wont work in own classes under catalyst

2007-08-29 Thread Brian Cassidy
Felix Antonius Wilhelm Ostmann wrote: we have build some classes with Attribute::Handlers (was inspired from Attribute::Property) This works realy fine! after a few tests we gone use this classes under catalyst ... and ... dont work :-/ under catalyst our classes dont use Attribute::Handlers

Re: [Catalyst] Attribute::Handlers wont work in own classes under catalyst

2007-08-29 Thread John Napiorkowski
--- Felix Antonius Wilhelm Ostmann [EMAIL PROTECTED] wrote: OK, first the problem: we have build some classes with Attribute::Handlers (was inspired from Attribute::Property) This works realy fine! after a few tests we gone use this classes under catalyst ... and ... dont work

Re: [Catalyst] Attribute::Handlers wont work in own classes under catalyst

2007-08-29 Thread Nilson Santos Figueiredo Junior
On 8/29/07, Felix Antonius Wilhelm Ostmann [EMAIL PROTECTED] wrote: after a few tests we gone use this classes under catalyst ... and ... dont work :-/ under catalyst our classes dont use Attribute::Handlers :-/ we declare UNIVERSAL::Property and then use sub nondigit : Property { defined