[cgiapp] Nothing fancy but IE chokes?

2008-01-01 Thread Robert Hicks
I have a simple site: www.skylinebaptist.us IE for some reason cannot navigate to: http://www.skylinebaptist.us/index.cgi?rm=ministries Firefox has no problem at all. Any idea why IE barfs (besides IE is crap)? Robert # CGI::Application community mailing list ##

Re: [cgiapp] Nothing fancy but IE chokes?

2008-01-01 Thread Kevin
Robert, I believe the page is not being rendered because of a missing bracket on the opening tag for the title. Kevin - Original Message - From: Robert Hicks [EMAIL PROTECTED] To: cgiapp@lists.erlbaum.net Sent: Tuesday, January 01, 2008 2:38 PM Subject: [cgiapp] Nothing fancy but

Re: [cgiapp] Nothing fancy but IE chokes?

2008-01-01 Thread Karen
On 1/1/08, Kevin [EMAIL PROTECTED] wrote: Robert, I believe the page is not being rendered because of a missing bracket on the opening tag for the title. Good catch. Robert, you might want to try validating pages, like so:

[cgiapp] Re: Nothing fancy but IE chokes?

2008-01-01 Thread Robert Hicks
You are right *but* the code for that comes from: title[% webpage_title %]/title That was wierd...I simple re-wrote it character for character and it now prints out the right HTML. Hmmm Kevin wrote: Robert, I believe the page is not being rendered because of a missing bracket on the

[cgiapp] Re: Nothing fancy but IE chokes?

2008-01-01 Thread Robert Hicks
Karen wrote: On 1/1/08, Kevin [EMAIL PROTECTED] wrote: Robert, I believe the page is not being rendered because of a missing bracket on the opening tag for the title. Good catch. Robert, you might want to try validating pages, like so:

Re: [cgiapp] Re: Nothing fancy but IE chokes?

2008-01-01 Thread Michael Peters
Robert Hicks wrote: You are right *but* the code for that comes from: title[% webpage_title %]/title This probably isn't your problem, but all input that goes in your templates should be HTML escaped unless you know it has been earlier. TT makes this very easy: title[% wepage_title | html

[cgiapp] Re: Nothing fancy but IE chokes?

2008-01-01 Thread Robert Hicks
Michael Peters wrote: Robert Hicks wrote: You are right *but* the code for that comes from: title[% webpage_title %]/title This probably isn't your problem, but all input that goes in your templates should be HTML escaped unless you know it has been earlier. TT makes this very easy:

[cgiapp] Adding Footer to Output

2008-01-01 Thread adam
I'm adding a footer and I'm using HTML::Template. I'll be including a generic footer using TMPL_INCLUDE and pass the current year to the included footer for the copyright date. What's the best way to send this info without having to explicitly sending a TMPL_VAR for the year each time? I'd