Re: [htmltmpl] I'm getting just an empty page

2002-11-20 Thread Andrew Brosnan
On 11/21/02 at 2:27 AM, [EMAIL PROTECTED] (Christoph Knoche) wrote: > Hallo, > > I'm new to HTML::Template (and to mailinglists) and would like to use > it on my new CMS but have trouble getting it to work. The output is > just a blank page, wenn I try to display the template without setting > an

[htmltmpl] I'm getting just an empty page

2002-11-20 Thread Christoph Knoche
Hallo, I'm new to HTML::Template (and to mailinglists) and would like to use it on my new CMS but have trouble getting it to work. The output is just a blank page, wenn I try to display the template without setting any parameters. When I try to set a parameter (that's defined in the template) I

RE: [htmltmpl] ElseIF syntax...

2002-11-20 Thread simran
I think error messages can be very much a presentation issue... i have included a description of exactly what i am trying to do (hoping that people will have done similar or be able to shed some light from a different direction :-) Basic "Keep them in mind" issues ===

RE: [htmltmpl] ElseIF syntax...

2002-11-20 Thread Cory Trese
My thought: However, generating these messages in-code makes the component's interface far harder to internationalize, IMHO. However, in a situation where you have hundreds of error messages, in template errors would be very difficult to maintain. -- Cory > -Original Message- > From:

Re: [htmltmpl] ElseIF syntax...

2002-11-20 Thread Kenneth Gonsalves
duhh kg On Wednesday 20 November 2002 15:29, Philip S Tellis wrote: > On Wed, 20 Nov 2002, Kenneth Gonsalves wrote: > > what are the '%' signs for - cant find them in the man page? > > see vanguard compatibility mode -- --- This sf.net email is

RE: [htmltmpl] ElseIF syntax...

2002-11-20 Thread Gabriel Fortuna
Hi Simran... Bear in mind that doing this essentially defeats the main purpose of templates in general, and HTML::Template in particular, which is, namely, to separate logic from presentation. I've had situations where I've needed and elsif here and there, but it's best left in the code.

Re: [htmltmpl] ElseIF syntax...

2002-11-20 Thread Philip S Tellis
On Wed, 20 Nov 2002, Kenneth Gonsalves wrote: > what are the '%' signs for - cant find them in the man page? see vanguard compatibility mode -- The devil can cite Scripture for his purpose. -- William Shakespeare, "The Merchant of Venice" -

Re: [htmltmpl] ElseIF syntax...

2002-11-20 Thread Kenneth Gonsalves
what are the '%' signs for - cant find them in the man page? kg On Wednesday 20 November 2002 14:47, MArk Williams wrote: > We just set the error template var in the cgi/application, to the message > we want to put out and use:- > >%ERROR% > > MArk WIlliams > > simran wrote: > > Hi All, > > >

Re: [htmltmpl] ElseIF syntax...

2002-11-20 Thread MArk Williams
We just set the error template var in the cgi/application, to the message we want to put out and use:- %ERROR% MArk WIlliams simran wrote: Hi All, I have a template where i really need to use "else if" conditions? How do you all handle places where you need to use "else if"? A sample of m