[webkit-dev] How to access resource meta-data

2008-10-29 Thread Andrew S. Townley
Hi, I've been having a look through Apple's documentation and the WebKit source tree, but I'm having trouble finding where you would be able to access resource meta-data information, say given a WebKitWebView. I'm sure there isn't support for this yet in the GTK+ port, but even knowing when/how

Re: [webkit-dev] How to access resource meta-data

2008-10-29 Thread Darin Adler
On Oct 29, 2008, at 1:51 AM, Andrew S. Townley wrote: I'm having trouble finding where you would be able to access resource meta-data information, say given a WebKitWebView. Maybe you could give one specific example of a piece of meta-data, then we can tell you how you'd get to it with the

Re: [webkit-dev] How to access resource meta-data

2008-10-29 Thread Andrew S. Townley
Hi Darin, On Wed, 2008-10-29 at 09:10 -0700, Darin Adler wrote: On Oct 29, 2008, at 1:51 AM, Andrew S. Townley wrote: I'm having trouble finding where you would be able to access resource meta-data information, say given a WebKitWebView. Maybe you could give one specific example of a

Re: [webkit-dev] How to access resource meta-data

2008-10-29 Thread Darin Adler
On Oct 29, 2008, at 9:30 AM, Andrew S. Townley wrote: Fair enough. What I'm looking for at a minimum is the headers associated with each HTTP response. You'd get at those through the resource load delegate. When a resource is loaded the delegate receives an Objective-C method call, named:

Re: [webkit-dev] How to access resource meta-data

2008-10-29 Thread David Kilzer
On Wed, 10/29/08, Andrew S. Townley [EMAIL PROTECTED] wrote: Fair enough. What I'm looking for at a minimum is the headers associated with each HTTP response. It would be nice to also be able to extract any HTML meta tags and have access to those as well. Other interesting things

Re: [webkit-dev] How to access resource meta-data

2008-10-29 Thread Andrew S. Townley
On Wed, 2008-10-29 at 09:42 -0700, Darin Adler wrote: On Oct 29, 2008, at 9:30 AM, Andrew S. Townley wrote: Fair enough. What I'm looking for at a minimum is the headers associated with each HTTP response. You'd get at those through the resource load delegate. When a resource is

Re: [webkit-dev] How to access resource meta-data

2008-10-29 Thread Andrew S. Townley
On Wed, 2008-10-29 at 12:33 -0700, David Kilzer wrote: I think most of this information (except maybe the meta tags) is available through the Web Inspector. You could review the source code for it to determine how to get what you're looking for. Also, is there a reason the Web Inspector