Re: [htmltmpl] Error code.

2002-10-13 Thread Dan Collis Puro
>Actually, if a few insults would > make it stop parading around my apartment wearing that pathetic "King Of > Templating" crown it made out of tin-foil, that would be an improvement. > Have you thought about mentioning these hallucinations to a professional? I have a great friend (emacs M-docto

Re: [htmltmpl] Error code.

2002-10-10 Thread Doc
l" <[EMAIL PROTECTED]> Cc: "Doc" <[EMAIL PROTECTED]>; "Brian McCain" <[EMAIL PROTECTED]>; "Kenny Smith" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Friday, October 11, 2002 12:04 AM Subject: Re: [htmltmpl] Error code. > On Thu, 10 O

Re: [htmltmpl] Error code.

2002-10-10 Thread Doc
t;[EMAIL PROTECTED]> Cc: "Doc" <[EMAIL PROTECTED]>; "Brian McCain" <[EMAIL PROTECTED]>; "Kenny Smith" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Friday, October 11, 2002 12:04 AM Subject: Re: [htmltmpl] Error code. > On Thu, 10

Re: [htmltmpl] Error code.

2002-10-10 Thread Sam Tregar
On Thu, 10 Oct 2002, Dave Van Abel wrote: > I generally don't get in these fights, but now I am. > > H-T is not stupid. I have used it for 3 yrs (including DBI) without one > problem. > > Reconsider your statement. Hey, everybody calm down. HTML::Template is not going to have its feelings hurt

Re: [htmltmpl] Error code.

2002-10-10 Thread Dave Van Abel
"Doc" ><[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> >Sent: Thursday, October 10, 2002 9:29 PM >Subject: Re: [htmltmpl] Error code. > > > > On Thu, 10 Oct 2002, Brian McCain wrote: > > > > > The "scalar" he's putting in the

Re: [htmltmpl] Error code.

2002-10-10 Thread Doc
D]> Cc: "Kenny Smith" <[EMAIL PROTECTED]>; "Doc" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Thursday, October 10, 2002 9:29 PM Subject: Re: [htmltmpl] Error code. > On Thu, 10 Oct 2002, Brian McCain wrote: > > > The "scalar" he'

RE: [htmltmpl] Error code.

2002-10-10 Thread Cory Trese
> > Ironically, if memory serves me right, I think that the tag > attributes are case INsensitive no? True, unless overridden in the constructor. -- Cory --- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkg

RE: [htmltmpl] Error code.

2002-10-10 Thread Alex Porras
> Then H-T must be incrediable dumb since that tmpl_var ROWS is in it. > and Script says ROWS too. I am very much aware of > case sensitive nature of linux. Ironically, if memory serves me right, I think that the tag attributes are case INsensitive no? --Alex -

Re: [htmltmpl] Error code.

2002-10-10 Thread Sam Tregar
On Thu, 10 Oct 2002, Brian McCain wrote: > The "scalar" he's putting in there is actually an array reference, which is > totally kosher. I've gotten this error many times, and it has always been as > a result of selecting data from a database into a variable (either a true > scalar or an arrayref

Re: [htmltmpl] Error code.

2002-10-10 Thread Andrew Brosnan
EMAIL PROTECTED]> > Cc: <[EMAIL PROTECTED]> > Sent: Thursday, October 10, 2002 12:35 AM > Subject: Re: [htmltmpl] Error code. > > > > On Wed, 9 Oct 2002, Doc wrote: > > > > > HTML::Template::param() : attempt to set parameter 'rows' with a

Re: [htmltmpl] Error code.

2002-10-10 Thread Brian McCain
; <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Thursday, October 10, 2002 3:22 PM Subject: RE: [htmltmpl] Error code. | Hey Brian, | | I believe the error is prompted by ref( $data->{'rows'} ) not being "ARRAY", | most likely rows is undef() or somethi

RE: [htmltmpl] Error code.

2002-10-10 Thread Kenny Smith
Hey Brian, I believe the error is prompted by ref( $data->{'rows'} ) not being "ARRAY", most likely rows is undef() or something along those lines. I could totally be wrong though, this is just my experience. To fix it, I usually use something along the lines of $data->{'rows'} = get_my_rows()

Re: [htmltmpl] Error code.

2002-10-10 Thread Brian McCain
#x27; as a TMPL_LOOP in your template. | You have to fix one or the other. | | Kenny Smith | JournalScape.com | - Original Message ----- From: "Doc" <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Thursday, October 10, 2002 2:14 PM Subject: Re: [htmltmpl] Error code.

RE: [htmltmpl] Error code.

2002-10-10 Thread Kenny Smith
Hello, > Then H-T must be incrediable dumb since that tmpl_var ROWS > is in it. and Script says ROWS too. > I am very much aware of case sensitive nature of linux. This is a very friendly list, please do not toss any slights here, they are not welcome. Check your data, it sounds like you are p

Re: [htmltmpl] Error code.

2002-10-10 Thread Doc
t;[EMAIL PROTECTED]> Sent: Thursday, October 10, 2002 12:35 AM Subject: Re: [htmltmpl] Error code. > On Wed, 9 Oct 2002, Doc wrote: > > > HTML::Template::param() : attempt to set parameter 'rows' with a scalar > > - parameter is not a TMPL_VAR! at dbview.pl line 22 &g

Re: [htmltmpl] Error code.

2002-10-09 Thread Sam Tregar
On Wed, 9 Oct 2002, Doc wrote: > HTML::Template::param() : attempt to set parameter 'rows' with a scalar > - parameter is not a TMPL_VAR! at dbview.pl line 22 This means that HTML::Template didn't see: in your template file. If you'd rather HTML::Template was quiet about this situation the