Re: [htmltmpl] form replacement

2011-09-03 Thread Lyle
Lookup AJAX, JQuery makes it easy Lyle -- Special Offer -- Download ArcSight Logger for FREE! Finally, a world-class log management solution at an even better price-free! And you'll get a free "Love Thy Logs"

Re: [htmltmpl] new work on HTML::Template

2011-04-06 Thread Lyle
On 07/04/2011 01:41, Brad Baxter wrote: > On Wed, Apr 6, 2011 at 8:28 PM, Lyle wrote: >> For further clarification, and without looking at the H::T implementation. >> You are calling it an object because in the sense of the term 'object' the >> template is an obje

Re: [htmltmpl] new work on HTML::Template

2011-04-06 Thread Lyle
similar to the way vars work in Perl loops. Is >> that what you're asking for? > "lexical_vars" option would be perfect. If it could also be controlled in-loop > that would be useful and time savin

Re: [htmltmpl] new work on HTML::Template

2011-04-06 Thread Lyle
On 07/04/2011 00:36, Brad Baxter wrote: On Wed, Apr 6, 2011 at 6:57 PM, Lyle wrote: I think using the term object here is confusing. I use the term "object", because it is in fact an object. For further clarification, and without looking at the H::T implementation. You are cal

Re: [htmltmpl] new work on HTML::Template

2011-04-06 Thread Lyle
nally) of child loops? Lyle -- Xperia(TM) PLAY It's a major breakthrough. An authentic gaming smartphone on the nation's most reliable network. And it wants your games. ht

Re: [htmltmpl] new work on HTML::Template

2011-04-06 Thread Lyle
designer can go in and happily change the whole design without my input. You just don't get this with TT, as design updates can often become a needlessly long winded and painful experience for both the web designer and programmer. Lyle --

Re: [htmltmpl] HTML::Template Loop Issue

2010-04-08 Thread Lyle
Problem with your hash scoping:- my @error = @_; my @error_loop = (); print header; foreach (@error) { my %error_data; $error_data{ERROR_DATA} = $_; push(@error_loop, \%error_data); } -- Download IntelĀ® P

Re: [htmltmpl] Getting data from template?

2009-01-29 Thread Lyle
y the change as a diff? Sorry for the shameless blog plug, but I only learnt how to use diff and patch recently and blogged about how to to do:- http://perl.bristolbath.org/blog/lyle/2009/01/how-to-submit-perl-patches.html#more Lyle ---

Re: [htmltmpl] Getting data from template?

2009-01-29 Thread Lyle
Roger Burton West wrote: > On Thu, Jan 29, 2009 at 03:21:59AM +0000, Lyle wrote: > > >> But that doesn't work. Is there a way to pickup data from a template >> you've read in? >> > > This is quite a common question, and the answer is "yes

Re: [htmltmpl] Getting data from template?

2009-01-29 Thread Lyle
Roger Burton West wrote: > On Thu, Jan 29, 2009 at 03:21:59AM +0000, Lyle wrote: > > >> But that doesn't work. Is there a way to pickup data from a template >> you've read in? >> > > This is quite a common question, and the answer is "yes

[htmltmpl] Getting data from template?

2009-01-28 Thread Lyle
Hi All, I'm trying to find a way to get data into my script from my template. I've tried:- And then after loading the template in my code:- print $template->param( 'test' ); But that doesn't work. Is there a way to pickup data from a temp