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

cblu cblu at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 07:43:02 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit 6426215e4bb7778336c260f14466592c0510bab7
Author: cblu <cblu at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Fri May 23 19:36:21 2003 +0000

    WebKit:
    
    	Fixed: 3259426 - Can't copy mailto links to clipboard
    
            Reviewed by john.
    
            * WebView.subproj/WebDefaultContextMenuDelegate.m:
            (-[WebDefaultUIDelegate webView:contextMenuItemsForElement:defaultMenuItems:]): offer "Copy Link to Clipboard" for all links
    
    WebBrowser:
    
    	Fixed: 3259426 - Can't copy mailto links to clipboard
    
            Reviewed by john.
    
            * ContextMenuHandler.m:
            (-[BrowserWebView webView:contextMenuItemsForElement:defaultMenuItems:]): don't offer "Add Link to Bookmarks" for links we can't handle inline
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@4419 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit/ChangeLog b/WebKit/ChangeLog
index 3d1380b..95f9b3b 100644
--- a/WebKit/ChangeLog
+++ b/WebKit/ChangeLog
@@ -1,3 +1,12 @@
+2003-05-23  Chris Blumenberg  <cblu at apple.com>
+
+	Fixed: 3259426 - Can't copy mailto links to clipboard
+
+        Reviewed by john.
+
+        * WebView.subproj/WebDefaultContextMenuDelegate.m:
+        (-[WebDefaultUIDelegate webView:contextMenuItemsForElement:defaultMenuItems:]): offer "Copy Link to Clipboard" for all links
+
 2003-05-22  Richard Williamson   <rjw at apple.com>
 
 	*** Public API change ***
diff --git a/WebKit/WebView.subproj/WebDefaultContextMenuDelegate.m b/WebKit/WebView.subproj/WebDefaultContextMenuDelegate.m
index 50c9814..8e3359c 100644
--- a/WebKit/WebView.subproj/WebDefaultContextMenuDelegate.m
+++ b/WebKit/WebView.subproj/WebDefaultContextMenuDelegate.m
@@ -85,8 +85,8 @@
         if([WebView _canHandleRequest:[NSURLRequest requestWithURL:linkURL]]) {
             [menuItems addObject:[self menuItemWithTag:WebMenuItemTagOpenLinkInNewWindow]];
             [menuItems addObject:[self menuItemWithTag:WebMenuItemTagDownloadLinkToDisk]];
-            [menuItems addObject:[self menuItemWithTag:WebMenuItemTagCopyLinkToClipboard]];
         }
+        [menuItems addObject:[self menuItemWithTag:WebMenuItemTagCopyLinkToClipboard]];
     }
 
     NSURL *imageURL = [element objectForKey:WebElementImageURLKey];

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list