Re: [Catalyst] CGI.pm and Catalyst?

2008-03-07 Thread Kieren Diment
On 7 Mar 2008, at 19:23, Martin Ellison wrote: Is there anything attached to Catalyst similar to the CGI.pm module? That is, creating the HTML by a series of procedure calls rather than by instantiating a template? Or is there some way to link up the existing CGI module?

Re: [Catalyst] CGI.pm and Catalyst?

2008-03-07 Thread Alex Povolotsky
Martin Ellison wrote: Is there anything attached to Catalyst similar to the CGI.pm module? That is, creating the HTML by a series of procedure calls rather than by instantiating a template? Or is there some way to link up the existing CGI module? $c-response-body(ul(li(q{hello}),

Re: [Catalyst] CGI.pm and Catalyst?

2008-03-07 Thread Cosimo Streppone
Alex Povolotsky wrote: Martin Ellison wrote: Is there anything attached to Catalyst similar to the CGI.pm module? That is, creating the HTML by a series of procedure calls rather than by instantiating a template? Creating HTML inside the code is the best way to make unreadable,

Re: [Catalyst] CGI.pm and Catalyst?

2008-03-07 Thread Ash Berlin
On 7 Mar 2008, at 09:03, Alex Povolotsky wrote: Martin Ellison wrote: Is there anything attached to Catalyst similar to the CGI.pm module? That is, creating the HTML by a series of procedure calls rather than by instantiating a template? Or is there some way to link up the existing CGI

Re: [Catalyst] CGI.pm and Catalyst?

2008-03-07 Thread Allen S. Rout
On Fri, 07 Mar 2008 10:24:45 +0100, Cosimo Streppone [EMAIL PROTECTED] said: For example, I designed and maintained for years a web framework where we allowed something like: $table-add_row('this', 'that'); $table-add_row($chart); $table-set_cell_opt(1, 0, colspan=2);