[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:21:44 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit 9e028b83ed831a18952cda01d500f4716c3edbae
Author: rjw <rjw at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Thu Jun 27 15:20:51 2002 +0000

            Implement selectAll.
    
            * WebView.subproj/IFHTMLView.mm:
            (-[IFHTMLView selectAll:]):
    
            * kwq/WebCoreBridge.h:
            * kwq/WebCoreBridge.mm:
            (-[WebCoreBridge selectAll]):
            Select all using the part.
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@1451 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog-2002-12-03 b/WebCore/ChangeLog-2002-12-03
index 4d8b4bc..720a5c6 100644
--- a/WebCore/ChangeLog-2002-12-03
+++ b/WebCore/ChangeLog-2002-12-03
@@ -1,3 +1,10 @@
+2002-06-27  Richard Williamson  <rjw at apple.com>
+
+        * kwq/WebCoreBridge.h:
+        * kwq/WebCoreBridge.mm:
+        (-[WebCoreBridge selectAll]):
+        Select all using the part.
+
 2002-06-27  Maciej Stachowiak  <mjs at apple.com>
 
 	WebCore part of fixes for JavaScript cookie bugs:
diff --git a/WebCore/ChangeLog-2003-10-25 b/WebCore/ChangeLog-2003-10-25
index 4d8b4bc..720a5c6 100644
--- a/WebCore/ChangeLog-2003-10-25
+++ b/WebCore/ChangeLog-2003-10-25
@@ -1,3 +1,10 @@
+2002-06-27  Richard Williamson  <rjw at apple.com>
+
+        * kwq/WebCoreBridge.h:
+        * kwq/WebCoreBridge.mm:
+        (-[WebCoreBridge selectAll]):
+        Select all using the part.
+
 2002-06-27  Maciej Stachowiak  <mjs at apple.com>
 
 	WebCore part of fixes for JavaScript cookie bugs:
diff --git a/WebCore/ChangeLog-2005-08-23 b/WebCore/ChangeLog-2005-08-23
index 4d8b4bc..720a5c6 100644
--- a/WebCore/ChangeLog-2005-08-23
+++ b/WebCore/ChangeLog-2005-08-23
@@ -1,3 +1,10 @@
+2002-06-27  Richard Williamson  <rjw at apple.com>
+
+        * kwq/WebCoreBridge.h:
+        * kwq/WebCoreBridge.mm:
+        (-[WebCoreBridge selectAll]):
+        Select all using the part.
+
 2002-06-27  Maciej Stachowiak  <mjs at apple.com>
 
 	WebCore part of fixes for JavaScript cookie bugs:
diff --git a/WebCore/kwq/WebCoreBridge.h b/WebCore/kwq/WebCoreBridge.h
index 95cea2d..4b3190c 100644
--- a/WebCore/kwq/WebCoreBridge.h
+++ b/WebCore/kwq/WebCoreBridge.h
@@ -84,6 +84,7 @@ typedef khtml::RenderPart KHTMLRenderPart;
     marginWidth:(int)mw marginHeight:(int)mh;
 
 - (NSString *)selectedText;
+- (void)selectAll;
 
 @end
 
diff --git a/WebCore/kwq/WebCoreBridge.mm b/WebCore/kwq/WebCoreBridge.mm
index 087e25d..03e1039 100644
--- a/WebCore/kwq/WebCoreBridge.mm
+++ b/WebCore/kwq/WebCoreBridge.mm
@@ -122,4 +122,9 @@
     return QSTRING_TO_NSSTRING(st);
 }
 
+- (void)selectAll
+{
+    part->selectAll();
+}
+
 @end
diff --git a/WebKit/ChangeLog b/WebKit/ChangeLog
index efe6e1f..a7f0749 100644
--- a/WebKit/ChangeLog
+++ b/WebKit/ChangeLog
@@ -1,3 +1,10 @@
+2002-06-27  Richard Williamson  <rjw at apple.com>
+
+        Implement selectAll.
+        
+        * WebView.subproj/IFHTMLView.mm:
+        (-[IFHTMLView selectAll:]):
+
 2002-06-27  Maciej Stachowiak  <mjs at apple.com>
 
 	WebKit part of fixes for JavaScript cookie bugs:
diff --git a/WebKit/ChangeLog-2002-12-03 b/WebKit/ChangeLog-2002-12-03
index efe6e1f..a7f0749 100644
--- a/WebKit/ChangeLog-2002-12-03
+++ b/WebKit/ChangeLog-2002-12-03
@@ -1,3 +1,10 @@
+2002-06-27  Richard Williamson  <rjw at apple.com>
+
+        Implement selectAll.
+        
+        * WebView.subproj/IFHTMLView.mm:
+        (-[IFHTMLView selectAll:]):
+
 2002-06-27  Maciej Stachowiak  <mjs at apple.com>
 
 	WebKit part of fixes for JavaScript cookie bugs:
diff --git a/WebKit/WebView.subproj/IFHTMLView.mm b/WebKit/WebView.subproj/IFHTMLView.mm
index aed46c9..c41eb24 100644
--- a/WebKit/WebView.subproj/IFHTMLView.mm
+++ b/WebKit/WebView.subproj/IFHTMLView.mm
@@ -71,6 +71,14 @@
     [pboard setString:[bridge selectedText] forType:NSStringPboardType];
 }
 
+
+- (void)selectAll: sender
+{
+    IFWebCoreBridge *bridge = [self _bridge];
+    [bridge selectAll];
+}
+
+
 - (void)dealloc 
 {
     [self _reset];
diff --git a/WebKit/WebView.subproj/WebHTMLView.m b/WebKit/WebView.subproj/WebHTMLView.m
index aed46c9..c41eb24 100644
--- a/WebKit/WebView.subproj/WebHTMLView.m
+++ b/WebKit/WebView.subproj/WebHTMLView.m
@@ -71,6 +71,14 @@
     [pboard setString:[bridge selectedText] forType:NSStringPboardType];
 }
 
+
+- (void)selectAll: sender
+{
+    IFWebCoreBridge *bridge = [self _bridge];
+    [bridge selectAll];
+}
+
+
 - (void)dealloc 
 {
     [self _reset];

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list