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

sullivan sullivan at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 06:54:07 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit 8a5f0b2e04309917a0ff4acfc5e3a4dbdf2e6641
Author: sullivan <sullivan at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Thu Oct 24 22:08:53 2002 +0000

    WebKit:
    
            * WebCoreSupport.subproj/WebBridge.m:
            (-[WebBridge objectLoadedFromCache:response:size:]):
    	added ASSERT(response != nil), leftover from debugging
    	session on Tuesday, seems worth leaving in.
    
    WebBrowser:
    
    	- fixed 3083271 -- Change Show/Hide menu items in View menu to use check marks
    
            * English.lproj/MainMenu.nib: changed menu items to not include "Show" or "Hide"
    	and to be indented by two spaces so they look like they belong to the dimmed
    	"Show" item at the top of the menu. This is a yucky UI hack but is (A) probably
    	better than the old huge list of items starting with "Show" or "Hide", and (B)
    	what SJ wants.
    
            * BrowserWindowController.m:
            (-[BrowserWindowController validateMenuItem:]):
    	validate by updating check mark rather than changing title
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@2458 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit/ChangeLog b/WebKit/ChangeLog
index a5ee46f..4f9ea9e 100644
--- a/WebKit/ChangeLog
+++ b/WebKit/ChangeLog
@@ -1,3 +1,10 @@
+2002-10-24  John Sullivan  <sullivan at apple.com>
+
+        * WebCoreSupport.subproj/WebBridge.m:
+        (-[WebBridge objectLoadedFromCache:response:size:]):
+	added ASSERT(response != nil), leftover from debugging
+	session on Tuesday, seems worth leaving in.
+
 2002-10-24  Darin Adler  <darin at apple.com>
 
         * English.lproj/StringsNotToBeLocalized.txt: Update for recent changes.
diff --git a/WebKit/ChangeLog-2002-12-03 b/WebKit/ChangeLog-2002-12-03
index a5ee46f..4f9ea9e 100644
--- a/WebKit/ChangeLog-2002-12-03
+++ b/WebKit/ChangeLog-2002-12-03
@@ -1,3 +1,10 @@
+2002-10-24  John Sullivan  <sullivan at apple.com>
+
+        * WebCoreSupport.subproj/WebBridge.m:
+        (-[WebBridge objectLoadedFromCache:response:size:]):
+	added ASSERT(response != nil), leftover from debugging
+	session on Tuesday, seems worth leaving in.
+
 2002-10-24  Darin Adler  <darin at apple.com>
 
         * English.lproj/StringsNotToBeLocalized.txt: Update for recent changes.
diff --git a/WebKit/WebCoreSupport.subproj/WebBridge.m b/WebKit/WebCoreSupport.subproj/WebBridge.m
index 52bb251..8d29ee8 100644
--- a/WebKit/WebCoreSupport.subproj/WebBridge.m
+++ b/WebKit/WebCoreSupport.subproj/WebBridge.m
@@ -188,6 +188,7 @@
 - (void)objectLoadedFromCache:(NSURL *)URL response: response size:(unsigned)bytes
 {
     ASSERT(frame != nil);
+    ASSERT(response != nil);
 
     WebResourceRequest *request = [[WebResourceRequest alloc] initWithURL:URL];
     id <WebResourceLoadDelegate> delegate = [[frame controller] resourceLoadDelegate];

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list