Changeset 19311 in webkit


Ignore:
Timestamp:
Jan 31, 2007 1:50:48 PM (17 years ago)
Author:
brmorris
Message:

sareen, Reviewed by zalan.

DESC: cache control present in the HTTP header is not properly supported EAMO-6XTJVX
http://bugs.webkit.org/show_bug.cgi?id=12478

Location:
S60/trunk/WebKit
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • S60/trunk/WebKit/ChangeLog

    r19307 r19311  
     1sareen, Reviewed by zalan.
     2        DESC: cache control present in the HTTP header is not properly supported EAMO-6XTJVX
     3        http://bugs.webkit.org/show_bug.cgi?id=12478
     4
     52007-01-31  sareen  <shyam.sareen@nokia.com>
     6
     7        Reviewed by zalan  <zbujtas@gmail.com>.
     8        DESC: cache control present in the HTTP header is not properly supported.
     9        http://bugs.webkit.org/show_bug.cgi?id=12478 [EAMO-6XTJVX]
     10
     11        * ResourceLoader/CacheSrc/HttpCacheUtil.cpp:
     12        (HttpCacheUtil::CacheTimeIsFresh):
     13
     142007-01-31  sareen  <shyam.sareen@nokia.com>
     15
     16        Reviewed by zalan  <zbujtas@gmail.com>.
     17        DESC: cache control present in the HTTP header is not properly supported.
     18        http://bugs.webkit.org/show_bug.cgi?id=12478 [EAMO-6XTJVX]
     19
     20        * ResourceLoader/CacheSrc/HttpCacheUtil.cpp:
     21        (HttpCacheUtil::CacheTimeIsFresh):
     22
    123sareen, Reviewed by zalan  <zbujtas@gmail.com>.
    224        DESC: Browser fails to load page after selection from drop-down list MLEN-6XRDHA
  • S60/trunk/WebKit/ResourceLoader/CacheSrc/HttpCacheUtil.cpp

    r18629 r19311  
    513513    cachedRequestTime = date;
    514514    cachedResponseTime = date;
     515
     516    // Get Max Age header. If maxAge = 0, then must revalidate.
     517    status = GetCacheControls( aCachedHeaders, &maxAge, NULL, NULL, NULL, NULL, NULL, aStrP );
     518    if( status == KErrNone &&  maxAge == 0 )
     519        {
     520        return EFalse; //Must revalidate
     521        }
    515522
    516523    // Get the freshness and age of the cachedHeaders
Note: See TracChangeset for help on using the changeset viewer.