META tags added as HTTP headers

2002-01-18 Thread Markus Wichitill
Hi, which part of an Apache/mod_perl setup is responsible for extracting META tags from generated HTML and adding them as HTTP headers (even with PerlSendHeaders Off)? In the case of META NAME='Blah' tags, it adds X-Meta-Blah headers, which are harmless but probably mostly a waste of bandwidth.

Re: META tags added as HTTP headers

2002-01-18 Thread Bill Moseley
At 01:20 AM 01/19/02 +0100, Markus Wichitill wrote: which part of an Apache/mod_perl setup is responsible for extracting META tags from generated HTML and adding them as HTTP headers (even with PerlSendHeaders Off)? That's lwp doing that, not Apache or mod_perl. HEAD http://www.apache.org 200

Re: META tags added as HTTP headers

2002-01-18 Thread ___cliff rayman___
hmmm - you are still using lwp. here is a 1.0 protocol result via telnet: [root@w7 /root]# telnet www.apache.org 80 Trying 64.125.133.20... Connected to www.apache.org. Escape character is '^]'. HEAD / HTTP/1.0 HTTP/1.1 200 OK Date: Sat, 19 Jan 2002 00:37:03 GMT Server: Apache/2.0.28 (Unix)

Re: META tags added as HTTP headers

2002-01-18 Thread Bill Moseley
At 04:46 PM 01/18/02 -0800, ___cliff rayman___ wrote: hmmm - you are still using lwp. Right. But lwp-request sends a GET request where HEAD sends, well, a HEAD request. So, even though LWP's default is to parse the head section, there's no content to parse in a HEAD request, and thus the meta