Re: Sending a different protocol header

2003-09-09 Thread Chris Shiflett
--- Geoffrey Young <[EMAIL PROTECTED]> wrote: > btw, can you please explain what ICY is for me? I believe ICY is a protocol used for streaming media, so these headers are probably an extension of HTTP that can be used instead of the pure ICY protocol. That's a guess, anyway. :-) Chris = Beco

Re: The best place for mod_perl beginners to get started.

2003-01-15 Thread Chris Shiflett
--- Geoffrey Young <[EMAIL PROTECTED]> wrote: > and don't forget about the cookbook > >http://www.modperlcookbook.org/ Speaking of that, why is it missing from http://perl.apache.org/? Chris

RE: use http-equiv to refresh the page

2002-11-06 Thread Chris Shiflett
> > I just wanted to mention that the meta tag as well as its http-equiv > > attribute are both official parts of the HTML standard and have been > > for quite some time. > > Yes and no. Well, I disagree with the no. I will explain it again below. > HTML 4.0 has a section on META and htt

Re: use http-equiv to refresh the page

2002-11-05 Thread Chris Shiflett
Perrin Harkins wrote: Chris Shiflett wrote: http://www.w3.org/TR/html4/struct/global.html#h-7.4.4.2 Look a little further down that page: "/*Note.* Some user agents support the use of META <http://www.w3.org/TR/html4/struct/global.html#edef-META> to refresh the current p

Re: use http-equiv to refresh the page

2002-11-05 Thread Chris Shiflett
> > Is using tag a \"bad\" approach? > > Yes. It\'s something that Netscape added to their browser, which others > may or may not add to their browsers. It\'s not part of any HTTP spec > and isn\'t guaranteed to work, even on totally correct web browsers. A meta tag is not something un

Re: redirection halts if a message is printed

2002-11-04 Thread Chris Shiflett
Sumitro Chowdhury wrote: Case I ( simple redirection ): -- package redirect.pm use Apache::Const -compile => qw(HTTP_MOVED_TEMPORARILY); sub handler ( my $r = shift; $r->content_type('text/html'); $r->headers_out->{'Location'}= "http://new.location";; return