Re: SSI advocacy Was:: Multiple AddHandler statements

2001-06-24 Thread Perrin Harkins
Joachim Zobel wrote: Including If-Modified-Since - 304 responding? No, none of them handle that (well, AxKit?), probably because most sites need to do more than stat-ing the template files to determine if the page content has been modified. A site with no dynamic content could be pre-generated

Re: SSI advocacy Was:: Multiple AddHandler statements

2001-06-24 Thread Robin Berjon
On Sunday 24 June 2001 11:55, Perrin Harkins wrote: Joachim Zobel wrote: Including If-Modified-Since - 304 responding? No, none of them handle that (well, AxKit?), probably because most sites need to do more than stat-ing the template files to determine if the page content has been

Re: SSI advocacy Was:: Multiple AddHandler statements

2001-06-23 Thread Joachim Zobel
At 12:35 22.06.2001 -0400, you wrote: 1. SSI with XBitHack full plays the 304 game for me. Every time the catalog database is updated, its SSI frame gets a touch. Thats it. Simple. Efficient. Most of the perl templating systems would be just as good on these points, Including

Re: Multiple AddHandler statements

2001-06-22 Thread Ged Haywood
Hi there, On Fri, 22 Jun 2001, Mithun Bhattacharya wrote: No offense meant but it is my personal opinion that SSI can mess up a system worse than Perl ever could. Would you care to elaborate? 73, Ged.

Re: Multiple AddHandler statements

2001-06-22 Thread Mithun Bhattacharya
Right now I wont say that the idea of SSI is bad its just that the usual SSI implementations that I come accross are usually when I see them going wrong. The most common example is of that of including content for banners. I dont know whether it is a configuration goofup or something else but I

Re: Multiple AddHandler statements

2001-06-22 Thread Joachim Zobel
At 15:33 18.06.2001 -0700, you wrote: We have a CGI script which dynamically generates a certain page on our site. We want to include an SSI on that dynamically created page. Is that possible? We have two AddHandler statements for files that end in .cgi... IfModule mod_mime.c ...

SSI advocacy Was:: Multiple AddHandler statements

2001-06-22 Thread Joachim Zobel
At 14:33 19.06.2001 +0530, you wrote: Is there something in SSI which cant be done in a better way using Perl ?? Yes. 1. SSI with XBitHack full plays the 304 game for me. Every time the catalog database is updated, its SSI frame gets a touch. Thats it. Simple. Efficient. 2. SSI provides a way

Re: Multiple AddHandler statements

2001-06-22 Thread Peter Reif
Mithun Bhattacharya *EXTERN* wrote: No offense meant but it is my personal opinion that SSI can mess up a system worse than Perl ever could. Also the person who had initiated this thread was using SSI to execute a third party application. I am not sure why a system command would be worse

Re: SSI advocacy Was:: Multiple AddHandler statements

2001-06-22 Thread Wim Kerkhoff
Joachim Zobel wrote: At 14:33 19.06.2001 +0530, you wrote: Is there something in SSI which cant be done in a better way using Perl ?? Yes. 1. SSI with XBitHack full plays the 304 game for me. Every time the catalog database is updated, its SSI frame gets a touch. Thats it. Simple.

Re: SSI advocacy Was:: Multiple AddHandler statements

2001-06-22 Thread Perrin Harkins
At 14:33 19.06.2001 +0530, you wrote: Is there something in SSI which cant be done in a better way using Perl ?? Yes. 1. SSI with XBitHack full plays the 304 game for me. Every time the catalog database is updated, its SSI frame gets a touch. Thats it. Simple. Efficient. 2. SSI provides

Re: Multiple AddHandler statements

2001-06-21 Thread Peter Reif
Mithun Bhattacharya *EXTERN* wrote: Is there something in SSI which cant be done in a better way using Perl ?? Yes, giving authors a simple tool with which they can't mess around. Perl is too powerful. Peter

Re: Multiple AddHandler statements

2001-06-21 Thread Mithun Bhattacharya
No offense meant but it is my personal opinion that SSI can mess up a system worse than Perl ever could. Also the person who had initiated this thread was using SSI to execute a third party application. I am not sure why a system command would be worse than doing a SSI. Mithun

Re: Multiple AddHandler statements

2001-06-19 Thread Pierre-Yves BONNETAIN
Hi Douglas, We have a CGI script which dynamically generates a certain page on our site. We want to include an SSI on that dynamically created page. Is that possible? We have two AddHandler statements for files that end in .cgi... Unfortunately, the dynamically generated page is not

Re: Multiple AddHandler statements

2001-06-19 Thread Mithun Bhattacharya
Is there something in SSI which cant be done in a better way using Perl ??

Multiple AddHandler statements

2001-06-18 Thread Douglas C. Heestand
We have a CGI script which dynamically generates a certain page on our site. We want to include an SSI on that dynamically created page. Is that possible? We have two AddHandler statements for files that end in .cgi... IfModule mod_mime.c ... AddHandler server-parsed .cgi ...