Re: [webkit-dev] Does WebKit support 304 Not Modified for Ajax requests?

2008-05-10 Thread Alexey Proskuryakov
On May 10, 2008, at 2:39 AM, Maciej Stachowiak wrote: Anyone know what is going on? We support If-Modified-Since but not If-None-Match when revalidating. The best place to file the bug would be http://bugreport.apple.com/ because it is actually an issue in CFNetwork, the underlying

[webkit-dev] Does WebKit support 304 Not Modified for Ajax requests?

2008-05-09 Thread Scott Schmitz
I have a web application that makes extensive use of xmlhttprequest (AJAX). I have optimized these GET requests such that the server will return a 304 not modified if the ETag matches up from a prior request. That way, if the browser cache already has the data, I just send the header

Re: [webkit-dev] Does WebKit support 304 Not Modified for Ajax requests?

2008-05-09 Thread David Kilzer
Hi Scott, This sounds like a bug. Please file a bug on https://bugs.webkit.org/. Attaching a small reproducible sample script to the bug would be extremely helpful as well. Thanks! Dave Scott Schmitz [EMAIL PROTECTED] wrote: I have a web application that makes extensive use of

Re: [webkit-dev] Does WebKit support 304 Not Modified for Ajax requests?

2008-05-09 Thread Maciej Stachowiak
On May 9, 2008, at 8:50 AM, Scott Schmitz wrote: I have a web application that makes extensive use of xmlhttprequest (AJAX). I have optimized these GET requests such that the server will return a 304 not modified if the ETag matches up from a prior request. That way, if the browser