Re: SV: [Catalyst] Problem with TT view and form.field

2008-01-21 Thread Matt S Trout
On Fri, Jan 18, 2008 at 08:05:37AM +0100, Peter Sørensen wrote: Hi Jason, Thanks for looking into the problem. I have tried your suggested syntax but still no output. I can access the information with: form.field.3.label where 3 is the index in the array but this is not what I

Re: [Catalyst] Debugging Catalyst with Eclipse

2008-01-21 Thread Matt S Trout
On Fri, Jan 18, 2008 at 09:28:45AM -0600, Nathan Waddell wrote: Wow, thanks for all the responses. Troy, I'll subscribe to the EPIC list and see if I can get a conversation started on their end. Matt, I guess you're a member of the EPIC list? No, not at all. As I already said, I consider

Re: [Catalyst] Debugging Catalyst with Eclipse

2008-01-21 Thread Matt S Trout
On Fri, Jan 18, 2008 at 12:26:24PM -0600, Nathan Waddell wrote: It would be really nice if there were some detailed articles on dev.catalyst.perl.org regarding different options for debugging and how to implement them. The documentation for the various things Peter already mentioned describes

Re: Re: [Catalyst] Debugging Catalyst with Eclipse

2008-01-21 Thread dreel
I'm using Eclipse. I'm so tired to write code in notepad-like editors and switching between Terminal windows to debug. I've tried to use Vi for Win32 but my Win-oriented brain doesn't understand it ( ___ List: Catalyst@lists.scsys.co.uk Listinfo:

Re: Re: [Catalyst] Debugging Catalyst with Eclipse

2008-01-21 Thread Jonathan Rockway
On Mon, 2008-01-21 at 13:35 +0300, dreel wrote: I'm using Eclipse. I'm so tired to write code in notepad-like editors and switching between Terminal windows to debug. I've tried to use Vi for Win32 but my Win-oriented brain doesn't understand it ( Like anything, it takes practice to get

SV: SV: [Catalyst] Problem with TT view and form.field

2008-01-21 Thread Peter Sørensen
I am aware of that but the formbuilder lists is down so I hoped someone in here could sheed some light on the problem. Regards Peter Sorensen/Universirt of Southern Denmark/email: [EMAIL PROTECTED] -Oprindelig meddelelse- Fra: Matt S

Re: Re: [Catalyst] Debugging Catalyst with Eclipse

2008-01-21 Thread Ise Olen
Good rant ;-) On Jan 21, 2008 1:13 PM, Jonathan Rockway [EMAIL PROTECTED] wrote: On Mon, 2008-01-21 at 13:35 +0300, dreel wrote: I'm using Eclipse. I'm so tired to write code in notepad-like editors and switching between Terminal windows to debug. I've tried to use Vi for Win32 but my

Re: Re[2]: [Catalyst] Debugging Catalyst with Eclipse

2008-01-21 Thread Nathan Waddell
Dmitriy, I've been using Catalyst::Log to create debugging statements, combined with Data::Dump to output my data structures in certain places. It's crude, but it works. I'm going to try your method. Does it support breakpoints from within Eclipse? What limitations have you noticed? N On Jan

Re: Re[2]: [Catalyst] Debugging Catalyst with Eclipse

2008-01-21 Thread Nathan Waddell
Dmitriy, Are you using the Perl CGI, Perl Local, or Perl Remote debugging configuration in Eclipse? On Jan 21, 2008 1:35 PM, Nathan Waddell [EMAIL PROTECTED] wrote: Dmitriy, I've been using Catalyst::Log to create debugging statements, combined with Data::Dump to output my data structures in

Re: Re[2]: [Catalyst] Debugging Catalyst with Eclipse

2008-01-21 Thread Jonathan Rockway
On Mon, 2008-01-21 at 13:35 -0600, Nathan Waddell wrote: Dmitriy, I've been using Catalyst::Log to create debugging statements, combined with Data::Dump to output my data structures in certain places. It's crude, but it works. I'm going to try your method. Does it support breakpoints from

[Catalyst] Mango, Catalyst and Class::Workflow

2008-01-21 Thread Christopher H. Laco
This is a plea from a drowning sailor for a life boat, or at least life vest and a pointer towards the nearest shore. It's that point in Mango where I need to start the really nasty bits: checkout. Since everyone wants something different, it seems that basing things on Class::Workflow at

[Catalyst] Automated testing of Captcha?

2008-01-21 Thread Christopher Dorman
I am using T::W::M::C to test a page that has a (required) Captcha field. In order for it to pass validation, the correct value needs to be passed in. Is it possible to grab the correct captcha value in the test script so that validation can succeed, or do we need to set some environment

Re: [Catalyst] Automated testing of Captcha?

2008-01-21 Thread Jonathan Rockway
On Mon, 2008-01-21 at 14:19 -0700, Christopher Dorman wrote: I am using T::W::M::C to test a page that has a (required) Captcha field. In order for it to pass validation, the correct value needs to be passed in. Is it possible to grab the correct captcha value in the test script so

[Catalyst] Ukrainian Perl Workshop

2008-01-21 Thread Peter Edwards
I'm going to the Ukrainian Perl Workshop on 23rd February in Kyiv and giving a talk on ExtJS and Catalyst. http://event.perlukraine.org/upw2008/ Anyone going, please come up and say Hi! It will be good to meet you. Regards, Peter http://perl.dragonstaff.co.uk

[Catalyst] Re: REST - like uri design for CRUD

2008-01-21 Thread Aristotle Pagaltzis
* Zbigniew Lukasiak [EMAIL PROTECTED] [2008-01-21 07:40]: While we are at that - I do understand the need to divide the operations into the 'indempotent' and 'non-indempotent' classes (because of caching and predictive link loading) - but what is really the practical argument for having two

Re: [Catalyst] [ANNOUNCE] New plugin: Catalyst::Plugin::Assets

2008-01-21 Thread Robert Krimen
On Jan 20, 2008 7:59 PM, Matt S Trout [EMAIL PROTECTED] wrote: You seem to be using an 'assets' config key; please change this to 'Plugin::Assets' and deprecate the old one. We're currently moving the 'core' plugins over to this standard so you should make the change as soon as possible to

Re: [Catalyst] Automated testing of Captcha?

2008-01-21 Thread Jonathan Rockway
On Tue, 2008-01-22 at 06:27 +0100, Yves Räber wrote: The captcha value can be accessed here : $c-captcha_string From the CPAN Documentation : http://search.cpan.org/dist/Catalyst-Plugin-Captcha/lib/Catalyst/Plugin/Captcha.pm #validate with CP::FormValidator::Simple sub do_post : Local