[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: