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

darin darin at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 06:01:02 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit 24fd0b9dbc48dda7a47430bdf1e0c8591a55f693
Author: darin <darin at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Wed Apr 3 05:17:24 2002 +0000

    	* WebView.subproj/IFWebDataSourcePrivate.mm: (-[IFWebDataSource _setTitle:]):
            Update title if the page is already in the committed state.
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@945 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit/ChangeLog b/WebKit/ChangeLog
index 311143a..946161e 100644
--- a/WebKit/ChangeLog
+++ b/WebKit/ChangeLog
@@ -1,5 +1,10 @@
 2002-04-02  Darin Adler  <darin at apple.com>
 
+	* WebView.subproj/IFWebDataSourcePrivate.mm: (-[IFWebDataSource _setTitle:]):
+        Update title if the page is already in the committed state.
+
+2002-04-02  Darin Adler  <darin at apple.com>
+
 	* WebKit.pbproj/project.pbxproj: Fix flags as I did in WebFoundation.
 
 	* Misc.subproj/WebKitDebug.h: Turn off logging when xNDEBUG is defined.
diff --git a/WebKit/ChangeLog-2002-12-03 b/WebKit/ChangeLog-2002-12-03
index 311143a..946161e 100644
--- a/WebKit/ChangeLog-2002-12-03
+++ b/WebKit/ChangeLog-2002-12-03
@@ -1,5 +1,10 @@
 2002-04-02  Darin Adler  <darin at apple.com>
 
+	* WebView.subproj/IFWebDataSourcePrivate.mm: (-[IFWebDataSource _setTitle:]):
+        Update title if the page is already in the committed state.
+
+2002-04-02  Darin Adler  <darin at apple.com>
+
 	* WebKit.pbproj/project.pbxproj: Fix flags as I did in WebFoundation.
 
 	* Misc.subproj/WebKitDebug.h: Turn off logging when xNDEBUG is defined.
diff --git a/WebKit/WebView.subproj/IFWebDataSourcePrivate.mm b/WebKit/WebView.subproj/IFWebDataSourcePrivate.mm
index a7c59f4..8b720d8 100644
--- a/WebKit/WebView.subproj/IFWebDataSourcePrivate.mm
+++ b/WebKit/WebView.subproj/IFWebDataSourcePrivate.mm
@@ -228,6 +228,8 @@
     
     // The title doesn't get communicated to the controller until
     // we reach the committed state for this data source's frame.
+    if ([[self frame] _state] >= IFWEBFRAMESTATE_COMMITTED_PAGE)
+        [[self controller] receivedPageTitle:data->pageTitle forDataSource:self];
 }
 
 @end
diff --git a/WebKit/WebView.subproj/WebDataSourcePrivate.m b/WebKit/WebView.subproj/WebDataSourcePrivate.m
index a7c59f4..8b720d8 100644
--- a/WebKit/WebView.subproj/WebDataSourcePrivate.m
+++ b/WebKit/WebView.subproj/WebDataSourcePrivate.m
@@ -228,6 +228,8 @@
     
     // The title doesn't get communicated to the controller until
     // we reach the committed state for this data source's frame.
+    if ([[self frame] _state] >= IFWEBFRAMESTATE_COMMITTED_PAGE)
+        [[self controller] receivedPageTitle:data->pageTitle forDataSource:self];
 }
 
 @end

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list