Re: AxKit Last-Modified header

2001-09-12 Thread J. Zobel
On Mon, 2001-09-10 at 16:19, Brian Wheeler wrote: The only difference between the two (request-wise) is that static pages return a Last-Modified header and dynamic data doesn't. It seems to me that if I drop that header, everything will work :) I've tried doing:

Re: AxKit Last-Modified header

2001-09-12 Thread Brian Wheeler
On Wed, 2001-09-12 at 19:34, J. Zobel wrote: On Mon, 2001-09-10 at 16:19, Brian Wheeler wrote: The only difference between the two (request-wise) is that static pages return a Last-Modified header and dynamic data doesn't. It seems to me that if I drop that header, everything will work

Re: AxKit Last-Modified header

2001-09-12 Thread Brian Wheeler
On Wed, 2001-09-12 at 19:34, J. Zobel wrote: On Mon, 2001-09-10 at 16:19, Brian Wheeler wrote: The only difference between the two (request-wise) is that static pages return a Last-Modified header and dynamic data doesn't. It seems to me that if I drop that header, everything will work

AxKit Last-Modified header

2001-09-11 Thread Brian Wheeler
Since AxKit is down and this is really a mod-perl issue, I'll ask it here :) I'm having problems with the browser caching to much info. Here's my situation: I'm using authcookie to do authentication and my pages are generated via axkit. after logging in (and the cookie set), the browser

RE: AxKit Last-Modified header

2001-09-11 Thread Matt Sergeant
-Original Message- From: Brian Wheeler [mailto:[EMAIL PROTECTED]] $r-header_out(Last-Modified=''); and $r-header_out(Last-Modified=undef); but the header still comes out. Thoughts? Am I on the right track? Maybe: $r-headers_out-unset('Last-Modified'); Matt.

RE: AxKit Last-Modified header

2001-09-11 Thread Geoffrey Young
-Original Message- From: Matt Sergeant [mailto:[EMAIL PROTECTED]] Sent: Tuesday, September 11, 2001 5:36 AM To: 'Brian Wheeler'; [EMAIL PROTECTED] Subject: RE: AxKit Last-Modified header -Original Message- From: Brian Wheeler [mailto:[EMAIL PROTECTED]] $r

RE: AxKit Last-Modified header

2001-09-11 Thread Matt Sergeant
-Original Message- From: Geoffrey Young [mailto:[EMAIL PROTECTED]] -Original Message- From: Matt Sergeant [mailto:[EMAIL PROTECTED]] -Original Message- From: Brian Wheeler [mailto:[EMAIL PROTECTED]] $r-header_out(Last-Modified=''); and

RE: AxKit Last-Modified header

2001-09-11 Thread Brian Wheeler
On Tue, 2001-09-11 at 06:41, Matt Sergeant wrote: -Original Message- From: Geoffrey Young [mailto:[EMAIL PROTECTED]] -Original Message- From: Matt Sergeant [mailto:[EMAIL PROTECTED]] -Original Message- From: Brian Wheeler [mailto:[EMAIL PROTECTED]]

Re: AxKit Last-Modified header

2001-09-11 Thread Robin Berjon
On Tuesday 11 September 2001 16:01, Brian Wheeler wrote: On Tue, 2001-09-11 at 06:41, Matt Sergeant wrote: You could always add in a blank AxOutputTransformer, which will force AxKit to just use print(), even for cached content. I don't see AxOutputTransformer in the docs...do you have an