[SCM] WebKit Debian packaging branch, debian/unstable, updated. debian/1.1.15-1-40151-g37bb677

mjs mjs at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 07:55:57 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit 7bcb400fcb0e053ad4165dd4cec552dbb75c4dd8
Author: mjs <mjs at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Fri Sep 12 00:58:27 2003 +0000

            Reviewed by Ken.
    
    	- fixed 3417486 - after logging off from secure Etrade website, going back returns you to secure page
    
            * WebView.subproj/WebFramePrivate.m:
            (-[WebFrame _loadItem:withLoadType:]): Don't request stale data
    	for https pages, as this could be a security risk.
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@4968 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit/ChangeLog b/WebKit/ChangeLog
index 4c020fb..f46efdb 100644
--- a/WebKit/ChangeLog
+++ b/WebKit/ChangeLog
@@ -1,3 +1,13 @@
+2003-09-11  Maciej Stachowiak  <mjs at apple.com>
+
+        Reviewed by Ken.
+
+	- fixed 3417486 - after logging off from secure Etrade website, going back returns you to secure page
+
+        * WebView.subproj/WebFramePrivate.m:
+        (-[WebFrame _loadItem:withLoadType:]): Don't request stale data
+	for https pages, as this could be a security risk.
+
 2003-09-11  Richard Williamson   <rjw at apple.com>
 
 	Fixed 3406671.  Added a private method for Mail to get selection
diff --git a/WebKit/WebView.subproj/WebFramePrivate.m b/WebKit/WebView.subproj/WebFramePrivate.m
index 61caf44..4ec6532 100644
--- a/WebKit/WebView.subproj/WebFramePrivate.m
+++ b/WebKit/WebView.subproj/WebFramePrivate.m
@@ -1261,7 +1261,9 @@ static CFAbsoluteTime _timeOfLastCompletedLoad;
                     case WebFrameLoadTypeBack:
                     case WebFrameLoadTypeForward:
                     case WebFrameLoadTypeIndexedBackForward:
-                        [request setCachePolicy:NSURLRequestReturnCacheDataElseLoad];
+			if (![[itemURL scheme] isEqual:@"https"]) {
+			    [request setCachePolicy:NSURLRequestReturnCacheDataElseLoad];
+			}
                         break;
                     case WebFrameLoadTypeStandard:
                     case WebFrameLoadTypeInternal:

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list