[Catalyst] Greetings

2007-07-01 Thread Andrew Rodland
I was at YAPC::NA 2007 and the Hackathon afterwards, some of you probably know me. I'm also 'hobbs' on IRC. Anyway, I figured I'd sign on at the mailing list. Anyway, now that I'm on my own machine, instead of the borrowed laptop I brought to YAPC, I would be really happy to help test/break

Re: [Catalyst] IDE for use with Catalyst

2007-07-01 Thread David Morel
Le 1 juil. 07 à 00:32, Matt S Trout a écrit : On Sat, Jun 30, 2007 at 04:43:57PM -0500, Tom Printy wrote: Hi There, I am taking a this week off of work and would really like to build an application with catalyst. Does anyone have an IDE that they can recommend? I have been developing perl

Re: [Catalyst] IDE for use with Catalyst

2007-07-01 Thread Oleg Pronin
OptiPerl does. The coolest IDE for perl i ever seen http://xarka.com 2007/7/1, Matt S Trout [EMAIL PROTECTED]: On Sat, Jun 30, 2007 at 04:43:57PM -0500, Tom Printy wrote: Hi There, I am taking a this week off of work and would really like to build an application with catalyst. Does

Re: [Catalyst] How to access current MyApp instance ?

2007-07-01 Thread Matt S Trout
On Sun, Jul 01, 2007 at 05:51:50PM +0400, Oleg Pronin wrote: Because [%Game.detailsHref%] or [%Game.historyHref%] is much easier and faster to call then [%INCLUDE game_hrefs game=Game type='details'%] As a temporary fast solution i use this: in root controller's auto action: MyApp-c($c);

[Catalyst] Re: How to access current MyApp instance ?

2007-07-01 Thread A. Pagaltzis
* Oleg Pronin [EMAIL PROTECTED] [2007-07-01 16:00]: Because [%Game.detailsHref%] or [%Game.historyHref%] is much easier and faster to call then [%INCLUDE game_hrefs game=Game type='details'%] Is that so much shorter than [%Game.detailsHref(c)%]? Regards, -- Aristotle Pagaltzis //

Re: [Catalyst] IDE for use with Catalyst

2007-07-01 Thread Matt S Trout
On Sun, Jul 01, 2007 at 06:50:36PM +0400, Oleg Pronin wrote: OptiPerl does. The coolest IDE for perl i ever seen http://xarka.com Wake me up when they release a version for an OS worth doing dev work on. -- Matt S Trout Need help with your Catalyst or DBIx::Class project?

Re: [Catalyst] How to access current MyApp instance ?

2007-07-01 Thread Bill Moseley
On Sun, Jul 01, 2007 at 05:51:50PM +0400, Oleg Pronin wrote: Because [%Game.detailsHref%] or [%Game.historyHref%] is much easier and faster to call then [%INCLUDE game_hrefs game=Game type='details'%] Macro? [% game_detail_link( Game, 'Click here' ); game_history_link(

[Catalyst] Re: IDE for use with Catalyst

2007-07-01 Thread rahed
Tom Printy [EMAIL PROTECTED] writes: Hi There, I am taking a this week off of work and would really like to build an application with catalyst. Does anyone have an IDE that they can recommend? I have been developing perl apps for a while now but have been using vi :). If anyone has any

[Catalyst] Re: How to access current MyApp instance ?

2007-07-01 Thread A. Pagaltzis
* Bill Moseley [EMAIL PROTECTED] [2007-07-01 19:25]: Macro? [% game_detail_link( Game, 'Click here' ); game_history_link( Game, 'View history' ); %] Avoid macros like the plague. • They share a namespace with variables. • TT2 only has global variables with dynamic

Re: [Catalyst] Re: How to access current MyApp instance ?

2007-07-01 Thread Bill Moseley
On Sun, Jul 01, 2007 at 09:27:17PM +0200, A. Pagaltzis wrote: * Bill Moseley [EMAIL PROTECTED] [2007-07-01 19:25]: Macro? [% game_detail_link( Game, 'Click here' ); game_history_link( Game, 'View history' ); %] Avoid macros like the plague. ??? They

Re: [Catalyst] Re: IDE for use with Catalyst

2007-07-01 Thread Dave Rolsky
On Sun, 1 Jul 2007, John Romkey wrote: render web pages, and I find editing Mason documents a bit muddled, going back and forth between Perl and HTML modes in Emacs. Emacs is so embedded in You should check out mmm-mode - http://mmm-mode.sourceforge.net/ It's really handy for Mason work.

[Catalyst] Re: How to access current MyApp instance ?

2007-07-01 Thread A. Pagaltzis
* Bill Moseley [EMAIL PROTECTED] [2007-07-01 23:05]: On Sun, Jul 01, 2007 at 09:27:17PM +0200, A. Pagaltzis wrote: Of course, we’ve known since the ’70s or so how to make better programming languages, but ABW considers templating languages to be totally different from programming languages,