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

trey trey at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 07:12:30 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit 9b82227eda37df515915d0782e814a66f6e9d39a
Author: trey <trey at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Sat Dec 7 01:50:59 2002 +0000

    WebKit:
    
    	Clean up some printfs.  Use WebKitLogPageCache for page cache info.
    
            Reviewed by: rjw
    
            * WebView.subproj/WebFramePrivate.m:
            (-[WebFrame _transitionToCommitted:]):
            (-[WebFrame _purgePageCache]):
            (-[WebFrame _setState:]):
            (-[WebFrame _continueLoadRequestAfterNavigationPolicy:request:]):
    
    WebBrowser:
    
    	Clean up some printfs.  Use WebKitLogPageCache for page cache info.
    
            Reviewed by: rjw, co-conspirator
    
            * Debug/DebugUtilities.m:
            (-[BrowserDocument toggleBackForwardEnabled:]):
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@2964 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit/ChangeLog b/WebKit/ChangeLog
index 2defe1b..1b010d8 100644
--- a/WebKit/ChangeLog
+++ b/WebKit/ChangeLog
@@ -1,5 +1,17 @@
 2002-12-06  Trey Matteson  <trey at apple.com>
 
+	Clean up some printfs.  Use WebKitLogPageCache for page cache info.
+
+        Reviewed by: rjw
+
+        * WebView.subproj/WebFramePrivate.m:
+        (-[WebFrame _transitionToCommitted:]):
+        (-[WebFrame _purgePageCache]):
+        (-[WebFrame _setState:]):
+        (-[WebFrame _continueLoadRequestAfterNavigationPolicy:request:]):
+
+2002-12-06  Trey Matteson  <trey at apple.com>
+
 	3118584 - implement desired behavior for load - reload - b/f
 	3119241 - page cache needs to be refreshed after reload
 	3118096 - isTargetItem:NO saved to disk with every bookmark
diff --git a/WebKit/WebView.subproj/WebFramePrivate.m b/WebKit/WebView.subproj/WebFramePrivate.m
index bb5a490..2eb73c3 100644
--- a/WebKit/WebView.subproj/WebFramePrivate.m
+++ b/WebKit/WebView.subproj/WebFramePrivate.m
@@ -526,7 +526,7 @@ Repeat load of the same URL (by any other means of navigation other than the rel
             case WebFrameLoadTypeSame:
             {
                 WebHistoryItem *currItem = [_private currentItem];
-                printf ("Clearing back/forward cache, %s\n", [[[currItem URL] absoluteString] cString]);
+                LOG(PageCache, "Clearing back/forward cache, %s\n", [[[currItem URL] absoluteString] cString]);
                 [currItem setHasPageCache:NO];
                 if (loadType == WebFrameLoadTypeReload) {
                     [self _saveScrollPositionToItem:currItem];
@@ -624,7 +624,7 @@ Repeat load of the same URL (by any other means of navigation other than the rel
     }
     
     if (pagesCached > sizeLimit){
-        printf ("Purging back/forward cache, %s\n", [[[oldestItem URL] absoluteString] cString]);
+        LOG(PageCache, "Purging back/forward cache, %s\n", [[[oldestItem URL] absoluteString] cString]);
         [oldestItem setHasPageCache: NO];
     }
 }
@@ -673,7 +673,7 @@ Repeat load of the same URL (by any other means of navigation other than the rel
             && ![[self dataSource] isLoading])
         {
             if (![item pageCache]){
-                printf ("Saving page to back/forward cache, %s\n", [[[[self dataSource] URL] absoluteString] cString]);
+                LOG(PageCache, "Saving page to back/forward cache, %s\n", [[[[self dataSource] URL] absoluteString] cString]);
                 [item setHasPageCache: YES];
                 [[self dataSource] _setStoredInPageCache: YES];
                 [[item pageCache] setObject: [self dataSource] forKey: @"WebKitDataSource"];
@@ -1579,7 +1579,7 @@ Repeat load of the same URL (by any other means of navigation other than the rel
         loadType == WebFrameLoadTypeBack ||
         loadType == WebFrameLoadTypeIndexedBackForward) &&
         [[_private provisionalItem] hasPageCache]){
-        printf ("Restoring page from back/forward cache, %s\n", [[[[_private provisionalItem] URL] absoluteString] cString]);
+        LOG(PageCache, "Restoring page from back/forward cache, %s\n", [[[[_private provisionalItem] URL] absoluteString] cString]);
         [_private->provisionalDataSource _startLoading: [[_private provisionalItem] pageCache]];
     }
     else 

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list