Re: [Catalyst] Return a TT view

2011-05-26 Thread jeff robinson
Alejandro, Sounds like an ambitious project. We eventually solved the issues we were having and the app was as a user GUI to hosted VoIP PBX, where we needed to implement some long poll AJAX interfaces to provide for zero latency screen updates. In other words its a different sort of app to the

Re: [Catalyst] Return a TT view

2011-05-26 Thread Alejandro Imass
On Thu, May 26, 2011 at 12:43 PM, will trillich will.trill...@serensoft.com wrote: /lurk The only thing I can see at www.jemplate.net is the home page. All the other links aren't working for me...? (Chrome on OSX) Lovely title tag, there, too. Yeah the Web page is broken but the sofware is

Re: [Catalyst] Return a TT view

2011-05-21 Thread jeff robinson
Alejandro I'm mapping a tradional website (where page 2 replaces page 1 etc) wriitten obviously for Catalyst to one that uses JQuery, ie all of the TT for the pages is essentaily in place. The operational model is now, however, very different in that a single master web page of JQuery tabs is

Re: [Catalyst] Return a TT view

2011-05-21 Thread Tobias Kremer
You can use a variable (like no_wrap) to control your wrapping. Have a look at this thread: http://www.gossamer-threads.com/lists/catalyst/users/9385?do=post_view_threaded#9385 Hope this helps! --Toby On 21.05.2011, at 18:05, jeff robinson jeffreyianrobin...@gmail.com wrote: Alejandro I'm

Re: [Catalyst] Return a TT view

2011-05-21 Thread jeff robinson
Toby That's very handy, thanks for the link - J On Sat, May 21, 2011 at 1:56 PM, Tobias Kremer tobias.kre...@gmail.com wrote: You can use a variable (like no_wrap) to control your wrapping. Have a look at this thread:

[Catalyst] Return a TT view

2011-05-20 Thread jeff robinson
Hi, I need to be able to process a view through a TT template but instead of subjecting it to the usual chain of processing (pre-process, wrapper etc) I just want to return it as text to the calling function. I am basically using TT to process a file GET and will return the text in a

Re: [Catalyst] Return a TT view

2011-05-20 Thread John M. Dlugosz
On 5/20/2011 2:21 PM, jeff robinson jeffreyianrobinson-at-gmail.com |Catalyst/Allow to home| wrote: Hi, I need to be able to process a view through a TT template but instead of subjecting it to the usual chain of processing (pre-process, wrapper etc) I just want to return it as text to the

Re: [Catalyst] Return a TT view

2011-05-20 Thread jeff robinson
Not quite sure how an intro to TT answers my question, but I did find it here: http://search.cpan.org/~abraxxa/Catalyst-View-TT-0.36/lib/Catalyst/View/TT.pm Thanks anyway - J On Fri, May 20, 2011 at 3:33 PM, John M. Dlugosz wxju46g...@snkmail.com wrote: On 5/20/2011 2:21 PM, jeff robinson

Re: [Catalyst] Return a TT view

2011-05-20 Thread John M. Dlugosz
On 5/20/2011 3:10 PM, jeff robinson jeffreyianrobinson-at-gmail.com |Catalyst/Allow to home| wrote: Not quite sure how an intro to TT answers my question, but I did find it here: Because it shows how to call TT to return a string to the caller.