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

rjw rjw at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 06:47:09 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit 5ad225665b4e9df4c9ff5d057c2b2858598979a2
Author: rjw <rjw at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Fri Oct 4 22:39:41 2002 +0000

            Danger Will Robinson.  We have to poseAsClass: as early as possible
            so that any NSViews will be created with the appropriate poser.
            This problem manifested itself with SimpleViewer failing
            immediately.  NSViews were created by loading a nib before
            WebHTMLView class initialization occured.  After posing the
            already instantiated instances of NSView had a %NSView class,
            causing many things to break.
    
            * WebView.subproj/WebHTMLViewPrivate.m:
            (+[WebHTMLView load]):
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@2251 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit/ChangeLog b/WebKit/ChangeLog
index b6b474f..7fb83c4 100644
--- a/WebKit/ChangeLog
+++ b/WebKit/ChangeLog
@@ -1,5 +1,18 @@
 2002-10-04  Richard Williamson   <rjw at apple.com>
 
+        Danger Will Robinson.  We have to poseAsClass: as early as possible
+        so that any NSViews will be created with the appropriate poser.
+        This problem manifested itself with SimpleViewer failing
+        immediately.  NSViews were created by loading a nib before
+        WebHTMLView class initialization occured.  After posing the
+        already instantiated instances of NSView had a %NSView class,
+        causing many things to break.
+        
+        * WebView.subproj/WebHTMLViewPrivate.m:
+        (+[WebHTMLView load]):
+
+2002-10-04  Richard Williamson   <rjw at apple.com>
+
         Ensure that we return non-nil request  from handle:willSendRequest:
         even when WK's laod delegate is nil.
         
diff --git a/WebKit/ChangeLog-2002-12-03 b/WebKit/ChangeLog-2002-12-03
index b6b474f..7fb83c4 100644
--- a/WebKit/ChangeLog-2002-12-03
+++ b/WebKit/ChangeLog-2002-12-03
@@ -1,5 +1,18 @@
 2002-10-04  Richard Williamson   <rjw at apple.com>
 
+        Danger Will Robinson.  We have to poseAsClass: as early as possible
+        so that any NSViews will be created with the appropriate poser.
+        This problem manifested itself with SimpleViewer failing
+        immediately.  NSViews were created by loading a nib before
+        WebHTMLView class initialization occured.  After posing the
+        already instantiated instances of NSView had a %NSView class,
+        causing many things to break.
+        
+        * WebView.subproj/WebHTMLViewPrivate.m:
+        (+[WebHTMLView load]):
+
+2002-10-04  Richard Williamson   <rjw at apple.com>
+
         Ensure that we return non-nil request  from handle:willSendRequest:
         even when WK's laod delegate is nil.
         
diff --git a/WebKit/WebView.subproj/WebHTMLViewPrivate.m b/WebKit/WebView.subproj/WebHTMLViewPrivate.m
index 4db7a88..84d23ff 100644
--- a/WebKit/WebView.subproj/WebHTMLViewPrivate.m
+++ b/WebKit/WebView.subproj/WebHTMLViewPrivate.m
@@ -62,14 +62,18 @@
 
 @end
 
+
 @implementation WebHTMLView (WebPrivate)
 
-+ (void)initialize
+// Danger Will Robinson.  We have to poseAsClass: as early as possible
+// so that any NSViews will be created with the appropriate poser.
++ (void)load
 {
     [[WebNSTextView class] poseAsClass:[NSTextView class]];
     [[WebNSView class] poseAsClass:[NSView class]];
 }
 
+
 - (void)_adjustFrames
 {
     // Ick!  khtml set the frame size during layout and

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list