canned footers

2000-08-16 Thread Alex Menendez
hello, all I am trying to write a module that generates a canned footer for all html and cgi pages on my site. the html part is pretty easy and I have already implemented it. However, I am currently having trouble adding it to standalone cgi scripts that are not parsed by the server. I have

RE: canned footers

2000-08-16 Thread jbodnar
It may not be exactly what you're looking for but try looking at Apache::Sandwich or Apache::ProxyStuff On 16-Aug-2000 Alex Menendez wrote: hello, all I am trying to write a module that generates a canned footer for all html and cgi pages on my site. the html part is pretty easy and I have

RE: canned footers

2000-08-16 Thread Jerrad Pierce
, 2000 1:26 PM To: [EMAIL PROTECTED] Subject: canned footers hello, all I am trying to write a module that generates a canned footer for all html and cgi pages on my site. the html part is pretty easy and I have already implemented it. However, I am currently having trouble adding it to standalone

Re: canned footers

2000-08-16 Thread Bruce W. Hoylman
Have you looked at Apache::Sandwich from CPAN? It is easy to implement and I have used it for awhile now to add confidentiality headers and footers to pages in a small to medium site. cpan m /Apache::Sandwich/ Module id = Apache::Sandwich CPAN_USERID VKHERA (Vivek Khera [EMAIL PROTECTED])

Re: canned footers

2000-08-16 Thread Alex Menendez
Your right. this works great for html! Unfortunately, however, Apache sandwich really does not work for me because it only deals with GET requests and it can not deal with cgi requests directly. I would need to alter my cgi's in order to use sandwich. I am looking for a mod_perl solution that

Re: canned footers

2000-08-16 Thread Vivek Khera
"BWH" == Bruce W Hoylman [EMAIL PROTECTED] writes: BWH Have you looked at Apache::Sandwich from CPAN? It is easy to implement BWH and I have used it for awhile now to add confidentiality headers and BWH footers to pages in a small to medium site. The only real trick is that you are

RE: canned footers

2000-08-16 Thread Geoffrey Young
-Original Message- From: Alex Menendez [mailto:[EMAIL PROTECTED]] Sent: Wednesday, August 16, 2000 2:07 PM To: [EMAIL PROTECTED] Cc: The MODPERL Subject: Re: canned footers Your right. this works great for html! Unfortunately, however, Apache sandwich really does not work

Re: canned footers

2000-08-16 Thread jbodnar
Take a look at Apache::ProxyStuff. It requires you set another server (can be virtual) but it doesn't care about methods or content type. On 16-Aug-2000 Alex Menendez wrote: Your right. this works great for html! Unfortunately, however, Apache sandwich really does not work for me because it

Re: canned footers

2000-08-16 Thread jbodnar
On 16-Aug-2000 Vivek Khera wrote: "BWH" == Bruce W Hoylman [EMAIL PROTECTED] writes: BWH Have you looked at Apache::Sandwich from CPAN? It is easy to implement BWH and I have used it for awhile now to add confidentiality headers and BWH footers to pages in a small to medium site. The