Re: [Catalyst] FormFu edit form problem

2009-06-01 Thread Toby Corkindale
Toby Corkindale wrote: [snip] I might be able to get around this, and the other show-stopper bug[1], by building a custom DBIC pseudo-resultset that aggregates several resultsets into one to avoid the problems FormFu has with relationships.. [snip] Ah, bother, this didn't work. FormFu's

Re: [Catalyst] Possible bug here?

2009-06-01 Thread Gordon Yeong
http://linux.wareseeker.com/Programming/template-plugin-page-0.10.zip/328911 ___ List: Catalyst@lists.scsys.co.uk Listinfo: http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst Searchable archive:

[Catalyst] Re: How to use self made Template Toolkit plugins?

2009-06-01 Thread kakimoto
hi there, how do I access the Catalyst variable in a custom made Template Toolkit plugin? WhaT I have done: read up on http://search.cpan.org/src/MRAMBERG/Catalyst-View-TT-0.27/lib/Catalyst/View/TT.pm For example, I have my own plugin, package myApp::View::Template::Plugin::User use strict;

Re: [Catalyst] Possible bug here?

2009-06-01 Thread Tomas Doran
Kieren Diment wrote: On Mon, Jun 1, 2009 at 9:25 AM, J. Shirley jshir...@gmail.com wrote: Easy for a failing test case, at least ;) Yeah, it appears to be a backwards compat bug. The following does work. This either needs to be documented or fixed. Not a back compat bug, it's been there

Re: [Catalyst] Re: How to use self made Template Toolkit plugins?

2009-06-01 Thread Tomas Doran
kakim...@tpg.com.au wrote: hi there, how do I access the Catalyst variable in a custom made Template Toolkit plugin? You don't want to do this. TT plugins should be for trivial formatting stuff only, teaching them about your application context is massively breaking abstraction. Cheers

Re: [Catalyst] Multiple instances of same app with 5.80 under mod_perl

2009-06-01 Thread Tomas Doran
Matthias Dietrich wrote: Hi, One solution to this would be to keep a hash of log class instances per vhost, and then ensure to replace the logger being used at the start of each hit - this should do what you're looking for.. yes, I thought I have to do it in such a way. Where would be the

Re: [Catalyst] Why it is better to use an ORM like DBIx::Class

2009-06-01 Thread Tommy Butler
This was very helpful, thank you. -- Tommy Octavian Râşniţă wrote: Hi, I corrected (re-written) that message in which I tried to show why it is better to use DBIC, because it doesn't affect the efficiency. Here it is. I hope it could be helpful. Please tell me if you think it needs

Re: [Catalyst] Best practice: How to build app parts reusable?

2009-06-01 Thread Matthias Dietrich
Hm, should this be posted on Catalyst-dev? Am 31.05.2009 um 18:06 schrieb Matthias Dietrich: Hi, in one of my Catalyst apps I'm building application parts that I want to reuse in other Catalyst apps where possible. What's the best practice to do that? I mean the complete parts from